/* France Central — shared site chrome */
:root {
  --navy: #0F2343;
  --navy-deep: #0A1830;
  --near-navy: #081526;
  --gold: #d9c573;
  --gold-soft: #e5d58a;
  --cream: #F7F5F0;
  --paper: #FBFAF7;
  --ink: #333333;
  --stone: #7A776F;
}
body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.01em;
  color: var(--navy);
}
/* Prevent navy-on-navy invisible titles in dark heroes */
.bg-navy h1, .bg-navy h2, .bg-navy h3,
.bg-navy-deep h1, .bg-navy-deep h2, .bg-navy-deep h3,
section[class*="bg-navy"] h1,
section[class*="bg-navy"] h2,
.fc-hero h1, .fc-hero h2 {
  color: #fff;
}
.fc-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy); color: #fff;
  border-bottom: 1px solid rgba(217,197,115,0.2);
}
.fc-header-inner {
  max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.fc-logo img { height: 3.5rem; width: auto; object-fit: contain; }
.fc-nav {
  display: none; align-items: center; gap: 1.1rem;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
}
@media (min-width: 1100px) { .fc-nav { display: flex; } }
.fc-nav a {
  color: rgba(255,255,255,0.88); text-decoration: none;
  position: relative; transition: color .25s;
}
.fc-nav a:hover, .fc-nav a.active { color: #fff; }
.fc-nav a.active { color: var(--gold); }
.fc-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--gold); transition: width .25s;
}
.fc-nav a:hover::after, .fc-nav a.active::after { width: 100%; }
.fc-header-actions { display: flex; align-items: center; gap: 1rem; }
.fc-lang { font-size: 13px; color: var(--gold); }
.fc-lang a { color: inherit; text-decoration: none; }
.fc-lang .muted { color: var(--stone); }
.fc-btn {
  display: inline-block; background: var(--gold); color: var(--navy);
  padding: 0.65rem 1.25rem; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: background .2s;
}
.fc-btn:hover { background: var(--gold-soft); }
.fc-btn-navy { background: var(--navy); color: #fff; }
.fc-btn-navy:hover { background: var(--navy-deep); }
.fc-minimal-note {
  background: rgba(217,197,115,0.15); color: var(--cream);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: 2px;
}
.fc-main { flex: 1; }
.fc-hero {
  background: var(--navy); color: #fff; padding: 3rem 1.5rem 2.75rem;
  position: relative;
}
.fc-hero-inner { max-width: 880px; margin: 0 auto; }
.fc-hero h1 { color: #fff; font-size: clamp(2.25rem, 4vw, 3.75rem); font-weight: 500; margin: 0 0 0.75rem; line-height: 1.15; }
.fc-hero .lead { color: rgba(247,245,240,0.8); font-size: 1.125rem; font-weight: 300; max-width: 42rem; }
.fc-breadcrumb { font-size: 12px; color: rgba(247,245,240,0.55); margin-bottom: 1rem; letter-spacing: 0.04em; }
.fc-breadcrumb a { color: var(--gold-soft); text-decoration: none; }
.fc-article {
  max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem 4rem;
}
.fc-article .prose { font-size: 1.05rem; line-height: 1.75; color: var(--ink); }
.fc-article .prose h2 { font-size: 1.75rem; margin-top: 2.25rem; margin-bottom: 0.75rem; }
.fc-article .prose h3 { font-size: 1.35rem; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.fc-article .prose h4 { font-size: 1.15rem; margin-top: 1.25rem; }
.fc-article .prose p { margin: 0 0 1rem; }
.fc-article .prose ul, .fc-article .prose ol { margin: 0 0 1rem 1.25rem; padding: 0; }
.fc-article .prose li { margin-bottom: 0.35rem; }
.fc-article .prose a { color: var(--navy); text-decoration-color: var(--gold); }
.fc-article .prose table {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0;
  font-size: 0.95rem; background: var(--paper);
}
.fc-article .prose th, .fc-article .prose td {
  border: 1px solid rgba(122,119,111,0.25); padding: 0.65rem 0.85rem; text-align: left;
}
.fc-article .prose th { background: var(--navy); color: #fff; font-weight: 500; }
.fc-related {
  max-width: 800px; margin: 0 auto 3rem; padding: 0 1.5rem;
}
.fc-related h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.fc-related ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.fc-related a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gold); }
.fc-form-wrap {
  max-width: 800px; margin: 0 auto 3rem; padding: 0 1.5rem;
}
.fc-form {
  background: var(--paper); border: 1px solid rgba(122,119,111,0.15);
  border-radius: 12px; padding: 1.75rem; display: grid; gap: 1rem;
}
.fc-form label {
  display: block; font-size: 0.875rem; font-weight: 500; color: var(--navy); margin-bottom: 0.35rem;
}
.fc-form input[type=text],
.fc-form input[type=email],
.fc-form input[type=tel],
.fc-form input[type=number],
.fc-form input[type=date],
.fc-form input[type=file],
.fc-form select,
.fc-form textarea {
  width: 100%; box-sizing: border-box;
  padding: 0.7rem 0.85rem; border: 1px solid rgba(122,119,111,0.25);
  border-radius: 2px; background: #fff; font-family: inherit; font-size: 0.95rem;
}
.fc-form .hint { font-size: 0.8rem; color: var(--stone); margin-top: 0.25rem; }
.fc-form .fieldset-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem;
  color: var(--navy); margin: 1rem 0 0.25rem; padding-top: 0.75rem;
  border-top: 1px solid rgba(217,197,115,0.35);
}
.fc-form-note {
  font-size: 0.85rem; color: var(--stone); margin-top: 0.5rem;
}
.fc-footer {
  background: var(--navy-deep); color: var(--cream);
  padding: 3.5rem 1.5rem; border-top: 1px solid rgba(217,197,115,0.2);
}
.fc-footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 900px) {
  .fc-footer-inner { grid-template-columns: 2fr 1fr 1.4fr; }
}
.fc-footer img { height: 3.5rem; width: auto; margin-bottom: 1rem; }
.fc-footer h4 { color: var(--gold); font-size: 1.1rem; margin: 0 0 0.75rem; }
.fc-footer a { color: rgba(247,245,240,0.7); text-decoration: none; }
.fc-footer a:hover { color: var(--gold); }
.fc-footer nav { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.875rem; }
.fc-trust { font-size: 0.75rem; color: rgba(247,245,240,0.5); line-height: 1.6; }
.fc-copy {
  max-width: 1280px; margin: 2rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center; font-size: 0.7rem; color: rgba(247,245,240,0.4);
}
.fc-shell { min-height: 100vh; display: flex; flex-direction: column; }
.fc-hidden-badge {
  display: inline-block; margin-top: 0.75rem;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(247,245,240,0.55);
}


