/* ==========================================================================
   Nadja Carolin Herber – Dozentin für Kammerrecht
   Design System: elegant & premium (Navy / Gold / Creme)
   ========================================================================== */

/* ---- 1. Design Tokens ---- */
:root {
  /* Colors */
  --navy-950: #0d1626;
  --navy-900: #16233f;
  --navy-800: #1e3159;
  --navy-700: #2b4372;
  --navy-600: #3c5690;

  --gold-700: #7a5c26;   /* AA-safe on white/cream/gold-100 for text & icons */
  --gold-600: #a9803f;
  --gold-500: #c69c5e;   /* decorative / button background */
  --gold-300: #e3c48f;
  --gold-100: #f4e9d8;

  --cream-50: #faf7f2;
  --cream-100: #f3ede2;
  --cream-200: #ece3d3;

  --white: #ffffff;
  --ink-900: #1e2430;
  --ink-700: #3b4250;
  --ink-500: #646c7a;
  --ink-300: #9aa1ac;

  --line: #e4dbc9;
  --line-on-navy: rgba(255, 255, 255, 0.14);

  /* Typography */
  --font-serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-100: 0.8125rem;
  --fs-200: 0.9375rem;
  --fs-300: 1rem;
  --fs-400: 1.125rem;
  --fs-500: 1.375rem;
  --fs-600: 1.75rem;
  --fs-700: 2.25rem;
  --fs-800: 2.75rem;
  --fs-900: 3.5rem;

  /* Spacing (8px rhythm) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Misc */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(13, 22, 38, 0.06);
  --shadow-md: 0 12px 32px rgba(13, 22, 38, 0.10);
  --shadow-lg: 0 24px 64px rgba(13, 22, 38, 0.16);

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- 2. Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-300);
  line-height: 1.7;
  color: var(--ink-900);
  background: var(--cream-50);
  min-height: 100dvh;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-900);
  text-wrap: balance;
}
h1 { font-size: var(--fs-800); }
h2 { font-size: var(--fs-700); }
h3 { font-size: var(--fs-500); }
h4 { font-size: var(--fs-400); font-family: var(--font-sans); font-weight: 600; }

p { color: var(--ink-700); }
p + p { margin-top: var(--sp-4); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

section { padding-block: var(--sp-9); }
@media (max-width: 720px) {
  section { padding-block: var(--sp-7); }
  h1 { font-size: var(--fs-700); }
  h2 { font-size: var(--fs-600); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-sans);
  font-size: var(--fs-100);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold-600);
  display: inline-block;
}

.section-head { max-width: 680px; margin-bottom: var(--sp-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: var(--fs-400); color: var(--ink-700); }

/* ---- 3. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-300);
  border: 1.5px solid transparent;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease), color 200ms var(--ease);
  min-height: 48px;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--gold-500); color: var(--navy-950); }
.btn-primary:hover { background: var(--gold-600); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--line-on-navy); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-ghost { background: transparent; border-color: var(--navy-900); color: var(--navy-900); }
.btn-ghost:hover { background: var(--navy-900); color: var(--white); }
.btn-block { width: 100%; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

/* ---- 4. Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 35, 63, 0.92);
  border-bottom: 1px solid var(--line-on-navy);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  color: var(--white);
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 500;
  padding-block: var(--sp-2);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { display: none; white-space: nowrap; margin-left: 0.5rem; }
@media (min-width: 1180px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1179px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: var(--sp-5);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
    overflow-y: auto;
  }
  .nav-links[data-open="true"] {
    opacity: 1; transform: translateY(0); visibility: visible;
  }
  .nav-links a { padding-block: var(--sp-4); border-bottom: 1px solid var(--line-on-navy); font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-cta { display: inline-flex; margin-top: var(--sp-5); }
}

/* ---- 5. Hero (full-bleed, full-screen photo) ---- */
:root { --header-h: 84px; }
.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,22,38,0.12) 0%, rgba(13,22,38,0.32) 45%, rgba(13,22,38,0.92) 100%),
    linear-gradient(90deg, rgba(13,22,38,0.85) 0%, rgba(13,22,38,0.15) 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-inline: 0;
  padding-left: clamp(1.5rem, 7vw, 6rem);
  padding-right: var(--sp-5);
  padding-block: var(--sp-9) var(--sp-8);
}
.hero h1 { color: var(--white); font-size: var(--fs-900); }
@media (max-width: 720px) { .hero h1 { font-size: var(--fs-800); } }
.hero .lead { color: rgba(255,255,255,0.88); margin-top: var(--sp-4); max-width: 46ch; }
.hero-actions { display: flex; gap: var(--sp-4); margin-top: var(--sp-6); flex-wrap: wrap; }
.hero-eyebrow { color: var(--gold-300); }
.hero-eyebrow::before { background: var(--gold-300); }

