/* ============================================================
   LONDON ENGAGEMENT RINGS — Editorial Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

:root {
  --cream:       #faf8f5;
  --white:       #ffffff;
  --black:       #0f0f0f;
  --text:        #2a2a2a;
  --text-muted:  #696969;
  --border:      #e5e0d8;
  --gold:        #b8976a;
  --max-w:       1100px;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Inter', system-ui, -apple-system, sans-serif;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); letter-spacing: -0.01em; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.3rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
a:hover { color: var(--gold); }

strong { font-weight: 500; }
em { font-style: italic; }

/* ── LAYOUT ─────────────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section       { padding: 80px 0; }
.section--sm   { padding: 48px 0; }
.section--lg   { padding: 120px 0; }
.section--cream { background: var(--cream); }

.section--dark {
  background: var(--black);
  color: rgba(255,255,255,0.8);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }

/* ── NAVIGATION ─────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
}

.nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }

/* ── NAV DROPDOWN ────────────────────────────────────────── */

.nav__item { position: relative; }

.nav__caret {
  font-size: 0.6rem;
  margin-left: 0.3rem;
  opacity: 0.55;
  display: inline-block;
  transition: transform 0.2s;
}
.nav__item:hover .nav__caret,
.nav__item:focus-within .nav__caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: -1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  min-width: 240px;
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 200;
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* invisible bridge so mouse doesn't lose hover between link and dropdown */
.nav__item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 20px;
}

.nav__dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav__dropdown li a:hover {
  background: var(--cream);
  color: var(--gold);
}

.nav__mobile { display: none; }

/* ── HERO ────────────────────────────────────────────────── */

.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}

.hero--dark {
  background: var(--black);
  border-bottom: none;
  padding: 100px 0 88px;
}
.hero--dark h1,
.hero--dark .hero__sub { color: #fff; }
.hero--dark .hero__sub { color: rgba(255,255,255,0.65); }

.hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__title  { max-width: 860px; margin-bottom: 1.5rem; }
.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ── SECTION HEADER ─────────────────────────────────────── */

.sh { margin-bottom: 3rem; }

.sh__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.sh__title { margin-bottom: 0.9rem; }

.sh__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ── GRID ────────────────────────────────────────────────── */

.grid { display: grid; gap: 1.75rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── CARDS ───────────────────────────────────────────────── */

.card {
  border: 1px solid var(--border);
  padding: 2rem;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover {
  border-color: var(--gold);
  color: inherit;
  transform: translateY(-2px);
}

/* Interactive tool cards — gold top accent, warm tint */
.card--interactive {
  background: #f7f2e9;
  border-color: var(--border);
  border-top: 3px solid var(--gold);
}
.card--interactive .card__eyebrow { color: var(--gold); }
.card--interactive:hover { background: #f2ebe0; }

.card__eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.card__title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.card__arrow {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

/* ── RETAILER LISTINGS ───────────────────────────────────── */

.retailer-list { margin-top: 0.5rem; }

.retailer {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}
.retailer:first-child { border-top: 1px solid var(--border); }

/* Our pick badge */
.retailer--top {
  position: relative;
}
.retailer--top::after {
  content: 'Our pick';
  position: absolute;
  top: 2rem;
  right: 0;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.retailer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.4rem;
}

.retailer__left { display: flex; gap: 1rem; flex: 1; align-items: flex-start; }

.retailer__num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold);
  padding-top: 0.3rem;
  min-width: 1.5rem;
}

.retailer__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
}

.retailer__rating { text-align: right; }
.retailer__stars  { color: var(--gold); font-size: 0.8rem; display: block; letter-spacing: 0.05em; }
.retailer__score  { font-size: 0.72rem; color: var(--text-muted); display: block; margin-top: 0.15rem; }

.retailer__address {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 2.5rem;
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
}

.retailer__desc {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  padding-left: 2.5rem;
  margin: 0;
}

/* ── HONOURABLE MENTIONS ─────────────────────────────────── */
.honourable-mentions {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
}
.honourable-mentions__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  margin: 0 0 0.35rem;
  letter-spacing: 0.01em;
}
.honourable-mentions__intro {
  font-size: 0.8rem;
  color: var(--text-muted, #8a8278);
  margin: 0 0 1rem;
}
.honourable-mentions__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}
.honourable-mentions__list li {
  font-size: 0.88rem;
  color: var(--text, #2a2520);
  padding: 0 1.25rem 0 0;
  border-right: 1px solid var(--border);
  margin-right: 1.25rem;
  line-height: 1.5;
}
.honourable-mentions__list li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

/* ── BREADCRUMB ──────────────────────────────────────────── */

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 0.4rem; opacity: 0.5; }

/* ── EDITORIAL IMAGE ─────────────────────────────────────── */

.editorial-img-wrap {
  overflow: hidden;
  position: relative;
}

.editorial-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: grayscale(15%);
  transition: transform 0.6s ease;
}

