/* ============================================================
   DEBLANDEAU.COM — MASTER STYLESHEET
   Design System: Natural Wellness Luxury · Cormorant + Inter
   ⚠️  IRON RULE: NEVER hardcode a color. Use variables only.
   ⚠️  IRON RULE: DO NOT modify this file without explicit instruction.
   ============================================================ */

/* ARCHIVED PALETTE — Luxe Clinical (replaced June 17, 2026)
   Token NAMES unchanged; only hex/rgba VALUES were revalued to the new
   Natural Wellness Luxury palette.
   --bg          was: #FAF8F5                -> #F6F2EC
   --surface     was: #F2EDE6                -> #FFFFFF
   --white       was: #FFFFFF                -> #FFFFFF
   --dark        was: #1B3A6B                -> #2C2F33
   --dark-light  was: #244D8A                -> #3D4147
   --text        was: #0F1A2E                -> #2C2F33
   --text-muted  was: #3D4A5C                -> #B9AA97
   --text-light  was: #5A6A82                -> #FFFFFF
   --accent      was: #2B6CB0                -> #C9A66A
   --accent-soft was: #C8D9F0                -> rgba(201,166,106,0.12)
   --accent-deep was: #1A4F8A                -> #8FA18F
   --border      was: rgba(43,108,176,0.15)  -> #E4DDD3
   --shadow      was: rgba(27,58,107,0.08)   -> rgba(44,47,51,0.08)
   --accent-rgb  was: 43,108,176             -> 201,166,106
   --dark-rgb    was: 27,58,107              -> 44,47,51
*/

/* Fonts are loaded via <link rel="preload"/stylesheet"> in each page <head>
   for faster, non-render-blocking delivery. Do not re-add @import here. */

:root {
  /* Colors — Natural Wellness Luxury (revalued June 17, 2026) */
  --bg: #F6F2EC;
  --surface: #FFFFFF;
  --dark: #2C2F33;
  --dark-light: #3D4147;
  --accent: #C9A66A;
  --accent-soft: rgba(201, 166, 106, 0.12);
  --accent-deep: #8FA18F;
  --text: #2C2F33;
  --text-muted: #B9AA97;
  --text-light: #FFFFFF;
  --white: #FFFFFF;
  --border: #E4DDD3;
  --shadow: rgba(44, 47, 51, 0.08);
  --accent-rgb: 201, 166, 106;
  --dark-rgb: 44, 47, 51;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --fs-hero:   clamp(2.8rem, 6vw, 5.5rem);
  --fs-h2:     clamp(2rem, 4vw, 3.2rem);
  --fs-h3:     clamp(1.25rem, 2vw, 1.75rem);
  --fs-h4:     1.25rem;
  --fs-body:   1rem;
  --fs-small:  0.875rem;
  --fs-xs:     0.75rem;
  --section-gap:   clamp(5rem, 10vw, 9rem);
  --card-padding:  clamp(1.5rem, 3vw, 2.5rem);
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 5vw, 3rem);
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:    0.35s var(--ease);
  --transition-fast: 0.18s var(--ease);
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --tracking-wide: 0.15em;
  --tracking-wider: 0.22em;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.display       { font-family: var(--font-display); font-weight: 400; line-height: 1.05; }
.display-italic{ font-family: var(--font-display); font-style: italic; font-weight: 300; line-height: 1.1; }
h1, h2, h3    { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h4, h5, h6    { font-family: var(--font-body); font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.32);
}
.btn-primary .arrow { transition: transform var(--transition-fast); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: 1px solid var(--accent);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--accent);
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.btn-ghost:hover { gap: 0.8rem; color: var(--accent-deep); }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--dark);
  padding: 1rem var(--container-pad);
  box-shadow: 0 2px 20px rgba(var(--dark-rgb), 0.28);
}
.nav-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.4rem;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition-fast);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all var(--transition-fast); }
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 6rem var(--container-pad) 3rem;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--white); transition: color var(--transition-fast); }
.nav-mobile a:hover { color: var(--accent); }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}
.hero-left {
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 8rem var(--container-pad) 5rem clamp(2rem, 7vw, 6rem);
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 3;
}
.hero-content { max-width: 560px; position: relative; z-index: 4; }
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--accent); }
.hero-title { font-size: var(--fs-hero); font-family: var(--font-display); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; }
.hero-title strong { font-style: normal; font-weight: 500; color: var(--accent); display: block; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 2.5rem; max-width: 420px; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; }
.hero-right::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(var(--dark-rgb),0.35) 0%, transparent 60%); z-index: 1; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(0.9); }
.hero-right::after { content: ''; position: absolute; left: -2px; top: 15%; bottom: 15%; width: 3px; background: linear-gradient(to bottom, transparent, var(--accent), transparent); z-index: 2; }

