/* ============================================================
   Dr Georgia Frangou — Website Styles
   Palette: Deep Trust Navy + Soft Healing Sage + Warm Ivory
            + Gentle Sand Beige + Muted Terracotta Blush + Soft Charcoal
   Type: Manrope (headings/UI) + Source Serif 4 (body paragraphs)
   Fonts are loaded via <link> in HTML for better performance.
   ============================================================ */

/* ============================================================
   1. Design Tokens
   ============================================================ */

:root {
  --color-navy: #243B63;
  --color-sage: #AFC3B2;
  --color-ivory: #F7F2EA;
  --color-beige: #DCCDBF;
  --color-terracotta: #C98F7A;
  --color-charcoal: #4A4A4A;

  --color-navy-rgb: 36, 59, 99;
  --color-sage-rgb: 175, 195, 178;
  --color-ivory-rgb: 247, 242, 234;
  --color-beige-rgb: 220, 205, 191;
  --color-terracotta-rgb: 201, 143, 122;
  --color-charcoal-rgb: 74, 74, 74;

  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;

  /* Core surfaces */
  --bg: var(--color-ivory);
  --bg-muted: #EEF3EE;
  --surface: #FBF7F1;
  --surface-soft: #F4ECE2;
  --surface-sage: #EFF4F0;

  /* Legacy aliases used across the stylesheet */
  --bg-rgb: var(--color-ivory-rgb);
  --surface-rgb: 251, 247, 241;
  --primary-rgb: var(--color-navy-rgb);
  --warm-rgb: var(--color-terracotta-rgb);
  --ink-rgb: var(--color-charcoal-rgb);
  --button-rgb: var(--color-navy-rgb);

  --primary: var(--color-navy);
  --primary-hover: #1B2E4E;
  --primary-light: #90A7A0;
  --primary-xlight: #E8F0EA;
  --primary-surface: #EDF4EF;

  --warm: var(--color-terracotta);
  --warm-hover: #B77B66;
  --warm-soft: #F5E8E1;
  --warm-surface: #FBF1EC;

  --button: var(--color-navy);
  --button-hover: #1B2E4E;
  --button-light: #AFC3B2;
  --button-surface: #EDF4EF;

  --text: var(--color-charcoal);
  --text-soft: #5A554E;
  --text-muted: #7A7168;
  --heading: var(--color-navy);
  --sage-ink: #7D9483;

  --border-subtle: rgba(var(--color-sage-rgb), 0.28);
  --border: rgba(var(--color-sage-rgb), 0.5);

  --shadow-xs: 0 1px 4px rgba(var(--color-navy-rgb), 0.04);
  --shadow-sm: 0 10px 24px rgba(var(--color-navy-rgb), 0.06);
  --shadow-md: 0 18px 38px rgba(var(--color-navy-rgb), 0.08);
  --shadow-lg: 0 28px 60px rgba(var(--color-navy-rgb), 0.1);

  /* Border radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.consent-pending,
body.cookie-consent-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ============================================================
   3. Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 0;
  color: var(--heading);
  line-height: 1.18;
}

/* Body paragraphs use a softer serif for warmth and readability */
p {
  font-family: var(--font-serif);
  margin: 0 0 1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

/* UI paragraphs (labels, notes, meta) stay in the sans family */
.eyebrow,
.card-note,
.contact-note,
.form-disclaimer,
.footer-meta,
.logo-subtitle,
.hero-highlights li,
.tag-list li,
.pill-list li,
.info-list dt,
.info-list dd,
.step-number,
.step-title,
.step-desc,
.cta-banner p {
  font-family: var(--font-sans);
}

/* ============================================================
   4. Layout Utilities
   ============================================================ */
main {
  padding-top: 80px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* Mobile-preview helper (mobile.html) */
.mobile-preview {
  display: flex;
  justify-content: center;
}

.mobile-preview main,
.mobile-preview .site-header,
.mobile-preview .site-footer {
  width: 100%;
  max-width: 480px;
}

/* ============================================================
   5. Header & Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(var(--color-ivory-rgb), 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 30px rgba(var(--color-navy-rgb), 0.08);
  background: rgba(var(--color-ivory-rgb), 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.75rem;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 40% 60% 45% 55%;
  background: var(--primary);
  color: var(--color-ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(var(--color-navy-rgb), 0.18);
}

.logo-text {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
}

.logo-subtitle {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  position: relative;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.24rem 0.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(var(--color-ivory-rgb), 0.9);
  box-shadow: var(--shadow-xs);
}

.language-switcher span {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
}

.lang-link {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.28rem 0.58rem;
  border-radius: var(--radius-pill);
  transition: color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.lang-link:hover {
  color: var(--heading);
  background: rgba(var(--color-sage-rgb), 0.18);
}

.lang-link.active {
  background: var(--primary);
  color: var(--color-ivory);
  box-shadow: 0 8px 18px rgba(var(--color-navy-rgb), 0.14);
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--heading);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color 0.16s ease, background 0.16s ease;
}

.nav-list a:hover {
  color: var(--primary);
  background: rgba(var(--color-sage-rgb), 0.22);
}

.nav-cta {
  padding: 0.5rem 1.1rem !important;
  border-radius: var(--radius-pill) !important;
  background: var(--button) !important;
  color: var(--color-ivory) !important;
  box-shadow: 0 10px 24px rgba(var(--color-navy-rgb), 0.16);
  transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease !important;
}

.nav-cta:hover {
  background: var(--button-hover) !important;
  box-shadow: 0 14px 28px rgba(var(--color-navy-rgb), 0.2) !important;
  transform: translateY(-1px);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease;
}

.nav-toggle:hover {
  background: rgba(var(--color-sage-rgb), 0.18);
  border-color: var(--primary-light);
}

.nav-toggle span {
  width: 16px;
  height: 1.8px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3.4px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3.4px) rotate(-45deg);
}

/* ============================================================
   6. Hero Section
   ============================================================ */
.hero {
  position: relative;
  padding: 7.5rem 0 5.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 55%, rgba(var(--color-sage-rgb), 0.22) 0, transparent 55%),
    radial-gradient(ellipse at 15% 0%, rgba(var(--color-terracotta-rgb), 0.08) 0, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--warm);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.3rem;
  color: var(--heading);
}

.hero h1 .accent {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--sage-ink);
}

.hero-lead {
  font-size: 1.05rem;
  max-width: 36rem;
  color: var(--text-soft);
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.8rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.82rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.btn.primary {
  background: var(--button);
  color: var(--color-ivory);
  border-color: var(--button);
  box-shadow: 0 12px 26px rgba(var(--color-navy-rgb), 0.16);
}

.btn.primary:hover {
  background: var(--button-hover);
  border-color: var(--button-hover);
  box-shadow: 0 16px 34px rgba(var(--color-navy-rgb), 0.2);
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--border);
}

.btn.ghost:hover {
  background: var(--button-surface);
  border-color: var(--button-light);
  color: var(--heading);
  box-shadow: var(--shadow-xs);
}

.btn.warm {
  background: linear-gradient(135deg, var(--button), #2D476F);
  color: var(--color-ivory);
  border-color: var(--button);
  box-shadow: 0 12px 26px rgba(var(--color-navy-rgb), 0.16);
}

.btn.warm:hover {
  background: linear-gradient(135deg, var(--button-hover), var(--button));
  border-color: var(--button-hover);
  box-shadow: 0 16px 34px rgba(var(--color-navy-rgb), 0.2);
  transform: translateY(-1px);
}

.btn.full-width {
  width: 100%;
}

/* Hero highlights (credential pills) */
.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(var(--color-beige-rgb), 0.28);
  border: 1px solid var(--border);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--heading);
  box-shadow: var(--shadow-xs);
}