.editorial-img-wrap:hover .editorial-img { transform: scale(1.02); }

/* Portrait variant — for phone/portrait images */
.editorial-img-wrap--portrait {
  display: flex;
  justify-content: center;
  background: var(--cream);
  padding: 2.5rem 0;
}
.editorial-img-wrap--portrait > div {
  display: inline-block;
}
.editorial-img-wrap--portrait .editorial-img-inner {
  overflow: hidden;
  border-radius: 1px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  width: min(420px, 85vw);
  height: min(530px, 107vw);
  cursor: zoom-in;
}
.editorial-img-wrap--portrait .editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 1px;
  transition: transform 0.7s ease, object-position 0.7s ease;
  filter: grayscale(0%);
}
.editorial-img-wrap--portrait .editorial-img-inner:hover .editorial-img {
  transform: scale(1.4);
  object-position: 48% 18%;
}
.editorial-img-wrap--portrait .editorial-img-credit {
  position: static;
  display: block;
  text-align: center;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
@media (max-width: 480px) {
  .editorial-img-wrap--portrait .editorial-img-inner {
    width: 85vw;
    height: 107vw;
  }
}

.editorial-img-credit {
  position: absolute;
  bottom: 0.75rem;
  right: 1rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

.editorial-img-credit a { color: rgba(255,255,255,0.55); text-decoration: none; }
.editorial-img-credit a:hover { color: rgba(255,255,255,0.85); }

@media (max-width: 768px) {
  .editorial-img { height: 240px; }
}

/* ── LOCATION HEADER STRIP ────────────────────────────── */
.location-header-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.location-header-strip__inner {
  max-width: var(--max-w, 960px);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.location-header-strip__left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.location-header-strip__ornament {
  font-size: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.35em;
  opacity: 0.55;
  display: block;
  line-height: 1;
}
.location-header-strip__district {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.location-header-strip__postcode {
  font-size: 0.68rem;
  color: var(--text-muted, #8a8278);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: block;
}
.location-header-strip__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(184,151,106,0.35), transparent);
  margin-bottom: 0.2rem;
}
@media (max-width: 600px) {
  .location-header-strip__rule { display: none; }
}

/* ── FAQ PAGE ─────────────────────────────────────────── */
.faq-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-of-type { border-bottom: none; }
.faq-item__q {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--black);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.faq-item__a {
  color: var(--text, #2a2520);
  line-height: 1.8;
  margin: 0;
}

/* ── BEFORE YOU VISIT STRIP ──────────────────────────────── */

.visit-strip {
  background: var(--black);
  padding: 3rem 0;
}

.visit-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.visit-strip__label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.visit-strip__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
}

.visit-strip__text a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visit-strip__text a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .visit-strip__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── PROSE (guide content) ───────────────────────────────── */

.prose-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .prose-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .prose-layout aside { display: none; }
}

.prose { max-width: 680px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.5rem 0 1rem; }
.prose h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin: 2rem 0 0.75rem; }
.prose ul, .prose ol { margin: 1rem 0 1.25rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; }
.prose p  { font-size: 1.02rem; }

/* ── CALLOUT ─────────────────────────────────────────────── */

.callout {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.callout p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--black);
  margin: 0;
  line-height: 1.6;
}

