/* =====================================================
   LEGAL BUFETE — Design System
   Palette: Navy (#0A1F3F) + Gold (#C9A961) + Cream (#F7F2E8)
   Typography: Cormorant Garamond (display) + Inter (body)
   ===================================================== */

:root {
  /* Core palette */
  --navy-900: #06152C;
  --navy-800: #0A1F3F;
  --navy-700: #122A52;
  --navy-600: #1E3B6E;
  --navy-500: #2C4E8A;
  --gold-500: #C9A961;
  --gold-400: #D4B673;
  --gold-600: #A88845;
  --gold-soft: #E8DCBE;
  --cream-100: #FBF8F2;
  --cream-200: #F7F2E8;
  --cream-300: #EFE7D3;
  --ink-900: #121418;
  --ink-700: #2B2F36;
  --ink-500: #5A6275;
  --ink-400: #8A92A3;
  --ink-300: #B8BDC9;
  --line: #E3DED2;
  --white: #FFFFFF;
  --off-white: #FAFAFA;

  /* Type scale */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Spacing scale (8pt) */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4rem;
  --s7: 6rem;
  --s8: 8rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 960px;
  --radius-sm: 2px;
  --radius-md: 4px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(10,31,63,0.06), 0 2px 8px rgba(10,31,63,0.04);
  --shadow-md: 0 4px 12px rgba(10,31,63,0.08), 0 8px 32px rgba(10,31,63,0.06);
  --shadow-lg: 0 12px 32px rgba(10,31,63,0.14), 0 24px 64px rgba(10,31,63,0.08);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========== RESET =========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; color: inherit; }

/* =========== TYPOGRAPHY =========== */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 var(--s3);
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4.75rem); font-weight: 500; letter-spacing: -0.015em; }
h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2vw, 1.875rem); }
h4 { font-size: 1.25rem; font-weight: 600; }
p  { margin: 0 0 var(--s3); }
.lead { font-size: 1.175rem; line-height: 1.7; color: var(--ink-500); max-width: 62ch; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s3);
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold-500);
}
.script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-600);
}

/* =========== LAYOUT =========== */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}
.container-narrow { width: min(var(--container-narrow), 100% - 3rem); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--navy { background: var(--navy-800); color: var(--cream-100); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--cream-100); }
.section--cream { background: var(--cream-200); }

