:root {
  --bg: #080706;
  --bg-soft: #0f0c0a;
  --panel: #14100d;
  --panel-2: #1a1410;
  --ivory: #f3efe6;
  --muted: #aaa095;
  --gold: #b98924;
  --gold-light: #dbbd6a;
  --ruby: #a70d36;
  --line: rgba(243, 239, 230, 0.13);
  --line-strong: rgba(219, 189, 106, 0.36);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --pad: clamp(24px, 5.4vw, 88px);
  --section-gap: clamp(88px, 11vw, 170px);
  --max: 1600px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--ivory);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p { margin: 0 0 1.25em; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--ivory);
  color: #111;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(68px, 8.6vw, 150px); }
h2 { font-size: clamp(54px, 6.7vw, 108px); }
h3 { font-size: clamp(29px, 2.5vw, 45px); }
em { color: var(--gold-light); font-weight: 500; }

.eyebrow {
  margin: 0 0 28px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: var(--section-gap) var(--pad);
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: height .25s ease, background-color .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  height: 82px;
  background: rgba(8, 7, 6, .96);
  border-color: var(--line);
}
.brand { width: clamp(150px, 14vw, 220px); flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 2.8vw, 52px); }
.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(243, 239, 230, .77);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--gold-light);
  transition: right .2s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { right: 0; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 7px auto;
  background: var(--ivory);
  transition: transform .25s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: 3vw;
  padding: 150px var(--pad) 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 47%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(167, 13, 54, .18), transparent 66%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; max-width: 860px; }