.hero-badge {
  position: absolute;
  z-index: 2;
  right: var(--sp-5);
  bottom: var(--sp-5);
  background: var(--gold-500);
  color: var(--navy-950);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  font-family: var(--font-serif);
  box-shadow: var(--shadow-md);
}
.hero-badge strong { display: block; font-size: 1.6rem; line-height: 1; }
.hero-badge span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-sans); font-weight: 600; }

@media (max-width: 720px) {
  .hero { min-height: calc(100dvh - 78px); }
  .hero-content { padding-block: var(--sp-7) var(--sp-7); }
  .hero-badge { right: var(--sp-4); bottom: var(--sp-4); padding: var(--sp-3) var(--sp-4); }
}

/* ---- 6. Stat strip ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  padding-block: var(--sp-7);
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); } }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-serif); font-size: var(--fs-700); color: var(--navy-900); }
.stat span { font-size: var(--fs-200); color: var(--ink-500); }

/* ---- 7. Quote ---- */
.quote-block {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
}
.quote-block .container { max-width: 880px; text-align: center; padding-block: var(--sp-9); }
.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--white);
}
.quote-block blockquote::before { content: "\201E"; color: var(--gold-500); }
.quote-block blockquote::after { content: "\201C"; color: var(--gold-500); }
.quote-cite {
  margin-top: var(--sp-5);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: var(--fs-200);
  color: var(--gold-300);
  letter-spacing: 0.04em;
}

/* ---- 8. Cards / Grid ---- */
.grid { display: grid; gap: var(--sp-6); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--gold-100);
  color: var(--gold-700);
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-4);
}
.card h3 { margin-bottom: var(--sp-2); }
.card p { color: var(--ink-500); font-size: var(--fs-200); }
.card a.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--sp-4); font-weight: 600; color: var(--navy-800); font-size: var(--fs-200); }
.card a.card-link:hover { color: var(--gold-700); }

.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  background: var(--gold-100);
  color: var(--gold-700);
  font-size: var(--fs-100);
  font-weight: 600;
  border: 1px solid var(--gold-300);
}
.tag-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ---- 9. Alternating band ---- */
.band { padding-block: var(--sp-9); }
.band-alt { background: var(--cream-100); }
.split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--sp-8);
  align-items: stretch;
  min-height: 520px;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--sp-6); min-height: 0; } }
.split-media { height: 100%; position: relative; }
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 22%;
  display: block;
}
@media (max-width: 900px) { .split-media { height: 340px; } }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split.reverse .split-media { order: -1; } }

/* ---- 7b. Photo + Quote (photo bleeds to the edge, blends into navy) ---- */
.photo-quote {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}
.photo-quote-media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 52%;
}
.photo-quote-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-quote-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-900) 0%, rgba(13,22,38,0.05) 42%, rgba(13,22,38,0) 60%);
}
.photo-quote .container { position: relative; z-index: 2; }
.photo-quote-text { max-width: 44ch; }
.photo-quote-text blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--white);
}
.photo-quote-text blockquote::before { content: "\201E"; color: var(--gold-500); }
.photo-quote-text blockquote::after { content: "\201C"; color: var(--gold-500); }
.photo-quote-text .quote-cite { margin-top: var(--sp-5); }
@media (max-width: 900px) {
  .photo-quote { display: block; padding-block: 0; min-height: 0; }
  .photo-quote-media { position: relative; inset: auto; width: 100%; height: 280px; }
  .photo-quote-media::after { background: linear-gradient(180deg, rgba(13,22,38,0) 45%, var(--navy-900) 100%); }
  .photo-quote-text { max-width: none; padding-block: var(--sp-7) var(--sp-7); }
}

