/* ============================================================
   CONTACT  —  /contact-us
   Sections: hero / form + rail / offices / why / faq / closing
============================================================ */

body { background: #fff; color: var(--navy); font-family: var(--font-sans); }


/* ------------------------------------------------------------
   1. HERO
------------------------------------------------------------ */
.ct-hero {
  position: relative;
  min-height: clamp(480px, 70vh, 640px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: #0b1e3d;
}
.ct-hero__bg { position: absolute; inset: 0; margin: 0; z-index: 0; }
.ct-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: ctDrift 28s ease-in-out infinite alternate;
}
@keyframes ctDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.10) translate3d(-1.5%, -1%, 0); }
}
.ct-hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(184,150,110,0.22), transparent 55%),
    linear-gradient(180deg, rgba(11,30,61,0.50) 0%, rgba(11,30,61,0.18) 35%, rgba(11,30,61,0.78) 100%),
    linear-gradient(90deg, rgba(11,30,61,0.6) 0%, rgba(11,30,61,0.10) 60%, rgba(11,30,61,0) 100%);
}
.ct-hero__inner {
  position: relative; z-index: 1;
  min-height: inherit;
  max-width: 1380px; margin: 0 auto;
  padding: clamp(140px, 16vw, 200px) clamp(20px, 5vw, 80px) clamp(48px, 6vw, 72px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.ct-hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(184,150,110,0.55);
  border-radius: 999px;
  background: rgba(184,150,110,0.12);
  backdrop-filter: blur(4px);
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 22px;
  width: max-content;
  max-width: 100%;
}
.ct-hero__chip-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,110,0.18);
  animation: ctPulse 1.6s ease-in-out infinite;
}
@keyframes ctPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(184,150,110,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(184,150,110,0.05); }
}
.ct-hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.026em;
  color: #fff;
  margin: 0 0 22px;
}
.ct-hero__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.ct-hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 clamp(28px, 3vw, 40px);
  max-width: 60ch;
}
/* "careers page" inline link in the hero sub (added 2026-06-10) —
   gold + underline so it reads as a link on the dark hero. */
.ct-hero__sub a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.25s ease;
}
.ct-hero__sub a:hover { color: #fff; }
.ct-hero__chips {
  display: inline-flex; flex-wrap: wrap; gap: 12px;
}
.ct-hero__quick {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  font-family: var(--font-sans);
  font-size: 0.86rem; font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.ct-hero__quick svg { width: 14px; height: 14px; color: var(--gold); }
.ct-hero__quick:hover { background: rgba(255,255,255,0.10); border-color: rgba(184,150,110,0.55); transform: translateY(-2px); }


/* ------------------------------------------------------------
   2. FORM SECTION
------------------------------------------------------------ */
.ct-form-sec {
  padding: clamp(60px, 7vw, 110px) clamp(20px, 5vw, 80px);
  background: #fff;
}
.ct-form-sec__wrap {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  /* 2026-06-10: contact rail removed — form now sits in a single
     centred column at a comfortable reading width. */
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
  gap: clamp(36px, 4vw, 80px);
  align-items: start;
}
@media (max-width: 1000px) { .ct-form-sec__wrap { grid-template-columns: 1fr; } }

/* LEFT COLUMN */
.ct-form__col { min-width: 0; }
.ct-form__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid rgba(184,150,110,0.45);
  padding-top: 12px;
  margin-bottom: 14px;
}
.ct-form__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 16px;
  max-width: 22ch;
}
.ct-form__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.ct-form__sub {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(11,30,61,0.7);
  margin: 0 0 clamp(28px, 3vw, 40px);
  max-width: 56ch;
}

/* FORM */
.ct-form {
  display: flex; flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  background: #f7f5f0;
  border-radius: 22px;
  border: 1px solid rgba(11,30,61,0.06);
}
.ct-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .ct-form__row { grid-template-columns: 1fr; } }

.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-field__lab {
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(11,30,61,0.7);
}
/* Required-field asterisk (2026-06-10) — gold, on-brand. Every field
   on the contact form is now compulsory. */
.ct-field__req {
  color: var(--gold);
  font-weight: 600;
  margin-left: 1px;
}
.ct-field input[type="text"],
.ct-field input[type="email"],
.ct-field input[type="tel"],
.ct-field input[type="number"],
.ct-field select,
.ct-field textarea {
  padding: 12px 16px;
  height: 48px;            /* explicit height so every field is identical */
  background: #fff;
  border: 1.5px solid rgba(11,30,61,0.14);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--navy);
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
/* Textarea overrides — free height */
.ct-field textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

/* Select — remove native arrow, inject custom SVG chevron */
.ct-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%230b1e3d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 44px;
  cursor: pointer;
}
/* Placeholder state (required select with empty value shows gray) */
.ct-field select:required:invalid { color: rgba(11,30,61,0.4); }
.ct-field select option:not([disabled]) { color: var(--navy); }

