/**
 * Nadia de Haan - Custom Styles
 * Based on Figma design
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
	/* Colors */
	--color-bg-light: #fdfbf7;
	--color-bg-beige: #f8f5ef;
	--color-text-dark: #312b23;
	--color-text-medium: #847361;
	--color-text-light: #a99985;
	--color-divider: #e8e0d7;
	--color-footer-dark: #221e19;
	--color-footer-border: #494036;
	--color-white: #fdfbf7;
	--color-cream: #f0ebe4;
	--color-overlay: rgba(34, 30, 25, 0.3);
	
	/* Typography */
	--font-heading: 'Cormorant Garamond', serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	
	/* Spacing */
	--section-padding: 160px;
	--container-padding: 64px;
	--max-width: 1800px;
}

/* ============================================
   BASE STYLES
   ============================================ */
*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.6;
	color: var(--color-text-dark);
	background-color: var(--color-bg-light);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 400;
	color: var(--color-text-dark);
	margin: 0;
}

h1 {
	font-size: 96px;
	line-height: 0.95;
	letter-spacing: -2.4px;
}

h2 {
	font-size: 60px;
	line-height: 1.25;
}

h3 {
	font-size: 36px;
	line-height: 1.11;
}

h4 {
	font-size: 30px;
	line-height: 1.2;
}

p {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 300;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

/* ============================================
   LAYOUT
   ============================================ */
.site {
	overflow-x: hidden;
}

.site-content {
	min-height: 100vh;
}

.site-main {
	position: relative;
}

.entry-content {
	margin: 0;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(253, 251, 247, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(240, 235, 228, 0.5);
	transform: translateY(0);
	transition: transform 0.4s ease;
}

.site-header.is-hidden {
	transform: translateY(-100%) !important;
}

.header-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 88px;
}

/* Site Branding */
.site-branding {
	flex-shrink: 0;
}

.site-title {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 1.2px;
	color: var(--color-text-dark);
	text-decoration: none;
}

/* Main Navigation */
.main-navigation {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 64px;
}

.nav-menu li {
	margin: 0;
}

.nav-menu a {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2.8px;
	text-transform: uppercase;
	color: var(--color-text-medium);
	transition: color 0.3s ease;
}

.nav-menu a:hover {
	color: var(--color-text-dark);
}

/* Language Switcher */
.language-switcher {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: 32px;
}

.language-switcher .lang-item a,
.language-switcher span {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	color: var(--color-text-light);
}

.language-switcher .current-lang a,
.language-switcher .lang-item.current-lang a {
	font-weight: 500;
	color: var(--color-text-dark);
}

/* Remove ALL underlines from language switcher */
.language-switcher a,
.language-switcher a:hover,
.language-switcher a:focus,
.language-switcher a:active,
.language-switcher .lang-item a,
.language-switcher .current-lang a,
.language-switcher ul li a {
	text-decoration: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

.lang-separator {
	color: var(--color-divider);
}

/* Polylang language list */
.language-switcher ul {
	display: flex;
	list-style: none !important;
	list-style-type: none !important;
	margin: 0;
	padding: 0;
	gap: 12px;
}

.language-switcher ul li {
	margin: 0;
	list-style: none !important;
	list-style-type: none !important;
}

.language-switcher ul li::before,
.language-switcher ul li::marker {
	display: none !important;
	content: none !important;
}

/* Polylang - FORCE remove all bullets everywhere */
.language-switcher,
.language-switcher *,
.language-switcher ul,
.language-switcher ul li,
.widget_polylang ul,
.widget_polylang ul li,
#polylang ul,
#polylang ul li,
.polylang_langsw_widget ul,
.polylang_langsw_widget ul li,
ul.polylang_langsw,
ul.polylang_langsw li,
.main-navigation .language-switcher ul,
.main-navigation .language-switcher ul li,
.site-header .language-switcher ul,
.site-header .language-switcher ul li {
	list-style: none !important;
	list-style-type: none !important;
	margin: 0;
	padding: 0;
}

.language-switcher ul li::before,
.language-switcher ul li::marker,
.language-switcher li::before,
.language-switcher li::marker,
.widget_polylang ul li::before,
.widget_polylang ul li::marker,
#polylang ul li::before,
#polylang ul li::marker,
.polylang_langsw_widget ul li::before,
.polylang_langsw_widget ul li::marker,
ul.polylang_langsw li::before,
ul.polylang_langsw li::marker,
.main-navigation .language-switcher ul li::before,
.main-navigation .language-switcher ul li::marker,
.site-header .language-switcher ul li::before,
.site-header .language-switcher ul li::marker {
	display: none !important;
	content: none !important;
	content: "" !important;
	width: 0 !important;
	height: 0 !important;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	padding: 10px;
	cursor: pointer;
}

.hamburger {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 24px;
}

.hamburger span {
	display: block;
	height: 2px;
	background: var(--color-text-dark);
	transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	padding-top: 88px; /* Space for fixed header */
}

.hero-section .wp-block-cover {
	min-height: 100vh !important;
}

/* Hero cover image - ensure proper scaling */
.hero-section .wp-block-cover img.wp-block-cover__image-background {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
}

/* Hero overlay - gradient from bottom for text readability */
.hero-section .wp-block-cover__background {
	background: linear-gradient(
		to top, 
		rgba(26, 21, 16, 0.7) 0%, 
		rgba(26, 21, 16, 0.4) 40%, 
		rgba(26, 21, 16, 0.15) 70%,
		rgba(26, 21, 16, 0) 100%
	) !important;
	opacity: 1 !important;
}

.hero-section .wp-block-cover__inner-container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding) 128px;
	width: 100%;
	margin-top: 80px; /* Additional space to push content below header */
}