.hero-highlights li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-sage);
  flex-shrink: 0;
}

/* Hero portrait card */
.hero-visual {
  position: relative;
}

.hero-card {
  margin: 0;
  padding: 1.1rem;
  background: linear-gradient(
    180deg,
    rgba(var(--color-ivory-rgb), 0.94) 0%,
    rgba(var(--color-beige-rgb), 0.2) 100%
  );
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.portrait-frame {
  border-radius: 20px;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-card figcaption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  padding: 0 0.2rem;
  line-height: 1.6;
}

/* ============================================================
   7. Process Steps Section (NEW)
   ============================================================ */
.process-section {
  padding: 5.5rem 0;
  background: var(--bg-muted);
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--color-sage-rgb), 0.2), transparent 52%),
    linear-gradient(180deg, rgba(var(--color-ivory-rgb), 0) 0%, rgba(var(--color-beige-rgb), 0.08) 100%);
  pointer-events: none;
}

.process-section .section-inner {
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.step-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(var(--color-beige-rgb), 0.32) 0%,
    rgba(var(--color-ivory-rgb), 0.96) 100%
  );
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--color-ivory);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 22px rgba(var(--color-navy-rgb), 0.14);
}

.step-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--heading);
  margin-bottom: 0.65rem;
}

.step-desc {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.72;
  margin: 0;
}

