:root {
  --navy: #16182f;
  --navy-2: #1c203c;
  --nav: rgba(58, 61, 102, .92);
  --gold: #c9a45b;
  --text: #6a6a6a;
  --heading: #1a1d36;
  --muted: #bdbdbd;
  --white: #fff;
  --max: 1140px;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #c9a45b #121428;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track { background: #121428; }
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e0c27a, #c9a45b);
  border-radius: 8px;
  border: 2px solid #121428;
}
body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: var(--muted);
  font-size: 15px;
  padding: 18px 0;
}
.topbar a { color: var(--muted); text-decoration: none; }
.topbar-inner, .copyright-inner, .header-row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar .dot { color: var(--muted); }
.topbar i { margin-right: 6px; }

.site-header { background: var(--navy-2); }
.overlay-header { background: transparent; }
.header-row { padding: 28px 0 10px; }
.logo { display: inline-flex; align-items: center; }
.logo img {
  width: 248px;
  max-width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: contrast(1.12) saturate(1.18);
}
.overlay-header .logo img {
  width: 268px;
  mix-blend-mode: screen;
  filter: contrast(1.18) saturate(1.22);
}
.header-stats { display: flex; gap: 28px; color: #fff; }
.header-stats .stat { display: flex; gap: 12px; align-items: center; }
.header-stats i { font-size: 28px; color: var(--gold); }
.header-stats strong { display: block; font-size: 16px; }
.header-stats span { font-size: 13px; color: #d7d7d7; }

.nav-bar {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(38,42,78,.62), rgba(14,16,36,.86));
  min-height: 62px;
  padding: 0 14px 0 8px;
  border: 1px solid rgba(201,164,91,.48);
  border-radius: 2px;
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 44px rgba(8,10,24,.32), inset 0 1px 0 rgba(255,255,255,.1);
}
.menu { display: flex; gap: 0; list-style: none; margin: 0 0 0 4px; padding: 0; }
.menu a {
  display: block;
  color: #f4f1e8;
  text-decoration: none;
  padding: 22px 20px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  position: relative;
}
.menu a:after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 11px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.menu a.is-active, .menu a:hover { color: var(--gold); }
.menu a.is-active:after, .menu a:hover:after { transform: scaleX(1); }
.search-open, .nav-toggle {
  background: none; border: 0; color: var(--gold); font-size: 15px; cursor: pointer;
}
.search-open {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(201,164,91,.55);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), transparent 48%),
    rgba(201,164,91,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}
.search-open:hover { background: rgba(201,164,91,.2); color: #e6c37a; }
.nav-book {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), transparent 48%),
    rgba(201,164,91,.1);
  border: 1px solid rgba(201,164,91,.55);
  border-radius: 99px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-book:hover,
.nav-book.is-active {
  background:
    linear-gradient(180deg, rgba(255,255,255,.2), transparent 48%),
    rgba(201,164,91,.22);
  color: #e6c37a;
}
.nav-drawer { display: contents; }
.nav-drawer-head, .nav-book-drawer { display: none; }
.nav-backdrop { display: none; }
.nav-toggle { display: none; }
.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  display: block; width: 22px; height: 2px; background: #fff; content: "";
}
.nav-toggle span { position: relative; }
.nav-toggle span:before, .nav-toggle span:after { position: absolute; left: 0; }
.nav-toggle span:before { top: -7px; }
.nav-toggle span:after { top: 7px; }

