@font-face {
    font-family: PWPrimary;
    src: url("font/Manrope/static/Manrope-ExtraLight.ttf") format("truetype");
}

@font-face {
    font-family: PWPrimary;
    font-weight: bold;
    src: url("font/Manrope/static/Manrope-Regular.ttf") format("truetype");
}

@font-face {
    font-family: PWSecondary;
    src: url("font/source/SourceSerif4-Regular.otf") format("opentype");
}

@font-face {
    font-family: PWSecondary;
    font-weight: bold;
    src: url("font/source/SourceSerif4-Bold.otf") format("opentype");
}

@font-face {
    font-family: PWSecondary Semibold;
    font-weight: 700;
    src: url("font/source/SourceSerif4-Semibold.otf") format("opentype");
}

* {
  box-sizing: border-box; 
}

html{
	height: 100%;
}

body{
	margin: 0px;
	padding: 0px;
	height: 100%;
	overflow: hidden;
	
	font-family: "PWPrimary", "Arial", sans-serif;
	font-weight: 90;
}

a { 
	color: inherit; 
	text-decoration: none;
}

a:visited {
  color: inherit; /* Controls visited link color */
}

h1{
	font-family: "PWPrimary", "Arial", sans-serif;
	display: inline;
	font-size: 42pt;
	font-weight: bold;
	margin: 25px 0px;
	padding: 0px 30px;
}

h2{
	font-family: "PWPrimary Semibold", "Arial", sans-serif;
	display: block;
	font-size: 30pt;
}

h3{
	font-family: "PWSecondary", "Arial", sans-serif;
	display: inline;
	font-size: 25pt;
}

h4{
	font-family: "PWPrimary", "Arial", sans-serif;
	font-weight: 100;
	display: inline;
	font-size: 30pt;
}

h5{
	font-family: "PWPrimary thin", "Arial", sans-serif;
	margin:0px;
	font-size: 10pt;
	font-weight: 50;
}

h6{
	font-family: "PWPrimary", "Arial", sans-serif;
	font-weight: bold;
	display: inline;
	font-size: 24pt;
	margin: 0px;
}

h7{vcb x
	font-family: "PWPrimary", "Arial", sans-serif;
	font-weight: 200;
	display: flex;
	justify-content: center; // center the content horizontally 
	margin: 8px;
	font-size: 24pt;
}     

h8{
	font-family: "PWPrimary", "Arial", sans-serif;
	font-weight: bold;
	display: block;
	margin: 20px 0px;
	font-size: 14pt;
}

h9{
	display: inline-block;
	padding-left: 10px;
	font-family: "PWPrimary", "Arial", sans-serif;
	font-weight: bold;
	margin: 0px;
	font-size: 12pt;
	
}

h10{
	display: inline-block;
	padding: 10px;
	font-family: "PWPrimary", "Arial", sans-serif;
	font-weight: bold;
	margin: 0px;
	font-size: 20pt;
	
	background-color: #222823;
	color: white;
}

h11{
	display: inline-block;
	padding: 2px 10px;
	font-family: "PWPrimary", "Arial", sans-serif;
	font-weight: 200;
	margin: 0px;
	font-size: 14pt;
	
	background-color: #8F9672;
	color: white;
}

h12{
	font-family: "PWPrimary", "Arial", sans-serif;
	font-weight: 100;
	display: flex;
	justify-content: center; // center the content horizontally 
	margin: 10px;
	font-size: 8pt;
}

h13{
	font-family: "PWPrimary", "Arial", sans-serif;
	font-weight: 200;

	display: flex;
	justify-content: center; // center the content horizontally

	margin: 10px;
	font-size: 14pt;
	
	padding-top: 10px;
}


.pw_color_black_bg{
	background-color: #222823;
}

.pw_color_green_bg{
	background-color: #D8F473;
}

.pw_color_olive_bg{
	background-color: #8F9672;
}

.pw_color_neutral_bg{
	background-color: #F7F5F0;
	
}

.pw_font_primary{
	font-family: "PWPrimary", "Arial", sans-serif;
}

.pw_font_secondary{
	font-family: "PWSecondary Semibold", "Arial", sans-serif;
}

.cw_blue{
	color: #44C6FF;
}

/* ─── Contact Form ─────────────────────────────────────────────────────────── */

#pw-contact-form {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 24px 0 32px;
}

#pw-contact-form flexLayoutControl {
	margin-bottom: 16px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.form-row.grid2 {
	margin: 0px 0px -30px 0px;
	grid-template-columns: 50% auto;
}

/* Single-field rows span both columns so left/right edges match the two-column rows */
.form-row:not(.grid2) .form-field {
	grid-column: 1 / -1;
}

.form-field {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.form-field label {
	font-family: "PWPrimary", Arial, sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #555;
	margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
	font-family: "PWPrimary", Arial, sans-serif;
	font-size: 1rem;
	padding: 12px 14px;
	border: 1px solid #ccc;
	border-radius: 6px;
	background: #fff;
	color: #222823;
	transition: border-color 0.15s;
	width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: #8F9672;
}

.form-field textarea {
	resize: vertical;
	min-height: 120px;
}

.form-privacy-notice {
	margin: 8px 0 20px;
	font-size: 0.88rem;
	line-height: 1.55;
	color: #444;
}

.form-privacy-notice p {
	margin: 0 0 12px;
}

.form-checkbox-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
}

.form-checkbox-row input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: #8F9672;
	cursor: pointer;
}

.form-checkbox-row label {
	font-size: 0.88rem;
	cursor: pointer;
	line-height: 1.4;
}

.form-privacy-footnote {
	font-size: 0.8rem;
	color: #666;
}

.form-privacy-footnote privacy {
	text-decoration: underline;
	cursor: pointer;
}

.form-status {
	min-height: 24px;
	margin-bottom: 8px;
	font-size: 0.9rem;
	border-radius: 6px;
	padding: 0;
}

.form-status--success {
	color: #2d6a2d;
	background: #eafaea;
	padding: 12px 16px;
}

.form-status--error {
	color: #8b1a1a;
	background: #fdf0f0;
	padding: 12px 16px;
}

#cf-submit:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	background-color: #ccc;
}

.form-field-error {
	display: block;
	font-size: 0.78rem;
	color: #8b1a1a;
	margin-top: 4px;
	min-height: 1em;
}

.form-field-invalid {
	border-color: #c0392b !important;
	background: #fff8f8;
	color: #c0392b;
}

.form-status--confirmation {
	padding: 24px 32px;
	font-size: 1.1rem;
	border-radius: 8px;
	text-align: center;
}

.form-checkbox-row .form-field-error {
	margin-left: 28px;
}
}