/* Connector lines between steps (desktop) */
.step-card::after {
  content: '';
  position: absolute;
  top: 2.9rem;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: rgba(var(--color-sage-rgb), 0.9);
}

.step-card:last-child::after {
  display: none;
}

/* ============================================================
   8. CTA Banner Section (NEW)
   ============================================================ */
.cta-banner {
  padding: 4.5rem 0;
  background: linear-gradient(
    180deg,
    rgba(var(--color-beige-rgb), 0.3) 0%,
    rgba(var(--color-ivory-rgb), 0.95) 100%
  );
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(var(--color-terracotta-rgb), 0.08), transparent 55%),
    radial-gradient(ellipse at 20% 20%, rgba(var(--color-sage-rgb), 0.12), transparent 45%);
  pointer-events: none;
}

.cta-banner .section-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.cta-banner h2 {
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
  margin-bottom: 0.85rem;
  color: var(--heading);
}

.cta-banner p {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--text-soft);
  line-height: 1.78;
  margin-bottom: 1.8rem;
}

/* ============================================================
   9. Sections
   ============================================================ */
.section {
  padding: 5.5rem 0;
}

.section.muted {
  background: linear-gradient(
    180deg,
    rgba(var(--color-sage-rgb), 0.18) 0%,
    rgba(var(--color-ivory-rgb), 0.96) 100%
  );
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-bottom: 0.6rem;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 1.03rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

/* Section headings */
.section h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  margin-bottom: 1.1rem;
}

.section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.6rem;
  margin-top: 1.6rem;
}

.section h3:first-of-type {
  margin-top: 0;
}

/* ============================================================
   10. Cards & Components
   ============================================================ */
.card {
  background: linear-gradient(
    180deg,
    rgba(var(--color-beige-rgb), 0.36) 0%,
    rgba(var(--color-ivory-rgb), 0.96) 100%
  );
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.8rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.08rem;
}

.card-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  margin-bottom: 0;
  line-height: 1.55;
}

/* Checklist (credentials, assessment criteria) */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0;
}

.checklist li {
  font-family: var(--font-sans);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-sage);
}

/* Pill list (DBT modules) */
.pill-list {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-list li {
  padding: 0.42rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(var(--color-sage-rgb), 0.22);
  color: var(--heading);
  font-size: 0.84rem;
  font-weight: 700;
  border: 1px solid rgba(var(--color-sage-rgb), 0.58);
}

.approach-divider {
  width: 100%;
  height: 1px;
  margin: 1.55rem 0 1.45rem;
  background: rgba(var(--color-navy-rgb), 0.22);
}

/* Service card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Service cards */
.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:nth-child(odd) {
  background: linear-gradient(
    180deg,
    rgba(var(--color-ivory-rgb), 0.96) 0%,
    rgba(var(--color-beige-rgb), 0.2) 100%
  );
}

.service-card:nth-child(even) {
  background: linear-gradient(
    180deg,
    rgba(var(--color-sage-rgb), 0.2) 0%,
    rgba(var(--color-ivory-rgb), 0.96) 100%
  );
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-sage);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--primary);
  padding: 10px;
  background: rgba(var(--color-sage-rgb), 0.22);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  box-sizing: border-box;
}

.service-card h3 {
  margin-bottom: 0.45rem;
  margin-top: 0;
}

/* Tag list (service card tags) */
.tag-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-list li {
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(var(--color-sage-rgb), 0.16);
  border: 1px solid rgba(var(--color-sage-rgb), 0.38);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--heading);
}

/* ============================================================
   11. FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--color-sage-rgb), 0.5);
  padding: 1.15rem 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(var(--color-ivory-rgb), 0.96) 0%,
    rgba(var(--color-beige-rgb), 0.18) 100%
  );
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-item[open] {
  border-color: var(--color-sage);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--heading);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  user-select: none;
  -webkit-user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: rgba(var(--color-sage-rgb), 0.22);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M5 1v8M1 5h8' stroke='%23243B63' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 0.75rem;
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ============================================================
   12. Location Info List
   ============================================================ */
.info-list {
  margin: 0;
}