.hero-content {
	max-width: 672px;
}

.hero-title {
	font-family: var(--font-heading) !important;
	font-size: 96px !important;
	font-weight: 400 !important;
	line-height: 0.95 !important;
	letter-spacing: -2.4px !important;
	color: var(--color-white) !important;
	margin-bottom: 16px !important;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-family: var(--font-body) !important;
	font-size: 24px !important;
	font-weight: 300 !important;
	line-height: 1.625 !important;
	color: var(--color-cream) !important;
	margin-bottom: 16px !important;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
	font-family: var(--font-body) !important;
	font-size: 20px !important;
	font-weight: 300 !important;
	line-height: 1.625 !important;
	color: var(--color-divider) !important;
	max-width: 651px;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-label {
	font-family: var(--font-body) !important;
	font-size: 12px !important;
	font-weight: 400 !important;
	letter-spacing: 3.6px !important;
	text-transform: uppercase !important;
	color: var(--color-text-light) !important;
	margin-bottom: 32px !important;
}

.section-title {
	font-family: var(--font-heading) !important;
	font-weight: 400 !important;
	color: var(--color-text-dark) !important;
}

.section-title-h2 {
	font-size: 60px !important;
	line-height: 1.25 !important;
}

.section-title-h3 {
	font-size: 36px !important;
	line-height: 1.11 !important;
}

.section-title-h4 {
	font-size: 30px !important;
	line-height: 1.2 !important;
}

.body-text-large {
	font-family: var(--font-body) !important;
	font-size: 20px !important;
	font-weight: 300 !important;
	line-height: 1.625 !important;
	color: var(--color-text-medium) !important;
}

.body-text {
	font-family: var(--font-body) !important;
	font-size: 18px !important;
	font-weight: 300 !important;
	line-height: 1.625 !important;
	color: var(--color-text-medium) !important;
}

.body-text-small {
	font-family: var(--font-body) !important;
	font-size: 16px !important;
	font-weight: 300 !important;
	line-height: 1.625 !important;
	color: var(--color-text-light) !important;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
	background-color: var(--color-bg-beige);
	padding: var(--section-padding) var(--container-padding);
}

.about-section .wp-block-columns {
	max-width: var(--max-width);
	margin: 0 auto;
	gap: 96px !important;
}

/* Divider */
.section-divider {
	width: 96px;
	height: 1px;
	background: var(--color-divider);
	border: none;
	margin: 0 !important;
}

.wp-block-separator.has-divider-background-color {
	background-color: var(--color-divider) !important;
	width: 96px !important;
	height: 1px !important;
	border: none !important;
	opacity: 1 !important;
}

/* ============================================
   BREAK SECTIONS (Image/Video Background)
   ============================================ */
.break-section,
.break-section-1,
.break-section-2 {
	position: relative;
	min-height: 400px;
	height: 40vh;
	max-height: 550px;
	overflow: hidden;
}

.break-section .wp-block-cover,
.break-section-1 .wp-block-cover,
.break-section-2 .wp-block-cover {
	min-height: 400px !important;
	height: 40vh !important;
	max-height: 550px !important;
}

/* Ensure cover images scale properly without distortion - CRISP rendering */
.break-section .wp-block-cover img.wp-block-cover__image-background,
.break-section-1 .wp-block-cover img.wp-block-cover__image-background,
.break-section-2 .wp-block-cover img.wp-block-cover__image-background {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}

/* Background media containers */
.section-bg-media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.section-bg-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.section-bg-video {
	overflow: hidden;
}

.section-bg-video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw; /* 16:9 aspect ratio */
	min-height: 100vh;
	min-width: 177.78vh; /* 16:9 aspect ratio */
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.has-bg-image,
.has-bg-video {
	position: relative;
}

.has-bg-image > *:not(.section-bg-media),
.has-bg-video > *:not(.section-bg-media) {
	position: relative;
	z-index: 1;
}

/* Overlay for break sections */
.break-section::after,
.break-section-1::after,
.break-section-2::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--color-overlay);
	pointer-events: none;
	z-index: 1;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise-section {
	background-color: var(--color-bg-light);
	padding: var(--section-padding) var(--container-padding);
}