.trust-bar { background: var(--dark-light); padding: 1.25rem 0; border-top: 1px solid rgba(var(--accent-rgb),0.18); border-bottom: 1px solid rgba(var(--accent-rgb),0.18); }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: clamp(2rem, 5vw, 4rem); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: var(--fs-small); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.trust-item .icon { color: var(--accent); font-size: 1rem; }
.trust-divider { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: 0.4; }

.section { padding: var(--section-gap) 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-surface { background: var(--surface); }
.section-header { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-header.centered { text-align: center; }
.section-header .eyebrow { margin-bottom: 1rem; }
.section-header h2 { font-size: var(--fs-h2); font-weight: 300; line-height: 1.15; margin-bottom: 1rem; }
.section-header h2 em { font-style: italic; color: var(--accent); }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; line-height: 1.8; }
.section-dark .section-header p { color: rgba(255,255,255,0.55); }
.section-dark .section-header h2 { color: var(--white); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--dark-light); }
.service-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.7s var(--ease); filter: saturate(0.7); }
.service-card:hover .service-card-img { transform: scale(1.05); filter: saturate(1); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(var(--dark-rgb),0.94) 0%, rgba(var(--dark-rgb),0.25) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; }
.service-card-label { font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 500; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.service-card-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 400; color: var(--white); margin-bottom: 0.75rem; line-height: 1.2; }
.service-card-desc { font-size: var(--fs-small); color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 1.25rem; max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.service-card:hover .service-card-desc { max-height: 80px; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; gap: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img-wrap { overflow: hidden; position: relative; min-height: 380px; background: var(--surface); }
.feature-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.feature-img-wrap img[onerror] { min-height: 380px; display: block; font-size: 0; color: transparent; }
.feature-img-wrap:hover img { transform: scale(1.03); }
.feature-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 6vw, 5rem); background: var(--surface); }
.feature-content h3 { font-size: var(--fs-h3); font-weight: 300; margin: 0.75rem 0 1.25rem; line-height: 1.2; }
.feature-content p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.75rem; max-width: 440px; }

.about-teaser { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; gap: 0; }
.about-photo-wrap { position: relative; overflow: hidden; }
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-photo-wrap::after { content: ''; position: absolute; bottom: 2rem; right: -1.5rem; width: calc(100% - 3rem); height: calc(100% - 3rem); border: 1px solid var(--accent); z-index: 1; pointer-events: none; }
.about-content { background: var(--dark); display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 6rem); }
.about-content h2 { font-size: var(--fs-h2); font-weight: 300; color: var(--white); margin: 1rem 0 1.5rem; line-height: 1.15; }
.about-content h2 em { font-style: italic; color: var(--accent); }
.about-content p { color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1.025rem; }
.about-credentials { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.75rem 0 2.25rem; }
.credential-tag { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); border: 1px solid rgba(var(--accent-rgb),0.35); padding: 0.4rem 0.9rem; border-radius: 2px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); padding: var(--card-padding); border-radius: var(--radius); position: relative; transition: transform var(--transition), box-shadow var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 1.25rem; right: 1.5rem; font-family: var(--font-display); font-size: 5rem; color: var(--accent-soft); line-height: 1; }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star { color: var(--accent); font-size: 0.85rem; }
.testimonial-text { font-size: 0.95rem; line-height: 1.8; color: var(--text); margin-bottom: 1.5rem; font-style: italic; font-family: var(--font-display); font-weight: 400; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--surface); border: 2px solid var(--accent-soft); object-fit: cover; }
.author-name { font-size: var(--fs-small); font-weight: 500; color: var(--text); display: block; }
.author-location { font-size: var(--fs-xs); color: var(--text-muted); }

