:root {
  --navy-900: #05101f;
  --navy-800: #0B1B3D;
  --navy-700: #14264d;
  --navy-600: #1E3565;
  --gold-600: #A8801C;
  --gold-500: #C9A227;
  --gold-400: #D9B84A;
  --gold-100: #F1E4BE;
  --cream:    #FCFAF6;
  /* Sampled from the supplied WhatsApp mark so the button and the logo are
     the same green rather than approximately the same green. */
  --whatsapp:      #27D367;
  --whatsapp-dark: #21B157;
  --paper:    #FFFFFF;
  --ink:      #16202E;
  --muted:    #5A6675;
  --line:     #E4E1D9;

  --radius: 10px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(11,27,61,.06), 0 1px 3px rgba(11,27,61,.05);
  --shadow-md: 0 4px 6px -1px rgba(11,27,61,.08), 0 10px 24px -6px rgba(11,27,61,.10);
  --shadow-lg: 0 24px 48px -12px rgba(11,27,61,.22);

  /* One spacing scale. Every gap, pad and margin on the page comes from here,
     so the rhythm stays the same from section to section. */
  --sp-1: 6px;  --sp-2: 10px; --sp-3: 14px; --sp-4: 18px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 44px; --sp-8: 64px;
  --sp-section: clamp(58px, 7.4vw, 92px);
  --sp-card: 28px;

  /* One type scale, shared by every heading and every card label. */
  --fs-display: clamp(1.95rem, 3.4vw, 2.7rem);
  --fs-h3:      1.35rem;
  --fs-body:    .96rem;
  --fs-sm:      .88rem;
  --fs-xs:      .78rem;
  --fs-label:   .74rem;

  --wrap: 1180px;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-caps: 'Cinzel', 'Cormorant Garamond', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.18; margin: 0; letter-spacing: -.01em; }
/* The engraved-caps treatment used for every small card heading and label,
   so "Practice areas", "Hours" and "London office" all read as one family. */
.label-caps {
  font-family: var(--font-caps); font-size: var(--fs-label);
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy-800); font-weight: 600;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold-500); color: var(--navy-900);
  padding: 12px 20px; font-weight: 600; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