/* Focus */
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,110,0.15);
  background: #fffdf9;
}

/* Placeholder text */
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: rgba(11,30,61,0.38); }

/* Validation error highlight */
.ct-field input:user-invalid,
.ct-field select:user-invalid,
.ct-field textarea:user-invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12);
}

.ct-field--check {
  flex-direction: row; align-items: flex-start; gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(11,30,61,0.72);
  margin-top: 4px;
}
.ct-field--check input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.ct-form__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 24px;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.94rem; font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.35s ease, gap 0.35s ease, transform 0.35s ease;
}
.ct-form__btn svg { width: 13px; height: 10px; }
.ct-form__btn:hover { background: var(--gold); color: #0b1e3d; gap: 16px; transform: translateY(-2px); }

.ct-form__legal {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: rgba(11,30,61,0.55);
  margin: 4px 0 0;
  line-height: 1.5;
  text-align: center;
}

/* Success / error banners */
.ct-form__banner {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  font-family: var(--font-sans);
}
.ct-form__banner--ok  { background: #e8f5e9; border: 1px solid #a5d6a7; color: #1b5e20; }
.ct-form__banner--err { background: #fce4ec; border: 1px solid #f48fb1; color: #880e4f; }


/* RIGHT RAIL */
.ct-rail {
  position: sticky;
  top: 100px;
  display: flex; flex-direction: column;
  gap: clamp(16px, 1.8vw, 22px);
}
@media (max-width: 1000px) { .ct-rail { position: static; } }

.ct-rail__card {
  padding: clamp(22px, 2.4vw, 32px);
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(11,30,61,0.06);
  box-shadow: 0 1px 2px rgba(11,30,61,0.04);
}

.ct-rail__card--primary {
  background: linear-gradient(165deg, #0b1e3d 0%, #14305b 100%);
  border-color: rgba(184,150,110,0.30);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ct-rail__card--primary::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(184,150,110,0.28), transparent 55%);
  pointer-events: none;
}
.ct-rail__chip {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(184,150,110,0.55);
  border-radius: 999px;
  background: rgba(184,150,110,0.12);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.ct-rail__chip-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,110,0.18);
  animation: ctPulse 1.6s ease-in-out infinite;
}
.ct-rail__title {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0 0 8px;
}
.ct-rail__desc {
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0 0 18px;
}
.ct-rail__list {
  position: relative;
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 14px;
}
.ct-rail__line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 10px 4px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, padding 0.35s ease;
}
.ct-rail__line:hover { background: rgba(255,255,255,0.06); padding-left: 10px; }
.ct-rail__lab {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.ct-rail__val {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: #fff;
  font-weight: 500;
}

/* Secondary card (white) */
.ct-rail__card:not(.ct-rail__card--primary) .ct-rail__lab {
  color: var(--gold);
}
.ct-rail__lab--top {
  display: block;
  font-size: 0.66rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(184,150,110,0.45);
  width: max-content;
}
.ct-rail__card:not(.ct-rail__card--primary) .ct-rail__lab--top:first-child { padding-top: 0; border-top: 0; }
.ct-rail__hq {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0 0 16px;
}
.ct-rail__hours {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: rgba(11,30,61,0.7);
  margin: 0 0 18px;
}
.ct-rail__social {
  display: inline-flex; gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(11,30,61,0.08);
  width: 100%;
}
.ct-rail__sicon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: #f7f5f0;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.ct-rail__sicon svg { width: 14px; height: 14px; }
.ct-rail__sicon:hover { background: var(--navy); color: var(--gold); transform: translateY(-2px); }


/* ------------------------------------------------------------
   3. OFFICES
------------------------------------------------------------ */
.ct-offices {
  padding: clamp(80px, 9vw, 130px) clamp(20px, 5vw, 80px);
  background: #f7f5f0;
}
.ct-offices__head {
  max-width: 1380px; margin: 0 auto clamp(36px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: end;
}
@media (max-width: 900px) { .ct-offices__head { grid-template-columns: 1fr; } }
.ct-offices__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid rgba(184,150,110,0.45);
  padding-top: 12px;
  margin-bottom: 14px;
}
.ct-offices__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}
.ct-offices__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.ct-offices__note {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(11,30,61,0.65);
  margin: 0;
  max-width: 50ch;
}

.ct-offices__grid {
  list-style: none;
  margin: 0 auto; padding: 0;
  max-width: 1380px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
}
@media (max-width: 1100px) { .ct-offices__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ct-offices__grid { grid-template-columns: 1fr; } }

.ct-office {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid rgba(11,30,61,0.05);
  border-radius: 16px;
  overflow: hidden;
  outline: none;
  box-shadow: 0 1px 2px rgba(11,30,61,0.04);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease, box-shadow 0.5s cubic-bezier(0.16,1,0.3,1);
}
.ct-office:hover, .ct-office:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(184,150,110,0.55);
  box-shadow: 0 28px 56px -22px rgba(11,30,61,0.30), 0 0 0 4px rgba(184,150,110,0.10);
}