.info-list > div {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.info-list > div:first-child {
  padding-top: 0;
}

.info-list > div:last-child {
  border-bottom: none;
}

.info-list dt {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.info-list dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

/* ============================================================
   13. Contact Section
   ============================================================ */
.contact-section {
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top center, rgba(var(--color-sage-rgb), 0.18), transparent 52%),
    radial-gradient(ellipse at 20% 25%, rgba(var(--color-terracotta-rgb), 0.06), transparent 38%);
  pointer-events: none;
}

.contact-section .section-inner {
  position: relative;
  z-index: 1;
}

.contact-section h2 {
  margin-bottom: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card h3,
.contact-card p {
  margin: 0;
}

.contact-actions {
  margin-top: 0.15rem;
}

.contact-phone {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-phone a {
  color: var(--heading);
  font-weight: 700;
}

.contact-phone a:hover {
  color: var(--primary);
}

.contact-note {
  font-size: 0.85rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(
    180deg,
    rgba(var(--color-beige-rgb), 0.34) 0%,
    rgba(var(--color-ivory-rgb), 0.9) 100%
  );
  border: 1px solid rgba(var(--color-terracotta-rgb), 0.26);
  border-left: 4px solid var(--color-terracotta);
  border-radius: var(--radius-sm);
  line-height: 1.55;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-row label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--heading);
}

.form-row input,
.form-row textarea,
.form-row select {
  font-family: var(--font-sans);
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(var(--color-sage-rgb), 0.55);
  padding: 0.65rem 0.85rem;
  font-size: 0.92rem;
  background: rgba(var(--color-ivory-rgb), 0.92);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-muted);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.65;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(var(--color-sage-rgb), 0.28);
  background: var(--surface);
}

.form-disclaimer {
  font-size: 0.79rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   14. Policy Pages
   ============================================================ */
.policy-page {
  background:
    radial-gradient(ellipse at top center, rgba(var(--color-sage-rgb), 0.12), transparent 42%),
    linear-gradient(180deg, rgba(var(--color-ivory-rgb), 0.98) 0%, rgba(var(--color-ivory-rgb), 1) 100%);
}

.policy-hero {
  position: relative;
  padding: 4.8rem 0 2.2rem;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(var(--color-terracotta-rgb), 0.08), transparent 28%),
    radial-gradient(circle at 80% 16%, rgba(var(--color-sage-rgb), 0.16), transparent 34%);
  pointer-events: none;
}

.policy-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.policy-lead {
  max-width: 52rem;
  font-size: 1.03rem;
  margin-bottom: 0;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin-top: 1.15rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.policy-shell {
  padding: 0 0 5rem;
}

.policy-document {
  max-width: 880px;
  margin: 0 auto;
  padding: 2.15rem 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(var(--color-ivory-rgb), 0.96) 0%,
    rgba(var(--color-beige-rgb), 0.12) 100%
  );
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.policy-document h2 {
  font-size: 1.32rem;
  margin: 2rem 0 0.7rem;
}

.policy-document h2:first-child {
  margin-top: 0;
}

.policy-document h3 {
  font-size: 1rem;
  margin: 1.2rem 0 0.45rem;
}

.policy-document p:last-child {
  margin-bottom: 0;
}

.policy-document ul {
  margin: 0.35rem 0 1.15rem;
  padding-left: 1.25rem;
}

.policy-document li {
  margin-bottom: 0.55rem;
  color: var(--text-soft);
  line-height: 1.72;
}

.policy-document strong {
  color: var(--heading);
}

.policy-note {
  margin-top: 1.4rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(var(--color-sage-rgb), 0.12);
  border: 1px solid rgba(var(--color-sage-rgb), 0.32);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-soft);
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.55rem 0 0;
}

.policy-links .btn {
  min-width: 190px;
}

/* ============================================================
   15. Cookie Consent
   ============================================================ */
.cookie-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(var(--color-navy-rgb), 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

html.consent-pending .cookie-consent-modal {
  display: flex;
}

.cookie-consent-panel {
  width: min(100%, 680px);
  padding: 1.6rem 1.6rem 1.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(var(--color-sage-rgb), 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(var(--color-ivory-rgb), 0.98) 0%,
      rgba(var(--color-ivory-rgb), 0.96) 100%
    );
  box-shadow: 0 28px 70px rgba(var(--color-navy-rgb), 0.24);
}

.cookie-consent-eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--heading);
}

.cookie-consent-panel h2 {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
}

.cookie-consent-panel p {
  margin-bottom: 0.85rem;
}

.cookie-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.9rem;
  margin: 1rem 0 0;
}