.eyebrow {
  font-family: var(--font-caps);
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-600); font-weight: 600;
}
.section-title { font-size: var(--fs-display); color: var(--navy-800); }
.lede { color: var(--muted); font-size: 1.01rem; line-height: 1.7; }
.rule { width: 64px; height: 2px; background: var(--gold-500); border: 0; margin: var(--sp-4) 0; }
.rule.center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: .82rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 14px 26px; border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn-gold:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(201,162,39,.55); }
.btn-navy { background: var(--navy-800); color: var(--gold-400); }
.btn-navy:hover:not(:disabled) { background: var(--navy-700); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.btn-ghost:hover { border-color: var(--gold-500); color: var(--gold-400); }
.btn-outline { border-color: var(--line); color: var(--navy-800); background: var(--paper); }
.btn-outline:hover:not(:disabled) { border-color: var(--gold-500); color: var(--gold-600); }
.btn-sm { padding: 9px 16px; font-size: .72rem; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover:not(:disabled) { background: var(--whatsapp-dark); transform: translateY(-1px); }

.strip {
  background: var(--navy-900); color: #B7C0CD;
  font-size: .74rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.strip .wrap { display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between; align-items: center; padding-top: 9px; padding-bottom: 9px; }
.strip b { color: var(--gold-400); font-weight: 600; }
.strip b.plain { color: #fff; }
.strip a { display: inline-flex; align-items: center; gap: 6px; }
.strip a:hover { color: var(--gold-400); }
.strip .reg { display: flex; flex-wrap: wrap; gap: 6px 16px; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,27,61,.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(201,162,39,.22);
  color: #fff;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); height: 88px; }
@media (max-width: 900px) { .site-header .wrap { height: 76px; } }

/* The supplied logo, split into crest and wordmark so each can be sized for
   the screen: kept as one image the lettering would be about 7px tall in the
   header. Two files, set to the same optical weight as the artwork. */
.brand { display: flex; align-items: center; gap: 13px; min-width: 0; }
.brand-crest { height: 52px; width: auto; flex: none; }
.brand-wordmark { height: 30px; width: auto; flex: none; }

/* stacked, for the panel beside the about copy */
.brand-stack { flex-direction: column; gap: 20px; }
.brand-stack .brand-crest { height: 128px; }
.brand-stack .brand-wordmark { height: 62px; }

@media (max-width: 900px) { .brand-crest { height: 44px; } .brand-wordmark { height: 25px; } }
@media (max-width: 420px) { .brand { gap: 10px; } .brand-crest { height: 38px; } .brand-wordmark { height: 21px; } }

.progress { position: fixed; inset: 0 auto auto 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400)); z-index: 90; transition: width .1s linear; }

.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 70; padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11,27,61,.97); backdrop-filter: blur(8px); border-top: 1px solid rgba(201,162,39,.3);
  display: flex; gap: 10px; align-items: center; justify-content: space-between;
  transform: translateY(110%); transition: transform .3s ease;
}
.sticky-cta.show { transform: none; }
.sticky-cta .txt { color: #C6CEDA; font-size: .78rem; line-height: 1.3; }
.sticky-cta .txt b { color: #fff; display: block; font-size: .86rem; }
@media (min-width: 900px) { .sticky-cta { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 0; } }

.nav { display: none; align-items: center; gap: 2px; }
.nav a {
  font-size: .85rem; font-weight: 500; padding: 9px 11px; border-radius: var(--radius-sm);
  color: #D7DDE6; white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
.nav a:hover, .nav a[aria-current="true"] { color: var(--gold-400); background: rgba(255,255,255,.06); }

/* Book Consultation, then Our Team — kept as a pair so the two page links
   read as one group rather than a button with a stray link after it. */
.header-actions { display: none; align-items: center; gap: var(--sp-2); flex: none; }
.header-actions .btn { padding: 12px 18px; font-size: .74rem; letter-spacing: .1em; }
@media (min-width: 1100px) { .header-actions .btn { padding: 13px 22px; font-size: .78rem; } }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; background: none; border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; cursor: pointer;
}
.burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.08); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 15px 24px; border-bottom: 1px solid rgba(255,255,255,.06); color: #D7DDE6; font-weight: 500; }
.mobile-nav a:hover, .mobile-nav a[aria-current="true"] { color: var(--gold-400); background: rgba(255,255,255,.04); }
.mobile-nav a.is-cta { color: var(--gold-400); font-weight: 600; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .header-actions { display: flex; }
  .burger { display: none; }
  .mobile-nav { display: none !important; }
}

.hero { position: relative; color: #fff; overflow: hidden; background: var(--navy-800); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    url("/assets/img/hero.jpg"),
    linear-gradient(140deg, var(--navy-900), var(--navy-700));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,162,39,.16) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5;
}
.hero .wrap { position: relative; z-index: 1; padding-top: clamp(64px, 8vw, 96px); padding-bottom: clamp(64px, 8vw, 96px); text-align: center; }
.hero-badge {
  display: inline-block; font-family: var(--font-caps);
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-400); background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,162,39,.35); border-radius: 999px; padding: 8px 18px;
}
.hero h1 {
  font-family: var(--font-caps);
  font-size: clamp(1.65rem, 4.1vw, 3.15rem);
  line-height: 1.16; letter-spacing: .005em;
  margin: var(--sp-5) auto 0; max-width: 22ch; color: #fff; font-weight: 700;
  text-transform: uppercase; text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero p { margin: var(--sp-5) auto 0; max-width: 60ch; color: #C6CEDA; font-size: 1.05rem; font-weight: 300; line-height: 1.7; }
.hero-actions { margin-top: var(--sp-6); display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: var(--sp-5); font-size: var(--fs-xs); color: #93A0B2; }

.creds { background: linear-gradient(90deg, var(--navy-900), var(--navy-700), var(--navy-900)); color: #fff; border-block: 1px solid rgba(201,162,39,.28); }
.creds .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5) var(--sp-3); padding: var(--sp-7) 0; text-align: center; }
.creds .n {
  font-family: var(--font-caps); font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem); letter-spacing: .01em;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500) 55%, #fff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.creds .l { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: #A9B4C2; margin-top: 4px; }

/* The IAA mark carries navy lettering, which would disappear against this
   strip — so it keeps its own white tile rather than being keyed transparent. */
.cred-iaa { display: flex; align-items: center; justify-content: center; gap: var(--sp-3); }
.iaa-mark {
  height: 58px; width: auto; flex: none;
  background: #fff; border-radius: var(--radius-sm);
  padding: 7px 9px; box-shadow: 0 2px 10px rgba(0,0,0,.22);
}
@media (max-width: 760px) { .cred-iaa { gap: var(--sp-2); } .iaa-mark { height: 46px; padding: 6px 7px; } }
@media (min-width: 760px) { .creds .grid { grid-template-columns: repeat(4, 1fr); } .creds .grid > div + div { border-left: 1px solid rgba(255,255,255,.09); } }

section { padding: var(--sp-section) 0; }
.section-head { max-width: 660px; margin: 0 auto var(--sp-7); text-align: center; }

.services { background: linear-gradient(180deg, var(--cream), var(--paper) 45%, var(--cream)); }
.cards { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 680px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.svc {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.svc:hover, .svc:focus-within { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: rgba(201,162,39,.5); }
.svc-body { padding: var(--sp-6) var(--sp-card) var(--sp-5); flex: 1; }
.svc h3 {
  font-family: var(--font-caps); font-size: 1rem; letter-spacing: .07em;
  text-transform: uppercase; color: var(--navy-800); margin: 0 0 var(--sp-3);
  transition: color .22s ease;
}
/* the rule that grows and gilds as the card is hovered */
.svc h3::after {
  content: ""; display: block; width: 34px; height: 2px; margin-top: var(--sp-3);
  background: var(--line);
  transition: width .28s ease, background .22s ease;
}
.svc:hover h3, .svc:focus-within h3 { color: var(--gold-600); }
.svc:hover h3::after, .svc:focus-within h3::after { width: 68px; background: var(--gold-500); }
.svc p { color: var(--muted); font-size: var(--fs-sm); }

.svc details { border-top: 1px solid var(--line); }
.svc summary {
  padding: var(--sp-3) var(--sp-card); cursor: pointer; list-style: none;
  font-size: var(--fs-label); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-600); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2);
}
.svc summary::-webkit-details-marker { display: none; }
.svc summary::after { content: "+"; font-size: 1.15rem; line-height: 1; color: var(--navy-600); }
.svc details[open] summary::after { content: "–"; }
.svc details[open] summary { color: var(--navy-800); }
.svc .panel { padding: 0 var(--sp-card) var(--sp-5); }
.svc .panel li { position: relative; padding-left: 20px; font-size: var(--fs-sm); color: var(--muted); margin-bottom: var(--sp-1); }
.svc .panel li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 7px; height: 7px; border-radius: 2px; background: var(--gold-500); transform: rotate(45deg); }
.svc .panel .btn { margin-top: 8px; }