.ct-office--hq { grid-column: span 1; }
.ct-office--hq .ct-office__media::after {
  content: "HQ";
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--gold);
  color: #0b1e3d;
  font-family: var(--font-sans);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.14em;
}

.ct-office__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ececea;
}
.ct-office__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.16,1,0.3,1);
}
.ct-office:hover .ct-office__media img { transform: scale(1.06); }
.ct-office__city {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.ct-office__copy {
  padding: clamp(20px, 2vw, 26px);
  display: flex; flex-direction: column;
  gap: 14px;
  flex: 1;
}
.ct-office__tag {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.ct-office__addr {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(11,30,61,0.78);
  margin: 0;
}
.ct-office__lines {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(11,30,61,0.08);
}
.ct-office__lines a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 4px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: rgba(11,30,61,0.75);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}
.ct-office__lines a:hover { background: #f7f5f0; color: var(--navy); }
.ct-office__lines svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

.ct-office__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(11,30,61,0.05);
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
}
.ct-office__cta svg { width: 12px; height: 12px; }
.ct-office__cta:hover { background: var(--navy); color: #fff; gap: 12px; }
.ct-office__cta:hover svg { color: var(--gold); }


/* ------------------------------------------------------------
   4. WHY
------------------------------------------------------------ */
.ct-why {
  padding: clamp(60px, 7vw, 110px) clamp(20px, 5vw, 80px);
  background: #fff;
}
.ct-why__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 32px);
}
@media (max-width: 800px) { .ct-why__grid { grid-template-columns: 1fr; } }
.ct-why__cell {
  position: relative;
  padding: clamp(24px, 2.4vw, 36px);
  border-radius: 16px;
  background: #f7f5f0;
  border: 1px solid rgba(11,30,61,0.05);
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}
.ct-why__cell:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(184,150,110,0.45);
}
.ct-why__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.ct-why__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0;
}
.ct-why__desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(11,30,61,0.7);
  margin: 0;
}


/* ------------------------------------------------------------
   5. FAQ
------------------------------------------------------------ */
.ct-faq {
  padding: clamp(60px, 7vw, 110px) clamp(20px, 5vw, 80px);
  background: #f7f5f0;
}
.ct-faq__head {
  max-width: 920px; margin: 0 auto clamp(28px, 3vw, 44px);
  text-align: center;
}
.ct-faq__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid rgba(184,150,110,0.45);
  padding-top: 12px;
  margin-bottom: 14px;
}
.ct-faq__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}
.ct-faq__title em { font-style: italic; font-weight: 400; color: var(--gold); }

.ct-faq__list {
  max-width: 920px; margin: 0 auto;
  border-top: 1px solid rgba(11,30,61,0.10);
}
.ct-faq__item { border-bottom: 1px solid rgba(11,30,61,0.10); }
.ct-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 4px;
  display: grid;
  grid-template-columns: 36px 1fr 28px;
  gap: 14px;
  align-items: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--navy);
  letter-spacing: -0.005em;
  transition: color 0.3s ease;
}
.ct-faq__q::-webkit-details-marker { display: none; }
.ct-faq__q:hover { color: var(--gold); }
.ct-faq__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
}
.ct-faq__caret {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(11,30,61,0.06);
  color: var(--navy);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), background 0.3s ease, color 0.3s ease;
}
.ct-faq__caret svg { width: 12px; height: 12px; }
.ct-faq__item[open] .ct-faq__caret {
  transform: rotate(180deg);
  background: var(--gold);
  color: #0b1e3d;
}
.ct-faq__a {
  padding: 0 4px 22px 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(11,30,61,0.72);
}
.ct-faq__a p { margin: 0; }


/* ------------------------------------------------------------
   6. CLOSING
------------------------------------------------------------ */
.ct-close {
  padding: clamp(60px, 7vw, 110px) clamp(20px, 5vw, 80px);
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ct-close::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse at 80% 30%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at 80% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.ct-close__wrap {
  position: relative;
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.ct-close__line {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.ct-close__line em { font-style: italic; font-weight: 400; color: var(--gold); }
.ct-close__cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  background: var(--gold);
  color: #0b1e3d;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.88rem; font-weight: 500;
  text-decoration: none;
  transition: background 0.35s ease, gap 0.35s ease, transform 0.35s ease;
}
.ct-close__cta svg { width: 13px; height: 10px; }
.ct-close__cta:hover { background: #cba883; gap: 16px; transform: translateY(-2px); }