.bg-navy-deep { background-color: var(--navy-deep); }
.bg-navy { background-color: var(--navy); }
/* === Canonical site chrome (Home reference) === */
.fc-site-header {
  position: sticky; top: 0; z-index: 50;
  background: #0F2343; color: #fff;
  border-bottom: 1px solid rgba(217,197,115,0.2);
}
.fc-site-header-inner {
  max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
  height: 6.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.fc-site-logo { flex-shrink: 0; display: block; }
.fc-site-logo img { height: 4.75rem; width: auto; max-width: min(260px, 36vw); object-fit: contain; display: block; }
.fc-site-nav {
  display: none; align-items: center; gap: 1.25rem;
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
}
@media (min-width: 1024px) { .fc-site-nav { display: flex; } }
.fc-site-nav a {
  color: rgba(255,255,255,0.92); text-decoration: none; white-space: nowrap;
  transition: color .2s;
}
.fc-site-nav a:hover,
.fc-site-nav a.is-active { color: #d9c573; }
.fc-site-actions { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.fc-site-lang {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: #d9c573;
}
.fc-site-lang a, .fc-site-lang button {
  background: none; border: none; cursor: pointer; padding: 0;
  font: inherit; color: #7A776F; text-decoration: none;
}
.fc-site-lang .is-active {
  color: #d9c573; text-decoration: underline; text-underline-offset: 4px;
}
.fc-site-lang .sep { color: #7A776F; }
.fc-site-cta {
  display: inline-block; background: #d9c573; color: #0F2343 !important;
  padding: 0.65rem 1.5rem; border-radius: 2px; font-weight: 500;
  text-decoration: none; transition: background .2s; white-space: nowrap;
}
.fc-site-cta:hover { background: #e5d58a; }
.fc-alert-banner {
  background: #d9c573;
  color: #0F2343;
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  border: 0;
}
.fc-alert-banner + * { margin-top: 0; }
.fc-alert-banner p { margin: 0; }
.fc-alert-banner-link {
  color: inherit;
  text-decoration: none;
  display: block;
}
.fc-alert-banner-link:hover {
  text-decoration: underline;
}
/* Mobile nav toggle */
.fc-nav-toggle {
  display: flex;
  background: transparent; border: 1px solid rgba(217,197,115,0.4);
  color: #fff; padding: 0.4rem 0.6rem; border-radius: 2px; cursor: pointer;
}
@media (min-width: 1024px) { .fc-nav-toggle { display: none; } }
.fc-site-nav.is-open {
  display: flex; flex-direction: column; position: absolute; left: 0; right: 0;
  top: 6.5rem; background: #0A1830; padding: 1rem 1.5rem 1.25rem; gap: 0.85rem;
  border-bottom: 1px solid rgba(217,197,115,0.2);
}

/* Bilingual content visibility (works with i18n.js hidden attr + html lang) */
[data-lang][hidden] { display: none !important; }
.fc-site-lang [data-lang].is-active { color: #d9c573; text-decoration: underline; text-underline-offset: 4px; }
.fc-site-nav a.is-active { color: #d9c573; }


/* EN/FR content pairs */
[data-lang="fr"] { display: none !important; }
html[lang="fr"] [data-lang="en"] { display: none !important; }
html[lang="fr"] [data-lang="fr"] { display: revert !important; }
html[lang="fr"] span[data-lang="fr"],
html[lang="fr"] a[data-lang="fr"],
html[lang="fr"] button[data-lang="fr"],
html[lang="fr"] strong[data-lang="fr"],
html[lang="fr"] em[data-lang="fr"] { display: inline !important; }
html[lang="fr"] p[data-lang="fr"],
html[lang="fr"] h1[data-lang="fr"],
html[lang="fr"] h2[data-lang="fr"],
html[lang="fr"] h3[data-lang="fr"],
html[lang="fr"] li[data-lang="fr"],
html[lang="fr"] div[data-lang="fr"],
html[lang="fr"] section[data-lang="fr"],
html[lang="fr"] article[data-lang="fr"] { display: block !important; }
/* never hide the language switcher buttons */
.fc-site-lang [data-lang] { display: inline !important; }
html[lang="fr"] .fc-site-lang [data-lang] { display: inline !important; }

/* === Mobile / phone responsive (≤768 / ≤480) === */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
img, svg, video {
  max-width: 100%;
  height: auto;
}

/* Header: relative containing block for absolute mobile drawer */
.fc-site-header {
  position: sticky; /* sticky also acts as relative for abs children */
  top: 0;
  z-index: 50;
}
.fc-site-header-inner {
  position: relative;
}

/* Comfortable tap targets */
.fc-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}
.fc-site-lang button,
.fc-site-lang a {
  min-width: 36px;
  min-height: 44px;
  padding: 0.35rem 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fc-site-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Mobile drawer: slide in from the RIGHT */
.fc-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 48, 0.45);
  z-index: 55;
  opacity: 0;
  transition: opacity 280ms ease;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.fc-nav-backdrop.is-visible,
.fc-nav-backdrop:not([hidden]) {
  display: block;
}
html.fc-nav-open .fc-nav-backdrop {
  display: block;
  opacity: 1;
}
html.fc-nav-open { overflow: hidden; }

@media (max-width: 1023px) {
  .fc-site-header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .fc-site-logo {
    margin-right: auto;
    flex-shrink: 0;
  }
  .fc-site-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    order: 3;
  }
  /* Menu flush far right; lang immediately left of Menu */
  .fc-site-actions .fc-site-lang { order: 1; }
  .fc-site-actions .fc-site-cta { order: 2; }
  .fc-site-actions .fc-nav-toggle { order: 3; margin-left: 0; }
  .fc-site-cta {
    display: none; /* Contact lives in drawer on phone */
  }
  .fc-nav-toggle {
    display: inline-flex !important;
  }
  .fc-site-nav {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(20rem, 86vw);
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: 5.5rem 1.25rem 1.75rem;
    gap: 0;
    box-sizing: border-box;
    background: #0A1830;
    border-left: 1px solid rgba(217,197,115,0.25);
    box-shadow: -12px 0 32px rgba(0,0,0,0.35);
    z-index: 70;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 280ms ease;
    pointer-events: none;
  }
  .fc-site-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .fc-site-nav a {
    white-space: normal;
    padding: 0.9rem 0.35rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.92);
  }
  .fc-site-nav a:last-child { border-bottom: 0; }
  .fc-site-nav a[data-fc-drawer-contact] {
    display: flex !important;
    margin-top: 0.85rem;
    justify-content: center;
    background: #d9c573;
    color: #0F2343 !important;
    font-weight: 600;
    border-radius: 2px;
    border-bottom: 0;
    padding: 0.85rem 1rem;
  }
}

/* Legacy absolute drawer override removed — right-panel rules above win ≤1023 */

/* Contact link inside drawer on small screens via actions stays reachable */
@media (max-width: 1023px) {
  .fc-site-header-inner {
    height: auto;
    min-height: 4.25rem;
    padding: 0.55rem 1rem;
    gap: 0.65rem;
  }
  .fc-site-logo img {
    height: 3.15rem;
    max-width: min(220px, 55vw);
  }
  .fc-site-actions {
    gap: 0.65rem;
  }
}

@media (max-width: 768px) {
  .fc-site-header-inner {
    min-height: 4rem;
    padding: 0.45rem 0.85rem;
  }
  .fc-site-logo img {
    height: 3rem;
    max-width: 55vw;
  }
  .fc-site-cta {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
  }
  .fc-alert-banner {
    padding: 0.65rem 0.85rem;
    font-size: 0.8rem;
    line-height: 1.45;
    text-wrap: pretty;
  }
  .fc-alert-banner p {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* Heroes: less padding, scaled H1, no overflow */
  .fc-hero {
    padding: 2.25rem 1rem 2rem;
  }
  .fc-hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
  .fc-hero .lead {
    font-size: 1rem;
  }
  section.bg-navy,
  section[class*="bg-navy"],
  .bg-navy.py-32,
  section.py-32 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  section[class*="px-6"] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  h1.text-5xl,
  h1[class*="text-5xl"],
  h1[class*="text-4xl"] {
    font-size: clamp(1.7rem, 8vw, 2.5rem) !important;
    line-height: 1.15 !important;
    overflow-wrap: anywhere;
  }
  h2.text-4xl,
  h2[class*="text-4xl"] {
    font-size: clamp(1.45rem, 6vw, 2rem) !important;
  }

  /* Forms: full width, larger touch fields */
  .fc-form {
    padding: 1.15rem;
  }
  .fc-form input[type=text],
  .fc-form input[type=email],
  .fc-form input[type=tel],
  .fc-form input[type=number],
  .fc-form input[type=date],
  .fc-form input[type=file],
  .fc-form select,
  .fc-form textarea,
  form input[type=text],
  form input[type=email],
  form input[type=tel],
  form input[type=number],
  form select,
  form textarea {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    font-size: 16px; /* avoid iOS zoom */
  }
  form button[type=submit],
  .fc-btn {
    min-height: 44px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Footer stacks cleanly */
  .fc-footer {
    padding: 2.25rem 1rem;
  }
  .fc-footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .fc-footer img {
    height: 3rem;
  }

  /* Tables / prose scroll on mobile */
  .fc-article .prose,
  .prose,
  article,
  main {
    overflow-wrap: anywhere;
  }
  .fc-article .prose table,
  table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .fc-article {
    padding: 2rem 1rem 3rem;
  }
}

@media (max-width: 480px) {
  .fc-site-header-inner {
    min-height: 3.75rem;
    padding: 0.4rem 0.7rem;
    gap: 0.4rem;
  }
  .fc-site-logo img {
    height: 2.75rem;
    max-width: 48vw;
  }
  /* Hide desktop CTA when it crowds logo; Contact stays in footer + pages */
  .fc-site-cta {
    display: none;
  }
  .fc-site-actions {
    gap: 0.35rem;
  }
  .fc-site-lang {
    gap: 0.25rem;
    font-size: 0.8rem;
  }
  .fc-nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 0.45rem 0.7rem;
    font-size: 0.75rem;
  }
  /* Inject Contact into open drawer via ::after is not possible for link —
     ensure nav drawer has good spacing; Contact page linked from footer. */
  .fc-site-nav.is-open {
    padding: 0.75rem 1rem 1.25rem;
  }
  .fc-site-nav.is-open a {
    padding: 0.95rem 0.15rem;
    font-size: 1.05rem;
  }
  .fc-alert-banner {
    padding: 0.55rem 0.7rem;
    font-size: 0.75rem;
  }
  section.bg-navy,
  section[class*="bg-navy"],
  .bg-navy.py-32,
  section.py-32 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
}

/* Desktop: keep nav row, hide toggle */
@media (min-width: 1024px) {
  .fc-nav-toggle { display: none !important; }
  .fc-site-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    max-height: none;
    overflow: visible;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: 0;
    width: auto;
  }
  .fc-site-nav a {
    border: 0;
    min-height: 0;
    padding: 0;
    font-size: 0.875rem;
  }
  .fc-site-cta { display: inline-flex; }
}

/* Drawer contact CTA: visible in mobile right-panel; hidden on desktop via ≥1024 rules */
.fc-site-nav a[data-fc-drawer-contact] {
  margin-top: 0.5rem;
  justify-content: center;
  background: #d9c573;
  color: #0F2343 !important;
  font-weight: 600;
  border-radius: 2px;
  border-bottom: 0;
  padding: 0.85rem 1rem;
}


@media (min-width: 1024px) {
  .fc-nav-backdrop { display: none !important; }
  .fc-site-nav {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    transform: none !important;
    transition: none !important;
    pointer-events: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    overflow: visible !important;
  }
  .fc-site-nav a {
    border: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    font-size: 0.875rem !important;
  }
  .fc-site-nav a[data-fc-drawer-contact] { display: none !important; }
  .fc-nav-toggle { display: none !important; }
  .fc-site-cta { display: inline-flex !important; }
  .fc-site-actions .fc-site-lang,
  .fc-site-actions .fc-site-cta,
  .fc-site-actions .fc-nav-toggle { order: initial; }
}


/* === fc-guide-* hidden/internal guide card layout === */
.fc-guide-page {
  background:
    linear-gradient(180deg, rgba(247,245,240,0.92) 0%, rgba(251,250,247,0.96) 100%),
    radial-gradient(ellipse at 20% 0%, rgba(217,197,115,0.12), transparent 55%),
    radial-gradient(ellipse at 90% 40%, rgba(15,35,67,0.08), transparent 50%),
    var(--cream);
  padding: 2rem 1rem 3.5rem;
  min-height: 60vh;
}
.fc-guide-wrap {
  max-width: 72rem;
  margin: 0 auto;
}
.fc-guide-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(15,35,67,0.12), 0 2px 8px rgba(15,35,67,0.06);
  overflow: hidden;
}
.fc-guide-card-header {
  background: var(--navy);
  color: #fff;
  padding: 2rem 2rem 1.75rem;
  border-radius: 16px 16px 0 0;
}
.fc-guide-card-header .fc-guide-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}
.fc-guide-card-header h1 {
  margin: 0 0 0.75rem;
  color: #fff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.fc-guide-card-header .fc-guide-intro {
  margin: 0;
  color: rgba(247,245,240,0.88);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 48rem;
}
.fc-guide-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1.75rem 1.5rem 2.25rem;
}
@media (min-width: 900px) {
  .fc-guide-body {
    grid-template-columns: 1.85fr 1fr;
    gap: 2.5rem;
    padding: 2rem 2.25rem 2.75rem;
  }
  .fc-guide-body.fc-guide-body--solo {
    grid-template-columns: 1fr;
  }
}
.fc-guide-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  background: rgba(217,197,115,0.18);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
}
.fc-guide-main .fc-guide-section {
  margin: 0 0 1.6rem;
}
.fc-guide-main .fc-guide-section:last-child { margin-bottom: 0; }
.fc-guide-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.55rem;
  line-height: 1.35;
}
.fc-guide-section-title .fc-guide-num {
  color: var(--navy);
  margin-right: 0.15rem;
}
.fc-guide-main p,
.fc-guide-main li {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
}
.fc-guide-main p { margin: 0 0 0.75rem; }
.fc-guide-main ul, .fc-guide-main ol {
  margin: 0 0 0.85rem 1.15rem;
  padding: 0;
}
.fc-guide-main li { margin-bottom: 0.3rem; }
.fc-guide-main a {
  color: var(--navy);
  text-decoration-color: var(--gold);
}
.fc-guide-main h3, .fc-guide-main h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 1rem 0 0.4rem;
}
.fc-guide-callout {
  background: rgba(247,245,240,0.95);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin: 0.85rem 0 1rem;
}
.fc-guide-callout .fc-guide-callout-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.fc-guide-callout p { margin: 0; }
.fc-guide-steps {
  display: grid;
  gap: 0.65rem;
  margin: 0.75rem 0 1rem;
}
.fc-guide-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  border: 1px solid rgba(122,119,111,0.22);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: #fff;
}
.fc-guide-step-num {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 6px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fc-guide-step-body {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}
.fc-guide-sidebar {
  background: rgba(247,245,240,0.55);
  border-radius: 12px;
  padding: 1.15rem 1.15rem 1.35rem;
  align-self: start;
  border: 1px solid rgba(122,119,111,0.12);
}
.fc-guide-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.fc-guide-checklist li {
  position: relative;
  padding-left: 1.55rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink);
}
.fc-guide-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.fc-guide-sources {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(122,119,111,0.45);
}
.fc-guide-sources h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0 0 0.65rem;
}
.fc-guide-sources ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.fc-guide-sources a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  font-size: 0.92rem;
}
.fc-guide-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0.5rem 0 1rem;
  border-radius: 10px;
  border: 1px solid rgba(122,119,111,0.18);
}
.fc-guide-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
}
.fc-guide-table-wrap th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  padding: 0.65rem 0.85rem;
  font-weight: 500;
}
.fc-guide-table-wrap td {
  padding: 0.55rem 0.85rem;
  border-top: 1px solid rgba(122,119,111,0.15);
  color: var(--ink);
}
.fc-guide-link-group {
  margin: 0 0 1.4rem;
}
.fc-guide-link-group h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.55rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(217,197,115,0.35);
}
.fc-guide-link-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.fc-guide-link-group a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .fc-guide-page { padding: 1.15rem 0.7rem 2.5rem; }
  .fc-guide-card-header { padding: 1.4rem 1.15rem 1.25rem; }
  .fc-guide-body { padding: 1.25rem 1.05rem 1.75rem; gap: 1.5rem; }
}