.about { background: var(--paper); }
.about-grid { display: grid; gap: var(--sp-7); align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }
.about h2 { font-size: var(--fs-display); color: var(--navy-800); }
.about p + p { margin-top: var(--sp-3); }
.about-points { margin-top: var(--sp-5); display: grid; gap: var(--sp-3); }
.about-points li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: var(--fs-body); line-height: 1.65; }
.about-points svg { flex: none; margin-top: 4px; color: var(--gold-600); }
.about-figure {
  background: var(--paper); border-radius: var(--radius); padding: var(--sp-8) var(--sp-7);
  display: grid; place-items: center; gap: var(--sp-5); text-align: center;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
}

.about-figure figcaption { font-size: var(--fs-xs); letter-spacing: .04em; color: var(--muted);
  border-top: 1px solid var(--line); padding-top: var(--sp-4); width: 100%; }

.process { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.process::after { content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(201,162,39,.13) 1px, transparent 1px); background-size: 24px 24px; }
.process .wrap { position: relative; z-index: 1; }
.process .section-title { color: #fff; }
.process .lede { color: #B7C0CD; }
.steps-grid { display: grid; gap: var(--sp-5); }
@media (min-width: 820px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.pstep {
  position: relative; padding: var(--sp-6) var(--sp-card);
  border: 1px solid rgba(201,162,39,.26); border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  transition: border-color .22s ease, background .22s ease;
}
.pstep:hover { border-color: rgba(201,162,39,.5); background: rgba(255,255,255,.06); }
.pstep .num {
  display: flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-caps); font-size: var(--fs-label); font-weight: 600;
  letter-spacing: .24em; color: var(--gold-400); line-height: 1;
}
.pstep .num::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(201,162,39,.55), rgba(201,162,39,0));
}
.pstep h3 {
  font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600;
  letter-spacing: -.01em; text-transform: none; margin: var(--sp-4) 0 var(--sp-2); color: #fff;
}
.pstep p { color: #B7C0CD; font-size: var(--fs-body); line-height: 1.72; }

.fees { background: var(--paper); }
.fee-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.fee-table caption { text-align: left; font-size: .8rem; color: var(--muted); padding-bottom: 12px; }
.fee-table th { text-align: left; font-family: var(--font-caps); font-size: var(--fs-label); letter-spacing: .1em;
  text-transform: uppercase; color: var(--navy-800); border-bottom: 2px solid var(--gold-500); padding: 0 var(--sp-3) var(--sp-2) 0; }
.fee-table td { padding: var(--sp-3) var(--sp-3) var(--sp-3) 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.fee-table td.num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; color: var(--navy-800); white-space: nowrap; padding-right: 0; }
.fee-table tbody tr:hover td { background: #FFFDF6; }

/* A heading row inside the table, for the grouped "Basic applications" block. */
.fee-table tr.group th {
  font-size: var(--fs-label); border-bottom: 1px solid var(--line);
  padding-top: var(--sp-5); color: var(--gold-600); letter-spacing: .12em;
}
.fee-table td.sub { padding-left: var(--sp-5); position: relative; }
.fee-table td.sub::before {
  content: ""; position: absolute; left: 2px; top: 1.5em;
  width: 10px; height: 1px; background: var(--gold-500);
}
.fee-table .stack { margin: 0; padding: 0; list-style: none; }
.fee-table .stack li { padding: 2px 0; }
.fee-table .note-inline { display: block; font-size: var(--fs-xs); color: var(--muted); margin-top: 4px; }

.fee-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-5); background: var(--paper); box-shadow: var(--shadow-sm); }
@media (max-width: 560px) {
  .fee-wrap { padding: var(--sp-4) var(--sp-3); }
  .fee-table { font-size: .85rem; }
  .fee-table td { padding: var(--sp-2) var(--sp-2) var(--sp-2) 0; }
  .fee-table th { padding-right: var(--sp-2); }
  .fee-table td.sub { padding-left: var(--sp-4); }
}
.fee-callouts { display: grid; gap: var(--sp-3); margin-top: var(--sp-5); }
@media (min-width: 760px) { .fee-callouts { grid-template-columns: repeat(3, 1fr); } }
.callout { border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-5); background: var(--cream); }
.callout h4 { font-family: var(--font-caps); font-size: var(--fs-label); letter-spacing: .09em; text-transform: uppercase; color: var(--navy-800); margin-bottom: var(--sp-1); }
.callout p { font-size: var(--fs-sm); color: var(--muted); }
.callout .big { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--navy-800); line-height: 1.2; margin-bottom: 4px; }