/* Grid helpers */
.grid { display: grid; gap: var(--s4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* =========== ANNOUNCEMENT BAR =========== */
.announce {
  background: var(--navy-900);
  color: var(--cream-100);
  font-size: 0.8125rem;
  padding: 0.55rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s3);
  letter-spacing: 0.02em;
}
.announce a { color: var(--gold-400); border-bottom: 1px solid transparent; transition: border-color .2s; }
.announce a:hover { border-color: var(--gold-400); }
.announce__left { display: flex; gap: var(--s4); align-items: center; }
.announce__lang { display: flex; gap: 0; align-items: center; }
.announce__lang a {
  padding: 0 0.6rem;
  opacity: 0.7;
}
.announce__lang a.is-active { opacity: 1; color: var(--gold-400); }
.announce__lang .sep { opacity: 0.35; }
@media (max-width: 720px) {
  .announce__hide-mobile { display: none; }
}

/* =========== HEADER / NAV =========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: var(--s4);
}
.nav__brand { display: flex; align-items: center; }
.nav__brand svg { height: 46px; width: auto; }
.nav__menu {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-800);
  position: relative;
  padding: 0.35rem 0;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav__menu a:hover::after,
.nav__menu a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__cta {
  background: var(--navy-800);
  color: var(--cream-100);
  padding: 0.85rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--navy-800);
  transition: all .3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__cta:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy-800);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu.is-open,
  .nav__cta.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: var(--s4);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav__menu.is-open { gap: var(--s3); }
  .nav__cta.is-open { margin-top: -1px; padding: 1rem; text-align: center; justify-content: center; }
}

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.btn--primary:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn--ghost:hover {
  background: var(--navy-800);
  color: var(--cream-100);
}
.btn--ghost-light {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(247, 242, 232, 0.4);
}
.btn--ghost-light:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-800);
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 0.3rem;
  transition: all .3s var(--ease);
}
.link-arrow:hover { color: var(--gold-600); gap: 0.85rem; }

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-800);
  color: var(--cream-100);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(201, 169, 97, 0.14), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(30, 59, 110, 0.7), transparent 60%),
    linear-gradient(135deg, #06152C 0%, #0A1F3F 50%, #122A52 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 97, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 97, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__content {
  padding: clamp(5rem, 12vw, 8rem) 0;
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}
.hero__eyebrow::before {
  content: ''; width: 48px; height: 1px;
  background: var(--gold-500);
}
.hero h1 {
  color: var(--cream-100);
  font-weight: 400;
  margin-bottom: var(--s4);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 400;
}
.hero__lead {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  color: rgba(247, 242, 232, 0.82);
  max-width: 58ch;
  line-height: 1.7;
  margin-bottom: var(--s5);
}
.hero__cta-row {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  align-items: center;
}
.hero__meta {
  position: absolute;
  bottom: var(--s5);
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  gap: var(--s4);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.55);
}
.hero__meta-divider {
  position: absolute;
  bottom: calc(var(--s5) + 2rem);
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
}
@media (max-width: 720px) {
  .hero__meta { position: static; margin-top: var(--s5); flex-direction: column; gap: var(--s2); }
  .hero__meta-divider { display: none; }
}

/* =========== TRUST STRIP =========== */
.trust-strip {
  background: var(--cream-100);
  border-bottom: 1px solid var(--line);
  padding: 2.25rem 0;
}
.trust-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s4);
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}
.trust-strip__item strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: -0.01em;
  text-transform: none;
}
.trust-strip__divider {
  width: 1px;
  height: 42px;
  background: var(--line);
}
@media (max-width: 840px) {
  .trust-strip__divider { display: none; }
  .trust-strip__inner { justify-content: center; }
}

/* =========== SECTION HEAD =========== */
.section-head { max-width: 720px; margin-bottom: var(--s6); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* =========== VALUE PROPS =========== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value-card {
  padding: var(--s5) var(--s4);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background .3s var(--ease);
}
.value-card:hover { background: var(--cream-100); }
.value-card__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-600);
  margin-bottom: var(--s2);
  display: block;
}
.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--s2);
}
.value-card p { margin: 0; color: var(--ink-500); font-size: 0.95rem; line-height: 1.65; }
@media (max-width: 960px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .value-grid { grid-template-columns: 1fr; } }

/* =========== PRACTICE AREAS =========== */
.areas {
  background: var(--cream-200);
  position: relative;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: var(--s5);
}
.area-card {
  background: var(--white);
  padding: clamp(2rem, 3.5vw, 3rem);
  border: 1px solid var(--line);
  margin-left: -1px;
  margin-top: -1px;
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.area-card:hover {
  background: var(--navy-800);
  color: var(--cream-100);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.area-card:hover::before { transform: scaleX(1); }
.area-card:hover h3,
.area-card:hover .area-card__num,
.area-card:hover .area-card__link { color: var(--gold-400); }
.area-card:hover .area-card__desc,
.area-card:hover .area-card__list li { color: rgba(247, 242, 232, 0.75); }
.area-card__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-600);
  font-size: 1rem;
  margin-bottom: var(--s3);
  transition: color .3s;
}
.area-card h3 {
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  margin-bottom: var(--s2);
  color: var(--navy-800);
  transition: color .3s;
}
.area-card__desc {
  color: var(--ink-500);
  font-size: 0.95rem;
  margin-bottom: var(--s3);
  transition: color .3s;
}
.area-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s4);
  font-size: 0.875rem;
  color: var(--ink-500);
  transition: color .3s;
  flex-grow: 1;
}
.area-card__list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.area-card__list li:first-child { border-top: 0; }
.area-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-500);
}
.area-card:hover .area-card__list li { border-top-color: rgba(201, 169, 97, 0.15); }
.area-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: all .3s;
}
.area-card:hover .area-card__link { gap: 0.85rem; }
@media (max-width: 720px) { .areas-grid { grid-template-columns: 1fr; } }