/* ── INTRO QUOTE ─────────────────────────────────────────── */

.intro-quote {
  background: var(--cream);
  padding: 2.75rem 3rem;
  margin-bottom: 3rem;
}
.intro-quote p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--black);
  margin: 0;
}

/* ── TRUST BAR ───────────────────────────────────────────── */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 3rem 0;
}

.trust-item__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.trust-item__text {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--black);
  line-height: 1.4;
}

/* ── DISTRICT MAP LIST ───────────────────────────────────── */

.district-nav {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.district-nav li { border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.district-nav li:nth-child(even) { border-right: none; }
.district-nav li:nth-last-child(-n+2) { border-bottom: none; }
.district-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.district-nav a:hover { background: var(--cream); color: var(--gold); }
.district-nav__name { font-family: var(--serif); font-size: 1.25rem; display: block; margin-bottom: 0.2rem; color: var(--black); }
.district-nav__tag  { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--text-muted); }
.district-nav__arrow { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */

.footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 40px;
}

.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer__logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.85rem;
}

.footer__tagline { font-size: 0.83rem; line-height: 1.65; }

.footer__col-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
  display: block;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.55rem; }
.footer__links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover { color: #fff; }

.footer__bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 24px 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
}

.footer__disclaimer { max-width: 540px; }

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── QUIZ CTA SECTION (homepage) ─────────────────────────── */

.quiz-cta-section {
  background: var(--black);
  padding: 5rem 0;
}
.quiz-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.quiz-cta-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.quiz-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.quiz-cta-body {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.quiz-cta-questions {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  counter-reset: q;
}
.quiz-cta-questions li {
  counter-increment: q;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.quiz-cta-questions li::before {
  content: counter(q);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
  font-family: var(--font-body);
}
.quiz-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--black);
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.quiz-cta-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* Tool cards within quiz-cta-section */
.quiz-cta-tool {
  display: flex;
  flex-direction: column;
}
.quiz-cta-tool__num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.quiz-cta-tool__title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.quiz-cta-tool__body {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

/* Three-column variant for secondary tools row */
.quiz-cta-grid--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}
.quiz-cta-tool--compact .quiz-cta-tool__num {
  font-size: 1.8rem;
}
.quiz-cta-tool--compact .quiz-cta-tool__title {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

/* Right column — preview card */
.quiz-cta-preview {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.75rem;
  border-radius: 3px;
}
.quiz-cta-preview__label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  display: block;
  margin-bottom: 1.25rem;
}
.quiz-cta-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.quiz-cta-preview__stone {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.quiz-cta-preview__stone--rec {
  border-color: var(--gold);
  background: rgba(184,151,106,0.08);
}
.quiz-cta-preview__stone span {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
}
.quiz-cta-preview__stone--rec span { color: var(--gold); }
.quiz-cta-preview__stone strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.quiz-cta-preview__stone em {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-style: normal;
}
.quiz-cta-preview__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  margin: 0;
  font-style: italic;
}

/* ── QUIZ INLINE CALLOUT (location pages) ────────────────── */
.quiz-callout {
  background: #f0ebe0;
  margin: 3rem 0;
  padding: 2.5rem 2rem;
  text-align: center;
}
.quiz-callout__gem {
  color: var(--gold);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.3em;
}
.quiz-callout__heading {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.quiz-callout__compare {
  display: inline-flex;
  gap: 2rem;
  margin-bottom: 0.9rem;
}
.quiz-callout__stone {
  font-size: 0.78rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  line-height: 1.4;
}
.quiz-callout__stone strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}
.quiz-callout__stone--lab strong { color: var(--gold); }
.quiz-callout__divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.quiz-callout__sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.quiz-callout__link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s ease;
  display: inline-block;
  margin-top: 0.5rem;
}
.quiz-callout__link:hover { color: var(--gold); }