.faq-compact { padding: 0 0 56px; background: var(--navy-800); }
.faq-master {
  max-width: 820px; margin: 0 auto;
  border-top: 1px solid rgba(201,162,39,.22); padding-top: var(--sp-7);
}
.faq-master > summary {
  cursor: pointer; list-style: none; padding: var(--sp-5) 0;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--sp-1);
  border-bottom: 1px solid rgba(201,162,39,.22);
}
.faq-master > summary::-webkit-details-marker { display: none; }
.faq-master > summary::after {
  content: "Tap to expand ↓";
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-size: .74rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; line-height: 1;
  color: #fff; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius);
  padding: 12px 24px; margin-top: var(--sp-3);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.faq-master > summary:hover::after {
  border-color: var(--gold-500); color: var(--gold-400); background: rgba(201,162,39,.1);
}
.faq-master > summary:focus-visible::after { border-color: var(--gold-500); color: var(--gold-400); }
.faq-master[open] > summary::after { content: "Tap to collapse ↑"; }
.faq-master-title { font-family: var(--font-display); font-size: var(--fs-display); font-weight: 600; color: #fff; line-height: 1.18; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; list-style: none; padding: var(--sp-4) var(--sp-5); font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600; color: var(--navy-800); display: flex; gap: var(--sp-3); align-items: center; justify-content: space-between; }
.faq summary:hover { color: var(--gold-600); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--gold-600); line-height: 1; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .a { padding: var(--sp-4) var(--sp-5) var(--sp-5); color: var(--muted); font-size: var(--fs-body); line-height: 1.72; }
.faq .a p + p { margin-top: var(--sp-2); }

/* ---------- testimonials (carousel) ---------- */
.testimonials { background: var(--cream); border-top: 1px solid var(--line); }
.tcarousel { position: relative; }
.tcarousel-track {
  --tgap: 18px;
  display: flex; gap: var(--tgap); overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 6px 22px; margin: 0 -6px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.tcarousel-track::-webkit-scrollbar { display: none; }
.tcarousel-track .quote {
  scroll-snap-align: start; flex: 0 0 86%; max-width: 420px;
}
@media (min-width: 640px) {
  .tcarousel-track .quote { flex-basis: calc((100% - var(--tgap)) / 2); max-width: none; }
}
@media (min-width: 1020px) {
  .tcarousel-track .quote { flex-basis: calc((100% - 2 * var(--tgap)) / 3); max-width: none; }
}

.quote {
  /* <figure> carries a UA default of `margin: 1em 40px`. Left in place that is
     80px of horizontal margin on every card, which is what pushed the third
     one out of the track no matter what flex-basis said. */
  margin: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-card); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: var(--sp-3); min-height: 100%;
}
.quote .stars { color: var(--gold-500); letter-spacing: .18em; font-size: .82rem; }
.quote blockquote { margin: 0; font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: var(--ink); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.quote figcaption { border-top: 1px solid var(--line); padding-top: 15px; margin-top: auto; }
.quote .who { font-family: var(--font-caps); font-size: .82rem; font-weight: 600; color: var(--navy-800); letter-spacing: .06em; }
.quote .what { font-size: .76rem; color: var(--gold-600); font-weight: 500; margin-top: 3px; }

.tcarousel-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 6px; }
.tcarousel-dots { display: flex; gap: 7px; flex-wrap: wrap; justify-content: center; max-width: 60%; }
.tcarousel-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: var(--line); transition: background .2s ease, transform .2s ease;
}
.tcarousel-dots button[aria-current="true"] { background: var(--gold-500); transform: scale(1.3); }
.tcarousel-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper);
  color: var(--navy-800); display: grid; place-items: center; cursor: pointer; flex: none;
  transition: border-color .18s ease, color .18s ease;
}
.tcarousel-arrow:hover:not(:disabled) { border-color: var(--gold-500); color: var(--gold-600); }
.tcarousel-arrow:disabled { opacity: .35; cursor: not-allowed; }
.tcarousel-count { font-size: .76rem; color: var(--muted); text-align: center; margin-top: 10px; letter-spacing: .04em; }