/* =========== ABOUT / SPLIT =========== */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split__visual {
  position: relative;
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, var(--navy-700), var(--navy-800));
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.2);
}
.split__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 169, 97, 0.2), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(201, 169, 97, 0.08), transparent 45%);
}
.split__visual-quote {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cream-100);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.split__visual-quote::before {
  content: '“';
  display: block;
  font-size: 6rem;
  color: var(--gold-400);
  line-height: 0.4;
  margin-bottom: 1.5rem;
}
.split__visual-caption {
  position: absolute;
  bottom: var(--s4);
  left: 10%; right: 10%;
  padding-top: var(--s2);
  border-top: 1px solid rgba(201, 169, 97, 0.35);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, 0.55);
}
.split__content .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s5);
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
}
.stat__value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 0.35rem;
}
.stat__value em { color: var(--gold-600); font-style: italic; font-weight: 400; }
.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}
@media (max-width: 620px) {
  .split__content .stats { grid-template-columns: 1fr; gap: var(--s3); }
}

/* =========== APPROACH / PILLARS =========== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: var(--s5);
}
.pillar {
  padding: var(--s4) 0;
  border-top: 1px solid rgba(247, 242, 232, 0.2);
}
.pillar__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-400);
  margin-bottom: var(--s3);
  display: block;
}
.pillar h4 {
  color: var(--cream-100);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--s2);
  letter-spacing: -0.005em;
}
.pillar p {
  color: rgba(247, 242, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 960px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pillars { grid-template-columns: 1fr; } }

/* =========== INSIGHTS =========== */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s5);
}
.insight {
  padding: var(--s4) 0;
  border-top: 2px solid var(--navy-800);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.insight__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}
.insight__meta .tag { color: var(--gold-600); }
.insight h3 {
  font-size: 1.375rem;
  line-height: 1.3;
  margin-bottom: var(--s2);
}
.insight p {
  color: var(--ink-500);
  font-size: 0.95rem;
  margin-bottom: var(--s3);
  flex-grow: 1;
}
.insight__link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-800);
  display: inline-flex;
  gap: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--gold-500);
  width: fit-content;
  transition: gap .3s;
}
.insight__link:hover { gap: 0.85rem; color: var(--gold-600); }
@media (max-width: 880px) { .insights-grid { grid-template-columns: 1fr; } }