/* Two-tool layout within callout */
.quiz-callout__tools {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1rem;
  text-align: left;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.quiz-callout__tool-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin-top: 0.25rem;
}
.quiz-callout__tool-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  display: block;
  margin-bottom: 0.4rem;
}
.quiz-callout__tool-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.quiz-callout__tool-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 600px) {
  .quiz-callout__tools { grid-template-columns: 1fr; }
  .quiz-callout__tool-divider { width: auto; height: 1px; }
}

/* ── UTILITIES ───────────────────────────────────────────── */

.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }

/* ── MAP STRIP ───────────────────────────────────────────── */

.map-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-bottom: 0;
}
.map-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.map-strip__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
}
.map-strip__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.map-strip__btn {
  white-space: nowrap;
  border: 1px solid var(--black);
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--black);
  font-family: var(--font-body);
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.map-strip__btn:hover {
  background: var(--black);
  color: #fff;
}

/* Maps link in address */
.maps-link {
  font-size: 0.78rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.maps-link:hover { text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    padding: 0.6rem 0;
  }
  .nav__mobile a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
  }
  .nav__inner {
    flex-direction: column;
    height: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    gap: 0.35rem;
  }
  .container { padding: 0 1.25rem; }
  .section { padding: 52px 0; }
  .section--lg { padding: 68px 0; }
  .hero { padding: 56px 0 44px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; gap: 1.5rem; }
  .district-nav { grid-template-columns: 1fr; }
  .district-nav li { border-right: none; }
  .district-nav li:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .district-nav li:last-child { border-bottom: none; }
  .retailer__top { flex-direction: column; gap: 0.4rem; }
  .retailer__rating { text-align: left; }
  .retailer__address, .retailer__desc { padding-left: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; }
  .intro-quote { padding: 2rem; }
  .intro-quote p { font-size: 1.1rem; }
  .quiz-cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .quiz-cta-grid--three { grid-template-columns: 1fr; gap: 1.75rem; }
  .quiz-cta-preview { display: none; }
  .quiz-callout { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .quiz-callout__btn { width: 100%; text-align: center; }
  .map-strip__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip__item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem; }
  .stat-strip__item:last-child { border-bottom: none; }
  .london-map-wrap { display: none; }
  .map-walk-note   { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   WOW LAYER — progressive enhancement effects
═══════════════════════════════════════════════════════════ */

/* ── 1. Reading progress bar ─────────────────────────────── */
.reading-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.1s linear;
}

/* ── 2. Scroll reveal ────────────────────────────────────── */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger siblings */
.js .reveal:nth-child(2) { transition-delay: 0.08s; }
.js .reveal:nth-child(3) { transition-delay: 0.16s; }
.js .reveal:nth-child(4) { transition-delay: 0.24s; }
.js .reveal:nth-child(5) { transition-delay: 0.32s; }