/* ---- 10. Timeline (About) ---- */
.timeline { border-left: 2px solid var(--line); margin-left: 6px; }
.timeline-item { position: relative; padding: 0 0 var(--sp-6) var(--sp-6); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 2px solid var(--cream-50);
  box-shadow: 0 0 0 2px var(--gold-500);
}
.timeline-item .year { font-family: var(--font-serif); color: var(--navy-800); font-weight: 600; font-size: var(--fs-400); }

/* ---- 11. Accordion ---- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-2);
  font-family: var(--font-serif);
  font-size: var(--fs-500);
  color: var(--navy-900);
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::marker { content: ""; }
.acc-item summary .meta {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--fs-100);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-700);
  margin-top: 4px;
}
.acc-item summary .plus {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  position: relative;
  transition: transform 240ms var(--ease), background 240ms var(--ease);
}
.acc-item summary .plus::before, .acc-item summary .plus::after {
  content: "";
  position: absolute;
  background: var(--navy-900);
  transition: transform 240ms var(--ease), opacity 240ms var(--ease);
}
.acc-item summary .plus::before { width: 12px; height: 1.5px; }
.acc-item summary .plus::after { width: 1.5px; height: 12px; }
.acc-item[open] summary .plus { background: var(--gold-500); border-color: var(--gold-500); }
.acc-item[open] summary .plus::after { opacity: 0; transform: rotate(90deg); }
.acc-item[open] summary .plus::before { background: var(--navy-950); }
.acc-body { padding: 0 var(--sp-2) var(--sp-6); }
.acc-body p { color: var(--ink-700); }
.acc-body .topics {
  margin-top: var(--sp-5);
  columns: 2;
  column-gap: var(--sp-5);
}
@media (max-width: 640px) { .acc-body .topics { columns: 1; } }
.acc-body .topics li {
  position: relative;
  padding-left: var(--sp-5);
  font-size: var(--fs-200);
  color: var(--ink-700);
  margin-bottom: var(--sp-2);
  break-inside: avoid;
}
.acc-body .topics li::before {
  content: "";
  position: absolute; left: 0; top: 0.6em;
  width: 6px; height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
}
.acc-body .topics-title { font-weight: 600; color: var(--navy-800); margin-top: var(--sp-5); font-size: var(--fs-200); text-transform: uppercase; letter-spacing: 0.04em; }

.course-group-title {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  margin: var(--sp-8) 0 var(--sp-3);
}
.course-group-title h3 { color: var(--navy-900); }
.course-group-title span { color: var(--ink-300); font-size: var(--fs-200); }

.format-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
  max-width: 760px;
  margin-inline: auto;
}
@media (max-width: 720px) { .format-row { grid-template-columns: 1fr; } }
.format-row .card { text-align: center; }
.format-row .icon { margin-inline: auto; }
.grid-center .card { text-align: center; }
.grid-center .icon { margin-inline: auto; }
.grid-center .card-link { justify-content: center; }

/* ---- 12. Testimonial ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: var(--sp-7);
  box-shadow: var(--shadow-sm);
}
.testimonial-card p.quote { font-family: var(--font-serif); font-size: var(--fs-500); font-style: italic; color: var(--navy-900); }
.testimonial-card .author { margin-top: var(--sp-5); display: flex; align-items: center; gap: var(--sp-3); }
.testimonial-card .author .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-900); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 600;
}
.testimonial-card .author strong { display: block; color: var(--navy-900); font-size: var(--fs-300); }
.testimonial-card .author span { color: var(--ink-500); font-size: var(--fs-100); }

.marquee-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: var(--sp-6);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: flex;
  align-items: stretch;
  gap: var(--sp-5);
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}
.marquee-wrap:hover .marquee-track,
.marquee-wrap:focus-within .marquee-track,
.marquee-track.is-paused {
  animation-play-state: paused;
}
.marquee-track .testimonial-card { flex: 0 0 auto; width: min(420px, 82vw); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .testimonial-card { padding: var(--sp-5); }
  .testimonial-card p.quote { font-size: var(--fs-400); }
  .marquee-track .testimonial-card { width: 88vw; }
}

.reference-note {
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  color: var(--ink-500);
  font-size: var(--fs-200);
  text-align: center;
}

/* ---- 13. FAQ ---- */
.faq .acc-item summary { font-size: var(--fs-400); }