/* =========== FAQ =========== */
.faq-list {
  max-width: 880px;
  margin: var(--s5) auto 0;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  padding: var(--s4) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy-800);
  transition: color .25s;
}
.faq-item summary:hover { color: var(--gold-600); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 22px; height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A961' stroke-width='1.5'><line x1='12' y1='4' x2='12' y2='20'/><line x1='4' y1='12' x2='20' y2='12'/></svg>");
  background-size: contain;
  transition: transform .35s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__content {
  padding: 0 0 var(--s4);
  color: var(--ink-500);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 78ch;
}
.faq-item__content p:last-child { margin-bottom: 0; }

/* =========== CONTACT =========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.contact-info__item {
  padding: var(--s3) 0;
  border-top: 1px solid rgba(247, 242, 232, 0.18);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--s3);
  align-items: baseline;
}
.contact-info__item:last-of-type { border-bottom: 1px solid rgba(247, 242, 232, 0.18); }
.contact-info__label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 500;
}
.contact-info__value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--cream-100);
  line-height: 1.35;
}
.contact-info__value a { border-bottom: 1px solid transparent; transition: border-color .25s; }
.contact-info__value a:hover { border-color: var(--gold-400); color: var(--gold-400); }
.contact-info__small {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(247, 242, 232, 0.75);
}

/* Contact form */
.form-card {
  background: var(--cream-100);
  color: var(--ink-700);
  padding: clamp(2rem, 3.5vw, 3rem);
  border-top: 2px solid var(--gold-500);
}
.form-card h3 {
  font-size: 1.75rem;
  color: var(--navy-800);
  margin-bottom: var(--s2);
}
.form-card p { color: var(--ink-500); font-size: 0.95rem; margin-bottom: var(--s4); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin-bottom: var(--s3);
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--ink-900);
  font-family: inherit;
  transition: border-color .25s;
  border-radius: 0;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--navy-800);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A1F3F' stroke-width='1.5'><polyline points='6,9 12,15 18,9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 18px;
  padding-right: 2rem;
}
.form-consent {
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin: var(--s2) 0 var(--s4);
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  line-height: 1.5;
}
.form-consent input { margin-top: 0.35rem; accent-color: var(--navy-800); }
.form-consent a { color: var(--navy-800); border-bottom: 1px solid var(--gold-500); }
.form-card button[type=submit] {
  width: 100%;
}

/* =========== CTA BANNER =========== */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(10, 31, 63, 0.96), rgba(18, 42, 82, 0.98)),
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.2), transparent 50%);
  color: var(--cream-100);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 400px; height: 400px;
  border: 1px solid rgba(201, 169, 97, 0.08);
  border-radius: 50%;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: var(--s5);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 780px) {
  .cta-banner__inner { grid-template-columns: 1fr; }
}
.cta-banner h2 {
  color: var(--cream-100);
  font-weight: 400;
  margin: 0;
}
.cta-banner h2 em { color: var(--gold-400); font-style: italic; }
.cta-banner__text { color: rgba(247, 242, 232, 0.75); margin: var(--s3) 0 0; max-width: 52ch; }

/* =========== FOOTER =========== */
.site-footer {
  background: var(--navy-900);
  color: rgba(247, 242, 232, 0.75);
  padding: var(--s7) 0 var(--s4);
  font-size: 0.9rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--s5);
  padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(247, 242, 232, 0.1);
}
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; gap: var(--s4); } }
.footer-brand svg { height: 54px; margin-bottom: var(--s3); }
.footer-brand p { color: rgba(247, 242, 232, 0.6); font-size: 0.9rem; max-width: 32ch; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 var(--s3);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a:hover { color: var(--gold-400); }
.footer-contact address {
  font-style: normal;
  line-height: 1.7;
  color: rgba(247, 242, 232, 0.75);
  margin-bottom: var(--s2);
}
.footer-bottom {
  padding-top: var(--s3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
  font-size: 0.8125rem;
  color: rgba(247, 242, 232, 0.5);
  letter-spacing: 0.03em;
}
.footer-bottom a { color: rgba(247, 242, 232, 0.7); }
.footer-bottom a:hover { color: var(--gold-400); }

/* =========== PAGE HEADER (sub pages) =========== */
.page-hero {
  background: var(--navy-800);
  color: var(--cream-100);
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 90% 20%, rgba(201, 169, 97, 0.1), transparent 50%);
}
.page-hero__inner { position: relative; }
.page-hero h1 {
  color: var(--cream-100);
  font-weight: 400;
  margin-bottom: var(--s3);
}
.page-hero__lead { color: rgba(247, 242, 232, 0.78); max-width: 60ch; font-size: 1.125rem; }
.breadcrumbs {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--s3);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.breadcrumbs a { opacity: 0.7; transition: opacity .2s; }
.breadcrumbs a:hover { opacity: 1; }
.breadcrumbs span { opacity: 0.45; }

/* =========== UTILS =========== */
.u-center { text-align: center; }
.u-mt-0 { margin-top: 0 !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =========== ACCESSIBILITY =========== */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