/* ── 3. Sparkle cursor ───────────────────────────────────── */
.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  animation: sparkle-up 0.85s ease-out forwards;
  line-height: 1;
  font-style: normal;
}
@keyframes sparkle-up {
  0%   { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
  100% { opacity: 0;   transform: translate(-50%, -210%) scale(0.2); }
}

/* ── 4. Stat strip ───────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 3rem 0 0;
}
.stat-strip__item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-strip__item:last-child { border-right: none; }
.stat-strip__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat-strip__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* ── 5. London SVG map ───────────────────────────────────── */
.london-map-section { margin: 2.5rem 0 0; }

.london-map-wrap {
  position: relative;
  border: 1px solid var(--border);
  background: #faf8f5;
  overflow: hidden;
}
.london-map { width: 100%; height: auto; display: block; }

/* All SVG text uses the site font */
.london-map text { font-family: 'Inter', system-ui, sans-serif; }

.map-park       { fill: #e4e8d4; stroke: #ced4b8; stroke-width: 1; }
.map-park-label {
  font-size: 9px; fill: #a0a888;
  text-anchor: middle; dominant-baseline: middle;
  letter-spacing: 0.08em; pointer-events: none;
}
.map-thames { stroke: #b8ccd8; stroke-width: 18; fill: none; stroke-linecap: round; opacity: 0.5; }
.map-thames-label {
  font-size: 8.5px; fill: #5a8499;
  text-anchor: middle; font-style: italic;
  pointer-events: none; letter-spacing: 0.1em;
}
.map-credit {
  font-size: 7.5px; fill: #bbb;
  text-anchor: end; opacity: 0.6;
  pointer-events: none;
}
.map-walk-note {
  padding: 0.6rem 1rem;
  background: #f4f1ec;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.map-district { cursor: pointer; outline: none; text-decoration: none; }

.map-dot  { fill: var(--gold); transition: r 0.25s ease, fill 0.25s ease; }
.map-ring {
  fill: none; stroke: var(--gold); stroke-width: 1.5; r: 8; opacity: 0;
  animation: ring-ping 3s ease-out infinite;
}
@keyframes ring-ping {
  0%   { r: 8;  opacity: 0.65; }
  100% { r: 28; opacity: 0;    }
}
.map-district:nth-of-type(2) .map-ring { animation-delay: 0.6s; }
.map-district:nth-of-type(3) .map-ring { animation-delay: 1.2s; }
.map-district:nth-of-type(4) .map-ring { animation-delay: 1.8s; }
.map-district:nth-of-type(5) .map-ring { animation-delay: 2.4s; }

/* Higher specificity (.london-map text.map-label) so it beats .london-map text */
.london-map text.map-label {
  font-size: 12px; fill: var(--black);
  font-family: 'Cormorant Garamond', Georgia, serif; text-anchor: middle;
  pointer-events: none; font-weight: 500;
  transition: fill 0.2s ease;
}
.map-district:hover .map-dot,
.map-district:focus .map-dot  { r: 11; fill: #c8a840; }
.map-district:hover .map-label,
.map-district:focus .map-label { fill: var(--gold); }

.map-tooltip {
  position: absolute;
  background: var(--black);
  color: #fff;
  padding: 0.6rem 0.9rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  white-space: normal;
  max-width: 220px;
  z-index: 20;
  border-radius: 2px;
}
.map-tooltip.is-visible { opacity: 1; }
.map-tooltip__name {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.map-tooltip__count {
  display: block;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.map-tooltip__travel {
  display: block;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.25rem;
}
.map-tooltip__cta {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
}

/* ── General button ─────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--black);
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ── Contact form ────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form__honey { display: none; }
.contact-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form__field label {
  font-size: 0.78rem;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  border-radius: 2px;
  transition: border-color 0.2s ease;
  width: 100%;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form__field textarea { resize: vertical; min-height: 120px; }
.contact-form__submit {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s ease;
}
.contact-form__submit:hover { background: var(--gold); }

.contact-aside-block {
  border-left: 2px solid var(--border);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}
.contact-aside-block__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.contact-aside-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

/* ── Jargon term tooltips ────────────────────────────────── */
.term {
  border-bottom: 1px dotted var(--gold);
  cursor: help;
  position: relative;
  display: inline;
}
.term::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1c1c1c;
  color: #f0ebe4;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.55;
  padding: 0.55rem 0.8rem;
  border-radius: 3px;
  width: 220px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 200;
  white-space: normal;
}
.term:hover::after,
.term:focus::after,
.term.is-open::after {
  opacity: 1;
}
@media (max-width: 600px) {
  .term::after {
    left: 0;
    transform: none;
    width: 190px;
  }
}

/* ── Reduced motion overrides ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .sparkle    { display: none; }
  .map-ring   { animation: none; }
  .reading-progress { transition: none; }
}