.booking { background: var(--paper); border-block: 1px solid var(--line); }
.booking-grid { display: grid; gap: 26px; align-items: start; }
@media (min-width: 1000px) { .booking-grid { grid-template-columns: 380px 1fr; } }

.info-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-card); }
.info-card + .info-card { margin-top: var(--sp-4); }
.info-head { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.info-head .ico { width: 42px; height: 42px; border-radius: 9px; background: var(--navy-800); color: var(--gold-400); display: grid; place-items: center; flex: none; overflow: hidden; }
.info-head .ico.ico-image { background: none; padding: 0; }
.info-head .ico img { width: 100%; height: 100%; object-fit: cover; display: block; }
.info-head h3 { font-family: var(--font-caps); font-size: var(--fs-label); letter-spacing: .1em; text-transform: uppercase; color: var(--navy-800); }
.info-head p { font-size: var(--fs-xs); color: var(--muted); margin-top: 3px; }
.info-row { display: flex; justify-content: space-between; gap: var(--sp-3); font-size: var(--fs-sm); padding: var(--sp-2) 0; border-top: 1px solid var(--line); }
.info-row:first-of-type { border-top: 0; }
.info-row dt { color: var(--muted); }
.info-row dd { margin: 0; font-weight: 600; color: var(--navy-800); text-align: right; }
.fee { display: flex; justify-content: space-between; align-items: center; gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; }
.fee + .fee { margin-top: 10px; }
.fee .amt { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy-800); }