.hero-home { background-size: cover; background-position: center; }
.hero-spacer { height: 340px; }
.hero-slider {
  position: relative;
  min-height: calc(100vh - 62px);
  min-height: calc(100svh - 62px);
  overflow: hidden;
  color: #fff;
  background: #121428;
}
body.home .topbar {
  position: absolute;
  left: 0; right: 0;
  z-index: 6;
  background: linear-gradient(180deg, rgba(10,12,28,.72), rgba(12,14,32,0));
  padding: 14px 0;
}
body.home .hero-slider {
  min-height: 100vh;
  min-height: 100svh;
}
body.home .hero-chrome { padding-top: 58px; }
body.home .intro-band {
  margin-top: 0;
  padding: 0;
  background: #10121f;
}
body.home .hero-slide-copy { top: 46%; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-slide-bg {
  position: absolute; inset: -6%;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: brightness(.52) saturate(.88) contrast(1.05);
}
.hero-slide.is-active .hero-slide-bg {
  animation: heroKen 16s ease-out forwards;
}
@keyframes heroKen {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}
.hero-slide:after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,10,22,.78) 0%, rgba(12,14,32,.55) 38%, rgba(8,10,22,.82) 100%),
    linear-gradient(90deg, rgba(8,10,22,.35), transparent 42%);
  z-index: 1;
}
.hero-slide:nth-child(n+2) .hero-slide-bg {
  filter: brightness(.82) saturate(.96) contrast(1.04);
}
.hero-slide:nth-child(n+2):after {
  background:
    linear-gradient(180deg, rgba(8,10,22,.48) 0%, rgba(12,14,32,.22) 42%, rgba(8,10,22,.5) 100%),
    linear-gradient(90deg, rgba(8,10,22,.12), transparent 50%);
}
.hero-chrome {
  position: relative;
  z-index: 4;
}
.hero-slide-copy {
  position: absolute;
  left: 0; right: 0;
  top: 46%;
  z-index: 2;
  text-align: left;
}
.hero-slide-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px;
  max-width: 16ch;
  line-height: 1.15;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.hero-slide-copy p {
  font-size: 20px;
  color: #f3f1ea;
  margin: 0 0 22px;
}
.btn.gold {
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px; height: 52px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 44px;
  cursor: pointer;
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(8,10,24,.45));
}
.hero-arrow.prev { left: 40px; }
.hero-arrow.next { right: 56px; }
.hero-arrow:hover { color: #e6c37a; }
.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.consent-embed {
  min-height: 380px;
  background: #16182f;
  display: grid;
  place-items: center;
}
.consent-embed iframe { width: 100%; height: 380px; border: 0; display: block; }
.consent-embed__placeholder {
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}
.consent-embed.is-loaded .consent-embed__placeholder { display: none; }
.page-hero {
  background: var(--navy) center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 136px 0 130px;
}
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 51px;
  margin: 0;
  font-weight: 700;
}
.page-hero .caption {
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.intro-band { margin-top: -70px; position: relative; z-index: 2; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.4fr; min-height: 280px; }
.intro-title-card {
  background: linear-gradient(160deg, #2a3160 0%, #16182f 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  padding: 48px 48px 56px;
  border-right: 4px solid var(--gold);
}
.intro-title-card .fa {
  font-size: 42px;
  color: var(--gold);
  opacity: .92;
}
.intro-title-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5.6vw, 76px);
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
  line-height: 1.05;
  letter-spacing: .01em;
}
.intro-copy {
  background: #1a1d36 center/cover no-repeat;
  color: #fff;
}
.intro-copy-inner { padding: 40px; background: rgba(18, 21, 40, .78); height: 100%; }
.intro-copy h4 { margin-top: 0; letter-spacing: 1px; }
.signature { display: flex; align-items: center; gap: 16px; margin-top: 20px; }
.signature span { color: #cfcfcf; font-size: 13px; }

.section { padding: 80px 0; }
.section.alt { background: linear-gradient(180deg, #f6f4ef 0%, #fbf8f2 100%); }
.reviews blockquote {
  margin: 0; padding: 28px 32px; background: #fff; border-left: 4px solid var(--gold);
  box-shadow: 0 16px 40px rgba(18,20,42,.06);
}
.consult-form, .contact-form {
  background: rgba(18, 20, 42, .55);
  padding: 28px;
  border: 1px solid rgba(201,164,91,.28);
  backdrop-filter: blur(8px);
}
.contact-form { background: #fff; border: 1px solid #ece7dc; box-shadow: 0 18px 40px rgba(18,20,42,.06); }
.consult-form input, .consult-form select, .consult-form textarea {
  background: rgba(255,255,255,.96);
}

.site-footer { background: #111318; color: #c9c9d4; padding-top: 72px; }
.site-footer h3 { color: #fff; font-size: 22px; margin: 0 0 18px; }
.footer-grid { grid-template-columns: .9fr 1fr 1.4fr; align-items: start; }
.footer-phone { font-size: 18px; margin-bottom: 8px; }
.footer-social-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 18px; }
.footer-social, .topbar-social { display: flex; gap: 14px; }
.footer-social { margin-top: 0; }
.footer-social a, .topbar-social a { color: #b5bbe0; font-size: 16px; }
.topbar-social a { color: var(--muted); }
.gdpr-tip { position: relative; }
.gdpr-tip__btn {
  background: transparent;
  border: 1px solid rgba(201,164,91,.45);
  color: var(--gold);
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font: inherit;
}
.gdpr-tip__btn i { color: var(--gold); font-size: 16px; }
.gdpr-tip__box {
  position: absolute;
  left: calc(100% + 12px);
  bottom: 0;
  width: min(280px, 62vw);
  background: #1c203c;
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(201,164,91,.35);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 8;
}
.gdpr-tip:hover .gdpr-tip__box, .gdpr-tip:focus-within .gdpr-tip__box {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gdpr-tip__box a { color: var(--gold); display: inline-block; margin-top: 8px; }
.footer-info { position: relative; }
.iaa-badge {
  position: relative;
  float: right;
  width: 125px;
  height: 190px;
  margin: 0 0 16px 20px;
  background: #fff;
}
.iaa-badge iframe { width: 100%; height: 100%; border: 0; pointer-events: none; }
.iaa-badge__link { position: absolute; inset: 0; z-index: 2; }
.footer-lower { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding: 36px 0 8px; }
.footer-lower-grid { max-width: 520px; }
.copyright { border-top: 1px solid rgba(255,255,255,.08); margin-top: 8px; padding: 24px 0; font-size: 14px; }
.copyright a { color: #c9c9d4; text-decoration: none; margin-left: 21px; }
.link-button { background: none; border: 0; color: #c9c9d4; cursor: pointer; font: inherit; margin-left: 21px; padding: 0; }
.info-list { list-style: none; padding: 0; }
.info-list li { margin: 10px 0; }
.map iframe { width: 100%; height: 380px; border: 0; display: block; }

.flash { padding: 12px 20px; text-align: center; }
.flash-success { background: #e7f6ec; color: #1e6b3a; }
.flash-error { background: #fdecec; color: #9b1c1c; }
.form-errors { color: #9b1c1c; padding-left: 18px; }
.search-page { display: flex; gap: 8px; margin-bottom: 24px; }
.results { font-size: 18px; }

.search-modal {
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(201,164,91,.12), transparent 42%),
    linear-gradient(180deg, rgba(8,10,22,.96), rgba(12,14,32,.98));
  display: grid; place-items: start center; z-index: 50;
  padding: 14vh 16px 40px;
  backdrop-filter: blur(18px);
}
.search-close {
  position: absolute; top: 28px; right: 32px;
  width: 46px; height: 46px; padding: 0;
  border: 1px solid rgba(201,164,91,.4);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
}
.search-close:hover { background: rgba(201,164,91,.12); }
.search-modal__panel { width: min(760px, 92vw); text-align: center; }
.search-modal__eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.search-modal__panel h2 {
  margin: 0 0 28px;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  color: #f4f1e8;
}
.search-modal form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.search-modal__field {
  display: flex; align-items: center; gap: 14px;
  padding: 6px 8px 6px 20px;
  border-bottom: 1px solid rgba(201,164,91,.55);
  text-align: left;
}
.search-modal__field i { color: var(--gold); font-size: 18px; }
.search-modal input {
  padding: 16px 4px; font-size: 22px; margin: 0;
  background: transparent; border: 0; color: #f4f1e8; outline: none;
}
.search-modal input::placeholder { color: rgba(244,241,232,.45); }
.search-modal__go {
  background: var(--gold); color: var(--navy);
  border: 0; padding: 14px 26px; font-weight: 700; cursor: pointer;
  letter-spacing: .12em; text-transform: uppercase; font-size: 12px;
}
.search-live {
  margin-top: 28px;
  text-align: left;
  border-top: 1px solid rgba(201,164,91,.22);
  padding: 8px 0 0;
}
.search-live a { display: block; color: #f4f1e8; text-decoration: none; padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.06); }
.search-live a:hover { color: var(--gold); }
.search-live a:last-child { border-bottom: 0; }
.search-live small { display: block; color: var(--gold); letter-spacing: .16em; text-transform: uppercase; font-size: 11px; font-weight: 700; }
.search-live p { margin: 4px 0 0; color: #b7b3c8; font-size: 14px; }
.search-live__empty { color: #b7b3c8; padding: 16px 0; }
.search-modal[hidden], .cookie-consent[hidden], .cookie-modal[hidden], .accessibility-certificate__modal[hidden] { display: none !important; }
body.search-is-open { overflow: hidden; }

.grecaptcha-badge { visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.form-actions .btn { width: auto; }
.sf-recaptcha-check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 0;
  color: #8d93a8;
  font-size: 14px;
}
.consult-form .sf-recaptcha-check, .login-card .sf-recaptcha-check { color: #cfd0d8; }
.sf-recaptcha-check__info { border: 0; background: none; color: inherit; cursor: help; padding: 0; }
.sf-recaptcha-check__tip {
  position: absolute; left: 0; bottom: calc(100% + 10px); width: min(22rem, 80vw);
  background: #1f2937; color: #fff; padding: 14px 16px; border-radius: 10px;
  opacity: 0; visibility: hidden; pointer-events: none; z-index: 20;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.sf-recaptcha-check:hover .sf-recaptcha-check__tip, .sf-recaptcha-check:focus-within .sf-recaptcha-check__tip {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.sf-recaptcha-check__tip a { color: #5eead4; }

.cookie-consent-banner {
  position: fixed; left: 24px; right: 110px; bottom: 24px; z-index: 80;
  max-width: 980px; margin: 0 auto;
  background: linear-gradient(180deg, #1c203c 0%, #16182f 100%);
  color: #fff;
  border-radius: 18px; padding: 22px 24px;
  box-shadow: 0 24px 60px rgba(18,20,42,.35);
  display: flex; gap: 24px; align-items: center; justify-content: space-between;
  border: 1px solid rgba(201,164,91,.45);
}
.cookie-pill { display: inline-block; background: var(--gold); color: var(--navy); border-radius: 99px; padding: 3px 10px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.cookie-consent-banner h2 { margin: 8px 0 6px; font-size: 22px; color: #fff; }
.cookie-consent-banner p { margin: 0; color: #d7d4e8; }
.cookie-consent-banner__actions, .cookie-modal__footer { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-consent-banner .btn.ghost, .cookie-modal .btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(201,164,91,.55); }
.cookie-consent-banner .btn.gold, .cookie-modal .btn.gold { background: var(--gold); color: var(--navy); }
.cookie-modal {
  position: fixed; inset: 0; background: rgba(8,10,22,.72); z-index: 90;
  display: grid; place-items: center; padding: 20px;
}
.cookie-modal__dialog {
  background: linear-gradient(180deg, #1c203c 0%, #121428 100%);
  width: min(720px, 100%); border-radius: 18px; position: relative;
  box-shadow: 0 30px 80px rgba(8,10,24,.45); overflow: hidden;
  border: 1px solid rgba(201,164,91,.4);
  color: #d7d1c2;
}
.cookie-modal__header {
  display: flex; justify-content: space-between; gap: 16px; align-items: flex-start;
  padding: 22px 24px 12px; border-bottom: 1px solid rgba(201,164,91,.28);
}
.cookie-modal__header h2 { margin: 0 0 4px; color: #f4f1e8; }
.cookie-modal__header p { margin: 0; color: #b7b3c8; }
.cookie-modal__close { border: 0; background: none; font-size: 28px; cursor: pointer; color: var(--gold); line-height: 1; }
.cookie-modal__body { padding: 18px 24px 8px; max-height: min(62vh, 540px); overflow: auto; color: #d7d1c2; }
.cookie-modal__legal { margin: 8px 0 0; }
.cookie-modal__legal a { color: var(--gold); font-weight: 700; }
.cookie-modal__footer {
  padding: 16px 24px 22px;
  border-top: 1px solid rgba(201,164,91,.28);
  background: rgba(12,14,32,.55);
}
.cookie-card {
  display: flex; justify-content: space-between; gap: 18px; align-items: flex-start;
  border: 1px solid rgba(201,164,91,.28); border-radius: 14px; padding: 16px 18px; margin: 12px 0;
  background: rgba(255,255,255,.03);
}
.cookie-card h3 { margin: 0 0 4px; font-size: 16px; color: #f4f1e8; }
.cookie-card p, .cookie-card ul { margin: 0; color: #cfc6b4; font-size: 14px; }
.cookie-card ul { padding-left: 18px; margin-top: 8px; }
.cookie-toggle { display: grid; justify-items: end; gap: 6px; font-size: 13px; font-weight: 700; color: var(--gold); white-space: nowrap; }
.cookie-toggle input {
  appearance: none; -webkit-appearance: none;
  width: 46px; height: 26px; margin: 0; padding: 0;
  background: #d8d4cc; border: 0; border-radius: 99px; position: relative; cursor: pointer;
}
.cookie-toggle input:before {
  content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; top: 3px; left: 3px; transition: transform .16s ease;
}
.cookie-toggle input:checked { background: var(--gold); }
.cookie-toggle input:checked:before { transform: translateX(20px); }
.cookie-toggle input:disabled { opacity: .9; cursor: default; }

.accessibility-certificate { position: fixed; right: 16px; bottom: 24px; z-index: 70; }
.accessibility-certificate__button {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 12px 16px; color: var(--navy); cursor: pointer;
  background: linear-gradient(135deg, #b8893a, #e6c37a);
  box-shadow: 0 12px 30px rgba(201,164,91,.35); font-weight: 700;
}
.accessibility-certificate__modal {
  position: fixed; inset: 0; background: rgba(8,10,22,.72); z-index: 95;
  display: grid; place-items: center; padding: 16px;
}
.accessibility-certificate__dialog {
  width: min(34rem, 100%);
  background: linear-gradient(180deg, #1c203c 0%, #121428 100%);
  border-radius: 20px; padding: 22px; position: relative;
  box-shadow: 0 24px 60px rgba(8,10,24,.45);
  border: 1px solid rgba(201,164,91,.4);
  color: #d7d1c2;
}
.accessibility-certificate__dialog h2 { color: #f4f1e8; margin: 4px 0 6px; }
.accessibility-certificate__dialog .muted { color: #b7b3c8; }
.accessibility-certificate__close {
  position: absolute; top: 8px; right: 12px; border: 0; background: none;
  font-size: 28px; cursor: pointer; color: var(--gold);
}
.accessibility-certificate__head { display: flex; gap: 14px; align-items: flex-start; }
.accessibility-certificate__icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: var(--navy);
  background: linear-gradient(135deg, #b8893a, #e6c37a); font-size: 22px;
}
.accessibility-certificate__score {
  display: flex; justify-content: space-between; align-items: center;
  margin: 18px 0; padding: 16px; border-radius: 16px; color: var(--navy);
}
.accessibility-certificate__score strong { font-size: 32px; }
.accessibility-certificate__score.is-success { background: linear-gradient(135deg, #c9a45b, #e6c37a); }
.a11y-meta { display: grid; grid-template-columns: 140px 1fr; gap: 6px 12px; }
.a11y-meta dt { color: var(--gold); }
.a11y-meta dd { margin: 0; color: #f4f1e8; }
.a11y-meta a { color: var(--gold); }
.accessibility-certificate__tools { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(201,164,91,.28); }
.accessibility-certificate__tools-title { color: #f4f1e8; font-weight: 700; }
.accessibility-certificate__tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.accessibility-certificate__tool {
  min-height: 42px; border: 1px solid rgba(201,164,91,.4); border-radius: 12px;
  background: rgba(255,255,255,.04); cursor: pointer; font-weight: 600; color: #f4f1e8;
}
.accessibility-certificate__tool.is-active { border-color: var(--gold); color: var(--gold); background: rgba(201,164,91,.12); }
.accessibility-certificate__tool--reset { width: 100%; margin-top: 8px; }
html.sf-a11y-contrast { filter: contrast(1.28) saturate(1.08); }
html.sf-a11y-links a[href] { text-decoration: underline !important; text-underline-offset: .18em; }

.back-top {
  position: fixed; left: 20px; bottom: 24px; width: 42px; height: 42px;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center; text-decoration: none;
  border: 1px solid rgba(201,164,91,.45);
  font-size: 20px; z-index: 20;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.back-top.is-on { opacity: 1; visibility: visible; pointer-events: auto; }
.back-top:hover { background: rgba(201,164,91,.14); color: #e6c37a; }
body.accessibility-certificate-modal-open { overflow: hidden; }

@media (max-width: 900px) {
  .practice-grid, .cards-3, .team-grid, .footer-grid, .contact-layout, .consult-grid, .two-col, .intro-grid, .personnel, .form-row, .ethos-grid, .quotes, .booking, .value-grid {
    grid-template-columns: 1fr;
  }
  .header-stats { display: none; }
  .topbar { font-size: 14px; }
  .topbar-inner { flex-direction: row; justify-content: center; align-items: center; gap: 0; }
  .nav-toggle {
    display: grid; place-items: center;
    width: 44px; height: 44px; margin-right: 8px;
    border: 1px solid rgba(201,164,91,.55); border-radius: 12px;
    background: rgba(201,164,91,.1);
  }
  .nav-drawer {
    display: flex; flex-direction: column;
    position: fixed; inset: 0 auto 0 0;
    width: min(88vw, 380px);
    background: linear-gradient(180deg, #16182f 0%, #10121f 100%);
    border-right: 1px solid rgba(201,164,91,.35);
    z-index: 90;
    transform: translateX(-105%);
    transition: transform .28s ease;
    padding: 22px 18px 32px;
    overflow: auto;
    box-shadow: 24px 0 60px rgba(8,10,24,.4);
  }
  .nav-bar.is-open .nav-drawer,
  body.nav-open .nav-drawer { transform: none; }
  .nav-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 18px;
  }
  .nav-drawer-head .logo img { width: 148px; }
  .nav-drawer-close {
    width: 40px; height: 40px; border-radius: 12px;
    border: 1px solid rgba(201,164,91,.4); background: transparent;
    color: #f7f3ea; font-size: 28px; line-height: 1; cursor: pointer;
  }
  .menu { display: flex; flex-direction: column; width: 100%; margin: 0; }
  .menu a { padding: 16px 8px; font-size: 13px; }
  .nav-book-drawer { display: inline-flex; margin: 18px 0 0; width: 100%; }
  .nav-book-bar { font-size: 10px; padding: 0 12px; margin-left: auto; margin-right: 8px; }
  .nav-backdrop {
    display: block; position: fixed; inset: 0; z-index: 80;
    background: rgba(8,10,24,.55);
  }
  .nav-backdrop[hidden] { display: none; }
  body.nav-open { overflow: hidden; }
  .hero-spacer { height: 120px; }
  .hero-slider { min-height: calc(100vh - 96px); min-height: calc(100svh - 96px); }
  body.home .hero-slider { min-height: 100vh; min-height: 100svh; }
  .hero-slide-copy { top: 52%; }
  .hero-slide-copy h1 { max-width: none; }
  .hero-arrow.prev { left: 8px; }
  .hero-arrow.next { right: 16px; }
  .intro-band { margin-top: 0; }
  .logo img { width: 170px; }
  .overlay-header .logo img { width: 188px; }
  body.home .hero-chrome { padding-top: 88px; }
  .search-modal form { grid-template-columns: 1fr; }
  .search-modal__go { width: 100%; }
  .search-close { top: 16px; right: 16px; }
  .iaa-badge { float: none; margin: 0 0 16px; }
  .cookie-consent-banner { flex-direction: column; align-items: stretch; left: 12px; right: 12px; }
  input, select, textarea { font-size: 16px; }
  .copyright-inner { flex-direction: column; gap: 10px; text-align: center; }
  .contact-form, .consult .contact-form { padding: 22px 16px; }
  .page-hero h1 { font-size: 34px; }
}
.section-title, h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  color: var(--heading);
}
.site-footer h3, .site-footer .eyebrow, .cta h3, .consult h3, .intro-copy h4, .hero-slide-copy h1 { color: #fff; }
.site-footer a { color: #d5d8e6; text-decoration: none; }
.eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; }
.accent-bar { display: block; width: 46px; height: 4px; background: #2f3a8f; margin-bottom: 18px; }
.practice-grid, .cards-3, .team-grid, .footer-grid, .contact-layout, .consult-grid, .two-col, .contact-split, .personnel, .ethos-grid, .value-grid {
  display: grid; gap: 28px;
}
.practice-grid, .cards-3 { grid-template-columns: repeat(3, 1fr); }
.team-grid { grid-template-columns: repeat(4, 1fr); }
.footer-grid { grid-template-columns: .9fr 1fr 1.4fr; }
.contact-layout, .consult-grid, .two-col, .contact-split, .personnel, .ethos-grid { grid-template-columns: 1fr 1fr; }
.personnel { align-items: start; }
.practice-grid article, .cards-3 article {
  background: #fff; padding: 28px; box-shadow: 0 8px 30px rgba(16, 20, 40, .06);
  border-top: 3px solid var(--gold); border-radius: 4px 4px 0 0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.practice-grid article:hover, .cards-3 article:hover {
  transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16, 20, 40, .1);
}
.practice-grid a, .text-link { color: var(--gold); font-weight: 600; text-decoration: none; }
.team-card { text-align: center; text-decoration: none; color: var(--heading); }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #eee; }
.team-card:hover img { box-shadow: 0 12px 30px rgba(22,24,47,.16); }
.reviews cite { display: block; margin-top: 10px; color: var(--gold); font-style: normal; font-weight: 700; }
.reviews blockquote {
  margin: 0; padding: 24px; background: #fff; border-left: 4px solid var(--gold);
}
.consult {
  background: #20243f center/cover no-repeat; color: #fff; padding: 80px 0;
}
.consult h3, .cta h3 { color: #fff; font-size: 36px; }
input, select, textarea {
  width: 100%; padding: 14px 16px; margin: 0 0 12px;
  border: 1px solid #ddd; font: inherit;
}
input[type="checkbox"], input[type="radio"] {
  width: auto;
  margin: 0 8px 0 0;
}
.booking { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form-row-block { margin: 0 0 14px; }
.form-row-block label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  margin: 0 0 6px;
}
.form-row-block input,
.form-row-block select,
.form-row-block textarea { margin-bottom: 0; }
.cookie-toggle input {
  appearance: none; -webkit-appearance: none;
  width: 46px; height: 26px; margin: 0; padding: 0;
  background: #d8d4cc; border: 0; border-radius: 99px; position: relative; cursor: pointer;
}
.cookie-toggle input:before {
  content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; top: 3px; left: 3px; transition: transform .16s ease;
}
.cookie-toggle input:checked { background: var(--gold); }
.cookie-toggle input:checked:before { transform: translateX(20px); }
.cookie-toggle input:disabled { opacity: .9; cursor: default; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn, button.btn {
  background: #2f3a8f; color: #fff; border: 0; padding: 14px 28px; cursor: pointer; font-weight: 700;
  border-radius: 4px;
}
.btn.gold { background: var(--gold); color: var(--navy); }
.btn.ghost { background: transparent; color: var(--navy); border: 1px solid #cfc8b8; }
.cookie-consent-banner .btn.ghost { color: #fff; border-color: rgba(201,164,91,.55); }
.cookie-modal .btn { background: transparent; color: #f4f1e8; border: 1px solid rgba(201,164,91,.45); }
.cookie-modal .btn.ghost { color: #f4f1e8; border-color: rgba(201,164,91,.55); }
.cookie-modal .btn.gold { background: var(--gold); color: var(--navy); border: 0; }
.cta { background: var(--navy); color: #fff; text-align: center; padding: 56px 0; }
.cta a { color: #fff; }
.quotes p { max-width: 820px; }
.prose { color: var(--text); }
.prose p { margin: 0 0 1em; }
.prose p:last-child { margin-bottom: 0; }
.footer-info-copy { overflow: hidden; }
.footer-info-copy p { margin: 0 0 12px; }

html.home-snap { background: #10121f; }
body.home {
  background: #10121f;
  color: #d5d0c4;
}
body.home .section-title, body.home h3 { color: #f7f3ea; }
body.home .snap-section > .container {
  width: min(100% - 96px, 1140px);
  padding-top: 64px;
  padding-bottom: 72px;
}
body.home .prose { color: #cfc6b4; }
body.home .section { padding: 0; }
body.home .snap-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.home .snap-section > .hero-slider { width: 100%; }
body.home .section-dark { background: linear-gradient(180deg, #14162a 0%, #10121f 100%); }
body.home .section-gold {
  background:
    radial-gradient(ellipse at top, rgba(201,164,91,.1), transparent 52%),
    linear-gradient(180deg, #16182f 0%, #121224 100%);
}
body.home .section-navy { background: linear-gradient(180deg, #16182f, #10121c); }
body.home .intro-band { justify-content: center; align-items: center; }
body.home .intro-band .container {
  width: min(100% - 96px, 1220px);
  height: calc(100svh - 110px);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
body.home .intro-grid {
  width: 100%;
  height: 100%;
  grid-template-columns: .95fr 1.35fr;
}
body.home .intro-copy-inner { padding: 64px 56px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
body.home .intro-copy h4 {
  font-size: clamp(34px, 3.8vw, 48px);
  margin-bottom: 8px;
  line-height: 1.2;
  max-width: 16ch;
}
body.home .intro-copy .prose {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.85;
  color: #efe8d8;
  flex: 1;
}
body.home .intro-copy .signature {
  margin-top: 12px;
}
body.home .intro-copy .signature p {
  font-size: 17px;
  color: #f4f1e8;
}
body.home .intro-title-card .fa {
  font-size: clamp(36px, 4.2vw, 58px);
}
body.home .intro-title-card h2 {
  font-size: clamp(48px, 6.6vw, 88px);
}
body.home .practice-grid {
  margin-top: 36px;
  gap: 22px;
  align-items: stretch;
}
body.home .practice-grid article {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,164,91,.22);
  border-top: 2px solid var(--gold);
  color: #e8e4d8;
  text-align: left;
  padding: 48px 36px 40px;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
body.home .practice-grid article i {
  display: block;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
}
body.home .practice-grid article h3 {
  color: #f4f1e8;
  margin: 0 0 14px;
  font-size: 26px;
}
body.home .practice-grid article a { margin-top: auto; }
body.home .practice-grid article:hover {
  transform: none;
  border-color: rgba(201,164,91,.5);
  background: rgba(201,164,91,.06);
}
body.home .review-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 8px 0 36px;
  text-align: center;
}
body.home .review-stats strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3.6vw, 46px);
  color: var(--gold);
  font-weight: 500;
}
body.home .review-stats span {
  color: #d7d1c2;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}
body.home .consult {
  background-color: #121224;
  background-blend-mode: multiply;
  padding: 0;
}
body.home .consult:before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,28,.74), rgba(10,12,28,.82));
  pointer-events: none;
}
body.home .consult .container { position: relative; z-index: 1; padding: 72px 0; }
body.home .consult-grid { align-items: center; gap: 48px; }
body.home .consult h3 { font-size: clamp(32px, 4vw, 48px); max-width: 14ch; }
body.home .consult-form {
  background: rgba(16,18,40,.72);
  border: 1px solid rgba(201,164,91,.32);
  padding: 36px 32px;
}
body.home .consult-form input,
body.home .consult-form select,
body.home .consult-form textarea {
  background: rgba(255,255,255,.96);
}
body.home .consult-form textarea { min-height: 120px; }
body.home .ethos-grid {
  align-items: start;
  gap: 56px;
  max-width: 1080px;
}
body.home .ethos-lead h3 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
  margin: 12px 0 0;
}
body.home .ethos-copy {
  border-left: 1px solid rgba(201,164,91,.38);
  padding-left: 48px;
}
body.home .ethos-copy .prose { font-size: 18px; line-height: 1.8; }
body.home .review-slider {
  position: relative;
  max-width: 880px;
  margin: 8px auto 0;
  padding: 0 56px;
}
body.home .review-slides {
  min-height: 280px;
}
body.home .review-slide {
  display: none;
  margin: 0;
  padding: 44px 48px 40px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,164,91,.22);
  border-top: 2px solid var(--gold);
}
body.home .review-slide.is-active { display: block; }
body.home .review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
body.home .review-slide .prose {
  position: relative;
  max-width: none;
  margin: 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.8;
  color: #efe8d8;
}
body.home .review-slide .prose:before {
  content: "“";
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 52px;
  line-height: .7;
  display: block;
  margin-bottom: 12px;
}
body.home .review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  margin-top: 24px;
}
body.home .review-meta cite {
  color: var(--gold);
  font-style: normal;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}
body.home .review-meta time {
  color: #b7b3a6;
  font-size: 14px;
}
body.home .review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1px solid rgba(201,164,91,.45);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}
body.home .review-arrow.prev { left: 0; }
body.home .review-arrow.next { right: 0; }
body.home .review-arrow:hover { background: rgba(201,164,91,.12); }
.snap-rail {
  display: none;
}
.snap-next {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 42px; height: 42px;
  border: 1px solid rgba(201,164,91,.45);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  z-index: 6;
  animation: snapBounce 1.7s ease-in-out infinite;
}
.snap-next:hover {
  background: rgba(201,164,91,.12);
  animation-play-state: paused;
}
@keyframes snapBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@media (min-width: 901px) {
  html.home-snap { scroll-snap-type: y proximity; }
  body.home .snap-section { scroll-snap-align: start; scroll-snap-stop: always; }
  .snap-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    padding: 16px 0;
  }
  .snap-rail:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(201,164,91,.35);
    transform: translateX(-50%);
  }
  .snap-rail a {
    width: 9px; height: 9px;
    border-radius: 50%;
    border: 1px solid #c9a45b;
    background: #121428;
    position: relative;
    z-index: 1;
  }
  .snap-rail a.is-active { background: var(--gold); }
}
@media (prefers-reduced-motion: reduce) {
  html.home-snap { scroll-snap-type: none; }
  .snap-next { animation: none; }
}
@media (max-width: 900px) {
  body.home .review-stats { grid-template-columns: 1fr; gap: 16px; }
  body.home .snap-next { display: none; }
  body.home .ethos-copy { border-left: 0; padding-left: 0; border-top: 1px solid rgba(201,164,91,.38); padding-top: 28px; }
  body.home .review-slider { padding: 0 48px; }
  body.home .review-slide { padding: 32px 24px 28px; }
}

body.inner {
  background: #10121f;
  color: #d5d0c4;
}
html:has(body.inner) { background: #10121f; }
body.inner .topbar {
  position: absolute;
  left: 0; right: 0;
  z-index: 8;
  background: linear-gradient(180deg, rgba(10,12,28,.78), rgba(12,14,32,0));
  padding: 14px 0;
}
body.inner .site-header {
  position: absolute;
  left: 0; right: 0;
  top: 46px;
  z-index: 7;
  background: transparent;
  border: 0;
}
body.inner .nav-bar {
  transform: translateY(22px);
  box-shadow: 0 24px 50px rgba(8,10,24,.38), inset 0 1px 0 rgba(255,255,255,.1);
}
body.inner .nav-bar.is-open {
  background: rgba(14,16,36,.96);
}
body.inner h1, body.inner h2, body.inner h3, body.inner h4 { color: #f7f3ea; }
body.inner .prose { color: #cfc6b4; }
body.inner .prose a, body.inner .text-link { color: var(--gold); }
body.inner .prose a.btn { color: #16182f; }
body.inner .accent-bar { background: var(--gold); }
body.inner .page-hero {
  position: relative;
  background-color: #10121f;
  padding: 300px 0 120px;
}
body.inner .page-hero:after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,10,22,.58), rgba(10,12,28,.78));
  pointer-events: none;
}
body.inner .page-hero .container { position: relative; z-index: 1; }
body.inner .page-hero .caption { color: var(--gold); }
body.inner .section { background: #10121f; }
body.inner .section.alt {
  background:
    radial-gradient(ellipse at top, rgba(201,164,91,.08), transparent 48%),
    linear-gradient(180deg, #16182f 0%, #121224 100%);
}
body.inner .cards-3 article,
body.inner .value-grid article {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,164,91,.22);
  border-top: 2px solid var(--gold);
  box-shadow: none;
  color: #d5d0c4;
}
body.inner .cards-3 article:hover,
body.inner .value-grid article:hover {
  transform: none;
  background: rgba(201,164,91,.06);
  box-shadow: none;
}
body.inner .contact-form {
  background: rgba(16,18,40,.72);
  border: 1px solid rgba(201,164,91,.32);
  box-shadow: none;
  color: #d5d0c4;
}
body.inner .contact-form label { color: #e8e4d8; }
body.inner .contact-form input,
body.inner .contact-form select,
body.inner .contact-form textarea,
body.inner .search-page input {
  background: rgba(255,255,255,.96);
  border-color: rgba(201,164,91,.28);
  color: #16182f;
}
body.inner .btn,
body.inner a.btn,
body.inner button.btn,
body.inner .contact-split a.btn,
body.inner .prose a.btn {
  background: var(--gold);
  color: #16182f;
}
body.inner .nav-book,
body.inner a.nav-book {
  color: var(--gold);
}
body.inner .info-list a { color: var(--gold); }
body.inner .contact-split a { color: var(--gold); }
body.inner .contact-split a.btn { color: #16182f; }
body.inner .results a { color: var(--gold); }
body.inner .results .muted, body.inner .role { color: #b7b3a6; }
body.inner .flash-success { background: rgba(46,125,70,.22); color: #c5e8d0; }
body.inner .flash-error { background: rgba(155,28,28,.22); color: #f0c0c0; }
body.inner .form-errors { color: #f0b4b4; }
body.inner .sf-recaptcha-check { color: #9aa0b5; }
body.inner .personnel img { border: 1px solid rgba(201,164,91,.28); }
body.inner .prose h4,
body.inner .faq h4 { color: var(--gold); margin-top: 28px; }
body.inner .map,
body.inner .consent-embed { background: #121428; }

.value-grid { grid-template-columns: repeat(3, 1fr); }
.value-grid article {
  padding: 40px 32px 36px;
  min-height: 280px;
}
.value-grid article i {
  display: block;
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 18px;
}
.value-grid article h3 {
  margin: 0 0 14px;
  font-size: 24px;
}
.value-grid article p { margin: 0; line-height: 1.75; }

.page-team .page-hero { padding-bottom: 160px; }
.page-team .team-lead {
  position: relative;
  z-index: 3;
  margin-top: -88px;
  padding: 0 0 28px;
  background: transparent;
}
.page-team .team-lead-card {
  background:
    radial-gradient(ellipse at top left, rgba(201,164,91,.1), transparent 42%),
    linear-gradient(180deg, rgba(18,20,42,.96), rgba(12,14,32,.98));
  border: 1px solid rgba(201,164,91,.32);
  padding: 48px 52px 40px;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}
.page-team .team-lead-card h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 22px;
}
.page-team .team-lead-card h3 + p { margin-top: 0; }
.page-team .team-gallery { padding-top: 24px; }
.page-team .section-title { margin: 0 0 36px; }
.page-team .team-grid { gap: 22px; }
.page-team .team-card {
  display: flex;
  flex-direction: column;
  color: #f4f1e8;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(201,164,91,.22);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.page-team .team-card-media {
  display: block;
  overflow: hidden;
  background: #16182f;
}
.page-team .team-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  display: block;
  width: 100%;
  transition: transform .45s ease;
}
.page-team .team-card-copy {
  display: block;
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(201,164,91,.18);
}
.page-team .team-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
  color: #f7f3ea;
}
.page-team .team-card p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.page-team .team-card:hover {
  border-color: rgba(201,164,91,.55);
  background: rgba(201,164,91,.05);
  transform: translateY(-4px);
}
.page-team .team-card:hover img { transform: scale(1.04); box-shadow: none; }
.page-team .team-card.is-lead {
  grid-column: span 2;
}
.page-team .team-card.is-lead img { aspect-ratio: 16 / 11; }
.page-team .team-card.is-lead .team-card-copy { padding: 24px 24px 26px; }
.page-team .team-card.is-lead h3 { font-size: 28px; }
.page-team .value-grid article {
  background: rgba(8,10,22,.35);
  border: 1px solid rgba(201,164,91,.28);
  padding: 44px 34px 40px;
  min-height: 300px;
  box-shadow: 0 22px 50px rgba(0,0,0,.18);
}
.page-team .value-grid article:hover {
  background: rgba(201,164,91,.08);
  border-color: rgba(201,164,91,.5);
}

.page-booking .booking-aside {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse at top left, rgba(201,164,91,.08), transparent 46%),
    rgba(16,18,40,.55);
  border: 1px solid rgba(201,164,91,.28);
  padding: 42px 38px 36px;
}
.page-booking .booking-aside h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  margin: 8px 0 12px;
  max-width: 12ch;
}
.page-booking .booking-fee {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: var(--gold);
  margin: 0 0 22px;
}
.page-booking .booking-points {
  list-style: none;
  padding: 22px 0 0;
  margin: 22px 0 0;
  border-top: 1px solid rgba(201,164,91,.28);
}
.page-booking .booking-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0 0 16px;
  color: #e8e4d8;
}
.page-booking .booking-points i {
  color: var(--gold);
  width: 18px;
  margin-top: 4px;
}
.page-booking .booking-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}
.page-booking .booking-contact a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.page-booking .contact-form { padding: 36px 32px; }
.page-booking .booking { align-items: stretch; }
body.inner.page-online-booking .page-hero { padding-bottom: 36px; }
body.inner.page-online-booking .section { padding-top: 28px; padding-bottom: 64px; }
.online-booking { align-items: stretch; }
.online-booking.is-details { grid-template-columns: 1fr; gap: 22px; }
.online-booking.is-details .booking-aside { display: none; }
.ob-wizard-form { min-width: 0; }
.online-booking.is-details .ob-wizard-form { width: 100%; }
.online-booking-main { display: grid; gap: 22px; }
.ob-wizard[data-ready] .ob-step { display: none; }
.ob-wizard[data-ready] .ob-step.is-active { display: block; }
.ob-steps {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 0; margin: 0;
}
.ob-steps li {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 14px;
  border: 1px solid rgba(201,164,91,.22);
  color: #b7b3a6; font-weight: 700; font-size: 13px;
  background: rgba(16,18,40,.55);
}
.ob-steps li span {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: #f7f3ea; font-size: 12px;
}
.ob-steps li.is-active, .ob-steps li.is-done {
  border-color: rgba(201,164,91,.55); color: #f7f3ea;
}
.ob-steps li.is-active span, .ob-steps li.is-done span {
  background: var(--gold); color: #16182f;
}
.ob-calendar {
  background:
    radial-gradient(ellipse at top left, rgba(201,164,91,.1), transparent 46%),
    rgba(12,14,32,.92);
  border: 1px solid rgba(201,164,91,.32);
  border-radius: 22px; padding: 24px;
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
}
.ob-calendar-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.ob-calendar-nav a, .ob-calendar-nav strong { color: #f7f3ea; font-weight: 700; text-decoration: none; }
.ob-weekdays, .ob-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.ob-weekdays { margin-bottom: 8px; font-size: 12px; font-weight: 700; color: #b7b3a6; text-transform: uppercase; text-align: center; }
.ob-day {
  border: 1px solid rgba(201,164,91,.18); background: rgba(255,255,255,.04); border-radius: 12px; min-height: 46px;
  font-weight: 700; cursor: pointer; color: #f7f3ea;
}
.ob-day.is-open { background: rgba(201,164,91,.08); border-color: rgba(201,164,91,.45); }
.ob-day.is-blocked, .ob-day.is-full {
  background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.12); color: #9a958a; cursor: pointer;
}
.ob-day.is-selected, .ob-slot.is-selected { background: var(--gold); color: #16182f; border-color: var(--gold); }
.ob-day.is-muted, .ob-day:disabled { opacity: .35; cursor: default; }
.ob-day.is-blocked:not(:disabled), .ob-day.is-full:not(:disabled) { opacity: .85; }
.ob-slots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ob-slot {
  border: 1px solid rgba(201,164,91,.28); background: rgba(16,18,40,.7); border-radius: 999px; padding: 8px 14px;
  font-weight: 700; cursor: pointer; color: #f7f3ea;
}
.ob-slot.is-unavailable {
  opacity: .55; cursor: not-allowed; background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12); text-decoration: none;
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 12px;
}
.ob-slot.is-unavailable small { font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #b7b3a6; }
.ob-manual-when { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ob-step-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 18px; }
.ob-details {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 28px;
  padding: 36px 40px 32px;
}
.ob-details .ob-wide,
.ob-details .hp { grid-column: 1 / -1; }
.ob-details .form-row-block { margin-bottom: 10px; }
.ob-drop {
  position: relative; display: grid; gap: 8px; justify-items: center; text-align: center;
  border: 1px dashed rgba(201,164,91,.45); border-radius: 18px; padding: 28px 18px;
  background: rgba(201,164,91,.06); cursor: pointer; margin: 8px 0 16px; color: #e8e4d8;
}
.ob-drop.is-over, .ob-drop.has-files { border-color: var(--gold); background: rgba(201,164,91,.12); }
.ob-drop i { font-size: 28px; color: var(--gold); }
.ob-drop span { color: #b7b3a6; font-size: 13px; }
.ob-drop-list { list-style: none; padding: 0; margin: 8px 0 0; width: 100%; }
.ob-drop-list li { font-weight: 600; color: #f7f3ea; }
.ob-drop input[type=file] {
  position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden;
}
.ob-thanks-lead { color: #e8e4d8; margin-top: 0; }
.ob-cal-apps, .ob-pay-methods {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 0 0 22px;
}
.ob-cal-app {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; border-radius: 16px; text-decoration: none;
  border: 1px solid rgba(201,164,91,.32); background: rgba(16,18,40,.55); color: #f7f3ea;
  font-weight: 700; width: 100%; cursor: pointer; font: inherit;
}
.ob-cal-app i {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: var(--gold); color: #16182f;
}
body.inner .ob-step-actions .btn.ghost,
body.inner a.ob-cal-app,
body.inner button.ob-cal-app {
  background: rgba(16,18,40,.55);
  color: #f7f3ea;
  border: 1px solid rgba(201,164,91,.32);
}
body.inner a.ob-cal-app:hover,
body.inner button.ob-cal-app:hover { border-color: var(--gold); }
.ob-export { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 900px) {
  body.inner .site-header { top: 70px; }
  body.inner .page-hero { padding: 220px 0 64px; }
  body.inner.page-online-booking .page-hero { padding: 220px 0 28px; }
  body.inner .nav-bar { transform: none; }
  .page-team .team-lead { margin-top: -36px; }
  .page-team .team-lead-card { padding: 28px 22px; }
  .page-team .team-card.is-lead { grid-column: auto; }
  .page-team .team-card.is-lead img { aspect-ratio: 4 / 5; }
  .ob-steps, .ob-cal-apps, .ob-pay-methods, .ob-manual-when, .ob-details { grid-template-columns: 1fr; }
  .ob-details { padding: 28px 22px; }
}

.ob-bank {
  margin: 0 0 18px; padding: 18px;
  border: 1px solid rgba(201,164,91,.32); border-radius: 16px;
  background: rgba(16,18,40,.45);
}
.ob-bank dl { display: grid; grid-template-columns: 140px 1fr; gap: 8px 12px; margin: 0 0 12px; }
.ob-bank dt { color: var(--gold); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.ob-bank dd { margin: 0; font-weight: 700; color: #f7f3ea; }

.maintenance-page {
  min-height: 100vh; margin: 0;
  display: flex; flex-direction: column;
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(201,164,91,.18), transparent 55%),
    #10121f;
  color: #f7f3ea;
  font-family: "Source Sans 3", sans-serif;
}
.maintenance-shell { flex: 1; display: grid; place-items: center; padding: 32px 16px; }
.maintenance-card {
  width: min(680px, 100%);
  background: #16182f;
  border: 1px solid rgba(201,164,91,.4);
  border-radius: 24px;
  padding: 42px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.maintenance-card img { width: min(220px, 70%); height: auto; margin-bottom: 12px; }
.maintenance-copy { color: #e8e4d8; }
.maintenance-copy h1, .maintenance-copy h2 { font-family: "Playfair Display", serif; color: #f7f3ea; }
.maintenance-count {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin: 28px 0 8px;
}
.maintenance-count div {
  background: rgba(201,164,91,.1); border: 1px solid rgba(201,164,91,.3);
  border-radius: 14px; padding: 14px 8px;
}
.maintenance-count strong { display: block; font-size: 28px; color: var(--gold); }
.maintenance-count span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #b7b3a6; }
.maintenance-window { color: #9a958a; font-size: 13px; }
.blocked-shell { flex: 1; display: grid; place-items: center; padding: 32px 16px; }
.blocked-card {
  width: min(560px, 100%);
  position: relative;
  background: linear-gradient(180deg, #1a1d35 0%, #14162b 100%);
  border: 1px solid rgba(201,164,91,.38);
  border-radius: 28px;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.blocked-rule {
  display: block; height: 3px; margin: -36px -28px 28px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold), #f3e0b0, var(--gold), transparent);
}
.blocked-card img { width: min(180px, 58%); height: auto; margin: 0 auto 8px; }
.blocked-code {
  margin: 4px 0 0;
  font-family: "Playfair Display", serif;
  font-size: 56px; line-height: 1; font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
}
.blocked-card h1 {
  font-family: "Playfair Display", serif;
  font-size: 30px; margin: 8px 0 10px; color: #f7f3ea;
}
.blocked-lead { margin: 0 0 22px; color: #c6c1b4; }
.blocked-facts {
  text-align: left;
  background: rgba(10,12,24,.55);
  border: 1px solid rgba(201,164,91,.22);
  border-radius: 18px;
  padding: 16px 18px 8px;
  margin-bottom: 22px;
}
.blocked-facts-label {
  margin: 0 0 8px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.blocked-facts-alert {
  display: flex; gap: 8px; align-items: flex-start;
  margin: 0 0 14px; color: #f7f3ea; font-weight: 700;
}
.blocked-facts-alert i { color: var(--gold); margin-top: 3px; }
.blocked-facts dl { margin: 0; }
.blocked-facts dl > div {
  display: grid; grid-template-columns: 140px 1fr; gap: 8px;
  padding: 10px 0; border-top: 1px solid rgba(247,243,234,.08);
}
.blocked-facts dt { color: #9a958a; font-size: 12px; font-weight: 700; }
.blocked-facts dd { margin: 0; color: #f7f3ea; font-weight: 700; }
.blocked-facts dd span { color: #9a958a; font-weight: 600; }
.blocked-flag { font-size: 22px; margin-right: 6px; }
.blocked-facts code { font-size: 13px; color: #f3e0b0; }
.blocked-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 14px; }
.blocked-actions .btn { display: inline-flex; align-items: center; gap: 8px; }
.btn.blocked-ghost {
  background: transparent; color: #f7f3ea;
  border: 1px solid rgba(201,164,91,.45);
}
.btn.blocked-ghost:hover { border-color: var(--gold); color: var(--gold); }
.blocked-help { margin: 0; color: #9a958a; font-size: 13px; }
@media (max-width: 700px) {
  .blocked-facts dl > div { grid-template-columns: 1fr; }
  .blocked-code { font-size: 44px; }
  .blocked-card h1 { font-size: 24px; }
}
@media (max-width: 700px) {
  .maintenance-count { grid-template-columns: repeat(2, 1fr); }
  .ob-bank dl { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 28px, var(--max)); }
  .topbar { font-size: 14px; padding: 12px 0; }
  .topbar-inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .topbar-left {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
  }
  .topbar-right { display: none; }
  .topbar a { white-space: nowrap; }
  .header-row { padding: 18px 0 8px; }
  .logo img, .overlay-header .logo img { width: 158px; }

  .nav-bar { min-height: 54px; padding: 6px 8px; }
  .nav-book-bar { font-size: 10px; padding: 0 12px; height: 36px; }

  .hero-slide-copy {
    top: auto;
    bottom: 78px;
    padding: 0 12px;
  }
  .hero-slide-copy h1 {
    font-size: 32px;
    max-width: none;
    padding-right: 0;
  }
  .hero-slide-copy p { font-size: 16px; margin-bottom: 16px; }
  .hero-arrow {
    top: auto;
    bottom: 18px;
    transform: none;
    width: 40px; height: 40px;
    font-size: 28px;
  }
  .hero-arrow.prev { left: 10px; }
  .hero-arrow.next { right: 10px; }
  body.home .hero-chrome { padding-top: 92px; }

  body.home .snap-section {
    min-height: 0;
    height: auto;
    display: block;
  }
  body.home .snap-section > .container {
    width: min(100% - 28px, 1140px);
    height: auto;
    padding-top: 36px;
    padding-bottom: 40px;
  }
  body.home .intro-band {
    min-height: 0;
    height: auto;
    display: block;
    padding: 12px 0 28px;
  }
  body.home .intro-band .container {
    width: min(100% - 28px, 1220px);
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }
  .intro-grid,
  body.home .intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .intro-title-card {
    padding: 32px 24px 36px;
    border-right: 0;
    border-bottom: 4px solid var(--gold);
    min-height: 0;
  }
  .intro-title-card h2 { font-size: 40px; }
  .intro-copy-inner,
  body.home .intro-copy-inner { padding: 24px 20px; }
  body.home .intro-copy h4 { font-size: 28px; max-width: none; }
  body.home .intro-copy .prose { font-size: 16px; line-height: 1.7; }

  .practice-grid,
  .cards-3,
  .team-grid,
  .footer-grid,
  .contact-layout,
  .consult-grid,
  .two-col,
  .contact-split,
  .personnel,
  .form-row,
  .ethos-grid,
  .quotes,
  .booking,
  .value-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 48px 0; }
  .consult h3, .cta h3 { font-size: 26px; line-height: 1.3; }
  .cta { padding: 40px 16px; }
  .cta h3 a {
    display: block;
    margin-top: 10px;
    white-space: nowrap;
    font-size: 22px;
  }

  .site-footer { padding-top: 40px; }
  .footer-phone { font-size: 16px; }
  .footer-phone a { white-space: nowrap; }
  .iaa-badge { float: none; display: block; margin: 0 0 18px; }
  .footer-info-copy { overflow: visible; }
  .gdpr-tip__box { left: 0; bottom: calc(100% + 10px); }
  .copyright { padding: 20px 0 96px; }
  .copyright-inner { flex-direction: column; gap: 10px; text-align: center; }
  .copyright a, .link-button { margin-left: 0; margin-right: 12px; }

  .contact-form, .consult-form { padding: 22px 16px; }
  body.inner .site-header { top: 48px; }
  body.inner .page-hero { padding: 268px 0 56px; }
  body.inner.page-online-booking .page-hero { padding: 268px 0 28px; }
  body.inner .page-hero h1 { font-size: 32px; }
  body.home .review-slider { padding: 0 40px; }

  .accessibility-certificate {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    right: 12px;
    bottom: 18px;
  }
  .accessibility-certificate.is-footer-visible,
  body.accessibility-certificate-modal-open .accessibility-certificate {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .accessibility-certificate__button { padding: 10px 12px; font-size: 13px; }
  .accessibility-certificate__modal { padding: 10px; }
  .accessibility-certificate__dialog {
    width: 100%;
    max-height: min(88dvh, 620px);
    overflow: auto;
    padding: 16px 14px 14px;
    border-radius: 16px;
  }
  .accessibility-certificate__dialog h2 { font-size: 18px; margin: 2px 0 4px; }
  .accessibility-certificate__dialog .muted { font-size: 12px; }
  .accessibility-certificate__icon { width: 36px; height: 36px; border-radius: 10px; font-size: 16px; }
  .accessibility-certificate__score { margin: 12px 0; padding: 10px 12px; }
  .accessibility-certificate__score strong { font-size: 22px; }
  .a11y-meta { grid-template-columns: 110px 1fr; font-size: 13px; gap: 4px 8px; }
  .accessibility-certificate__tools { margin-top: 10px; padding-top: 10px; }
  .accessibility-certificate__tool { min-height: 36px; font-size: 13px; }
}

.staff-maint-banner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: #9b1c1c; color: #fff; padding: 12px 24px;
  font-size: 14px; font-weight: 600; position: relative; z-index: 90;
}
.staff-maint-banner i { color: #fecaca; }
.staff-maint-banner p { margin: 0; flex: 1; }
.staff-maint-banner a {
  color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35);
  padding: 6px 12px; border-radius: 999px; text-decoration: none; font-weight: 700;
}
.staff-maint-banner a:hover { background: rgba(255,255,255,.22); }
.webmaster-banner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: #c2410c; color: #fff; padding: 12px 24px;
  font-size: 14px; font-weight: 600; position: relative; z-index: 90;
}
.webmaster-banner i { color: #ffedd5; }
.webmaster-banner p { margin: 0; flex: 1; }
.webmaster-banner code { color: #fff; background: rgba(0,0,0,.18); padding: 2px 8px; border-radius: 8px; }
.webmaster-banner a, .webmaster-banner button {
  color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35);
  padding: 6px 12px; border-radius: 999px; text-decoration: none; font-weight: 700;
  font: inherit; cursor: pointer;
}
.webmaster-banner a:hover, .webmaster-banner button:hover { background: rgba(255,255,255,.22); }
.webmaster-banner form { margin: 0; }

/* Dedicated service index + FAQs + insights */
.service-index-lead { max-width: 52rem; margin: 0 0 1.5rem; }
.service-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin: 0 0 2rem;
}
.service-index-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.service-index-card:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,.08);
  transform: translateY(-2px);
}
.service-index-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: #f5f0e6;
}
.service-index-card p {
  margin: 0;
  flex: 1;
  color: #cfc6b4;
  font-size: 0.95rem;
  line-height: 1.55;
}
.service-index-card span {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}
.service-detail .service-cta,
.insight-article .service-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.faq-list { margin: 1.25rem 0 0; display: grid; gap: 10px; }
.faq-item {
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 18px;
  font-weight: 600;
  color: #f5f0e6;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 18px 16px; color: #cfc6b4; }
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.insight-card {
  padding: 22px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 12px;
}
.insight-card time {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.insight-card h2, .insight-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.3;
}
.insight-card h2 a, .insight-card h3 a {
  color: #f5f0e6;
  text-decoration: none;
}
.insight-card h2 a:hover, .insight-card h3 a:hover { color: var(--gold); }
.insight-card p { margin: 0 0 12px; color: #cfc6b4; line-height: 1.55; }
.insight-standfirst {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #e8e0d0;
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(212,175,55,.25);
}
.text-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

/* Privacy consent switch (one line) */
.consent-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 4px 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 10px;
  background: rgba(255,255,255,.03);
}
.consent-switch__text {
  flex: 1;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: inherit;
}
.consent-switch__text a { color: var(--gold); font-weight: 600; }
.consent-switch__control {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex: 0 0 46px;
  margin: 0;
  cursor: pointer;
}
.consent-switch__control input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.consent-switch__track {
  position: absolute;
  inset: 0;
  background: #6b6570;
  border-radius: 99px;
  transition: background .18s ease, box-shadow .18s ease;
}
.consent-switch__track::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform .18s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.consent-switch__control input:checked + .consent-switch__track {
  background: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.consent-switch__control input:checked + .consent-switch__track::before {
  transform: translateX(20px);
}
.consent-switch__control input:focus-visible + .consent-switch__track {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.consent-switch .form-errors { flex-basis: 100%; margin: 0; }
.consent-switch.has-error { border-color: #c45c5c; }
body.inner .contact-form .consent-switch,
body.home .consult-form .consent-switch {
  color: #e8e4d8;
}
body.inner .contact-form .consent-switch__track,
body.home .consult-form .consent-switch__track {
  background: #4a4658;
}
body.inner .contact-form .consent-switch__control input:checked + .consent-switch__track,
body.home .consult-form .consent-switch__control input:checked + .consent-switch__track {
  background: var(--gold);
}
body.inner .contact-form .consent-switch__control input:checked + .consent-switch__track::before,
body.home .consult-form .consent-switch__control input:checked + .consent-switch__track::before {
  transform: translateX(20px);
}
.btn.is-consent-locked,
button.btn[disabled].is-consent-locked,
button.btn.gold[disabled],
button.btn[disabled][aria-disabled="true"] {
  opacity: .4;
  cursor: not-allowed;
  filter: grayscale(.35);
  pointer-events: none;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}