.cookie-consent-links a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--heading);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.cookie-consent-button {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.cookie-consent-button:hover {
  transform: translateY(-1px);
}

.cookie-consent-button.primary {
  background: var(--button);
  color: var(--color-ivory);
  box-shadow: var(--shadow-sm);
}

.cookie-consent-button.primary:hover {
  background: var(--button-hover);
}

.cookie-consent-button.secondary {
  background: rgba(var(--color-sage-rgb), 0.18);
  color: var(--heading);
  border: 1px solid rgba(var(--color-sage-rgb), 0.45);
}

.cookie-consent-button.ghost {
  background: rgba(var(--color-navy-rgb), 0.05);
  color: var(--heading);
  border: 1px solid rgba(var(--color-navy-rgb), 0.14);
}

.cookie-consent-note {
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cookie-consent-dismiss {
  margin-top: 0.45rem;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
}

.cookie-consent-dismiss[hidden] {
  display: none;
}

/* ============================================================
   16. Footer
   ============================================================ */
.site-footer {
  padding: 1.75rem 0 2rem;
  border-top: none;
  background: var(--color-navy);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(var(--color-ivory-rgb), 0.9);
}

.footer-inner p {
  font-family: var(--font-sans);
  margin: 0;
  color: rgba(var(--color-ivory-rgb), 0.9);
  line-height: 1.5;
}

.footer-meta {
  font-size: 0.78rem;
  color: rgba(var(--color-sage-rgb), 0.88);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.85rem 0 0.35rem;
  padding: 0;
}

.footer-links a,
.footer-cookie-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.88rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(var(--color-ivory-rgb), 0.18);
  background: rgba(var(--color-ivory-rgb), 0.08);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(var(--color-ivory-rgb), 0.96);
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.footer-links a:hover,
.footer-cookie-trigger:hover {
  background: rgba(var(--color-sage-rgb), 0.18);
  border-color: rgba(var(--color-sage-rgb), 0.42);
  transform: translateY(-1px);
}

.footer-links a.active {
  background: rgba(var(--color-sage-rgb), 0.24);
  border-color: rgba(var(--color-sage-rgb), 0.54);
}

.footer-cookie-trigger {
  align-self: center;
  margin: 0 auto 0.4rem;
}

/* ============================================================
   17. Scroll Reveal Animation
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   18. Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .step-card::after {
    display: none;
  }
}

@media (max-width: 768px) {
  main {
    padding-top: 68px;
  }

  .container {
    padding-inline: 1.25rem;
  }

  .header-inner {
    padding: 0.75rem 1.25rem;
  }

  /* Show hamburger */
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    gap: 0.65rem;
  }

  .language-switcher {
    padding: 0.22rem 0.24rem;
  }

  .lang-link {
    font-size: 0.72rem;
    padding: 0.24rem 0.48rem;
  }

  /* Dropdown mobile nav */
  .nav-list {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    padding: 0.6rem;
    background: rgba(var(--bg-rgb), 0.98);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    min-width: 200px;
    transform-origin: top right;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-list.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 0.45rem 0.7rem;
    width: 100%;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.3rem;
  }

  /* Hero */
  .hero {
    padding: 5.5rem 0 3.5rem;
  }

  .policy-hero {
    padding: 4rem 0 1.7rem;
  }

  .policy-document {
    padding: 1.55rem 1.15rem;
    border-radius: var(--radius-lg);
  }

  .policy-document h2 {
    font-size: 1.16rem;
  }

  .policy-links .btn {
    width: 100%;
  }

  .cookie-consent-panel {
    padding: 1.3rem 1.1rem 1.2rem;
    border-radius: var(--radius-lg);
  }

  .cookie-consent-panel h2 {
    font-size: 1.42rem;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-button {
    width: 100%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-card img {
    min-height: 320px;
    max-height: 420px;
  }

  /* Sections */
  .section {
    padding: 3.5rem 0;
  }

  .footer-links {
    gap: 0.5rem;
  }

  .footer-links a {
    padding: 0.5rem 0.78rem;
    font-size: 0.76rem;
  }

  .footer-cookie-trigger {
    width: 100%;
    max-width: 260px;
  }

  .process-section {
    padding: 3.5rem 0;
  }

  .cta-banner {
    padding: 3rem 0;
  }

  /* Grids → single or adjusted column */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .card-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-highlights {
    flex-direction: column;
  }

  .card {
    padding: 1.4rem 1.3rem;
  }

  .section h2 {
    font-size: 1.55rem;
  }
}