.booker { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-md); overflow: hidden; }
.booker-head { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: #fff; padding: var(--sp-5) var(--sp-card); }
.booker-head h3 { font-family: var(--font-caps); font-size: .9rem; letter-spacing: .11em; text-transform: uppercase; }
.booker-head p { font-size: var(--fs-xs); color: #B7C0CD; margin-top: 5px; }
.booker-body { padding: var(--sp-card); }

.steps { display: flex; gap: 8px; margin-bottom: 24px; }
.step { flex: 1; text-align: center; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; color: var(--muted); padding-bottom: 10px; border-bottom: 3px solid var(--line); }
.step.on { color: var(--navy-800); border-bottom-color: var(--gold-500); }
.step.done { color: var(--gold-600); border-bottom-color: var(--gold-400); }

label.fld { display: block; margin-bottom: 16px; }
label.fld > span { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--navy-800); margin-bottom: 7px; }
.input, select.input, textarea.input {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.input:focus { border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,162,39,.16); outline: none; }
.hint { font-size: .76rem; color: var(--muted); margin-top: 6px; }

.grid-2 { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; }
.slot {
  font: inherit; font-size: .9rem; font-weight: 600; font-variant-numeric: tabular-nums;
  padding: 12px 6px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--paper); color: var(--navy-800); cursor: pointer;
  transition: all .16s ease;
}
.slot:hover { border-color: var(--gold-500); background: #FFFDF6; }
.slot[aria-pressed="true"] { background: var(--navy-800); border-color: var(--navy-800); color: var(--gold-400); }

.note { border-radius: 8px; padding: 13px 15px; font-size: .87rem; border: 1px solid; }
.note.info { background: #F4F7FB; border-color: #D5E0EC; color: #33475F; }
.note.warn { background: #FFF8E8; border-color: #EFD9A0; color: #7A5B10; }
.note.err  { background: #FDF1F1; border-color: #F0C9C9; color: #8A2B2B; }
.note.ok   { background: #F1F9F3; border-color: #C4E4CD; color: #1F5C33; }
.note + * { margin-top: 16px; }

.ref-box { text-align: center; padding: 26px; border: 2px dashed var(--gold-500); border-radius: var(--radius); background: #FFFDF6; }
.ref-code { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; letter-spacing: .12em; color: var(--navy-800); }
.summary-list { margin-top: 20px; text-align: left; }
.summary-list .info-row dd { font-weight: 600; }

.spinner { width: 22px; height: 22px; border: 2px solid var(--line); border-top-color: var(--gold-500); border-radius: 50%; animation: spin .7s linear infinite; margin: 26px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal .dow { text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding-bottom: 6px; }
.day {
  font: inherit; font-size: .88rem; font-weight: 500; font-variant-numeric: tabular-nums;
  aspect-ratio: 1; border: 1px solid var(--line); border-radius: 8px; background: var(--paper);
  color: var(--navy-800); cursor: pointer; display: grid; place-items: center; position: relative;
  transition: all .16s ease;
}
.day:hover:not(:disabled) { border-color: var(--gold-500); background: #FFFDF6; }
.day:disabled { color: #B9C0C9; background: #F7F7F5; cursor: not-allowed; border-color: transparent; }
.day[aria-pressed="true"] { background: var(--navy-800); border-color: var(--navy-800); color: var(--gold-400); }
.day .dot { position: absolute; bottom: 6px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-500); }
.day[aria-pressed="true"] .dot { background: var(--gold-400); }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-nav strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy-800); }
.icon-btn { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); cursor: pointer; color: var(--navy-800); }
.icon-btn:hover:not(:disabled) { border-color: var(--gold-500); color: var(--gold-600); }
.icon-btn:disabled { opacity: .35; cursor: not-allowed; }

.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.actions .btn { flex: 1; min-width: 130px; }

.contact { background: var(--cream); }
.contact-grid { display: grid; gap: var(--sp-5); }
@media (min-width: 780px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-6); box-shadow: var(--shadow-sm); }
.contact-card .ico { width: 46px; height: 46px; border-radius: 9px; background: var(--navy-800); color: var(--gold-400); display: grid; place-items: center; margin-bottom: var(--sp-4); }
.contact-card h3 { font-family: var(--font-caps); font-size: var(--fs-label); letter-spacing: .1em; text-transform: uppercase; color: var(--navy-800); margin-bottom: var(--sp-3); }
.contact-card p, .contact-card a { color: var(--muted); font-size: var(--fs-body); line-height: 1.7; }
.contact-card a:hover { color: var(--gold-600); }
.map { margin-top: 22px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.map iframe { width: 100%; height: 300px; border: 0; display: block; }

footer { background: var(--navy-900); color: #97A2B1; font-size: var(--fs-sm); padding: var(--sp-8) 0 0; border-top: 1px solid rgba(201,162,39,.2); }
.foot-grid { display: grid; gap: var(--sp-6); padding-bottom: var(--sp-7); }
@media (min-width: 780px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1.2fr; gap: var(--sp-7); } }
footer h4 { font-family: var(--font-caps); color: #fff; font-size: var(--fs-label); letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--sp-3); }
footer a:hover { color: var(--gold-400); }
footer li + li { margin-top: var(--sp-2); }
.foot-brand { margin-bottom: var(--sp-4); }
.foot-brand .brand-crest { height: 46px; }
.foot-brand .brand-wordmark { height: 27px; }
footer p { line-height: 1.7; }
footer strong { color: #D3D9E2; font-weight: 600; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0 30px; font-size: .78rem; }
.foot-bottom .wrap { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; align-items: center; }
.disclaimer { background: #030A14; color: #6E7A8A; font-size: .74rem; padding: 18px 0; line-height: 1.6; }

/* ---------- page views: home, team and booking all live in this file ---------- */
/* The hidden attribute is only a UA-level display:none, so any author rule
   that sets display — .btn is inline-flex — silently defeats it. Anything
   marked hidden must actually be gone. */
[hidden] { display: none !important; }
[data-view][hidden] { display: none !important; }

.page-hero {
  background: var(--navy-800); color: #fff; position: relative; overflow: hidden;
  padding: clamp(48px, 6vw, 72px) 0 clamp(44px, 5.5vw, 64px); text-align: center;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(110% 90% at 50% 0%, rgba(30,53,101,.8), transparent 65%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700) 60%, var(--navy-900));
}
.page-hero::after { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(201,162,39,.14) 1px, transparent 1px); background-size: 24px 24px; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-caps); text-transform: uppercase; font-size: clamp(1.65rem, 3.9vw, 2.6rem); color: #fff; margin-top: var(--sp-2); letter-spacing: .01em; }
.page-hero p { max-width: 62ch; margin: var(--sp-4) auto 0; color: #C6CEDA; font-size: 1.01rem; line-height: 1.7; }
.breadcrumb { font-size: var(--fs-xs); color: #93A0B2; margin-bottom: var(--sp-1); }
.breadcrumb a { color: #C6CEDA; }
.breadcrumb a:hover { color: var(--gold-400); }

/* The team page uses a light introduction so the portraits and hierarchy are
   not framed by consecutive blocks of navy. Other page heroes stay dark. */
#teamView .page-hero {
  background: linear-gradient(145deg, #FCFAF6 0%, #F4EFE3 100%);
  border-bottom: 1px solid var(--line);
}
#teamView .page-hero::after {
  background-image: radial-gradient(rgba(11,27,61,.08) 1px, transparent 1px);
}
#teamView .page-hero h1 { color: var(--navy-800); }
#teamView .page-hero p { color: var(--muted); }
#teamView .page-hero .eyebrow { color: var(--gold-600) !important; }
#teamView .breadcrumb { color: #7A8492; }
#teamView .breadcrumb a { color: var(--navy-700); }
#teamView .breadcrumb a:hover { color: var(--gold-600); }

.team-section { padding: var(--sp-section) 0; background: var(--paper); }
.team-grid { display: grid; gap: var(--sp-6); }
.team-tier { position: relative; }
.team-tier + .team-tier::before {
  content: ""; position: absolute; width: 1px; height: 20px;
  background: rgba(201,162,39,.32);
  left: 50%; top: -26px;
}
.team-tier-label {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-3);
  margin-bottom: var(--sp-5); color: var(--navy-800);
  font-family: var(--font-caps); font-size: var(--fs-label); font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
}
.team-tier-label::before, .team-tier-label::after {
  content: ""; width: 42px; height: 1px; background: var(--gold-500);
}
.team-tier-grid { display: grid; gap: var(--sp-5); justify-content: center; }
.team-tier.principal .team-tier-grid,
.team-tier.senior .team-tier-grid,
.team-tier.caseworker .team-tier-grid { grid-template-columns: 1fr; }
.team-tier.operations .team-tier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.member-card {
  display: grid; gap: var(--sp-6); align-items: start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-card); box-shadow: var(--shadow-sm);
  grid-template-columns: 1fr;
  transition: box-shadow .22s ease, border-color .22s ease;
}
.member-card:hover { box-shadow: var(--shadow-md); border-color: rgba(201,162,39,.4); }
@media (min-width: 760px) { .member-card { grid-template-columns: 230px 1fr; padding: var(--sp-6); gap: var(--sp-7); } }
@media (min-width: 760px) {
  .team-tier.operations .member-card { grid-template-columns: 155px 1fr; padding: var(--sp-5); gap: var(--sp-5); }
  .team-tier.operations .member-body p { font-size: var(--fs-sm); }
}
@media (max-width: 900px) {
  .team-tier.operations .team-tier-grid { grid-template-columns: 1fr; }
  .team-tier + .team-tier::before { display: none; }
}

/* Portraits are all cropped to the same 4:5 frame, so the column reads evenly
   however the original photograph was shot. */
.team-photo {
  position: relative; width: min(220px, 100%); aspect-ratio: 4 / 5; margin: 0 auto;
  border-radius: var(--radius-sm); overflow: hidden; background: var(--navy-800);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.team-photo::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
}
@media (min-width: 760px) { .team-photo { width: 100%; margin: 0; } }
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.member-body h2 { font-family: var(--font-display); font-size: 1.55rem; color: var(--navy-800); }
.member-role {
  font-family: var(--font-caps); font-size: var(--fs-label); letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-600); font-weight: 600; margin-top: var(--sp-1);
}
.member-role::after { content: ""; display: block; width: 40px; height: 2px; background: var(--gold-500); margin-top: var(--sp-3); }
.member-languages { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: var(--sp-4); }
.member-languages strong {
  font-family: var(--font-caps); font-size: .67rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--navy-800); margin-right: 3px;
}
.language-tag {
  display: inline-flex; align-items: center; padding: 4px 9px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--cream);
  color: var(--muted); font-size: .7rem; font-weight: 500;
}
.member-specialisms { display: flex; flex-wrap: wrap; gap: 7px; margin-top: var(--sp-3); }
.specialism-tag {
  display: inline-flex; align-items: center; padding: 4px 9px;
  border-radius: 4px; background: rgba(201,162,39,.11); color: #755A16;
  font-size: .69rem; font-weight: 600;
}
.member-body p { margin-top: var(--sp-3); color: var(--muted); font-size: var(--fs-body); line-height: 1.75; }

.cta-band { background: var(--navy-800); color: #fff; padding: var(--sp-8) 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(201,162,39,.12) 1px, transparent 1px); background-size: 24px 24px; }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 1.95rem); }
.cta-band p { color: #C6CEDA; margin-top: var(--sp-2); }
.cta-band .actions { margin-top: var(--sp-5); display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }
.cta-band .actions .btn { flex: 0 1 auto; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- review prompt, shown once a booking is confirmed ---------- */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: var(--sp-5);
  background: rgba(5,16,31,.72); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500); box-shadow: var(--shadow-lg);
  width: min(480px, 100%); max-height: 90vh; overflow-y: auto;
  padding: var(--sp-6) var(--sp-card);
  transform: translateY(12px) scale(.98); transition: transform .25s ease;
}
.modal.open .modal-card { transform: none; }
.modal-card h3 {
  font-family: var(--font-display); font-size: 1.45rem; color: var(--navy-800);
}
.modal-card > p { color: var(--muted); font-size: var(--fs-sm); margin-top: var(--sp-2); }

/* The stars are radio inputs underneath, so the keyboard and a screen reader
   get a real rating control rather than five unlabelled buttons. */
.stars-input { display: flex; justify-content: center; gap: var(--sp-1); margin: var(--sp-5) 0 var(--sp-2); }
.stars-input input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.stars-input label {
  cursor: pointer; font-size: 2.1rem; line-height: 1; color: var(--line);
  transition: color .15s ease, transform .15s ease; padding: 2px;
}
.stars-input label:hover { transform: scale(1.12); }
.stars-input.on-1 label:nth-of-type(-n+1),
.stars-input.on-2 label:nth-of-type(-n+2),
.stars-input.on-3 label:nth-of-type(-n+3),
.stars-input.on-4 label:nth-of-type(-n+4),
.stars-input.on-5 label:nth-of-type(-n+5) { color: var(--gold-500); }
.stars-input input:focus-visible + label { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }
.stars-caption { text-align: center; font-size: var(--fs-xs); color: var(--muted); min-height: 1.2em; }

.modal .actions { margin-top: var(--sp-5); }
.modal-dismiss {
  display: block; margin: var(--sp-3) auto 0; background: none; border: 0;
  font: inherit; font-size: var(--fs-xs); color: var(--muted);
  text-decoration: underline; cursor: pointer;
}
.modal-dismiss:hover { color: var(--navy-800); }

.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