.cta-banner { background: var(--accent); padding: clamp(4rem, 8vw, 7rem) 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: 'DB'; position: absolute; font-family: var(--font-display); font-size: clamp(8rem, 20vw, 18rem); font-weight: 700; color: rgba(255,255,255,0.07); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; white-space: nowrap; letter-spacing: 0.3em; }
.cta-banner h2 { font-size: var(--fs-h2); font-family: var(--font-display); font-weight: 300; color: var(--dark); margin-bottom: 0.75rem; }
.cta-banner h2 em { font-style: italic; }
.cta-banner p { font-size: 1.1rem; color: rgba(var(--dark-rgb),0.65); margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { background: var(--dark); color: var(--white); }
.cta-banner .btn-primary:hover { background: var(--dark-light); box-shadow: 0 8px 24px rgba(var(--dark-rgb),0.35); }

.manifesto { background: var(--dark); padding: clamp(5rem, 10vw, 8.5rem) 0; text-align: center; position: relative; overflow: hidden; }
.manifesto::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb),0.12) 0%, transparent 65%); pointer-events: none; }
.manifesto .container { position: relative; z-index: 1; max-width: 880px; }
.manifesto-mark { display: inline-block; width: 52px; height: 52px; line-height: 50px; border: 1px solid rgba(var(--accent-rgb),0.5); border-radius: 50%; color: var(--accent); font-size: 1.1rem; margin-bottom: 2rem; }
.manifesto-quote { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(1.6rem, 3.4vw, 2.75rem); line-height: 1.3; color: var(--white); margin: 0 auto 2rem; max-width: 760px; }
.manifesto-quote em { color: var(--accent); font-style: italic; }
.manifesto-attr { font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 500; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: rgba(255,255,255,0.45); }

.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--text); text-align: left; gap: 1rem; transition: color var(--transition-fast); }
.faq-question:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1rem; transition: transform var(--transition-fast), background var(--transition-fast); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: var(--white); border-color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-answer-inner { padding: 0 0 1.5rem 0; font-size: 0.975rem; color: var(--text-muted); line-height: 1.85; }

footer { background: var(--dark); color: var(--white); padding: clamp(3rem, 7vw, 5.5rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-brand .logo-name { font-size: 1.75rem; }
.footer-brand .logo-sub { font-size: 0.6rem; }
.footer-brand p { font-size: var(--fs-small); color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.social-link { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: all var(--transition-fast); }
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-size: var(--fs-xs); font-weight: 500; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: var(--fs-small); color: rgba(255,255,255,0.45); transition: color var(--transition-fast); }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.85rem; }
.footer-contact-item .icon { color: var(--accent); margin-top: 2px; flex-shrink: 0; font-size: 0.9rem; }
.footer-contact-item span { font-size: var(--fs-small); color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-bottom { padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); transition: color var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--white); }

.page-hero { background: var(--dark); padding: clamp(7rem, 14vw, 11rem) 0 clamp(3.5rem, 7vw, 5.5rem); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb),0.1) 0%, transparent 70%); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: var(--fs-h2); font-weight: 300; color: var(--white); margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.5); max-width: 500px; margin: 0 auto; line-height: 1.8; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; font-size: var(--fs-xs); color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }
.breadcrumb a { color: rgba(255,255,255,0.3); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--accent); }

.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: var(--fs-xs); font-weight: 500; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-control { width: 100%; padding: 0.875rem 1rem; border: 1px solid rgba(var(--dark-rgb),0.2); border-radius: var(--radius-sm); background: var(--white); color: var(--text); font-size: var(--fs-body); transition: border-color var(--transition-fast), box-shadow var(--transition-fast); outline: none; }
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.18); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 1rem; line-height: 1.6; }
.form-message.error { background: rgba(180, 40, 40, 0.08) !important; border-color: #B42828 !important; color: #8A1F1F !important; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.mobile-book-bar { display: none; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* Page layout grids (moved from inline styles so the 768px breakpoint can stack them) */
.faq-layout          { display: grid; grid-template-columns: 300px 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.booking-layout      { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.contact-layout      { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.about-bio-layout    { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.about-values-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.about-quote-badge   { position: absolute; bottom: 2rem; left: -1.5rem; background: var(--dark); padding: 1.25rem 1.75rem; border-radius: var(--radius); border-left: 3px solid var(--accent); max-width: 220px; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 9rem 1.5rem 4rem; min-height: 90vh; }
  .hero-left::after { display: none; }
  .hero-right { aspect-ratio: 4/3; }
  .hero-right::after { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .about-teaser { grid-template-columns: 1fr; }
  .about-photo-wrap { aspect-ratio: 4/3; }
  .about-photo-wrap::after { display: none; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  .feature-img-wrap { aspect-ratio: 16/9; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .faq-layout, .booking-layout, .contact-layout,
  .about-bio-layout, .about-values-layout { grid-template-columns: 1fr; }
  .about-quote-badge { left: 1rem; }
}
@media (max-width: 768px) {
  .mobile-book-bar {
    display: flex;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: var(--dark);
    border-top: 1px solid rgba(var(--accent-rgb), 0.28);
    box-shadow: 0 -4px 20px rgba(var(--dark-rgb), 0.35);
  }
  .mobile-book-bar .btn-primary { width: 100%; justify-content: center; }
  body { padding-bottom: 4.75rem; }
}
@media (max-width: 480px) {
  .trust-bar-inner { flex-direction: column; gap: 0.75rem; }
  .trust-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .about-credentials { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