.expertise-section > .wp-block-group {
	max-width: var(--max-width);
	margin: 0 auto;
}

.expertise-intro {
	max-width: 768px;
	margin-bottom: 128px !important;
}

.expertise-grid .wp-block-columns {
	gap: 96px !important;
	align-items: center;
}

.expertise-content {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.expertise-item {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.expertise-image {
	height: 600px;
	object-fit: cover;
}

.expertise-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ============================================
   RECOGNITION SECTION
   ============================================ */
.recognition-section {
	background-color: var(--color-bg-beige);
	padding: var(--section-padding) var(--container-padding);
}

.recognition-section .wp-block-columns {
	max-width: var(--max-width);
	margin: 0 auto;
	gap: 96px !important;
}

.recognition-card {
	background: var(--color-bg-light);
	padding: 64px;
	margin-bottom: 48px;
}

.recognition-card:last-child {
	margin-bottom: 0;
}

.recognition-card h3 {
	font-size: 30px !important;
	line-height: 1.2 !important;
	margin-bottom: 24px !important;
}

.recognition-card .body-text {
	margin-bottom: 8px !important;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
	background-color: var(--color-bg-light);
	padding: var(--section-padding) 84px;
}

.contact-section .wp-block-columns {
	max-width: var(--max-width);
	margin: 0 auto;
	gap: 96px !important;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding-top: 32px;
}

.contact-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-label {
	font-family: var(--font-body) !important;
	font-size: 12px !important;
	font-weight: 400 !important;
	letter-spacing: 2.4px !important;
	text-transform: uppercase !important;
	color: var(--color-text-light) !important;
}

.contact-value {
	font-family: var(--font-body) !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 1.556 !important;
	color: var(--color-text-dark) !important;
}

.contact-value a {
	color: var(--color-text-dark);
}

.contact-value a:hover {
	color: var(--color-text-medium);
}

/* Form Container */
.contact-form-container {
	background: var(--color-bg-beige);
	padding: 64px;
}

/* ============================================
   GRAVITY FORMS STYLING
   ============================================ */
.gform_wrapper.gravity-theme {
	--gf-color-primary: var(--color-text-dark);
	--gf-color-secondary: var(--color-text-medium);
	--gf-color-out-of-range: #d63638;
}

.gform_wrapper {
	font-family: var(--font-body);
}

.gform_wrapper .gform_body {
	margin-bottom: 0;
}

.gform_wrapper .gform_fields {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.gform_wrapper .gfield {
	margin: 0 !important;
	padding: 0 !important;
}

.gform_wrapper .gfield_label,
.gform_wrapper label.gfield_label {
	font-family: var(--font-body) !important;
	font-size: 12px !important;
	font-weight: 400 !important;
	letter-spacing: 2.4px !important;
	text-transform: uppercase !important;
	color: var(--color-text-light) !important;
	margin-bottom: 16px !important;
}

.gform_wrapper .gfield_required {
	color: var(--color-text-light) !important;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper select,
.gform_wrapper textarea {
	width: 100% !important;
	padding: 18px 16px !important;
	border: 1px solid var(--color-divider) !important;
	border-radius: 0 !important;
	background: var(--color-bg-light) !important;
	font-family: var(--font-body) !important;
	font-size: 16px !important;
	font-weight: 300 !important;
	color: var(--color-text-dark) !important;
	transition: border-color 0.3s ease !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
	outline: none !important;
	border-color: var(--color-text-dark) !important;
}

.gform_wrapper textarea {
	min-height: 154px !important;
	resize: vertical !important;
}

.gform_wrapper .gform_footer,
.gform_wrapper .gform_page_footer {
	margin: 0 !important;
	padding: 0 !important;
}

.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
	width: 100% !important;
	padding: 20px 48px !important;
	background: var(--color-text-dark) !important;
	color: var(--color-white) !important;
	border: none !important;
	border-radius: 0 !important;
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	letter-spacing: 2.8px !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	transition: background-color 0.3s ease !important;
}

.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover {
	background: var(--color-text-medium) !important;
}

/* Validation */
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select {
	border-color: #d63638 !important;
}

.gform_wrapper .validation_message {
	color: #d63638 !important;
	font-size: 14px !important;
	margin-top: 8px !important;
}

.gform_wrapper .gform_validation_errors {
	background: #fef1f1 !important;
	border: 1px solid #d63638 !important;
	padding: 16px !important;
	margin-bottom: 24px !important;
}

.gform_wrapper .gform_confirmation_message {
	background: #d4edda !important;
	color: #155724 !important;
	padding: 24px !important;
	border: 1px solid #c3e6cb !important;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
	background: var(--color-footer-dark);
	padding: 96px 0;
}

.footer-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.footer-top {
	display: flex;
	gap: 64px;
	padding-bottom: 64px;
	border-bottom: 1px solid var(--color-footer-border);
}

.footer-column {
	flex: 0 0 auto;
}

.footer-branding {
	flex: 0 0 624px;
}

.footer-contact,
.footer-language {
	flex: 0 0 280px;
}

.footer-logo {
	font-family: var(--font-heading);
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 1.5px;
	color: var(--color-white);
	margin: 0 0 32px;
}

.footer-tagline {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.625;
	color: var(--color-text-light);
	max-width: 512px;
}

.footer-column h4 {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2.8px;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0 0 32px;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-links li {
	margin: 0;
}

.footer-links a,
.footer-links span {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	color: var(--color-text-light);
}

.footer-links a:hover {
	color: var(--color-white);
}

/* Footer Language Switcher */
.footer-lang-switcher {
	display: flex;
	gap: 24px;
}

.footer-lang-switcher a {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2.8px;
	text-transform: uppercase;
	color: var(--color-text-light);
}

.footer-lang-switcher a.active,
.footer-lang-switcher a:hover {
	color: var(--color-white);
}

/* Polylang footer list */
.footer-lang-switcher ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 24px;
}

.footer-lang-switcher ul li {
	margin: 0;
}

.footer-lang-switcher ul li a {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 2.8px;
	text-transform: uppercase;
	color: var(--color-text-light);
}

.footer-lang-switcher ul li.current-lang a {
	color: var(--color-white);
}

/* Footer Bottom */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 48px;
}

.footer-copyright p {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 300;
	color: var(--color-text-medium);
	margin: 0;
}

.footer-legal {
	display: flex;
	gap: 48px;
}

.footer-legal a {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 300;
	color: var(--color-text-medium);
}

.footer-legal a:hover {
	color: var(--color-white);
}

/* ============================================
   WORDPRESS BLOCK OVERRIDES
   ============================================ */
.wp-block-group.alignfull {
	max-width: 100%;
}

.wp-block-columns {
	gap: 96px;
}

.wp-block-column {
	margin: 0;
}

.wp-block-cover {
	position: relative;
}

.wp-block-cover.alignfull {
	width: 100vw;
	margin-left: calc(-50vw + 50%);
}

.wp-block-image img {
	height: auto;
}

.wp-block-paragraph,
.wp-block-heading {
	margin-top: 0;
	margin-bottom: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1400px) {
	:root {
		--container-padding: 48px;
	}
	
	.footer-branding {
		flex: 0 0 400px;
	}
}

@media (max-width: 1200px) {
	:root {
		--section-padding: 120px;
		--container-padding: 32px;
	}
	
	h1, .hero-title {
		font-size: 72px !important;
	}
	
	h2, .section-title-h2 {
		font-size: 48px !important;
	}
	
	h3, .section-title-h3 {
		font-size: 30px !important;
	}
	
	.wp-block-columns {
		flex-direction: column;
		gap: 48px !important;
	}
	
	.wp-block-column {
		flex-basis: 100% !important;
		max-width: 100% !important;
	}
	
	.footer-top {
		flex-direction: column;
		gap: 48px;
	}
	
	.footer-branding,
	.footer-contact,
	.footer-language {
		flex: 0 0 auto;
	}
}

@media (max-width: 768px) {
	:root {
		--section-padding: 40px;
		--container-padding: 16px;
	}
	
	/* Add padding for fixed header on mobile */
	.site-content {
		padding-top: 64px;
	}
	
	.hero-section {
		margin-top: -64px;
		padding-top: 64px;
	}
	
	.hero-section .wp-block-cover__inner-container {
		margin-top: 60px !important; /* Additional space to push content below header */
	}
	
	/* Compact typography for mobile */
	h1, .hero-title {
		font-size: 40px !important;
		letter-spacing: -1px !important;
		line-height: 1.1 !important;
	}
	
	h2, .section-title-h2 {
		font-size: 28px !important;
		line-height: 1.2 !important;
	}
	
	h3, .section-title-h3 {
		font-size: 20px !important;
		line-height: 1.3 !important;
	}
	
	/* Reduce paragraph spacing */
	p {
		font-size: 15px !important;
		line-height: 1.5 !important;
	}
	
	.hero-section,
	.hero-section .wp-block-cover {
		min-height: 85vh !important;
		min-height: 85svh !important;
	}
	
	.break-section,
	.break-section-1,
	.break-section-2,
	.break-section .wp-block-cover,
	.break-section-1 .wp-block-cover,
	.break-section-2 .wp-block-cover {
		min-height: 250px !important;
		height: 30vh !important;
		max-height: 350px !important;
	}
	
	/* Compact sections - less padding */
	.about-section,
	.expertise-section,
	.recognition-section,
	.contact-section {
		padding: 40px 16px !important;
	}
	
	/* Reduce gaps in content */
	.wp-block-group {
		gap: 24px !important;
	}
	
	.wp-block-columns {
		gap: 24px !important;
	}
	
	/* Compact hero content - positioned lower */
	.hero-section .wp-block-cover__inner-container {
		padding: 80px 16px 60px !important;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	
	.hero-content {
		padding-bottom: 0 !important;
		max-width: 100% !important;
	}
	
	.hero-subtitle {
		font-size: 14px !important;
		margin-bottom: 6px !important;
	}
	
	.hero-description {
		font-size: 13px !important;
		line-height: 1.5 !important;
	}
	
	/* Language switcher - remove ALL bullets on mobile */
	.language-switcher,
	.language-switcher ul,
	.language-switcher li,
	.header-content .language-switcher ul li {
		list-style: none !important;
		list-style-type: none !important;
	}
	
	.language-switcher ul li::before,
	.language-switcher ul li::marker,
	.header-content .language-switcher ul li::before,
	.header-content .language-switcher ul li::marker,
	.language-switcher li::before,
	.language-switcher li::marker {
		display: none !important;
		content: none !important;
		content: "" !important;
	}
	
	/* Mobile Header - Always visible on mobile */
	.site-header {
		transform: translateY(0) !important;
		background: rgba(253, 251, 247, 0.98) !important;
	}
	
	.header-content {
		height: 64px;
	}
	
	.menu-toggle {
		display: block;
	}
	
	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--color-bg-light);
		flex-direction: column;
		padding: 24px var(--container-padding);
		gap: 24px;
		border-bottom: 1px solid var(--color-divider);
	}
	
	.nav-menu.is-open {
		display: flex;
	}
	
	.language-switcher {
		padding-left: 0;
		border-left: none;
	}
	
	/* Mobile Footer - Compact */
	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
	
	.footer-legal {
		flex-direction: column;
		gap: 12px;
	}
	
	.site-footer {
		padding: 40px 20px !important;
	}
	
	.footer-top {
		gap: 32px !important;
		margin-bottom: 32px !important;
	}
	
	/* Form adjustments - Compact */
	.contact-form-container {
		padding: 24px;
	}
	
	.recognition-card {
		padding: 24px;
		margin-bottom: 16px !important;
	}
	
	.expertise-image {
		height: 280px;
	}
	
	/* About section compact */
	.about-section .wp-block-columns {
		gap: 32px !important;
	}
	
	.about-header {
		margin-bottom: 24px !important;
	}
	
	/* Recognition cards compact */
	.recognition-grid {
		gap: 16px !important;
	}
	
	/* Contact section compact */
	.contact-section .wp-block-columns {
		gap: 32px !important;
	}
	
	.contact-info-grid {
		gap: 20px !important;
	}
	
	/* Expertise section compact */
	.expertise-intro {
		margin-bottom: 48px !important;
	}
	
	.expertise-grid .wp-block-columns {
		gap: 48px !important;
	}
}

/* ============================================
   UTILITIES
   ============================================ */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Animation classes */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Fix for admin bar */
.admin-bar .site-header {
	top: 32px;
}

.admin-bar .site-header.is-visible {
	transform: translateY(0);
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}