/* === index contact section (match contact.html) === */
.fc-index-contact {
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;
  --radius: 4px;
  --radius-md: 6px;
  --font-display: "Cormorant Garamond", "Times New Roman", Times, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --paper: #FBFAF7;
  --transition: 0.2s ease;
  --max-content: 72rem;
  background: var(--cream);
  padding: var(--space-2xl) 0;
}
.fc-index-contact .container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.fc-index-contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}
.fc-index-contact .contact-details h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--space-md);
}
.fc-index-contact .contact-line { margin-bottom: var(--space-md); }
.fc-index-contact .contact-line .label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.fc-index-contact .contact-line a,
.fc-index-contact .contact-line p {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 400;
  margin: 0;
  text-decoration: none;
}
.fc-index-contact .contact-line a:hover { color: var(--gold); }
.fc-index-contact .divider {
  border: 0;
  border-top: 1px solid rgba(122,119,111,0.25);
}
.fc-index-contact .contact-form {
  background: #fff;
  border: 1px solid rgba(122, 119, 111, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.fc-index-contact .form-row { margin-bottom: var(--space-md); }
.fc-index-contact .form-row label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.fc-index-contact .form-row input,
.fc-index-contact .form-row select,
.fc-index-contact .form-row textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(122,119,111,0.25);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
}
.fc-index-contact .form-row input:focus,
.fc-index-contact .form-row select:focus,
.fc-index-contact .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.fc-index-contact .form-row textarea {
  min-height: 8rem;
  resize: vertical;
}
.fc-index-contact .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.fc-index-contact .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1.5px solid transparent;
  line-height: 1;
  cursor: pointer;
}
.fc-index-contact .btn-primary {
  background: var(--navy);
  color: #FBFAF7;
  border-color: var(--navy);
}
.fc-index-contact .btn-primary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}
.fc-index-contact .btn-primary:disabled { opacity: 0.7; cursor: wait; }
.fc-index-contact .form-note {
  font-size: 0.8rem;
  color: var(--stone);
  font-weight: 300;
  margin-top: var(--space-sm);
}
.fc-index-contact .form-success {
  display: none;
  background: #e8f5e9;
  color: #1b5e20;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}
.fc-index-contact .form-success.visible,
.fc-index-contact .form-success.visible[hidden] {
  display: block !important;
}
.fc-index-contact .form-error[hidden] { display: none !important; }
@media (max-width: 900px) {
  .fc-index-contact .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .fc-index-contact .form-row-2 { grid-template-columns: 1fr; }
}