.hero__copy {
  max-width: 585px;
  margin-top: 38px;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.9;
}
.hero__actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.hero__visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-gem {
  position: relative;
  z-index: 2;
  width: min(500px, 37vw);
  height: auto;
  filter: drop-shadow(0 40px 60px rgba(77, 0, 25, .32));
}
.gem-halo {
  position: absolute;
  width: min(460px, 34vw);
  aspect-ratio: 1;
  border: 1px solid rgba(219, 189, 106, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(185, 137, 36, .025), 0 0 0 150px rgba(185, 137, 36, .015);
}
.gem-caption {
  position: absolute;
  right: 3%;
  bottom: 8%;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 20px;
  border-left: 1px solid var(--gold);
  background: rgba(8, 7, 6, .78);
}
.gem-caption > span { color: var(--gold-light); font-size: 10px; letter-spacing: .16em; }
.gem-caption p { margin: 0; font-size: 11px; letter-spacing: .12em; line-height: 1.6; text-transform: uppercase; }
.gem-caption small { color: var(--muted); font-size: 9px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.button--gold { background: var(--gold); color: #0d0a07; }
.button--gold:hover, .button--gold:focus-visible { background: var(--gold-light); }
.button--outline { border-color: var(--line-strong); color: var(--ivory); }
.button--outline:hover, .button--outline:focus-visible { border-color: var(--gold-light); color: var(--gold-light); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ivory);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
}
.text-link span { color: var(--gold-light); transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translate(3px, -3px); }

.value-strip {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 52px);
  padding: 22px var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(243, 239, 230, .72);
  background: #0a0807;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
}
.value-strip i { color: var(--gold); font-style: normal; font-size: 12px; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(58px, 7vw, 105px);
}
.section-heading > p { margin: 0 0 5px; color: var(--muted); }
.collection-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gem-card { min-width: 0; }
.gem-card__visual {
  position: relative;
  height: clamp(430px, 42vw, 660px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .04);
}
.gem-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.04), transparent 42%, rgba(0,0,0,.2));
  pointer-events: none;
}
.gem-card__visual--ruby { background: radial-gradient(circle at 50% 44%, #3a0718, #12080b 67%); }
.gem-card__visual--sapphire { background: radial-gradient(circle at 50% 44%, #081f43, #070c14 67%); }
.gem-card__visual--emerald { background: radial-gradient(circle at 50% 44%, #073325, #07110d 67%); }
.gem-card__index {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(243,239,230,.5);
  font-size: 10px;
  letter-spacing: .16em;
}
.mini-gem { position: relative; width: 43%; aspect-ratio: .78; box-shadow: 0 30px 60px rgba(0,0,0,.45); }
.mini-gem::before, .mini-gem::after { content: ""; position: absolute; inset: 0; }
.mini-gem--oval {
  border-radius: 50%;
  background: conic-gradient(from 45deg, #ff4f72, #79001e, #e32051, #4c0015, #ff6a85, #79001e, #ff4f72);
}
.mini-gem--oval::before { inset: 13%; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); }
.mini-gem--cushion {
  aspect-ratio: 1;
  border-radius: 22%;
  transform: rotate(45deg);
  background: conic-gradient(from 10deg, #66a7ff, #071e59, #1a59b6, #061a43, #5e9cff, #071e59, #66a7ff);
}
.mini-gem--cushion::before { inset: 14%; border: 1px solid rgba(255,255,255,.3); border-radius: 18%; }
.mini-gem--emerald {
  aspect-ratio: .78;
  clip-path: polygon(23% 0, 77% 0, 100% 18%, 100% 82%, 77% 100%, 23% 100%, 0 82%, 0 18%);
  background: conic-gradient(from 35deg, #48d694, #044831, #0c8b5c, #032c20, #3bce8a, #044831, #48d694);
}
.mini-gem--emerald::before { inset: 13%; border: 1px solid rgba(255,255,255,.3); clip-path: inherit; }
.gem-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px 0; }
.gem-card__meta h3 { font-size: clamp(31px, 2.8vw, 45px); }
.gem-card__meta p { margin: 7px 0 0; color: var(--muted); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.gem-card__meta > span { color: var(--gold-light); font-size: 20px; }
.collection-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 75px; padding-top: 28px; border-top: 1px solid var(--line); }
.collection-cta p { margin: 0; color: var(--muted); }

.story { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(50px, 8vw, 130px); align-items: center; background: var(--bg-soft); }
.story__visual { position: relative; width: min(100%, 650px); }
.story__frame { position: relative; min-height: 680px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #21100f, #0f0908); }
.story__frame::before { content: ""; position: absolute; inset: 34px; border: 1px solid rgba(219,189,106,.22); }
.story__frame > span { position: absolute; right: 30px; bottom: 19px; color: rgba(219,189,106,.42); font-family: var(--serif); font-size: 46px; }
.story__gem {
  width: 52%;
  aspect-ratio: .82;
  clip-path: polygon(50% 0, 86% 12%, 100% 45%, 77% 84%, 50% 100%, 23% 84%, 0 45%, 14% 12%);
  background: conic-gradient(from 30deg, #f34a6d, #5c0019, #b80f3c, #34000e, #e52a57, #69001e, #f34a6d);
  box-shadow: 0 40px 80px rgba(58,0,18,.6);
}
.story__note { position: absolute; left: -26px; bottom: 52px; max-width: 220px; margin: 0; padding: 18px 22px; background: var(--ivory); color: #17110d; font-family: var(--serif); font-size: 20px; line-height: 1.2; }
.story__content > p:not(.eyebrow) { max-width: 640px; color: var(--muted); }
.story__content h2 { margin-bottom: 40px; }
.story__content .button { margin-top: 22px; }

.principles { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 8vw; }
.principles__list { border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 55px minmax(0, .8fr) minmax(220px, 1fr); gap: 30px; align-items: start; padding: 34px 0; border-bottom: 1px solid var(--line); }
.principle > span { color: var(--gold-light); font-size: 10px; letter-spacing: .14em; }
.principle h3 { font-size: clamp(30px, 2.5vw, 42px); }
.principle p { margin: 4px 0 0; color: var(--muted); }

.bespoke__panel { min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; background: var(--ivory); color: #14100d; overflow: hidden; }
.bespoke__gem { position: relative; min-height: 720px; display: grid; place-items: center; background: radial-gradient(circle, #6f001f 0 16%, #2e000d 42%, #090604 70%); overflow: hidden; }
.bespoke__gem span { position: absolute; border: 1px solid rgba(219,189,106,.36); border-radius: 50%; }
.bespoke__gem span:nth-child(1) { width: 250px; height: 250px; }
.bespoke__gem span:nth-child(2) { width: 400px; height: 400px; }
.bespoke__gem span:nth-child(3) { width: 580px; height: 580px; }
.bespoke__gem::after {
  content: "";
  width: 210px;
  aspect-ratio: .78;
  clip-path: polygon(50% 0, 86% 12%, 100% 45%, 77% 84%, 50% 100%, 23% 84%, 0 45%, 14% 12%);
  background: conic-gradient(from 30deg, #f34a6d, #5c0019, #b80f3c, #34000e, #e52a57, #69001e, #f34a6d);
  box-shadow: 0 40px 70px rgba(0,0,0,.45);
}
.bespoke__content { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(60px, 8vw, 120px); }
.bespoke__content .eyebrow { color: #8d6415; }
.bespoke__content h2 { font-size: clamp(48px, 5.2vw, 84px); }
.bespoke__content em { color: #8d6415; }
.bespoke__content p:not(.eyebrow) { max-width: 530px; margin: 34px 0; color: #62574f; }

.digital-growth { background: #0b0908; }
.service-preview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-preview { min-height: 285px; padding: 34px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.025), transparent); }
.service-preview > span { color: var(--gold-light); font-size: 10px; letter-spacing: .14em; }
.service-preview h3 { margin-top: 54px; font-size: clamp(31px, 2.5vw, 43px); }
.service-preview p { margin: 20px 0 0; color: var(--muted); }
.digital-growth__cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 38px; padding: 28px 0 0; border-top: 1px solid var(--line); }
.digital-growth__cta p { max-width: 560px; margin: 0; color: var(--muted); }

.contact { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(55px, 8vw, 130px); }
.contact__intro { position: sticky; top: 130px; align-self: start; }
.contact__intro > p:not(.eyebrow) { max-width: 520px; margin-top: 35px; color: var(--muted); }
.enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 28px; padding-top: 8px; }
.enquiry-form label { display: flex; flex-direction: column; gap: 12px; }
.enquiry-form label > span { color: rgba(243,239,230,.54); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  color: var(--ivory);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(243,239,230,.22);
  border-radius: 0;
  padding: 0 0 14px;
  outline: 0;
  transition: border-color .2s ease;
}
.enquiry-form select { color: var(--muted); cursor: pointer; }
.enquiry-form select option { color: #111; }
.enquiry-form textarea { resize: vertical; min-height: 90px; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--gold); }
.enquiry-form .full { grid-column: 1 / -1; }
.form-footer { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.form-footer p { max-width: 360px; margin: 0; color: rgba(243,239,230,.36); font-size: 10px; line-height: 1.6; }
.form-status { min-height: 20px; margin: 0; color: var(--gold-light); font-size: 12px; }

.site-footer { padding: 70px var(--pad) 30px; background: #070605; border-top: 1px solid var(--line); }
.footer__top { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; padding-bottom: 65px; }
.footer__top img { width: min(440px, 45vw); height: auto; }
.footer__bottom { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid var(--line); color: rgba(243,239,230,.4); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.footer__bottom p { margin: 0; }
.footer__bottom div { display: flex; flex-wrap: wrap; gap: 30px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .62s ease, transform .62s ease; }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Digital services page */
.services-page { background: #080706; }
.services-hero {
  min-height: 86svh;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  padding: 180px var(--pad) 100px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 84% 30%, rgba(185,137,36,.09), transparent 32%);
}
.services-hero__content { max-width: 1050px; }
.services-hero h1 { font-size: clamp(62px, 8vw, 132px); }
.services-hero__content > p:last-child { max-width: 780px; margin: 44px 0 0; color: var(--muted); font-size: clamp(16px, 1.2vw, 19px); }
.services-hero__index { align-self: end; color: rgba(219,189,106,.6); font-size: 10px; letter-spacing: .2em; writing-mode: vertical-rl; }
.services-content { padding-top: 120px; }
.service-chapter { max-width: 1080px; padding-bottom: 90px; }
.service-chapter h2 { margin-bottom: 36px; }
.service-chapter > p:last-child { max-width: 900px; color: var(--muted); font-size: clamp(16px, 1.35vw, 20px); }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-detail { min-height: 430px; padding: clamp(34px, 4vw, 64px); background: var(--bg); }
.service-detail > span { color: var(--gold-light); font-size: 10px; letter-spacing: .14em; }
.service-detail h3 { margin: 48px 0 28px; font-size: clamp(35px, 3.1vw, 56px); line-height: 1; }
.service-detail p { color: var(--muted); }
.service-chapter--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr); gap: 9vw; padding: 130px 0; }
.service-chapter--split h2 { font-size: clamp(50px, 5.5vw, 86px); }
.service-chapter--split > div:last-child { padding-top: 37px; }
.service-chapter--split > div:last-child p { color: var(--muted); }
.process-block { padding: 90px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 45px; }
.process-grid article { padding-top: 28px; border-top: 1px solid var(--line-strong); }
.process-grid span { color: var(--gold-light); font-size: 10px; }
.process-grid h3 { margin: 38px 0 22px; font-size: clamp(32px, 2.7vw, 46px); }
.process-grid p { color: var(--muted); }
.service-detail-grid--compact { margin-top: 110px; }
.service-detail-grid--compact .service-detail { min-height: 340px; }
.services-cta { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-top: 110px; padding: 70px; background: var(--ivory); color: #17110d; }
.services-cta .eyebrow { color: #8d6415; }
.services-cta h2 { font-size: clamp(47px, 5vw, 80px); }

@media (max-width: 1100px) {
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 9px; letter-spacing: .13em; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-gem { width: min(470px, 42vw); }
  .principle { grid-template-columns: 45px 1fr; }
  .principle p { grid-column: 2; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 98;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 115px var(--pad) 50px;
    background: #090806;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a { padding: 7px 0; font-family: var(--serif); font-size: clamp(46px, 10vw, 75px); line-height: 1; }
  .mobile-menu p { margin: auto 0 0; color: var(--gold-light); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 155px; }
  .hero__content { max-width: 790px; }
  .hero__visual { min-height: 530px; margin-top: 25px; }
  .hero-gem { width: min(500px, 72vw); }
  .gem-halo { width: min(450px, 66vw); }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .collection-grid .gem-card:last-child { grid-column: 1 / -1; width: 50%; }
  .story { grid-template-columns: 1fr; }
  .story__visual { width: min(680px, 92%); }
  .story__frame { min-height: 600px; }
  .principles { grid-template-columns: 1fr; gap: 60px; }
  .bespoke__panel { grid-template-columns: 1fr; }
  .bespoke__gem { min-height: 520px; }
  .digital-growth__cta { align-items: flex-start; flex-direction: column; }
  .contact { grid-template-columns: 1fr; }
  .contact__intro { position: static; }
  .services-hero { min-height: auto; grid-template-columns: 1fr; padding-top: 160px; }
  .services-hero__index { display: none; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-chapter--split { grid-template-columns: 1fr; gap: 28px; }
  .process-grid { grid-template-columns: 1fr; gap: 35px; }
  .services-cta { align-items: flex-start; flex-direction: column; padding: 50px; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; --section-gap: 92px; }
  .site-header { height: 82px; }
  .site-header.is-scrolled { height: 70px; }
  .brand { width: 145px; }
  h1 { font-size: clamp(56px, 18vw, 84px); }
  h2 { font-size: clamp(48px, 14.5vw, 70px); }
  .hero { padding-top: 124px; padding-bottom: 65px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .button { width: 100%; }
  .hero__visual { min-height: 420px; }
  .hero-gem { width: 88vw; filter: drop-shadow(0 25px 35px rgba(77,0,25,.28)); }
  .gem-halo { width: 76vw; box-shadow: 0 0 0 45px rgba(185,137,36,.02); }
  .gem-caption { right: 0; bottom: 1%; }
  .value-strip { justify-content: flex-start; gap: 14px 20px; font-size: 19px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-grid .gem-card:last-child { grid-column: auto; width: auto; }
  .gem-card__visual { height: 470px; }
  .collection-cta { align-items: flex-start; flex-direction: column; margin-top: 60px; }
  .story__visual { width: 100%; }
  .story__frame { min-height: 470px; }
  .story__frame::before { inset: 20px; }
  .story__note { left: 10px; bottom: 16px; max-width: 205px; }
  .principle { grid-template-columns: 40px 1fr; gap: 18px; }
  .bespoke__gem { min-height: 410px; }
  .bespoke__gem span:nth-child(1) { width: 190px; height: 190px; }
  .bespoke__gem span:nth-child(2) { width: 300px; height: 300px; }
  .bespoke__gem span:nth-child(3) { width: 410px; height: 410px; }
  .bespoke__content { padding: 58px 24px; }
  .service-preview-grid { grid-template-columns: 1fr; }
  .service-preview { min-height: 245px; }
  .enquiry-form { grid-template-columns: 1fr; }
  .enquiry-form .full { grid-column: auto; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .footer__top { align-items: flex-start; flex-direction: column; }
  .footer__top img { width: 80vw; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .services-hero { padding-top: 130px; padding-bottom: 72px; }
  .services-hero h1 { font-size: clamp(53px, 15.5vw, 78px); }
  .services-content { padding-top: 85px; }
  .service-chapter { padding-bottom: 65px; }
  .service-detail { min-height: auto; padding: 34px 24px; }
  .service-detail h3 { margin-top: 34px; }
  .service-chapter--split { padding: 90px 0; }
  .service-detail-grid--compact { margin-top: 80px; }
  .services-cta { margin-top: 80px; padding: 38px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Final performance hardening */
:root {
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

html { scroll-padding-top: 88px; }
section[id] { scroll-margin-top: 82px; }

.site-header { contain: layout style; }
.section,
.services-hero,
.site-footer {
  contain: layout style paint;
}

.hero-gem {
  filter: none;
  transform: translateZ(0);
}

.reveal {
  transition-duration: .55s;
  transform: translateY(16px);
}

@media (max-width: 640px) {
  .hero-gem { filter: none; }
}


/* Live shop and cart */
.header-actions { display: flex; align-items: center; gap: 18px; }
.cart-trigger {
  min-width: 78px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  background: rgba(8,7,6,.75);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cart-trigger strong {
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #100b06;
  font-size: 9px;
}
.shop { background: #0b0908; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.product-filters { display: flex; flex-wrap: wrap; gap: 9px; }
.product-filter {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-filter.is-active { border-color: var(--gold-light); color: var(--gold-light); }
.product-count { margin: 0; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { min-width: 0; border: 1px solid var(--line); background: #0e0b09; }
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, #2b1017, #090706 70%);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__placeholder { width: 100%; height: 100%; display: grid; place-items: center; }
.product-card__placeholder::before {
  content: "";
  width: 32%;
  aspect-ratio: .78;
  clip-path: polygon(50% 0, 86% 12%, 100% 45%, 77% 84%, 50% 100%, 23% 84%, 0 45%, 14% 12%);
  background: conic-gradient(from 30deg, #f34a6d, #5c0019, #b80f3c, #34000e, #e52a57, #69001e, #f34a6d);
}
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 7px 9px;
  background: rgba(8,7,6,.86);
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-card__body { padding: 23px; }
.product-card__category { margin: 0 0 9px; color: var(--gold-light); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.product-card h3 { font-size: clamp(29px, 2.2vw, 39px); line-height: 1; }
.product-card__description { min-height: 50px; margin: 16px 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--line); }
.product-price { font-family: var(--serif); font-size: 22px; }
.stock-label { color: var(--muted); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.product-card__actions { display: grid; grid-template-columns: 1fr auto; gap: 9px; margin-top: 18px; }
.product-card__actions .button { width: 100%; min-height: 46px; }
.product-view {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  font-size: 17px;
}
.product-card button:disabled { opacity: .42; cursor: not-allowed; }
.shop-loading, .shop-message { grid-column: 1 / -1; padding: 55px; border: 1px solid var(--line); color: var(--muted); text-align: center; }

.cart-backdrop { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.65); }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 201;
  width: min(480px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #0c0908;
  border-left: 1px solid var(--line);
  transform: translateX(101%);
  visibility: hidden;
  transition: transform .24s ease, visibility .24s ease;
}
.cart-drawer.is-open { transform: none; visibility: visible; }
.cart-drawer__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 28px; border-bottom: 1px solid var(--line); }
.cart-drawer__header .eyebrow { margin-bottom: 12px; }
.cart-drawer__header h2 { font-size: 48px; }
.cart-close { width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 25px; line-height: 1; }
.cart-drawer__items { overflow-y: auto; padding: 6px 28px; overscroll-behavior: contain; }
.cart-empty { margin: 60px 0; color: var(--muted); text-align: center; }
.cart-item { display: grid; grid-template-columns: 82px 1fr auto; gap: 15px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-item__image { width: 82px; aspect-ratio: 4/5; overflow: hidden; background: var(--panel); }
.cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__image .product-card__placeholder::before { width: 42%; }
.cart-item h3 { margin: 4px 0 8px; font-size: 25px; line-height: 1; }
.cart-item__price { margin: 0; color: var(--gold-light); font-size: 12px; }
.cart-item__qty { display: inline-flex; align-items: center; margin-top: 13px; border: 1px solid var(--line); }
.cart-item__qty button { width: 31px; height: 31px; border: 0; background: transparent; cursor: pointer; }
.cart-item__qty span { min-width: 26px; text-align: center; font-size: 11px; }
.cart-item__remove { align-self: start; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 18px; }
.cart-drawer__footer { padding: 24px 28px 28px; border-top: 1px solid var(--line); background: #090706; }
.cart-total { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 10px; }
.cart-total span { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.cart-total strong { font-family: var(--serif); font-size: 25px; font-weight: 500; }
.cart-drawer__footer > p { color: var(--muted); font-size: 10px; line-height: 1.55; }
.cart-drawer__footer .button { width: 100%; }
.cart-clear { width: 100%; margin-top: 12px; padding: 9px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
body.cart-open { overflow: hidden; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .header-actions { margin-left: auto; }
  .cart-trigger { min-width: 64px; padding: 0 10px; }
  .cart-trigger span { display: none; }
}
@media (max-width: 640px) {
  .header-actions { gap: 8px; }
  .cart-trigger { min-width: 42px; width: 42px; padding: 0; border: 0; background: transparent; }
  .shop-toolbar { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__description { min-height: auto; }
  .cart-drawer__header, .cart-drawer__items, .cart-drawer__footer { padding-left: 20px; padding-right: 20px; }
  .cart-item { grid-template-columns: 70px 1fr auto; }
  .cart-item__image { width: 70px; }
}