/* ---- 14. Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-8);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: var(--navy-900); color: var(--white); border-radius: var(--radius-lg); padding: var(--sp-7); }
.contact-info h3 { color: var(--white); }
.contact-info .lead { color: rgba(255,255,255,0.78); }
.contact-list { margin-top: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-list li { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact-list .ico {
  width: 40px; height: 40px; flex: none;
  border-radius: 50%;
  background: rgba(198,156,94,0.16);
  color: var(--gold-300);
  display: grid; place-items: center;
}
.contact-list a { color: var(--white); font-weight: 600; }
.contact-list a:hover { color: var(--gold-300); }
.contact-list span.label { display: block; font-size: var(--fs-100); color: var(--ink-300); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-notice {
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.contact-notice .ico {
  width: 40px; height: 40px; flex: none;
  border-radius: 50%;
  background: rgba(227,196,143,0.16);
  color: var(--gold-300);
  display: grid; place-items: center;
}
.contact-notice-label {
  display: block;
  font-size: var(--fs-100);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--sp-2);
}
.contact-notice p {
  font-size: var(--fs-100);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.contact-notice strong { color: rgba(255,255,255,0.95); font-weight: 600; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-7); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .contact-info, .form-card { padding: var(--sp-5); } }
.field { margin-bottom: var(--sp-5); }
.field label { display: block; font-size: var(--fs-200); font-weight: 600; color: var(--navy-900); margin-bottom: var(--sp-2); }
.field .req { color: var(--gold-700); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream-50);
  font-size: var(--fs-300);
  min-height: 48px;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316233f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.75rem;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold-600);
  background: var(--white);
}
.field .hint { font-size: var(--fs-100); color: var(--ink-500); margin-top: var(--sp-2); }
.form-note { font-size: var(--fs-100); color: var(--ink-500); margin-top: var(--sp-4); text-align: center; }
.form-success {
  display: none;
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  color: var(--gold-700);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-5);
  font-weight: 600;
}
.form-success.visible { display: block; }

/* ---- 15. CTA band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(198,156,94,0.25), transparent 55%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); }
.cta-band .lead { color: rgba(255,255,255,0.8); margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }
@media (max-width: 600px) { .cta-band { padding: var(--sp-6) var(--sp-5); } }

/* ---- 16. Footer ---- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.72); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-7);
  padding-block: var(--sp-8) var(--sp-6);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); } }
.footer-brand .brand-name { color: var(--white); }
.footer-grid p { color: rgba(255,255,255,0.6); font-size: var(--fs-200); margin-top: var(--sp-3); max-width: 34ch; }
.footer-grid h4 { color: var(--white); margin-bottom: var(--sp-4); font-size: var(--fs-300); }
.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-links a { font-size: var(--fs-200); color: rgba(255,255,255,0.68); }
.footer-links a:hover { color: var(--gold-300); }
.footer-bottom {
  border-top: 1px solid var(--line-on-navy);
  padding-block: var(--sp-5);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: var(--fs-100);
  color: rgba(255,255,255,0.5);
}

/* ---- 17. Page hero (inner pages) ---- */
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding-block: var(--sp-8);
}
.page-hero .eyebrow { color: var(--gold-300); }
.page-hero .eyebrow::before { background: var(--gold-300); }
.page-hero h1 { color: var(--white); font-size: var(--fs-800); }
.page-hero .lead { color: rgba(255,255,255,0.8); max-width: 60ch; margin-top: var(--sp-3); }
.breadcrumb { font-size: var(--fs-100); color: var(--gold-300); margin-bottom: var(--sp-4); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }

/* ---- 18. Legal pages ---- */
.legal { max-width: 800px; }
.legal h2 { margin-top: var(--sp-8); font-size: var(--fs-600); }
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin-top: var(--sp-6); font-size: var(--fs-400); }
.legal p, .legal li { color: var(--ink-700); }
.legal ul { list-style: disc; padding-left: 1.4em; margin-top: var(--sp-3); }
.legal li { margin-bottom: var(--sp-2); }
.legal .placeholder {
  background: var(--gold-100);
  color: var(--gold-700);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9em;
}

/* ---- 19. Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- 20. Skip link ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: var(--sp-3) var(--sp-5);
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---- 21. Back to top ---- */
.back-to-top {
  position: fixed;
  right: var(--sp-5);
  bottom: var(--sp-5);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
  z-index: 90;
  border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-600); color: var(--navy-950); }
