@view-transition {
  navigation: auto;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}

:root {
  --bg: #eaeaea;
  --text: #000000;
  --muted: #363636;
  --line: rgba(0, 0, 0, 0.16);
  --panel: rgba(234, 234, 234, 0.88);
  --paper: #f5f5f3;
  --gold: #a98535;
  --deep: #17050a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(169, 133, 53, 0.08), transparent 34%),
    linear-gradient(300deg, rgba(0, 0, 0, 0.045), transparent 38%);
  opacity: 0.65;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.announcement {
  position: relative;
  z-index: 30;
  display: flex;
  justify-content: center;
  min-height: 28px;
  padding: 5px 16px;
  background: var(--text);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: clamp(24px, 5vw, 72px);
  min-height: 54px;
  padding: 4px 5vw;
  background: rgba(234, 234, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  grid-column: 1;
  display: inline-flex;
  justify-self: start;
}

.brand img {
  width: clamp(60px, 5.2vw, 74px);
  height: clamp(48px, 4.6vw, 58px);
  object-fit: contain;
  object-position: center;
}

.main-nav {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  padding-top: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible,
body[data-page="home"] .main-nav a[data-nav="home"],
body[data-page="privacy"] .main-nav a[data-nav="privacy"],
body[data-page="personalized"] .main-nav a[data-nav="personalized"],
body[data-page="contact"] .main-nav a[data-nav="contact"] {
  border-color: var(--text);
}

.nav-toggle {
  display: none;
  grid-column: 2;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(420px, 1.24fr);
  align-items: stretch;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.hero-image {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 122px);
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(234, 234, 234, 0.92), rgba(234, 234, 234, 0.56) 44%, rgba(234, 234, 234, 0.08)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
}

.hero-panel {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: 100%;
  padding: clamp(42px, 6vw, 86px) 5vw;
  background: var(--bg);
  border-right: 1px solid var(--line);
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.04;
}

h1 {
  font-size: clamp(38px, 4.4vw, 58px);
}

h2 {
  font-size: clamp(28px, 2.6vw, 39px);
}

h3 {
  font-size: clamp(22px, 1.8vw, 29px);
}

p {
  margin: 0;
}

.hero-panel p:not(.eyebrow),
.editorial-copy p,
.showcase-copy p,
.process-list p,
.page-hero p,
.detail-layout p,
.simple-cards p,
.contact-details p {
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
}

.hero-panel p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 18px;
  color: var(--text);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 13px 22px;
  border: 1px solid var(--text);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.button-dark {
  background: var(--text);
  color: var(--bg);
}

.button-outline {
  background: transparent;
  color: var(--text);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  border-bottom: 1px solid var(--text);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-strip {
  display: grid;
  gap: 22px;
  place-items: center;
  min-height: 160px;
  padding: 42px 5vw;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.intro-strip p {
  max-width: 880px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
}

.statement-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 700;
}

.story-opening {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.96fr) minmax(320px, 1.04fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  padding: clamp(74px, 8vw, 118px) 5vw;
  border-bottom: 1px solid var(--line);
}

.story-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.story-copy h2 {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(24px, 2.35vw, 36px);
  font-weight: 600;
  line-height: 1.32;
}

.story-copy p {
  max-width: 620px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
}

.story-image-stack {
  position: relative;
  min-height: 560px;
}

.story-image-stack img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--paper);
}

.story-image-main {
  height: 520px;
}

.story-image-small {
  position: absolute;
  right: 9%;
  bottom: -42px;
  width: min(46%, 260px) !important;
  height: 300px;
  box-shadow: var(--shadow);
}

.story-principles {
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 42px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(860px, 90vw);
  border: 1px solid var(--line);
  background: rgba(234, 234, 234, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

.story-principles span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  font-weight: 800;
}

.story-principles span:last-child {
  border-right: 0;
}

.why-flow {
  padding: clamp(74px, 8vw, 118px) 5vw;
  border-bottom: 1px solid var(--line);
}

.why-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
  margin-bottom: 54px;
}

.why-heading p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
}

.why-river {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.why-river article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  background: rgba(245, 245, 243, 0.44);
}

.why-river article:nth-child(1),
.why-river article:nth-child(4) {
  grid-column: span 7;
}

.why-river article:nth-child(2),
.why-river article:nth-child(3) {
  grid-column: span 5;
  transform: translateY(42px);
}

.why-river span,
.journey-list span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.why-river p {
  margin-top: 18px;
  color: var(--muted);
}

.privacy-scene {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(420px, 1.16fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(74px, 8vw, 118px) 5vw;
  border-bottom: 1px solid var(--line);
  isolation: auto;
}

.privacy-scene figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--line);
}

.privacy-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.privacy-scene::after {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(234, 234, 234, 0.94), rgba(234, 234, 234, 0.64) 45%, rgba(234, 234, 234, 0.2)),
    linear-gradient(180deg, rgba(234, 234, 234, 0.08), rgba(0, 0, 0, 0.16));
}

.scene-copy {
  width: min(680px, 100%);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.scene-copy p,
.personal-copy p,
.protected-copy p,
.journey-heading p,
.final-scene p {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
}

.personal-search {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(74px, 8vw, 118px) 5vw;
  border-bottom: 1px solid var(--line);
}

.personal-copy {
  max-width: 560px;
}

.personal-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: clamp(14px, 2vw, 26px);
  align-items: center;
}

.personal-gallery img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.personal-gallery img:first-child {
  height: clamp(500px, 45vw, 680px);
}

.personal-gallery img:last-child {
  height: clamp(360px, 32vw, 500px);
  margin-bottom: 0;
}

.protected-sharing {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding: clamp(74px, 8vw, 118px) 5vw;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.protected-copy {
  max-width: 680px;
}

.protected-sharing figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
}

.protected-sharing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-section {
  padding: clamp(74px, 8vw, 118px) 5vw;
  border-bottom: 1px solid var(--line);
}

.journey-heading {
  width: min(780px, 100%);
  margin-bottom: 50px;
}

.journey-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.journey-list article {
  min-height: 250px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-list article:last-child {
  border-right: 0;
}

.journey-list p {
  margin-top: 16px;
  color: var(--muted);
}

.final-scene {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(74px, 8vw, 118px) 5vw;
  border-bottom: 1px solid var(--line);
  isolation: auto;
}

.final-scene > img {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: clamp(440px, 42vw, 620px);
  object-fit: cover;
  border: 1px solid var(--line);
}

.final-scene::after {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(234, 234, 234, 0.94), rgba(234, 234, 234, 0.66) 50%, rgba(234, 234, 234, 0.18));
}

.final-scene div {
  grid-column: 1;
  grid-row: 1;
  width: min(760px, 100%);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-statement {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: 78px 5vw;
  border-bottom: 1px solid var(--line);
}

.brand-statement h2 {
  max-width: 820px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.35;
}

.principle-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principle-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 22px;
  background: rgba(245, 245, 243, 0.42);
}

.principle-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.principle-list p {
  color: var(--text);
  font-weight: 700;
}

.promise-panel {
  padding: 76px 5vw;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.promise-panel div {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.promise-panel h2 {
  font-size: clamp(29px, 2.7vw, 42px);
  line-height: 1.1;
}

.promise-panel p {
  width: min(680px, 100%);
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
}

.why-section {
  padding: 78px 5vw 0;
  border-bottom: 1px solid var(--line);
}

.why-section .section-heading {
  margin-bottom: 36px;
}

.why-section .signature-grid {
  margin: 0 -5vw;
  border-bottom: 0;
}

.editorial-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: 90px 5vw;
  border-bottom: 1px solid var(--line);
}

.editorial-block.reverse .editorial-image {
  order: -1;
}

.editorial-copy {
  max-width: 620px;
}

.editorial-copy p:not(.eyebrow),
.showcase-copy p {
  margin-top: 22px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.preference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.preference-list li {
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: rgba(245, 245, 243, 0.46);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.editorial-image,
.showcase-image {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.editorial-image {
  aspect-ratio: 4 / 5;
}

.editorial-image img,
.showcase-image img,
.full-bleed-story img,
.cta-band img,
.detail-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.signature-grid article {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.signature-grid article:last-child {
  border-right: 0;
}

.signature-grid span,
.process-list span {
  display: inline-flex;
  margin-bottom: 42px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signature-grid p {
  margin-top: 18px;
  color: var(--muted);
}

.full-bleed-story {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  padding: 5vw;
  isolation: isolate;
}

.full-bleed-story img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.full-bleed-story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(234, 234, 234, 0.05), rgba(234, 234, 234, 0.86));
}

.full-bleed-story div {
  width: min(760px, 100%);
  padding: clamp(22px, 4vw, 42px);
  background: var(--panel);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.full-bleed-story p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
}

.insight-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: 86px 5vw;
  border-bottom: 1px solid var(--line);
}

.insight-copy {
  max-width: 640px;
}

.insight-copy p {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
}

.insight-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--paper);
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.85fr;
  gap: 24px;
  align-items: center;
  padding: 90px 5vw;
  border-bottom: 1px solid var(--line);
}

.showcase-image {
  aspect-ratio: 4 / 5;
}

.showcase-image.tall {
  aspect-ratio: 3 / 4;
}

.showcase-copy {
  padding: 24px;
}

.refined-showcase {
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 0.95fr) minmax(260px, 0.7fr);
  background: rgba(245, 245, 243, 0.32);
}

.process-section {
  padding: 90px 5vw;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  width: min(860px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.process-list,
.simple-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list article,
.simple-cards article {
  min-height: 260px;
  padding: 28px;
  background: var(--bg);
}

.process-list p,
.simple-cards p {
  margin-top: 18px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding: 90px 5vw;
}

.cta-band img {
  aspect-ratio: 1 / 1;
}

.cta-band p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
}

.page-hero {
  padding: clamp(90px, 12vw, 150px) 5vw 70px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.page-hero p {
  width: min(920px, 100%);
}

.page-hero p:not(.eyebrow) {
  margin-top: 22px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding: 90px 5vw;
  border-bottom: 1px solid var(--line);
}

.detail-layout.reverse {
  grid-template-columns: minmax(300px, 1.1fr) minmax(300px, 0.9fr);
}

.detail-layout.reverse img {
  order: 2;
}

.detail-layout img {
  aspect-ratio: 4 / 5;
}

.detail-layout p {
  margin-top: 22px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.simple-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 90px 5vw;
}

.quote-panel {
  margin: 90px 5vw;
  padding: clamp(34px, 7vw, 90px);
  border: 1px solid var(--line);
  text-align: center;
}

.quote-panel p {
  max-width: 980px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 5vw, 74px);
  line-height: 1.04;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
  padding: 90px 5vw;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-details a {
  width: fit-content;
  border-bottom: 1px solid var(--text);
  font-size: clamp(22px, 3vw, 34px);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

.demo-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  background: rgba(245, 245, 243, 0.54);
}

.demo-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--bg);
  color: var(--text);
  padding: 14px 12px;
  font: inherit;
}

.demo-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  color: var(--text);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 46px 5vw;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 86px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  gap: 6px;
  justify-items: end;
  font-size: 14px;
  font-weight: 700;
}

.hero-image {
  animation: image-breathe 16s ease-in-out infinite alternate;
}

.hero-panel > * {
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 760ms ease forwards;
}

.hero-panel > *:nth-child(2) {
  animation-delay: 110ms;
}

.hero-panel > *:nth-child(3) {
  animation-delay: 220ms;
}

.hero-panel > *:nth-child(4) {
  animation-delay: 330ms;
}

.story-opening::before,
.why-flow::before,
.journey-section::before {
  content: "";
  position: absolute;
  left: 5vw;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(169, 133, 53, 0.38), transparent);
  transform-origin: top;
}

.story-image-small {
  animation: small-photo-drift 9s ease-in-out infinite alternate;
}

.story-principles {
  border-color: rgba(169, 133, 53, 0.34);
  background: rgba(245, 245, 243, 0.92);
}

.why-flow,
.journey-section {
  position: relative;
}

.why-river article {
  position: relative;
  background: rgba(245, 245, 243, 0.34);
  transition: transform 360ms ease, background 360ms ease, box-shadow 360ms ease;
}

.why-river article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: clamp(24px, 3vw, 38px);
  width: 52px;
  height: 1px;
  background: var(--gold);
}

.why-river article:hover {
  transform: translateY(-7px);
  background: rgba(245, 245, 243, 0.68);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.08);
}

.privacy-scene figure img,
.personal-gallery img,
.protected-sharing img,
.final-scene > img {
  transition: transform 900ms ease, filter 900ms ease;
}

.privacy-scene.motion-section.is-visible figure img,
.personal-search.motion-section.is-visible .personal-gallery img,
.protected-sharing.motion-section.is-visible img,
.final-scene.motion-section.is-visible > img {
  transform: scale(1.015);
}

.personal-search::before {
  content: "";
  grid-column: 1 / -1;
  width: min(360px, 42vw);
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.preference-list li {
  background: rgba(245, 245, 243, 0.28);
  border-color: rgba(0, 0, 0, 0.12);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.preference-list li:hover {
  transform: translateX(5px);
  border-color: rgba(169, 133, 53, 0.45);
  background: rgba(245, 245, 243, 0.72);
}

.protected-sharing figure {
  transform: rotate(-1deg);
}

.journey-list article {
  position: relative;
  background: linear-gradient(180deg, rgba(245, 245, 243, 0.42), rgba(234, 234, 234, 0));
}

.journey-list article::after {
  content: "";
  position: absolute;
  top: 52px;
  right: -7px;
  width: 13px;
  height: 13px;
  border: 1px solid var(--gold);
  background: var(--bg);
  transform: rotate(45deg);
}

.journey-list article:last-child::after {
  display: none;
}

body.motion-ready .motion-section {
  opacity: 1;
  transform: none;
}

body.motion-ready .motion-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .motion-section.is-visible .why-river article,
body.motion-ready .motion-section.is-visible .journey-list article,
body.motion-ready .motion-section.is-visible .preference-list li,
body.motion-ready .motion-section.is-visible .feature-list li,
body.motion-ready .motion-section.is-visible .story-principles span {
  animation: rise-in 620ms ease both;
}

body.motion-ready .motion-section.is-visible .why-river article:nth-child(2),
body.motion-ready .motion-section.is-visible .journey-list article:nth-child(2),
body.motion-ready .motion-section.is-visible .preference-list li:nth-child(2),
body.motion-ready .motion-section.is-visible .feature-list li:nth-child(2),
body.motion-ready .motion-section.is-visible .story-principles span:nth-child(2) {
  animation-delay: 90ms;
}

body.motion-ready .motion-section.is-visible .why-river article:nth-child(3),
body.motion-ready .motion-section.is-visible .journey-list article:nth-child(3),
body.motion-ready .motion-section.is-visible .preference-list li:nth-child(3),
body.motion-ready .motion-section.is-visible .feature-list li:nth-child(3),
body.motion-ready .motion-section.is-visible .story-principles span:nth-child(3) {
  animation-delay: 180ms;
}

body.motion-ready .motion-section.is-visible .why-river article:nth-child(4),
body.motion-ready .motion-section.is-visible .journey-list article:nth-child(4),
body.motion-ready .motion-section.is-visible .preference-list li:nth-child(4),
body.motion-ready .motion-section.is-visible .feature-list li:nth-child(4) {
  animation-delay: 270ms;
}

body.motion-ready .motion-section.is-visible .preference-list li:nth-child(5) {
  animation-delay: 360ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Final logo polish: make the nav mark feel embedded in the glass header. */
.brand {
  position: relative;
  align-items: center;
  justify-content: center;
  min-width: clamp(132px, 10vw, 158px);
  min-height: 38px;
  padding: 0 13px;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.brand::before {
  content: "";
  position: absolute;
  inset: 1px 0;
  z-index: -1;
  border: 1px solid rgba(169, 133, 53, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 42%),
    linear-gradient(90deg, rgba(46, 45, 43, 0.88), rgba(46, 45, 43, 0.72));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.055),
    0 9px 22px rgba(0, 0, 0, 0.055);
  backdrop-filter: blur(16px) saturate(1.06);
  clip-path: polygon(0 0, 96% 0, 100% 26%, 100% 100%, 4% 100%, 0 74%);
}

.brand::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.32), transparent);
  pointer-events: none;
}

.brand img {
  position: relative;
  z-index: 1;
  width: clamp(112px, 8.2vw, 136px) !important;
  height: auto !important;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 8px rgba(169, 133, 53, 0.1));
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    min-height: 54px;
  }

  .brand {
    align-self: stretch;
    min-width: 150px;
    min-height: 46px;
    margin-left: -16px;
    padding: 0 20px 0 18px;
  }

  .brand::before {
    inset: 0;
    border-left: 0;
    border-top: 0;
    border-bottom: 0;
    border-color: rgba(169, 133, 53, 0.32);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%),
      linear-gradient(90deg, rgba(46, 45, 43, 0.9), rgba(46, 45, 43, 0.62));
    box-shadow:
      inset -1px 0 0 rgba(169, 133, 53, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    clip-path: polygon(0 0, 95% 0, 100% 24%, 100% 100%, 0 100%);
  }

  .brand::after {
    left: 16px;
    right: 24px;
    bottom: 11px;
    opacity: 0.74;
  }

  .brand img {
    width: 112px !important;
    height: auto !important;
  }
}

/* Basic legal page readability. Footer styling will be refined separately. */
.legal-content {
  width: min(980px, calc(100% - 10vw));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 0;
}

.legal-content article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content article:first-child {
  padding-top: 0;
}

.legal-content h2 {
  font-size: clamp(24px, 2vw, 32px);
}

.legal-content p {
  max-width: 820px;
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 17px);
}

.legal-content a {
  border-bottom: 1px solid currentColor;
}

@media (max-width: 760px) {
  .legal-content {
    width: calc(100% - 36px);
    padding: 46px 0;
  }

  .legal-content article {
    padding: 22px 0;
  }
}

/* Premium footer direction. */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-template-columns: minmax(220px, 0.88fr) minmax(360px, 1.18fr) minmax(220px, 0.88fr);
  align-items: start;
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(48px, 6vw, 76px) 5vw;
  border-top: 1px solid rgba(169, 133, 53, 0.32);
  background:
    radial-gradient(circle at 12% 0, rgba(169, 133, 53, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 32%),
    #2e2d2b;
  color: rgba(245, 245, 243, 0.88);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 5vw;
  right: 5vw;
  top: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.68), transparent);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: 5vw;
  bottom: -60px;
  z-index: -1;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(169, 133, 53, 0.16);
  transform: rotate(45deg);
  pointer-events: none;
}

.footer-brand img {
  width: 78px;
  height: 74px;
  padding: 8px;
  border: 1px solid rgba(169, 133, 53, 0.24);
  background: rgba(245, 245, 243, 0.76);
}

.footer-brand p {
  max-width: 260px;
  color: rgba(245, 245, 243, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px clamp(18px, 3vw, 38px);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer nav a {
  position: relative;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(245, 245, 243, 0.72);
  transition: color 220ms ease, transform 220ms ease;
}

.site-footer nav a::before {
  content: "";
  width: 14px;
  height: 1px;
  margin-right: 10px;
  background: rgba(169, 133, 53, 0.56);
  transform-origin: left;
  transition: transform 220ms ease, background 220ms ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--paper);
  transform: translateX(2px);
}

.site-footer nav a:hover::before,
.site-footer nav a:focus-visible::before {
  background: var(--gold);
  transform: scaleX(1.35);
}

.footer-contact {
  gap: 10px;
  justify-items: end;
  color: rgba(245, 245, 243, 0.78);
}

.footer-contact a {
  color: inherit;
  transition: color 220ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--paper);
}

.footer-contact .whatsapp-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 4px 0;
  padding: 13px 22px 13px 48px;
  overflow: hidden;
  border: 1px solid rgba(169, 133, 53, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #1d4134;
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact .whatsapp-link::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: background 220ms ease, transform 220ms ease;
}

.footer-contact .whatsapp-link::after {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-top: 1px solid rgba(169, 133, 53, 0.28);
  border-bottom: 1px solid rgba(169, 133, 53, 0.28);
  background: linear-gradient(90deg, rgba(169, 133, 53, 0.18), transparent 54%);
  transform: translateX(-104%);
  transition: transform 300ms ease;
}

.footer-contact .whatsapp-link:hover,
.footer-contact .whatsapp-link:focus-visible {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
    #17382d;
}

.footer-contact .whatsapp-link:hover::before,
.footer-contact .whatsapp-link:focus-visible::before {
  background: currentColor;
  transform: translateY(-50%) rotate(45deg) scale(0.72);
}

.footer-contact .whatsapp-link:hover::after,
.footer-contact .whatsapp-link:focus-visible::after {
  transform: translateX(0);
}

@media (max-width: 1080px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 18px;
  }

  .site-footer::before {
    left: 18px;
    right: 18px;
    top: 16px;
  }

  .site-footer nav {
    grid-template-columns: 1fr 1fr;
    gap: 9px 14px;
  }

  .site-footer nav a {
    min-height: 32px;
    font-size: 10px;
  }

  .site-footer nav a::before {
    width: 10px;
    margin-right: 8px;
  }

  .footer-contact {
    justify-items: stretch;
    font-size: 13px;
  }

  .footer-contact .whatsapp-link {
    width: 100%;
    min-height: 48px;
  }
}

/* Logo presentation: readable wordmark in the nav, full signature in the footer. */
.brand {
  align-items: center;
  padding: 5px 12px;
  border: 1px solid rgba(169, 133, 53, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
    rgba(46, 45, 43, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 10px 24px rgba(0, 0, 0, 0.07);
  clip-path: polygon(0 0, 96% 0, 100% 22%, 100% 100%, 4% 100%, 0 78%);
}

.brand img {
  width: clamp(116px, 7.8vw, 142px) !important;
  height: auto !important;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 10px rgba(169, 133, 53, 0.1));
}

.footer-brand img {
  width: clamp(176px, 16vw, 236px);
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 16px rgba(169, 133, 53, 0.08));
}

.footer-brand p {
  margin-top: 14px;
}

@media (max-width: 760px) {
  .brand {
    padding: 5px 9px;
  }

  .brand img {
    width: 106px !important;
    height: auto !important;
    max-height: none;
  }

  .footer-brand img {
    width: min(138px, 52vw);
  }
}

/* Appointment ribbon: quieter premium cue above the glass navigation. */
.announcement {
  position: relative;
  z-index: 90;
  min-height: 34px;
  padding: 6px 16px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(234, 234, 234, 0.78), rgba(245, 245, 243, 0.92), rgba(234, 234, 234, 0.78));
  color: var(--deep);
  border-bottom: 1px solid rgba(169, 133, 53, 0.2);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px) saturate(1.08);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.announcement::before,
.announcement::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(22vw, 180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.46));
  pointer-events: none;
}

.announcement::before {
  left: 5vw;
}

.announcement::after {
  right: 5vw;
  transform: rotate(180deg);
}

.announcement a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(760px, 100%);
  min-height: 22px;
  padding: 0 24px;
  background: rgba(245, 245, 243, 0.72);
  color: rgba(23, 5, 10, 0.82);
  text-transform: none;
  white-space: nowrap;
}

.announcement a::before,
.announcement a::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(169, 133, 53, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.announcement a::before {
  left: 7px;
}

.announcement a::after {
  right: 7px;
}

@media (max-width: 760px) {
  .announcement {
    min-height: 31px;
    padding: 5px 12px;
    font-size: 10px;
  }

  .announcement::before,
  .announcement::after {
    width: 34px;
  }

  .announcement a {
    max-width: calc(100vw - 32px);
    padding: 0 17px;
  }

  .announcement a::before,
  .announcement a::after {
    width: 4px;
    height: 4px;
  }
}

@keyframes image-breathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.025);
  }
}

@keyframes small-photo-drift {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-12px) rotate(1.4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final home art direction: editorial, less boxed, more crafted. */
main {
  position: relative;
}

main::before {
  content: "";
  position: absolute;
  top: 86vh;
  left: 50%;
  width: 1px;
  height: calc(100% - 100vh);
  background: linear-gradient(180deg, transparent, rgba(169, 133, 53, 0.26), transparent);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  left: 5vw;
  bottom: 42px;
  width: min(160px, 28vw);
  height: 1px;
  background: var(--gold);
}

.story-opening {
  padding-bottom: clamp(110px, 10vw, 150px);
}

.story-copy h2 {
  font-weight: 500;
}

.story-image-stack img {
  border: 0;
}

.story-image-small {
  border: 12px solid var(--bg) !important;
}

.story-principles {
  width: min(920px, 90vw);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.story-principles span {
  border-top: 1px solid var(--gold);
  border-right: 0;
  background: rgba(245, 245, 243, 0.62);
}

.why-river {
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 54px);
  max-width: 1180px;
  margin: 0 auto;
}

.why-river article,
.why-river article:nth-child(1),
.why-river article:nth-child(2),
.why-river article:nth-child(3),
.why-river article:nth-child(4) {
  display: grid;
  grid-template-columns: 86px minmax(220px, 0.55fr) minmax(260px, 0.75fr);
  gap: clamp(20px, 4vw, 66px);
  align-items: start;
  grid-column: auto;
  min-height: auto;
  margin-left: 0;
  padding: 0 0 clamp(30px, 4vw, 54px);
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  background: transparent;
  transform: none;
}

.why-river article:nth-child(even) {
  margin-left: min(8vw, 96px);
}

.why-river span {
  margin-bottom: 0;
}

.why-river p {
  margin-top: 0;
}

.personal-search {
  grid-template-columns: minmax(300px, 0.68fr) minmax(420px, 1.32fr);
}

.preference-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 30px 0;
}

.preference-list li {
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  font-size: clamp(15px, 1.2vw, 17px);
}

.preference-list li:hover {
  transform: translateY(-3px);
  background: transparent;
}

.protected-sharing {
  background:
    linear-gradient(90deg, rgba(245, 245, 243, 0.78), rgba(234, 234, 234, 0.36)),
    var(--paper);
}

.feature-list {
  gap: 0;
  margin: 32px 0;
}

.feature-list li {
  padding: 14px 0 14px 28px;
  border-top: 0;
}

.access-list {
  position: relative;
}

.access-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--gold);
}

.access-list li {
  position: relative;
}

.access-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 25px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: var(--paper);
  transform: rotate(45deg);
}

.access-list span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35em;
}

.journey-list {
  grid-template-columns: 1fr;
  max-width: 980px;
  border-top: 0;
}

.journey-list article,
.journey-list article:nth-child(2) {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 48px);
  min-height: auto;
  padding: 28px 0 28px 46px;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid rgba(169, 133, 53, 0.55);
  background: transparent;
}

.journey-list article::after {
  left: -7px;
  right: auto;
  top: 38px;
}

@media (max-width: 760px) {
  main::before {
    left: 18px;
    top: 118vh;
    opacity: 0.75;
  }

  .hero::before {
    display: none;
  }

  .story-opening {
    padding-bottom: 58px;
  }

  .story-principles span {
    background: transparent;
  }

  .why-river article,
  .why-river article:nth-child(1),
  .why-river article:nth-child(2),
  .why-river article:nth-child(3),
  .why-river article:nth-child(4) {
    display: block;
    margin-left: 0;
    padding: 0 0 34px 24px;
    border-bottom: 0;
    border-left: 1px solid rgba(169, 133, 53, 0.48);
  }

  .why-river article::before {
    left: -5px;
    top: 4px;
    width: 9px;
    height: 9px;
    border: 1px solid var(--gold);
    background: var(--bg);
    transform: rotate(45deg);
  }

  .why-river span {
    margin-bottom: 22px;
  }

  .why-river p {
    margin-top: 16px;
  }

  .preference-list {
    display: grid;
    gap: 14px;
  }

  .preference-list li {
    padding: 0 0 10px;
  }

  .personal-copy,
  .why-heading,
  .journey-heading {
    padding-left: 4px;
  }

  .journey-list article,
  .journey-list article:nth-child(2) {
    display: block;
    padding: 24px 0 24px 24px;
  }
}

/* Focused refinements: more editorial hero, richer privacy scene, balanced journey desktop. */
.hero {
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1.18fr);
  overflow: hidden;
}

.hero::before {
  left: 4.8vw;
  bottom: clamp(54px, 6vw, 92px);
  width: min(210px, 30vw);
}

.hero::after {
  content: none;
  position: absolute;
  left: calc(38% - 1px);
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(169, 133, 53, 0.42), transparent);
}

.hero-panel {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: clamp(92px, 9vw, 140px) 4.8vw clamp(78px, 8vw, 128px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: 5vw;
  top: clamp(54px, 6vw, 84px);
  width: 92px;
  height: 1px;
  background: var(--gold);
  transform: none;
}

.hero-panel h1 {
  max-width: 620px;
  font-size: clamp(46px, 4.4vw, 64px);
}

.hero-image {
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 7%);
  filter: saturate(0.95) contrast(1.04);
}

.privacy-scene {
  grid-template-columns: minmax(390px, 0.98fr) minmax(340px, 0.82fr);
}

.privacy-scene figure {
  position: relative;
  overflow: visible;
  border: 0;
}

.privacy-scene figure::before {
  content: "";
  position: absolute;
  inset: -22px 18px 22px -22px;
  border: 1px solid rgba(169, 133, 53, 0.5);
  pointer-events: none;
}

.privacy-scene figure::after {
  content: "protected sharing";
  position: absolute;
  right: -18px;
  bottom: 26px;
  padding: 10px 16px;
  background: rgba(245, 245, 243, 0.88);
  border-top: 1px solid var(--gold);
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.scene-copy {
  position: relative;
  padding-left: clamp(24px, 3vw, 44px);
}

.scene-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 1px;
  height: 76%;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.scene-copy h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin-top: 24px;
  background: var(--gold);
}

.journey-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: start;
}

.journey-heading {
  position: sticky;
  top: 116px;
  margin-bottom: 0;
}

.journey-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin-top: 30px;
  background: var(--gold);
}

.journey-list {
  max-width: none;
}

.journey-list article,
.journey-list article:nth-child(2) {
  grid-template-columns: 104px minmax(0, 1fr);
  padding-top: 18px;
  padding-bottom: 38px;
}

.journey-list article span {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.journey-list article h3,
.journey-list article p {
  grid-column: 2;
}

.journey-list article p {
  max-width: 520px;
}

@media (max-width: 1080px) {
  .journey-section {
    display: block;
  }

  .journey-heading {
    position: static;
    margin-bottom: 50px;
  }
}

@media (max-width: 760px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero::after,
  .hero-panel::before {
    display: none;
  }

  .hero-image {
    clip-path: none;
  }

  .hero-panel {
    align-self: auto;
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .privacy-scene figure {
    overflow: hidden;
  }

  .privacy-scene figure::before {
    inset: 12px;
  }

  .privacy-scene figure::after {
    right: 14px;
    bottom: 14px;
  }

  .scene-copy {
    padding-left: 18px;
  }
}

/* Hero reset: mobile-first editorial opening plate. */
.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
  min-height: calc(100vh - 82px);
  padding: clamp(28px, 4vw, 54px) 5vw clamp(34px, 5vw, 70px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(245, 245, 243, 0.74), rgba(234, 234, 234, 0.92) 44%, rgba(234, 234, 234, 0.66)),
    var(--bg);
}

.hero::before,
.hero::after {
  content: none;
}

.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  min-height: min(760px, calc(100vh - 150px));
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(7% 0, 100% 0, 100% 93%, 92% 100%, 0 100%, 0 8%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(245, 245, 243, 0.62);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero-image {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  clip-path: none;
  filter: saturate(0.96) contrast(1.04);
}

.hero-thread {
  position: absolute;
  left: clamp(18px, 3vw, 38px);
  top: clamp(18px, 3vw, 38px);
  z-index: 3;
  width: 1px;
  height: min(300px, 42%);
  background: rgba(169, 133, 53, 0.76);
}

.hero-thread::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: rgba(245, 245, 243, 0.86);
  transform: rotate(45deg);
  animation: thread-drop 4.8s ease-in-out infinite;
}

.hero-photo-note {
  position: absolute;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 38px);
  z-index: 3;
  max-width: 240px;
  padding-top: 12px;
  border-top: 1px solid var(--gold);
  color: var(--bg);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.hero-panel {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  width: auto;
  max-width: 560px;
  padding: 0 0 clamp(18px, 4vw, 46px);
  border: 0;
  background: transparent;
}

.hero-panel::before {
  content: "";
  display: block;
  position: static;
  width: 120px;
  height: 1px;
  margin-bottom: clamp(28px, 5vw, 54px);
  background: var(--gold);
}

.hero-panel h1 {
  max-width: 470px;
  color: var(--deep);
  font-size: clamp(34px, 3.1vw, 46px);
  font-weight: 600;
  line-height: 1.08;
}

.hero-panel p:not(.eyebrow) {
  max-width: 360px;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  line-height: 1.7;
}

.hero-panel .eyebrow {
  color: #8f7028;
  font-size: 11px;
  font-weight: 800;
}

.hero-panel .button {
  min-height: 44px;
  padding: 11px 17px;
  background: var(--deep);
  font-size: 11px;
}

@keyframes thread-drop {
  0% {
    top: 0;
    opacity: 0.45;
  }
  45% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 9px);
    opacity: 0.45;
  }
}

@media (max-width: 760px) {
  .hero {
    display: block;
    min-height: auto;
    padding: 14px 0 0;
    background: var(--bg);
  }

  .hero-visual {
    min-height: 0;
    width: calc(100% - 28px);
    height: min(70vh, 560px);
    margin: 0 14px;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 88% 100%, 0 100%);
  }

  .hero-image {
    aspect-ratio: auto;
    height: 100%;
    object-position: center top;
  }

  .hero-thread {
    height: 34%;
  }

  .hero-photo-note {
    display: none;
  }

  .hero-visual::after {
    height: 16%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08));
  }

  .hero-panel {
    width: calc(100% - 36px);
    max-width: none;
    margin: -72px 18px 0;
    padding: 22px 0 44px;
    background: var(--bg);
    border-top: 1px solid var(--gold);
    z-index: 4;
  }

  .hero-panel::before {
    display: none;
  }

  .hero-panel h1 {
    max-width: 94%;
    font-size: clamp(28px, 7.5vw, 34px);
    line-height: 1.08;
  }

  .hero-panel p:not(.eyebrow) {
    max-width: 300px;
    font-size: 13px;
  }
}

@media (max-width: 1080px) {
  .signature-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-grid article {
    border-bottom: 1px solid var(--line);
  }

  .split-showcase,
  .editorial-block,
  .brand-statement,
  .story-opening,
  .why-heading,
  .hero,
  .privacy-scene,
  .personal-search,
  .protected-sharing,
  .final-scene,
  .insight-section,
  .cta-band,
  .detail-layout,
  .detail-layout.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .hero-panel,
  .final-scene > img,
  .final-scene div {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-opening {
    padding-bottom: 140px;
  }

  .story-image-stack {
    min-height: 480px;
  }

  .story-image-main {
    height: 460px;
  }

  .story-principles {
    grid-template-columns: 1fr;
    bottom: 44px;
  }

  .story-principles span {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-principles span:last-child {
    border-bottom: 0;
  }

  .why-river {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-river article:nth-child(1),
  .why-river article:nth-child(2),
  .why-river article:nth-child(3),
  .why-river article:nth-child(4) {
    grid-column: auto;
    transform: none;
  }

  .journey-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-list article:nth-child(2) {
    border-right: 0;
  }

  .why-section .signature-grid {
    margin: 0 -5vw;
  }

  .editorial-block.reverse .editorial-image {
    order: 0;
  }

  .detail-layout.reverse img {
    order: 0;
  }

  .showcase-copy {
    padding: 16px 0;
  }

  .simple-cards {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 54px;
    padding: 4px 18px;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .brand img {
    width: 64px;
    height: 52px;
    object-position: left center;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 5vw 24px;
    background: rgba(234, 234, 234, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .main-nav {
    display: grid;
    gap: 0;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-image {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
    object-position: center top;
    order: 1;
  }

  .hero-panel {
    order: 2;
    padding: 34px 18px 46px;
  }

  h1 {
    font-size: clamp(30px, 8.2vw, 36px);
  }

  .cta-band h2 {
    font-size: clamp(27px, 7.8vw, 34px);
  }

  .button {
    width: 100%;
  }

  .signature-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .signature-grid article {
    border-right: 0;
  }

  .full-bleed-story {
    min-height: 520px;
    padding: 18px;
  }

  .editorial-block,
  .split-showcase,
  .brand-statement,
  .story-opening,
  .why-flow,
  .personal-search,
  .protected-sharing,
  .promise-panel,
  .why-section,
  .insight-section,
  .journey-section,
  .process-section,
  .cta-band,
  .detail-layout,
  .contact-layout {
    padding: 58px 18px;
  }

  .story-opening {
    padding-bottom: 48px;
  }

  .story-image-stack {
    min-height: auto;
  }

  .story-image-main {
    height: 360px;
  }

  .story-image-small {
    position: relative;
    right: auto;
    bottom: auto;
    width: 58% !important;
    height: 210px;
    margin: -86px 22px 0 auto;
  }

  .story-principles {
    position: static;
    width: 100%;
    margin-top: 26px;
  }

  .story-copy h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .why-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .why-river {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-river article {
    min-height: auto;
    padding: 24px;
  }

  .privacy-scene,
  .final-scene {
    min-height: auto;
    padding: 58px 18px;
  }

  .scene-copy,
  .final-scene div {
    padding: 0;
  }

  .privacy-scene figure,
  .final-scene > img {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .privacy-scene figure {
    order: 1;
  }

  .scene-copy {
    order: 2;
  }

  .personal-gallery {
    grid-template-columns: 1fr;
    order: 1;
  }

  .personal-copy {
    order: 2;
  }

  .personal-gallery img:first-child,
  .personal-gallery img:last-child {
    height: auto;
    aspect-ratio: 4 / 5;
    margin-bottom: 0;
  }

  .journey-list {
    grid-template-columns: 1fr;
  }

  .journey-list article,
  .journey-list article:nth-child(2) {
    min-height: auto;
    border-right: 0;
  }

  .why-section {
    padding-bottom: 0;
  }

  .why-section .signature-grid {
    margin: 0 -18px;
  }

  .brand-statement h2,
  .promise-panel h2 {
    font-size: clamp(23px, 6.2vw, 29px);
  }

  .brand-statement h2 {
    line-height: 1.3;
  }

  .principle-list article {
    min-height: 74px;
    padding: 18px;
  }

  .preference-list {
    grid-template-columns: 1fr;
  }

  .intro-strip {
    min-height: 130px;
    padding: 36px 18px;
  }

  .page-hero {
    padding: 72px 18px 50px;
  }

  .simple-cards,
  .quote-panel {
    margin: 58px 18px;
  }

  .site-footer {
    padding: 36px 18px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

/* Site-wide button art direction. */
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 46px;
  padding: 13px 24px 13px 50px;
  border: 1px solid rgba(169, 133, 53, 0.62);
  background: rgba(245, 245, 243, 0.18);
  color: var(--deep);
  box-shadow: none;
  font-size: 11px;
  letter-spacing: 0;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    color 260ms ease;
}

.button::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  z-index: 1;
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  background: transparent;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 260ms ease, background 260ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-top: 1px solid rgba(169, 133, 53, 0.24);
  border-bottom: 1px solid rgba(169, 133, 53, 0.24);
  background: linear-gradient(90deg, rgba(169, 133, 53, 0.16), transparent 45%);
  transform: translateX(-102%);
  transition: transform 360ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(245, 245, 243, 0.52);
  box-shadow: none;
}

.button:hover::before,
.button:focus-visible::before {
  background: currentColor;
  transform: translateY(-50%) rotate(45deg) scale(0.74);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(0);
}

.button-dark {
  border-color: rgba(169, 133, 53, 0.72);
  background: #3b2b31;
  color: var(--paper);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #24141a;
  color: var(--paper);
}

.button-outline {
  background: transparent;
  color: var(--deep);
}

.hero-panel .button {
  min-height: 44px;
  padding: 12px 20px 12px 48px;
  background: #3b2b31;
  color: var(--paper);
  font-size: 11px;
}

.nav-toggle {
  position: relative;
  border-color: rgba(169, 133, 53, 0.48);
  background: rgba(245, 245, 243, 0.38);
}

.nav-toggle::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(169, 133, 53, 0.22);
  pointer-events: none;
}

@media (max-width: 760px) {
  .button {
    width: 100%;
    min-height: 50px;
    padding: 14px 22px 14px 50px;
  }
}

/* Final nav redesign: lighter glass header and compact mobile sheet. */
.site-header {
  min-height: 58px;
  background: rgba(234, 234, 234, 0.58);
  border-bottom: 1px solid rgba(169, 133, 53, 0.2);
  backdrop-filter: blur(24px) saturate(1.12);
}

.site-header::before {
  left: 5vw;
  right: 5vw;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.38), transparent);
}

.main-nav {
  gap: clamp(18px, 2.8vw, 38px);
  font-size: 10px;
}

.main-nav a {
  color: rgba(0, 0, 0, 0.68);
}

.main-nav a::after {
  bottom: 0;
  width: 5px;
  height: 5px;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border-color: rgba(169, 133, 53, 0.36);
  background: rgba(245, 245, 243, 0.18);
  backdrop-filter: blur(14px);
}

.nav-toggle::before {
  inset: 6px;
  border-color: rgba(169, 133, 53, 0.18);
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: rgba(0, 0, 0, 0.82);
}

body.nav-open .nav-toggle {
  background: rgba(245, 245, 243, 0.5);
}

@media (max-width: 760px) {
  .site-header {
    min-height: 56px;
    padding: 4px 18px;
    background: rgba(234, 234, 234, 0.5);
  }

  .brand img {
    width: 58px;
    height: 48px;
  }

  .main-nav {
    counter-reset: none;
    position: absolute;
    grid-column: 1 / -1;
    justify-self: stretch;
    top: calc(100% + 1px);
    left: 50%;
    width: calc(100vw - 28px);
    padding: 12px;
    border: 1px solid rgba(169, 133, 53, 0.24);
    background: rgba(234, 234, 234, 0.72);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(26px) saturate(1.16);
    transform: translate(-50%, -10px);
  }

  body.nav-open .main-nav {
    transform: translate(-50%, 0);
  }

  .main-nav::before {
    content: "";
    display: block;
    height: 1px;
    margin: 0 2px 6px;
    padding: 0;
    background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.54), transparent);
    border: 0;
  }

  .main-nav::after {
    content: "";
    display: block;
    height: 1px;
    margin: 6px 2px 0;
    padding: 0;
    background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.34), transparent);
    border: 0;
  }

  .main-nav a {
    counter-increment: none;
    min-height: 38px;
    justify-content: space-between;
    padding: 0 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.76);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .main-nav a:last-of-type {
    border-bottom: 0;
  }

  .main-nav a::before {
    content: "";
    position: static;
    width: 18px;
    height: 1px;
    margin-right: 12px;
    background: rgba(169, 133, 53, 0.5);
    transform: none;
  }

  .main-nav a::after {
    position: static;
    width: 6px;
    height: 6px;
    margin-left: auto;
    opacity: 0;
    transform: rotate(45deg) scale(0.75);
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  body[data-page="home"] .main-nav a[data-nav="home"]::after,
  body[data-page="privacy"] .main-nav a[data-nav="privacy"]::after,
  body[data-page="personalized"] .main-nav a[data-nav="personalized"]::after,
  body[data-page="contact"] .main-nav a[data-nav="contact"]::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}

/* Page loading and screen transition: keeps static page changes feeling intentional. */
.page-loader {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  display: none;
  opacity: 0;
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loader {
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(169, 133, 53, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(245, 245, 243, 0.9), rgba(234, 234, 234, 0.78)),
    var(--bg);
  backdrop-filter: blur(18px) saturate(1.08);
  transform: none;
}

.page-loader-brand {
  position: relative;
  width: min(270px, 70vw);
  padding: 28px 0 30px;
  border-top: 1px solid rgba(169, 133, 53, 0.58);
  border-bottom: 1px solid rgba(169, 133, 53, 0.58);
  text-align: center;
  transform: translateY(10px);
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loader .brand-wordmark {
  font-size: clamp(42px, 9vw, 62px);
  line-height: 0.82;
}

.page-loader .brand-o img {
  position: absolute;
  left: 50%;
  top: -0.22em;
  width: 0.72em !important;
  height: auto !important;
  max-height: none;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

body.site-loading .page-loader,
body.page-leaving .page-loader {
  opacity: 1;
}

body.site-loading .page-loader-brand,
body.page-leaving .page-loader-brand {
  transform: translateY(0);
}

body.page-leaving main,
body.page-leaving .site-header,
body.page-leaving .announcement,
body.page-leaving .site-footer {
  opacity: 0.82;
  transform: translateY(-2px);
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

@media (max-width: 760px) {
  .page-loader {
    background:
      radial-gradient(circle at 50% 38%, rgba(169, 133, 53, 0.18), transparent 34%),
      linear-gradient(145deg, rgba(245, 245, 243, 0.92), rgba(234, 234, 234, 0.82)),
      var(--bg);
  }

  .page-loader-brand {
    width: min(230px, 72vw);
    padding: 24px 0 26px;
  }

  .page-loader .brand-wordmark {
    font-size: clamp(36px, 10vw, 48px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader-brand,
  body.page-leaving main,
  body.page-leaving .site-header,
  body.page-leaving .announcement,
  body.page-leaving .site-footer {
    transition: none;
    transform: none;
  }
}

body .page-loader {
  display: none !important;
}

/* Privacy page crafted motion: restrained, protected, and tactile. */
body[data-page="privacy"].motion-ready .privacy-hero,
body[data-page="privacy"].motion-ready .privacy-intro,
body[data-page="privacy"].motion-ready .privacy-features,
body[data-page="privacy"].motion-ready .privacy-sharing,
body[data-page="privacy"].motion-ready .privacy-final {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="privacy"].motion-ready .privacy-hero.is-visible,
body[data-page="privacy"].motion-ready .privacy-intro.is-visible,
body[data-page="privacy"].motion-ready .privacy-features.is-visible,
body[data-page="privacy"].motion-ready .privacy-sharing.is-visible,
body[data-page="privacy"].motion-ready .privacy-final.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.privacy-hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  bottom: clamp(28px, 5vw, 88px);
  z-index: 3;
  width: clamp(52px, 6vw, 92px);
  height: clamp(52px, 6vw, 92px);
  border-right: 1px solid rgba(169, 133, 53, 0.42);
  border-bottom: 1px solid rgba(169, 133, 53, 0.42);
  opacity: 0.58;
  transform: rotate(45deg);
  pointer-events: none;
}

.privacy-hero.is-visible::after {
  animation: privacy-seal-drift 7s ease-in-out 700ms infinite alternate;
}

.privacy-hero-media {
  transform-origin: center;
}

.privacy-hero-media::before {
  border-color: rgba(245, 245, 243, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(169, 133, 53, 0.08),
    0 0 0 0 rgba(169, 133, 53, 0);
}

.privacy-hero.is-visible .privacy-hero-media::before {
  animation: privacy-frame-pulse 5.8s ease-in-out 600ms infinite;
}

.privacy-hero-media img {
  transform: scale(1.012);
  transform-origin: 24% center;
}

.privacy-hero.is-visible .privacy-hero-media img {
  animation: privacy-image-breathe 15s ease-in-out infinite alternate;
}

.privacy-hero-copy::before {
  content: "";
  position: absolute;
  left: clamp(16px, 2vw, 28px);
  top: clamp(16px, 2vw, 28px);
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform-origin: left;
}

.privacy-hero-copy::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-right: 1px solid rgba(169, 133, 53, 0.5);
  border-bottom: 1px solid rgba(169, 133, 53, 0.5);
  opacity: 0.75;
  pointer-events: none;
}

body[data-page="privacy"].motion-ready .privacy-hero-copy > * {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="privacy"].motion-ready .privacy-hero.is-visible .privacy-hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="privacy"].motion-ready .privacy-hero.is-visible .privacy-hero-copy > *:nth-child(1) {
  transition-delay: 160ms;
}

body[data-page="privacy"].motion-ready .privacy-hero.is-visible .privacy-hero-copy > *:nth-child(2) {
  transition-delay: 250ms;
}

body[data-page="privacy"].motion-ready .privacy-hero.is-visible .privacy-hero-copy > *:nth-child(3) {
  transition-delay: 340ms;
}

body[data-page="privacy"].motion-ready .privacy-hero.is-visible .privacy-hero-copy > *:nth-child(4) {
  transition-delay: 430ms;
}

.privacy-intro div::after {
  content: "";
  position: absolute;
  left: -16px;
  top: -18px;
  width: 54px;
  height: 54px;
  border-left: 1px solid rgba(169, 133, 53, 0.34);
  border-top: 1px solid rgba(169, 133, 53, 0.34);
  transform: rotate(-3deg);
  pointer-events: none;
}

.privacy-intro span {
  transform-origin: left;
}

body[data-page="privacy"].motion-ready .privacy-intro span {
  transform: scaleX(0);
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

body[data-page="privacy"].motion-ready .privacy-intro.is-visible span {
  transform: scaleX(1);
}

.privacy-features {
  overflow: hidden;
}

.privacy-features::before {
  content: "";
  position: absolute;
  top: clamp(34px, 6vw, 78px);
  right: clamp(20px, 6vw, 110px);
  width: clamp(58px, 7vw, 104px);
  height: clamp(58px, 7vw, 104px);
  border: 1px solid rgba(169, 133, 53, 0.18);
  transform: rotate(45deg);
  pointer-events: none;
}

.privacy-features.is-visible::before {
  animation: privacy-seal-drift 8s ease-in-out 500ms infinite alternate;
}

.privacy-feature-grid article {
  transform-style: preserve-3d;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.privacy-feature-grid article::before {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  z-index: 2;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.72), transparent);
  opacity: 0;
  pointer-events: none;
}

body[data-page="privacy"].motion-ready .privacy-feature-grid article {
  opacity: 0;
  transform: translateY(20px) rotateX(5deg);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article::before {
  animation: privacy-scan 920ms ease forwards;
}

body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article:nth-child(1) {
  transition-delay: 90ms;
}

body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article:nth-child(2) {
  transition-delay: 170ms;
}

body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article:nth-child(3) {
  transition-delay: 250ms;
}

body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article:nth-child(4) {
  transition-delay: 330ms;
}

body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article:nth-child(5) {
  transition-delay: 410ms;
}

body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article:nth-child(1)::before {
  animation-delay: 220ms;
}

body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article:nth-child(2)::before {
  animation-delay: 300ms;
}

body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article:nth-child(3)::before {
  animation-delay: 380ms;
}

body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article:nth-child(4)::before {
  animation-delay: 460ms;
}

body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article:nth-child(5)::before {
  animation-delay: 540ms;
}

.privacy-feature-grid article:hover {
  border-color: rgba(169, 133, 53, 0.48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.privacy-sharing-note {
  overflow: hidden;
}

.privacy-sharing-note::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 82px;
  height: 82px;
  border-right: 1px solid rgba(169, 133, 53, 0.42);
  border-bottom: 1px solid rgba(169, 133, 53, 0.42);
  transform: rotate(45deg);
  pointer-events: none;
}

body[data-page="privacy"].motion-ready .privacy-sharing-note span {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-8px);
  transition:
    opacity 560ms ease,
    clip-path 740ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 740ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="privacy"].motion-ready .privacy-sharing.is-visible .privacy-sharing-note span {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateX(0);
}

body[data-page="privacy"].motion-ready .privacy-sharing.is-visible .privacy-sharing-note span:nth-child(1) {
  transition-delay: 160ms;
}

body[data-page="privacy"].motion-ready .privacy-sharing.is-visible .privacy-sharing-note span:nth-child(2) {
  transition-delay: 280ms;
}

body[data-page="privacy"].motion-ready .privacy-sharing.is-visible .privacy-sharing-note span:nth-child(3) {
  transition-delay: 400ms;
}

.privacy-final::before {
  content: "";
  display: block;
  width: min(160px, 44vw);
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.8), transparent);
  transform-origin: center;
}

body[data-page="privacy"].motion-ready .privacy-final::before {
  transform: scaleX(0);
  transition: transform 860ms cubic-bezier(0.22, 1, 0.36, 1) 140ms;
}

body[data-page="privacy"].motion-ready .privacy-final.is-visible::before {
  transform: scaleX(1);
}

@keyframes privacy-image-breathe {
  from {
    transform: scale(1.012);
  }

  to {
    transform: scale(1.04);
  }
}

@keyframes privacy-frame-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(169, 133, 53, 0.08),
      0 0 0 0 rgba(169, 133, 53, 0);
  }

  50% {
    box-shadow:
      inset 0 0 0 1px rgba(169, 133, 53, 0.18),
      0 0 0 8px rgba(169, 133, 53, 0.045);
  }
}

@keyframes privacy-seal-drift {
  from {
    transform: rotate(45deg) translate3d(0, 0, 0);
  }

  to {
    transform: rotate(45deg) translate3d(-8px, 8px, 0);
  }
}

@keyframes privacy-scan {
  0% {
    left: -40%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .privacy-hero::after {
    right: 22px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    opacity: 0.38;
  }

  .privacy-hero-copy::before {
    width: 34px;
  }

  .privacy-features::before {
    top: 34px;
    right: 20px;
    width: 46px;
    height: 46px;
    opacity: 0.72;
  }

  .privacy-feature-grid article:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .privacy-hero.is-visible::after,
  .privacy-hero.is-visible .privacy-hero-media::before,
  .privacy-hero.is-visible .privacy-hero-media img,
  .privacy-features.is-visible::before,
  body[data-page="privacy"].motion-ready .privacy-features.is-visible .privacy-feature-grid article::before {
    animation: none;
  }

  body[data-page="privacy"].motion-ready .privacy-hero,
  body[data-page="privacy"].motion-ready .privacy-intro,
  body[data-page="privacy"].motion-ready .privacy-features,
  body[data-page="privacy"].motion-ready .privacy-sharing,
  body[data-page="privacy"].motion-ready .privacy-final,
  body[data-page="privacy"].motion-ready .privacy-hero-copy > *,
  body[data-page="privacy"].motion-ready .privacy-feature-grid article,
  body[data-page="privacy"].motion-ready .privacy-sharing-note span {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }
}

/* Personalisation page: warmer, curated, and quietly human. */
.personalisation-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 91px);
  display: grid;
  align-items: stretch;
  padding: clamp(18px, 3vw, 42px) 5vw clamp(50px, 6vw, 78px);
  overflow: hidden;
  border-bottom: 1px solid rgba(169, 133, 53, 0.24);
  background:
    linear-gradient(120deg, rgba(23, 5, 10, 0.08), transparent 36%),
    linear-gradient(300deg, rgba(169, 133, 53, 0.14), transparent 44%),
    var(--bg);
}

.personalisation-hero::before {
  content: "";
  position: absolute;
  inset: clamp(22px, 3vw, 48px) 4vw clamp(28px, 3.6vw, 54px);
  z-index: -1;
  border: 1px solid rgba(169, 133, 53, 0.22);
  background:
    linear-gradient(125deg, rgba(23, 5, 10, 0.12), transparent 45%),
    rgba(245, 245, 243, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  clip-path: polygon(3% 0, 100% 0, 100% 91%, 96% 100%, 0 100%, 0 8%);
}

.personalisation-hero::after {
  content: "";
  position: absolute;
  left: clamp(24px, 5vw, 92px);
  bottom: clamp(28px, 5vw, 82px);
  z-index: 3;
  width: clamp(96px, 12vw, 180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.82), transparent);
  pointer-events: none;
}

.personalisation-hero-media {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  min-height: min(720px, calc(100vh - 170px));
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 245, 243, 0.48);
  box-shadow: 0 30px 74px rgba(0, 0, 0, 0.14);
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
}

.personalisation-hero-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(245, 245, 243, 0.42);
  pointer-events: none;
}

.personalisation-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 5, 10, 0.58), rgba(23, 5, 10, 0.3) 34%, rgba(23, 5, 10, 0.04) 66%),
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.personalisation-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.03);
  transform: scale(1.01);
  transform-origin: 72% center;
}

.personalisation-hero-copy {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  width: min(540px, 42vw);
  margin-left: clamp(16px, 4vw, 72px);
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(169, 133, 53, 0.34);
  background:
    linear-gradient(145deg, rgba(65, 43, 35, 0.34), rgba(23, 5, 10, 0.14)),
    rgba(23, 5, 10, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(245, 245, 243, 0.18),
    inset 0 18px 46px rgba(255, 255, 255, 0.04),
    0 24px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(24px) saturate(1.18);
  clip-path: polygon(0 0, 94% 0, 100% 10%, 100% 100%, 7% 100%, 0 92%);
}

.personalisation-hero-copy::before {
  content: "";
  position: absolute;
  left: clamp(16px, 2vw, 28px);
  top: clamp(16px, 2vw, 28px);
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.personalisation-hero-copy::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 36px;
  height: 36px;
  border-right: 1px solid rgba(169, 133, 53, 0.62);
  border-bottom: 1px solid rgba(169, 133, 53, 0.62);
  pointer-events: none;
}

.personalisation-hero-copy h1 {
  max-width: 500px;
  color: #fff6ec;
  font-size: clamp(34px, 3.5vw, 56px);
  line-height: 1.04;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.personalisation-hero-copy .eyebrow {
  color: rgba(255, 248, 238, 0.9);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.personalisation-hero-copy p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 18px;
  color: rgba(255, 248, 238, 0.84);
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 600;
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.personalisation-hero-copy .button {
  border-color: rgba(169, 133, 53, 0.76);
  background: rgba(245, 245, 243, 0.82);
  color: var(--deep);
  backdrop-filter: blur(12px);
}

.personalisation-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) 5vw;
  border-bottom: 1px solid var(--line);
}

.personalisation-intro div {
  position: relative;
}

.personalisation-intro div::after {
  content: "";
  position: absolute;
  right: 8%;
  top: -24px;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(169, 133, 53, 0.22);
  transform: rotate(45deg);
  pointer-events: none;
}

.personalisation-intro span {
  display: block;
  width: 118px;
  height: 1px;
  margin-bottom: clamp(22px, 4vw, 42px);
  background: var(--gold);
  transform-origin: left;
}

.personalisation-intro h2 {
  max-width: 640px;
  font-size: clamp(31px, 4vw, 58px);
}

.personalisation-intro p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
}

.personalisation-fit {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 5vw;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 245, 243, 0.68), rgba(234, 234, 234, 0.9)),
    var(--bg);
}

.personalisation-section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 66px);
}

.personalisation-section-heading h2 {
  max-width: 720px;
  font-size: clamp(29px, 3.2vw, 48px);
}

.personalisation-orbit {
  position: absolute;
  top: clamp(48px, 7vw, 96px);
  right: clamp(22px, 6vw, 112px);
  width: clamp(92px, 12vw, 170px);
  height: clamp(92px, 12vw, 170px);
  pointer-events: none;
}

.personalisation-orbit span {
  position: absolute;
  display: block;
  border: 1px solid rgba(169, 133, 53, 0.18);
  transform: rotate(45deg);
}

.personalisation-orbit span:nth-child(1) {
  inset: 0;
}

.personalisation-orbit span:nth-child(2) {
  inset: 24%;
}

.personalisation-orbit span:nth-child(3) {
  left: 12%;
  top: 50%;
  width: 76%;
  height: 1px;
  border-width: 1px 0 0;
  transform: rotate(-18deg);
}

.personalisation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.personalisation-grid article {
  position: relative;
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(169, 133, 53, 0.24);
  background:
    linear-gradient(145deg, rgba(245, 245, 243, 0.7), rgba(234, 234, 234, 0.34)),
    rgba(245, 245, 243, 0.34);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.personalisation-grid article:nth-child(even) {
  margin-top: 42px;
}

.personalisation-grid article::before {
  content: "";
  position: absolute;
  left: clamp(24px, 3vw, 34px);
  right: clamp(24px, 3vw, 34px);
  top: 86px;
  height: 1px;
  background: linear-gradient(90deg, rgba(169, 133, 53, 0.5), transparent);
  transform-origin: left;
}

.personalisation-grid article::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(169, 133, 53, 0.14);
  transform: rotate(45deg);
}

.personalisation-grid span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.personalisation-grid h3 {
  font-size: clamp(24px, 2vw, 32px);
}

.personalisation-grid p {
  margin-top: 16px;
  color: var(--muted);
}

.personalisation-grid article:hover {
  border-color: rgba(169, 133, 53, 0.48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.personalisation-human {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) 5vw;
  border-bottom: 1px solid var(--line);
}

.personalisation-human-copy h2,
.personalisation-refined h2 {
  max-width: 650px;
  font-size: clamp(32px, 3.4vw, 52px);
}

.personalisation-human-copy p:not(.eyebrow),
.personalisation-refined p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
}

.personalisation-stage-list {
  position: relative;
  display: grid;
  gap: 1px;
  padding: 1px;
  border: 1px solid rgba(169, 133, 53, 0.3);
  background: rgba(169, 133, 53, 0.16);
}

.personalisation-stage-list::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -24px;
  width: 96px;
  height: 96px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  pointer-events: none;
}

.personalisation-stage-list::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 82px;
  height: 82px;
  border-right: 1px solid rgba(169, 133, 53, 0.42);
  border-bottom: 1px solid rgba(169, 133, 53, 0.42);
  transform: rotate(45deg);
  pointer-events: none;
}

.personalisation-stage-list span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 20px 26px;
  background: rgba(245, 245, 243, 0.7);
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
}

.personalisation-refined {
  position: relative;
  padding: clamp(68px, 8vw, 116px) 5vw;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(23, 5, 10, 0.08), transparent 48%),
    linear-gradient(270deg, rgba(169, 133, 53, 0.1), transparent 42%),
    var(--paper);
}

.personalisation-refined::before {
  content: "";
  position: absolute;
  inset: clamp(20px, 3vw, 44px) 4vw;
  border: 1px solid rgba(169, 133, 53, 0.18);
  clip-path: polygon(0 0, 96% 0, 100% 14%, 100% 100%, 4% 100%, 0 86%);
  pointer-events: none;
}

.personalisation-refined div {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
}

.personalisation-refined h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.04;
}

.personalisation-refined p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.personalisation-final {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 5vw;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(169, 133, 53, 0.15), transparent 38%),
    var(--bg);
}

.personalisation-final::before {
  content: "";
  display: block;
  width: min(170px, 46vw);
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.85), transparent);
  transform-origin: center;
}

.personalisation-final p {
  width: min(920px, 100%);
  margin: 0 auto;
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 700;
  line-height: 1.06;
}

.personalisation-final .button {
  margin-top: 34px;
}

body[data-page="personalized"].motion-ready .personalisation-hero,
body[data-page="personalized"].motion-ready .personalisation-intro,
body[data-page="personalized"].motion-ready .personalisation-fit,
body[data-page="personalized"].motion-ready .personalisation-human,
body[data-page="personalized"].motion-ready .personalisation-refined,
body[data-page="personalized"].motion-ready .personalisation-final {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="personalized"].motion-ready .personalisation-hero.is-visible,
body[data-page="personalized"].motion-ready .personalisation-intro.is-visible,
body[data-page="personalized"].motion-ready .personalisation-fit.is-visible,
body[data-page="personalized"].motion-ready .personalisation-human.is-visible,
body[data-page="personalized"].motion-ready .personalisation-refined.is-visible,
body[data-page="personalized"].motion-ready .personalisation-final.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.personalisation-hero.is-visible .personalisation-hero-media img {
  animation: personalisation-image-drift 15s ease-in-out infinite alternate;
}

.personalisation-hero.is-visible::after {
  animation: personalisation-thread-glow 4.6s ease-in-out 500ms infinite;
}

body[data-page="personalized"].motion-ready .personalisation-hero-copy > * {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="personalized"].motion-ready .personalisation-hero.is-visible .personalisation-hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="personalized"].motion-ready .personalisation-hero.is-visible .personalisation-hero-copy > *:nth-child(1) {
  transition-delay: 160ms;
}

body[data-page="personalized"].motion-ready .personalisation-hero.is-visible .personalisation-hero-copy > *:nth-child(2) {
  transition-delay: 250ms;
}

body[data-page="personalized"].motion-ready .personalisation-hero.is-visible .personalisation-hero-copy > *:nth-child(3) {
  transition-delay: 340ms;
}

body[data-page="personalized"].motion-ready .personalisation-hero.is-visible .personalisation-hero-copy > *:nth-child(4) {
  transition-delay: 430ms;
}

body[data-page="personalized"].motion-ready .personalisation-intro span,
body[data-page="personalized"].motion-ready .personalisation-grid article::before,
body[data-page="personalized"].motion-ready .personalisation-final::before {
  transform: scaleX(0);
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

body[data-page="personalized"].motion-ready .personalisation-intro.is-visible span,
body[data-page="personalized"].motion-ready .personalisation-fit.is-visible .personalisation-grid article::before,
body[data-page="personalized"].motion-ready .personalisation-final.is-visible::before {
  transform: scaleX(1);
}

.personalisation-fit.is-visible .personalisation-orbit span {
  animation: personalisation-map-drift 7s ease-in-out 400ms infinite alternate;
}

body[data-page="personalized"].motion-ready .personalisation-grid article {
  opacity: 0;
  transform: translateY(20px) rotateX(5deg);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

body[data-page="personalized"].motion-ready .personalisation-fit.is-visible .personalisation-grid article {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

body[data-page="personalized"].motion-ready .personalisation-fit.is-visible .personalisation-grid article:nth-child(1) {
  transition-delay: 90ms;
}

body[data-page="personalized"].motion-ready .personalisation-fit.is-visible .personalisation-grid article:nth-child(2) {
  transition-delay: 170ms;
}

body[data-page="personalized"].motion-ready .personalisation-fit.is-visible .personalisation-grid article:nth-child(3) {
  transition-delay: 250ms;
}

body[data-page="personalized"].motion-ready .personalisation-fit.is-visible .personalisation-grid article:nth-child(4) {
  transition-delay: 330ms;
}

body[data-page="personalized"].motion-ready .personalisation-stage-list span {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-8px);
  transition:
    opacity 560ms ease,
    clip-path 740ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 740ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="personalized"].motion-ready .personalisation-human.is-visible .personalisation-stage-list span {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateX(0);
}

body[data-page="personalized"].motion-ready .personalisation-human.is-visible .personalisation-stage-list span:nth-child(1) {
  transition-delay: 160ms;
}

body[data-page="personalized"].motion-ready .personalisation-human.is-visible .personalisation-stage-list span:nth-child(2) {
  transition-delay: 280ms;
}

body[data-page="personalized"].motion-ready .personalisation-human.is-visible .personalisation-stage-list span:nth-child(3) {
  transition-delay: 400ms;
}

body[data-page="personalized"].motion-ready .personalisation-human.is-visible .personalisation-stage-list span:nth-child(4) {
  transition-delay: 520ms;
}

@keyframes personalisation-image-drift {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.04) translateX(-8px);
  }
}

@keyframes personalisation-thread-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.82);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes personalisation-map-drift {
  from {
    transform: rotate(45deg) translate3d(0, 0, 0);
  }

  to {
    transform: rotate(45deg) translate3d(7px, -7px, 0);
  }
}

@media (max-width: 1080px) {
  .personalisation-hero-copy {
    width: min(520px, 56vw);
    margin-left: 18px;
  }

  .personalisation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .personalisation-grid article:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .personalisation-hero {
    display: block;
    min-height: auto;
    padding: 12px 0 0;
  }

  .personalisation-hero::before {
    inset: 9px 10px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 92% 100%, 0 100%);
  }

  .personalisation-hero::after {
    left: 26px;
    bottom: 30px;
    width: 96px;
    opacity: 0.5;
  }

  .personalisation-hero-media {
    width: calc(100% - 26px);
    min-height: 0;
    height: min(62vh, 500px);
    margin: 0 13px;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 90% 100%, 0 100%);
  }

  .personalisation-hero-media::after {
    background:
      linear-gradient(180deg, rgba(23, 5, 10, 0.04), transparent 42%, rgba(0, 0, 0, 0.16)),
      linear-gradient(90deg, rgba(23, 5, 10, 0.18), transparent 42%);
  }

  .personalisation-hero-media img {
    object-position: 82% center;
    transform-origin: 82% center;
  }

  .personalisation-hero-copy {
    width: calc(100% - 38px);
    margin: -34px 19px 0;
    padding: 20px 16px 42px;
  }

  .personalisation-hero-copy h1 {
    font-size: clamp(31px, 8.2vw, 39px);
  }

  .personalisation-hero-copy p:not(.eyebrow) {
    max-width: 320px;
    font-size: 13px;
  }

  .personalisation-hero-copy .button {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 11px;
  }

  .personalisation-intro,
  .personalisation-fit,
  .personalisation-human,
  .personalisation-refined,
  .personalisation-final {
    padding: 58px 18px;
  }

  .personalisation-intro,
  .personalisation-section-heading,
  .personalisation-human {
    grid-template-columns: 1fr;
  }

  .personalisation-intro h2,
  .personalisation-section-heading h2,
  .personalisation-human-copy h2,
  .personalisation-refined h2 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .personalisation-intro p {
    font-size: 16px;
  }

  .personalisation-orbit {
    top: 38px;
    right: 20px;
    width: 54px;
    height: 54px;
    opacity: 0.72;
  }

  .personalisation-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .personalisation-grid article {
    min-height: auto;
    padding: 24px;
  }

  .personalisation-grid span {
    margin-bottom: 44px;
  }

  .personalisation-stage-list::before {
    left: 12px;
    top: -18px;
  }

  .personalisation-stage-list {
    overflow: hidden;
  }

  .personalisation-stage-list span {
    min-height: 66px;
    padding: 18px;
    font-size: clamp(24px, 7vw, 32px);
  }

  .personalisation-refined::before {
    inset: 14px;
  }

  .personalisation-grid article:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .personalisation-hero.is-visible .personalisation-hero-media img,
  .personalisation-hero.is-visible::after,
  .personalisation-fit.is-visible .personalisation-orbit span {
    animation: none;
  }

  body[data-page="personalized"].motion-ready .personalisation-hero,
  body[data-page="personalized"].motion-ready .personalisation-intro,
  body[data-page="personalized"].motion-ready .personalisation-fit,
  body[data-page="personalized"].motion-ready .personalisation-human,
  body[data-page="personalized"].motion-ready .personalisation-refined,
  body[data-page="personalized"].motion-ready .personalisation-final,
  body[data-page="personalized"].motion-ready .personalisation-hero-copy > *,
  body[data-page="personalized"].motion-ready .personalisation-grid article,
  body[data-page="personalized"].motion-ready .personalisation-stage-list span {
    opacity: 1;
    clip-path: none;
    transform: none;
    transition: none;
  }
}

/* Contact page: bright, welcoming, and conversation-led. */
.contact-hero-scene {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 91px);
  display: grid;
  align-items: stretch;
  padding: clamp(18px, 3vw, 42px) 5vw clamp(50px, 6vw, 78px);
  overflow: hidden;
  border-bottom: 1px solid rgba(169, 133, 53, 0.22);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.84), transparent 30%),
    linear-gradient(118deg, rgba(245, 245, 243, 0.78), rgba(234, 234, 234, 0.94) 48%, rgba(169, 133, 53, 0.09)),
    var(--bg);
}

.contact-hero-scene::before {
  content: "";
  position: absolute;
  inset: clamp(22px, 3vw, 48px) 4vw clamp(28px, 3.6vw, 54px);
  z-index: -1;
  border: 1px solid rgba(169, 133, 53, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08) 52%, rgba(169, 133, 53, 0.08)),
    rgba(245, 245, 243, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  clip-path: polygon(0 0, 96% 0, 100% 9%, 100% 100%, 3% 100%, 0 92%);
}

.contact-hero-scene::after {
  content: "";
  position: absolute;
  left: clamp(24px, 5vw, 92px);
  bottom: clamp(28px, 5vw, 82px);
  z-index: 3;
  width: clamp(86px, 10vw, 152px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.82), transparent);
  pointer-events: none;
}

.contact-hero-media {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  min-height: min(720px, calc(100vh - 170px));
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 245, 243, 0.64);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
  clip-path: polygon(0 0, 100% 0, 100% 91%, 94% 100%, 0 100%);
}

.contact-hero-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(169, 133, 53, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.contact-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(245, 245, 243, 0.68), rgba(245, 245, 243, 0.34) 38%, transparent 66%),
    linear-gradient(180deg, transparent 66%, rgba(0, 0, 0, 0.06));
  pointer-events: none;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.99) contrast(1.02);
  transform: scale(1.01);
  transform-origin: 72% center;
}

.contact-hero-copy {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  width: min(540px, 42vw);
  margin-left: clamp(16px, 4vw, 72px);
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(169, 133, 53, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(245, 245, 243, 0.2)),
    rgba(245, 245, 243, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 24px 54px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(24px) saturate(1.16);
  clip-path: polygon(0 0, 94% 0, 100% 10%, 100% 100%, 7% 100%, 0 92%);
}

.contact-hero-copy::before {
  content: "";
  position: absolute;
  left: clamp(16px, 2vw, 28px);
  top: clamp(16px, 2vw, 28px);
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.contact-hero-copy::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 36px;
  height: 36px;
  border-right: 1px solid rgba(169, 133, 53, 0.5);
  border-bottom: 1px solid rgba(169, 133, 53, 0.5);
  pointer-events: none;
}

.contact-hero-copy h1 {
  max-width: 510px;
  color: var(--deep);
  font-size: clamp(34px, 3.5vw, 56px);
  line-height: 1.04;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 18px;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 600;
  line-height: 1.75;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(26px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) 5vw;
  border-bottom: 1px solid var(--line);
}

.contact-intro div {
  position: relative;
}

.contact-intro div::after {
  content: "";
  position: absolute;
  left: -16px;
  top: -18px;
  width: 54px;
  height: 54px;
  border-left: 1px solid rgba(169, 133, 53, 0.32);
  border-top: 1px solid rgba(169, 133, 53, 0.32);
  pointer-events: none;
}

.contact-intro span {
  display: block;
  width: 118px;
  height: 1px;
  margin-bottom: clamp(22px, 4vw, 42px);
  background: var(--gold);
  transform-origin: left;
}

.contact-intro h2 {
  max-width: 650px;
  font-size: clamp(31px, 4vw, 58px);
}

.contact-intro p {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
}

.contact-help {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 5vw;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 245, 243, 0.66), rgba(234, 234, 234, 0.9)),
    var(--bg);
}

.contact-help::before {
  content: "";
  position: absolute;
  top: clamp(48px, 7vw, 96px);
  right: clamp(22px, 6vw, 112px);
  width: clamp(72px, 9vw, 136px);
  height: clamp(72px, 9vw, 136px);
  border: 1px solid rgba(169, 133, 53, 0.18);
  transform: rotate(45deg);
  pointer-events: none;
}

.contact-section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 66px);
}

.contact-section-heading h2 {
  max-width: 720px;
  font-size: clamp(29px, 3.2vw, 48px);
}

.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.contact-help-grid article {
  position: relative;
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(169, 133, 53, 0.24);
  background:
    linear-gradient(145deg, rgba(245, 245, 243, 0.68), rgba(234, 234, 234, 0.32)),
    rgba(245, 245, 243, 0.34);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.contact-help-grid article:nth-child(1),
.contact-help-grid article:nth-child(2),
.contact-help-grid article:nth-child(3) {
  grid-column: span 2;
}

.contact-help-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.contact-help-grid article:nth-child(5) {
  grid-column: span 2;
}

.contact-help-grid article::before {
  content: "";
  position: absolute;
  left: clamp(24px, 3vw, 34px);
  right: clamp(24px, 3vw, 34px);
  top: 84px;
  height: 1px;
  background: linear-gradient(90deg, rgba(169, 133, 53, 0.52), transparent);
  transform-origin: left;
}

.contact-help-grid article::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 124px;
  height: 124px;
  border: 1px solid rgba(169, 133, 53, 0.14);
  transform: rotate(45deg);
}

.contact-help-grid span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.contact-help-grid h3 {
  font-size: clamp(24px, 2vw, 32px);
}

.contact-help-grid p {
  margin-top: 16px;
  color: var(--muted);
}

.contact-help-grid article:hover {
  border-color: rgba(169, 133, 53, 0.48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.contact-enquiry {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  padding: clamp(64px, 8vw, 112px) 5vw;
  border-bottom: 1px solid var(--line);
}

.contact-enquiry-copy {
  position: sticky;
  top: 88px;
}

.contact-enquiry-copy h2 {
  max-width: 620px;
  font-size: clamp(32px, 3.4vw, 52px);
}

.contact-enquiry-copy p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-direct a {
  width: fit-content;
  border-bottom: 1px solid rgba(169, 133, 53, 0.7);
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2.6vw, 40px);
  font-weight: 700;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(169, 133, 53, 0.3);
  background:
    linear-gradient(145deg, rgba(245, 245, 243, 0.74), rgba(234, 234, 234, 0.36)),
    rgba(245, 245, 243, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 18px 46px rgba(0, 0, 0, 0.08);
}

.contact-form::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(169, 133, 53, 0.16);
  transform: rotate(45deg);
  pointer-events: none;
}

.contact-form label {
  position: relative;
  z-index: 1;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0;
}

.contact-form label:nth-child(6),
.contact-form .button,
.contact-form .form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(169, 133, 53, 0.25);
  background: rgba(245, 245, 243, 0.52);
  color: var(--deep);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(169, 133, 53, 0.7);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 0 0 3px rgba(169, 133, 53, 0.12);
}

.contact-form .button {
  width: fit-content;
  margin-top: 8px;
}

.form-note {
  min-height: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-presence {
  position: relative;
  padding: clamp(62px, 7vw, 98px) 5vw;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  text-align: center;
  background: var(--paper);
}

.contact-presence::before {
  content: "";
  position: absolute;
  inset: clamp(20px, 3vw, 44px) 4vw;
  border: 1px solid rgba(169, 133, 53, 0.18);
  clip-path: polygon(0 0, 96% 0, 100% 14%, 100% 100%, 4% 100%, 0 86%);
  pointer-events: none;
}

.contact-presence .eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto clamp(22px, 3.4vw, 38px);
  color: rgba(23, 5, 10, 0.76);
  font-size: 10px;
  font-weight: 900;
}

.contact-presence .eyebrow::before,
.contact-presence .eyebrow::after {
  content: "";
  width: clamp(34px, 5vw, 76px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.72));
}

.contact-presence .eyebrow::after {
  background: linear-gradient(90deg, rgba(169, 133, 53, 0.72), transparent);
}

.contact-presence h2 {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin: 0 auto clamp(30px, 5vw, 56px);
  font-size: clamp(31px, 4vw, 58px);
}

.contact-presence-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1030px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(169, 133, 53, 0.24);
  background: rgba(169, 133, 53, 0.12);
  gap: 1px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.035);
}

.contact-presence-list span {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(245, 245, 243, 0.08)),
    rgba(245, 245, 243, 0.68);
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 2vw, 33px);
  font-weight: 600;
  line-height: 1;
}

.contact-presence-list span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 38px;
  height: 1px;
  background: rgba(169, 133, 53, 0.44);
  opacity: 0.72;
  transform: translateX(-50%);
}

.contact-presence-note {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: clamp(24px, 3.6vw, 38px) auto 0;
  color: rgba(0, 0, 0, 0.66);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(23px, 2.1vw, 34px);
  font-weight: 600;
  line-height: 1.2;
}

.contact-final {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 5vw;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(169, 133, 53, 0.15), transparent 38%),
    var(--bg);
}

.contact-final::before {
  content: "";
  display: block;
  width: min(170px, 46vw);
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.85), transparent);
  transform-origin: center;
}

.contact-final p {
  width: min(920px, 100%);
  margin: 0 auto;
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 700;
  line-height: 1.06;
}

.contact-final span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
}

.contact-final .button {
  margin-top: 34px;
}

body[data-page="contact"].motion-ready .contact-hero-scene,
body[data-page="contact"].motion-ready .contact-intro,
body[data-page="contact"].motion-ready .contact-help,
body[data-page="contact"].motion-ready .contact-enquiry,
body[data-page="contact"].motion-ready .contact-presence,
body[data-page="contact"].motion-ready .contact-final {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="contact"].motion-ready .contact-hero-scene.is-visible,
body[data-page="contact"].motion-ready .contact-intro.is-visible,
body[data-page="contact"].motion-ready .contact-help.is-visible,
body[data-page="contact"].motion-ready .contact-enquiry.is-visible,
body[data-page="contact"].motion-ready .contact-presence.is-visible,
body[data-page="contact"].motion-ready .contact-final.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-hero-scene.is-visible .contact-hero-media img {
  animation: contact-image-breathe 15s ease-in-out infinite alternate;
}

.contact-hero-scene.is-visible::after {
  animation: contact-thread-glow 4.6s ease-in-out 500ms infinite;
}

body[data-page="contact"].motion-ready .contact-hero-copy > * {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="contact"].motion-ready .contact-hero-scene.is-visible .contact-hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="contact"].motion-ready .contact-hero-scene.is-visible .contact-hero-copy > *:nth-child(1) {
  transition-delay: 160ms;
}

body[data-page="contact"].motion-ready .contact-hero-scene.is-visible .contact-hero-copy > *:nth-child(2) {
  transition-delay: 250ms;
}

body[data-page="contact"].motion-ready .contact-hero-scene.is-visible .contact-hero-copy > *:nth-child(3) {
  transition-delay: 340ms;
}

body[data-page="contact"].motion-ready .contact-hero-scene.is-visible .contact-hero-copy > *:nth-child(4) {
  transition-delay: 430ms;
}

body[data-page="contact"].motion-ready .contact-intro span,
body[data-page="contact"].motion-ready .contact-help-grid article::before,
body[data-page="contact"].motion-ready .contact-final::before {
  transform: scaleX(0);
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

body[data-page="contact"].motion-ready .contact-intro.is-visible span,
body[data-page="contact"].motion-ready .contact-help.is-visible .contact-help-grid article::before,
body[data-page="contact"].motion-ready .contact-final.is-visible::before {
  transform: scaleX(1);
}

.contact-help.is-visible::before {
  animation: contact-mark-drift 8s ease-in-out 500ms infinite alternate;
}

body[data-page="contact"].motion-ready .contact-help-grid article,
body[data-page="contact"].motion-ready .contact-form label,
body[data-page="contact"].motion-ready .contact-presence-list span {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

body[data-page="contact"].motion-ready .contact-help.is-visible .contact-help-grid article,
body[data-page="contact"].motion-ready .contact-enquiry.is-visible .contact-form label,
body[data-page="contact"].motion-ready .contact-presence.is-visible .contact-presence-list span {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="contact"].motion-ready .contact-help.is-visible .contact-help-grid article:nth-child(1),
body[data-page="contact"].motion-ready .contact-enquiry.is-visible .contact-form label:nth-child(1),
body[data-page="contact"].motion-ready .contact-presence.is-visible .contact-presence-list span:nth-child(1) {
  transition-delay: 90ms;
}

body[data-page="contact"].motion-ready .contact-help.is-visible .contact-help-grid article:nth-child(2),
body[data-page="contact"].motion-ready .contact-enquiry.is-visible .contact-form label:nth-child(2),
body[data-page="contact"].motion-ready .contact-presence.is-visible .contact-presence-list span:nth-child(2) {
  transition-delay: 170ms;
}

body[data-page="contact"].motion-ready .contact-help.is-visible .contact-help-grid article:nth-child(3),
body[data-page="contact"].motion-ready .contact-enquiry.is-visible .contact-form label:nth-child(3),
body[data-page="contact"].motion-ready .contact-presence.is-visible .contact-presence-list span:nth-child(3) {
  transition-delay: 250ms;
}

body[data-page="contact"].motion-ready .contact-presence.is-visible .contact-presence-list span:nth-child(4) {
  transition-delay: 330ms;
}

body[data-page="contact"].motion-ready .contact-help.is-visible .contact-help-grid article:nth-child(4),
body[data-page="contact"].motion-ready .contact-enquiry.is-visible .contact-form label:nth-child(4) {
  transition-delay: 330ms;
}

body[data-page="contact"].motion-ready .contact-help.is-visible .contact-help-grid article:nth-child(5),
body[data-page="contact"].motion-ready .contact-enquiry.is-visible .contact-form label:nth-child(5) {
  transition-delay: 410ms;
}

body[data-page="contact"].motion-ready .contact-enquiry.is-visible .contact-form label:nth-child(6) {
  transition-delay: 490ms;
}

@keyframes contact-image-breathe {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.035) translateX(-6px);
  }
}

@keyframes contact-thread-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.82);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes contact-mark-drift {
  from {
    transform: rotate(45deg) translate3d(0, 0, 0);
  }

  to {
    transform: rotate(45deg) translate3d(-7px, 7px, 0);
  }
}

@media (max-width: 1080px) {
  .contact-hero-copy {
    width: min(520px, 56vw);
    margin-left: 18px;
  }

  .contact-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-help-grid article,
  .contact-help-grid article:nth-child(1),
  .contact-help-grid article:nth-child(2),
  .contact-help-grid article:nth-child(3),
  .contact-help-grid article:nth-child(4),
  .contact-help-grid article:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .contact-hero-scene {
    display: block;
    min-height: auto;
    padding: 12px 0 0;
  }

  .contact-hero-scene::before {
    inset: 9px 10px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 92% 100%, 0 100%);
  }

  .contact-hero-scene::after {
    left: 26px;
    bottom: 30px;
    width: 96px;
    opacity: 0.5;
  }

  .contact-hero-media {
    width: calc(100% - 26px);
    min-height: 0;
    height: min(62vh, 500px);
    margin: 0 13px;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 90% 100%, 0 100%);
  }

  .contact-hero-media::after {
    background:
      linear-gradient(180deg, rgba(245, 245, 243, 0.06), transparent 48%, rgba(0, 0, 0, 0.06)),
      linear-gradient(90deg, rgba(245, 245, 243, 0.22), transparent 46%);
  }

  .contact-hero-media img {
    object-position: 78% center;
    transform-origin: 78% center;
  }

  .contact-hero-copy {
    width: calc(100% - 38px);
    margin: -34px 19px 0;
    padding: 20px 16px 42px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(31px, 8.2vw, 39px);
  }

  .contact-hero-copy p:not(.eyebrow) {
    max-width: 320px;
    font-size: 13px;
  }

  .contact-hero-copy .button {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 11px;
  }

  .contact-intro,
  .contact-help,
  .contact-enquiry,
  .contact-presence,
  .contact-final {
    padding: 58px 18px;
  }

  .contact-intro,
  .contact-section-heading,
  .contact-enquiry {
    grid-template-columns: 1fr;
  }

  .contact-intro h2,
  .contact-section-heading h2,
  .contact-enquiry-copy h2,
  .contact-presence h2 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .contact-intro p {
    font-size: 16px;
  }

  .contact-help::before {
    top: 38px;
    right: 20px;
    width: 50px;
    height: 50px;
    opacity: 0.72;
  }

  .contact-help-grid,
  .contact-form,
  .contact-presence-list {
    grid-template-columns: 1fr;
  }

  .contact-help-grid {
    gap: 12px;
  }

  .contact-help-grid article {
    min-height: auto;
    padding: 24px;
  }

  .contact-help-grid span {
    margin-bottom: 44px;
  }

  .contact-enquiry-copy {
    position: static;
  }

  .contact-direct a {
    max-width: 100%;
    font-size: clamp(20px, 6vw, 25px);
    overflow-wrap: anywhere;
  }

  .contact-form label:nth-child(6),
  .contact-form .button,
  .contact-form .form-note {
    grid-column: auto;
  }

  .contact-form .button {
    width: 100%;
  }

  .contact-presence::before {
    inset: 14px;
  }

  .contact-presence-list span {
    min-height: 72px;
  }

  .contact-help-grid article:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero-scene.is-visible .contact-hero-media img,
  .contact-hero-scene.is-visible::after,
  .contact-help.is-visible::before {
    animation: none;
  }

  body[data-page="contact"].motion-ready .contact-hero-scene,
  body[data-page="contact"].motion-ready .contact-intro,
  body[data-page="contact"].motion-ready .contact-help,
  body[data-page="contact"].motion-ready .contact-enquiry,
  body[data-page="contact"].motion-ready .contact-presence,
  body[data-page="contact"].motion-ready .contact-final,
  body[data-page="contact"].motion-ready .contact-hero-copy > *,
  body[data-page="contact"].motion-ready .contact-help-grid article,
  body[data-page="contact"].motion-ready .contact-form label,
  body[data-page="contact"].motion-ready .contact-presence-list span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* How Jodisure Works: a more cinematic service pathway. */
.works-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 91px);
  display: grid;
  align-items: stretch;
  padding: clamp(18px, 3vw, 42px) 5vw clamp(50px, 6vw, 78px);
  overflow: hidden;
  border-bottom: 1px solid rgba(169, 133, 53, 0.28);
  background:
    radial-gradient(circle at 80% 14%, rgba(169, 133, 53, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(23, 5, 10, 0.9), rgba(23, 5, 10, 0.42) 48%, rgba(234, 234, 234, 0.12)),
    var(--deep);
}

.works-hero::before {
  content: "";
  position: absolute;
  inset: clamp(22px, 3vw, 48px) 4vw clamp(28px, 3.6vw, 54px);
  z-index: -1;
  border: 1px solid rgba(169, 133, 53, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(23, 5, 10, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  clip-path: polygon(0 0, 95% 0, 100% 10%, 100% 100%, 4% 100%, 0 90%);
}

.works-hero::after {
  content: "";
  position: absolute;
  left: clamp(24px, 5vw, 90px);
  right: clamp(24px, 5vw, 90px);
  bottom: clamp(30px, 5vw, 76px);
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.72), transparent);
  pointer-events: none;
}

.works-hero-media {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  min-height: min(720px, calc(100vh - 170px));
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(169, 133, 53, 0.24);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  clip-path: polygon(0 0, 100% 0, 100% 91%, 94% 100%, 0 100%);
}

.works-hero-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(245, 245, 243, 0.28);
  pointer-events: none;
}

.works-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 5, 10, 0.86), rgba(23, 5, 10, 0.58) 38%, rgba(23, 5, 10, 0.12) 72%),
    linear-gradient(180deg, transparent 54%, rgba(23, 5, 10, 0.58));
  pointer-events: none;
}

.works-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.01);
  transform-origin: 58% center;
}

.works-hero-copy {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  width: min(610px, 46vw);
  margin-left: clamp(16px, 4vw, 76px);
  padding: clamp(24px, 3vw, 46px);
  border: 1px solid rgba(169, 133, 53, 0.36);
  background:
    linear-gradient(145deg, rgba(23, 5, 10, 0.28), rgba(23, 5, 10, 0.08)),
    rgba(23, 5, 10, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(245, 245, 243, 0.1),
    0 24px 58px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px) saturate(1.16);
  clip-path: polygon(0 0, 94% 0, 100% 10%, 100% 100%, 7% 100%, 0 92%);
}

.works-hero-copy::before {
  content: "";
  position: absolute;
  left: clamp(16px, 2vw, 28px);
  top: clamp(16px, 2vw, 28px);
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.works-hero-copy::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 38px;
  height: 38px;
  border-right: 1px solid rgba(169, 133, 53, 0.62);
  border-bottom: 1px solid rgba(169, 133, 53, 0.62);
}

.works-hero-copy .eyebrow {
  color: rgba(245, 245, 243, 0.86);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.works-hero-copy h1 {
  max-width: 570px;
  color: #fff6ec;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.02;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.34);
}

.works-hero-copy p:not(.eyebrow) {
  max-width: 490px;
  margin-top: 18px;
  color: rgba(245, 245, 243, 0.82);
  font-size: clamp(14px, 1.08vw, 16px);
  font-weight: 600;
  line-height: 1.75;
}

.works-hero-copy .button {
  border-color: rgba(169, 133, 53, 0.78);
  background: rgba(245, 245, 243, 0.86);
  color: var(--deep);
}

.works-consult {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(26px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) 5vw;
  border-bottom: 1px solid var(--line);
}

.works-consult div {
  position: relative;
}

.works-consult div::after {
  content: "";
  position: absolute;
  right: 10%;
  top: -28px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(169, 133, 53, 0.22);
  transform: rotate(45deg);
}

.works-consult span {
  display: block;
  width: 118px;
  height: 1px;
  margin-bottom: clamp(22px, 4vw, 42px);
  background: var(--gold);
  transform-origin: left;
}

.works-consult h2 {
  max-width: 720px;
  font-size: clamp(31px, 4vw, 58px);
}

.works-consult > p {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
}

.works-experiences {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 120px) 5vw;
  border-bottom: 1px solid rgba(169, 133, 53, 0.24);
  background:
    linear-gradient(180deg, rgba(23, 5, 10, 0.94), rgba(35, 18, 15, 0.88)),
    var(--deep);
  color: #f7f0e6;
}

.works-experiences::before {
  content: "";
  position: absolute;
  top: clamp(44px, 6vw, 88px);
  right: clamp(22px, 7vw, 128px);
  width: clamp(70px, 9vw, 140px);
  height: clamp(70px, 9vw, 140px);
  border: 1px solid rgba(169, 133, 53, 0.24);
  transform: rotate(45deg);
}

.works-section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 66px);
}

.works-section-heading h2 {
  max-width: 780px;
  color: #fff6ec;
  font-size: clamp(30px, 3.2vw, 50px);
}

.works-experiences .eyebrow,
.works-plan-top p,
.works-includes > p {
  color: rgba(245, 245, 243, 0.78);
}

.works-plan-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.12fr) minmax(0, 0.94fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.works-plan-card {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: start;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(169, 133, 53, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(245, 245, 243, 0.045);
  box-shadow: inset 0 0 0 1px rgba(245, 245, 243, 0.04);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.works-plan-card.featured {
  min-height: 610px;
  margin-top: -24px;
  border-color: rgba(169, 133, 53, 0.7);
  background:
    linear-gradient(145deg, rgba(169, 133, 53, 0.22), rgba(255, 255, 255, 0.05)),
    rgba(245, 245, 243, 0.07);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(245, 245, 243, 0.08);
}

.works-plan-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(169, 133, 53, 0.18);
  transform: rotate(45deg);
}

.works-plan-card:hover {
  border-color: rgba(169, 133, 53, 0.78);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

.works-plan-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(34px, 4vw, 54px);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(169, 133, 53, 0.3);
}

.works-plan-top span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.works-plan-top p {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.works-plan-card h3 {
  color: #fff6ec;
  font-size: clamp(29px, 2.65vw, 44px);
  line-height: 1.02;
}

.works-plan-card h4 {
  margin: 18px 0 0;
  color: rgba(245, 245, 243, 0.86);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.works-plan-card > p {
  margin-top: 18px;
  color: rgba(245, 245, 243, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

.works-includes {
  margin-top: 30px;
}

.works-includes > p {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.works-includes ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.works-includes li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-top: 1px solid rgba(169, 133, 53, 0.2);
  color: rgba(245, 245, 243, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.works-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.works-chooser {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 5vw;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  text-align: center;
  background: var(--paper);
}

.works-chooser::before {
  content: "";
  position: absolute;
  inset: clamp(20px, 3vw, 44px) 4vw;
  border: 1px solid rgba(169, 133, 53, 0.18);
  clip-path: polygon(0 0, 96% 0, 100% 14%, 100% 100%, 4% 100%, 0 86%);
}

.works-chooser .eyebrow,
.works-chooser h2,
.works-choice-list {
  position: relative;
  z-index: 1;
}

.works-chooser h2 {
  width: min(820px, 100%);
  margin: 12px auto clamp(32px, 5vw, 58px);
  font-size: clamp(31px, 4vw, 58px);
}

.works-choice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1060px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(169, 133, 53, 0.26);
  background: rgba(169, 133, 53, 0.14);
}

.works-choice-list article {
  min-height: 210px;
  display: grid;
  align-content: center;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(245, 245, 243, 0.08)),
    rgba(245, 245, 243, 0.68);
}

.works-choice-list span {
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1;
}

.works-choice-list p {
  max-width: 300px;
  margin: 18px auto 0;
  color: var(--muted);
}

.works-final {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 5vw;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(169, 133, 53, 0.15), transparent 38%),
    var(--bg);
}

.works-final::before {
  content: "";
  display: block;
  width: min(170px, 46vw);
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.85), transparent);
  transform-origin: center;
}

.works-final p {
  width: min(980px, 100%);
  margin: 0 auto;
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 700;
  line-height: 1.06;
}

.works-final .button {
  margin-top: 34px;
}

body[data-page="works"].motion-ready .works-hero,
body[data-page="works"].motion-ready .works-consult,
body[data-page="works"].motion-ready .works-experiences,
body[data-page="works"].motion-ready .works-chooser,
body[data-page="works"].motion-ready .works-final {
  opacity: 1;
  transform: none;
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="works"].motion-ready .works-hero.is-visible,
body[data-page="works"].motion-ready .works-consult.is-visible,
body[data-page="works"].motion-ready .works-experiences.is-visible,
body[data-page="works"].motion-ready .works-chooser.is-visible,
body[data-page="works"].motion-ready .works-final.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.works-hero.is-visible .works-hero-media img {
  animation: works-image-drift 15s ease-in-out infinite alternate;
}

.works-hero.is-visible::after {
  animation: works-thread-glow 4.6s ease-in-out 500ms infinite;
}

body[data-page="works"].motion-ready .works-hero-copy > * {
  opacity: 1;
  transform: none;
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="works"].motion-ready .works-hero.is-visible .works-hero-copy > *,
body[data-page="works"].motion-ready .works-experiences.is-visible .works-plan-card,
body[data-page="works"].motion-ready .works-chooser.is-visible .works-choice-list article {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="works"].motion-ready .works-hero.is-visible .works-hero-copy > *:nth-child(1) {
  transition-delay: 160ms;
}

body[data-page="works"].motion-ready .works-hero.is-visible .works-hero-copy > *:nth-child(2) {
  transition-delay: 250ms;
}

body[data-page="works"].motion-ready .works-hero.is-visible .works-hero-copy > *:nth-child(3) {
  transition-delay: 340ms;
}

body[data-page="works"].motion-ready .works-hero.is-visible .works-hero-copy > *:nth-child(4) {
  transition-delay: 430ms;
}

body[data-page="works"].motion-ready .works-consult span,
body[data-page="works"].motion-ready .works-final::before {
  transform: scaleX(0);
  transition: transform 820ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

body[data-page="works"].motion-ready .works-consult.is-visible span,
body[data-page="works"].motion-ready .works-final.is-visible::before {
  transform: scaleX(1);
}

body[data-page="works"].motion-ready .works-plan-card,
body[data-page="works"].motion-ready .works-choice-list article {
  opacity: 1;
  transform: none;
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

body[data-page="works"].motion-ready .works-plan-card:hover {
  transform: translateY(-4px);
}

body[data-page="works"].motion-ready .works-experiences.is-visible .works-plan-card:nth-child(1),
body[data-page="works"].motion-ready .works-chooser.is-visible .works-choice-list article:nth-child(1) {
  transition-delay: 120ms;
}

body[data-page="works"].motion-ready .works-experiences.is-visible .works-plan-card:nth-child(2),
body[data-page="works"].motion-ready .works-chooser.is-visible .works-choice-list article:nth-child(2) {
  transition-delay: 230ms;
}

body[data-page="works"].motion-ready .works-experiences.is-visible .works-plan-card:nth-child(3),
body[data-page="works"].motion-ready .works-chooser.is-visible .works-choice-list article:nth-child(3) {
  transition-delay: 340ms;
}

@keyframes works-image-drift {
  from {
    transform: scale(1.01);
  }

  to {
    transform: scale(1.04) translateX(-8px);
  }
}

@keyframes works-thread-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.82);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 1080px) {
  .works-hero-copy {
    width: min(560px, 58vw);
    margin-left: 18px;
  }

  .works-plan-grid {
    grid-template-columns: 1fr;
  }

  .works-plan-card,
  .works-plan-card.featured {
    min-height: auto;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .works-hero {
    display: block;
    min-height: auto;
    padding: 12px 0 0;
  }

  .works-hero::before {
    inset: 9px 10px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 92% 100%, 0 100%);
  }

  .works-hero::after {
    left: 26px;
    right: auto;
    bottom: 30px;
    width: 96px;
    opacity: 0.5;
  }

  .works-hero-media {
    width: calc(100% - 26px);
    min-height: 0;
    height: min(47vh, 370px);
    margin: 0 13px;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 90% 100%, 0 100%);
  }

  .works-hero-media::after {
    background:
      linear-gradient(180deg, rgba(23, 5, 10, 0.08), transparent 38%, rgba(23, 5, 10, 0.48)),
      linear-gradient(90deg, rgba(23, 5, 10, 0.45), transparent 50%);
  }

  .works-hero-media img {
    object-position: 82% center;
    transform-origin: 82% center;
  }

  .works-hero-copy {
    width: calc(100% - 38px);
    margin: -22px 19px 0;
    padding: 20px 16px 34px;
  }

  .works-hero-copy h1 {
    font-size: clamp(28px, 7.3vw, 36px);
  }

  .works-hero-copy p:not(.eyebrow) {
    max-width: 330px;
    font-size: 13px;
  }

  .works-hero-copy .button {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 11px;
  }

  .works-consult,
  .works-experiences,
  .works-chooser,
  .works-final {
    padding: 58px 18px;
  }

  .works-consult,
  .works-section-heading {
    grid-template-columns: 1fr;
  }

  .works-consult h2,
  .works-section-heading h2,
  .works-chooser h2 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .works-consult > p {
    font-size: 16px;
  }

  .works-plan-card {
    padding: 24px;
  }

  .works-plan-card h3 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .works-plan-top {
    margin-bottom: 34px;
  }

  .works-choice-list {
    grid-template-columns: 1fr;
  }

  .works-choice-list article {
    min-height: auto;
  }

  .works-plan-card:hover {
    transform: none;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .why-river {
    grid-template-columns: 1fr;
  }

  .why-river article,
  .why-river article:nth-child(1),
  .why-river article:nth-child(2),
  .why-river article:nth-child(3),
  .why-river article:nth-child(4) {
    grid-template-columns: 72px minmax(190px, 0.48fr) minmax(260px, 1fr);
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .main-nav {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(245, 245, 243, 0.76)),
      rgba(245, 245, 243, 0.8);
    border-color: rgba(169, 133, 53, 0.34);
    box-shadow:
      0 22px 50px rgba(0, 0, 0, 0.18),
      inset 0 0 0 1px rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(28px) saturate(1.18);
  }

  .main-nav a {
    color: rgba(0, 0, 0, 0.82);
  }
}

@media (prefers-reduced-motion: reduce) {
  .works-hero.is-visible .works-hero-media img,
  .works-hero.is-visible::after {
    animation: none;
  }

  body[data-page="works"].motion-ready .works-hero,
  body[data-page="works"].motion-ready .works-consult,
  body[data-page="works"].motion-ready .works-experiences,
  body[data-page="works"].motion-ready .works-chooser,
  body[data-page="works"].motion-ready .works-final,
  body[data-page="works"].motion-ready .works-hero-copy > *,
  body[data-page="works"].motion-ready .works-plan-card,
  body[data-page="works"].motion-ready .works-choice-list article {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* New page active navigation support. */
body[data-page="works"] .main-nav a[data-nav="works"] {
  color: var(--deep);
  border-color: transparent;
}

body[data-page="works"] .main-nav a[data-nav="works"]::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

@media (max-width: 760px) {
  body[data-page="works"] .main-nav a[data-nav="works"]::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}

/* Hero glass canvas: premium depth without veiling the photograph. */
.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 62% 100%, rgba(169, 133, 53, 0.13), transparent 34%),
    linear-gradient(126deg, rgba(245, 245, 243, 0.68), rgba(234, 234, 234, 0.92) 45%, rgba(234, 234, 234, 0.64));
}

.hero::before {
  content: "";
  position: absolute;
  inset: clamp(16px, 2vw, 30px) 4vw clamp(22px, 3vw, 42px);
  z-index: -1;
  border: 1px solid rgba(169, 133, 53, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 44%, rgba(169, 133, 53, 0.08)),
    rgba(245, 245, 243, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 24px 70px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(22px) saturate(1.08);
  clip-path: polygon(0 0, 96% 0, 100% 8%, 100% 100%, 4% 100%, 0 92%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: clamp(18px, 2.4vw, 38px);
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.48), transparent);
}

.hero-panel {
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(169, 133, 53, 0.13);
  background:
    linear-gradient(145deg, rgba(245, 245, 243, 0.46), rgba(234, 234, 234, 0.16)),
    rgba(234, 234, 234, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 18px 48px rgba(0, 0, 0, 0.045);
  backdrop-filter: blur(20px) saturate(1.08);
  clip-path: polygon(0 0, 100% 0, 100% 94%, 94% 100%, 0 100%);
}

.hero-panel::before {
  width: 104px;
  margin-bottom: clamp(22px, 3.4vw, 42px);
}

.hero-visual {
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-visual::before {
  border-color: rgba(245, 245, 243, 0.72);
  box-shadow: inset 0 0 0 1px rgba(169, 133, 53, 0.08);
}

@media (max-width: 760px) {
  .hero {
    padding: 12px 0 0;
    background:
      radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.82), transparent 34%),
      radial-gradient(circle at 88% 56%, rgba(169, 133, 53, 0.14), transparent 36%),
      linear-gradient(180deg, rgba(245, 245, 243, 0.8), rgba(234, 234, 234, 0.92));
  }

  .hero::before {
    inset: 9px 10px 18px;
    border-color: rgba(169, 133, 53, 0.14);
    clip-path: polygon(0 0, 100% 0, 100% 96%, 92% 100%, 0 100%);
  }

  .hero::after {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-visual {
    width: calc(100% - 26px);
    margin: 0 13px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
  }

  .hero-panel {
    width: calc(100% - 38px);
    margin: -42px 19px 0;
    padding: 20px 16px 42px;
    border-color: rgba(169, 133, 53, 0.18);
    background:
      linear-gradient(150deg, rgba(245, 245, 243, 0.76), rgba(234, 234, 234, 0.42)),
      rgba(234, 234, 234, 0.32);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.055);
    backdrop-filter: blur(18px) saturate(1.08);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 92% 100%, 0 100%);
  }
}

/* Privacy page: protected dossier mood, related to home but intentionally quieter. */
.privacy-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 91px);
  display: grid;
  align-items: stretch;
  padding: clamp(18px, 3vw, 42px) 5vw clamp(50px, 6vw, 78px);
  overflow: hidden;
  border-bottom: 1px solid rgba(169, 133, 53, 0.2);
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(118deg, rgba(245, 245, 243, 0.62), rgba(234, 234, 234, 0.92) 48%, rgba(169, 133, 53, 0.1)),
    var(--bg);
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: clamp(22px, 3vw, 48px) 4vw clamp(28px, 3.6vw, 54px);
  z-index: -1;
  border: 1px solid rgba(169, 133, 53, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 52%, rgba(169, 133, 53, 0.08)),
    rgba(245, 245, 243, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  clip-path: polygon(0 0, 96% 0, 100% 9%, 100% 100%, 3% 100%, 0 92%);
}

.privacy-hero-media {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  min-height: min(720px, calc(100vh - 170px));
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 245, 243, 0.56);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% 91%, 94% 100%, 0 100%);
}

.privacy-hero-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(245, 245, 243, 0.62);
  pointer-events: none;
}

.privacy-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.06), transparent 38%, rgba(234, 234, 234, 0.26) 72%, rgba(234, 234, 234, 0.58)),
    linear-gradient(180deg, transparent 66%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.privacy-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

.privacy-hero-copy {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  width: min(500px, 40vw);
  margin-right: clamp(16px, 4vw, 72px);
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(169, 133, 53, 0.22);
  background:
    linear-gradient(145deg, rgba(245, 245, 243, 0.74), rgba(234, 234, 234, 0.34)),
    rgba(245, 245, 243, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 22px 52px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
  clip-path: polygon(0 0, 100% 0, 100% 94%, 92% 100%, 0 100%);
}

.privacy-hero-copy h1 {
  max-width: 470px;
  color: var(--deep);
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1.04;
}

.privacy-hero-copy p:not(.eyebrow) {
  max-width: 390px;
  margin-top: 18px;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 600;
  line-height: 1.75;
}

.privacy-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(26px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) 5vw;
  border-bottom: 1px solid var(--line);
}

.privacy-intro div {
  position: relative;
}

.privacy-intro span {
  display: block;
  width: 112px;
  height: 1px;
  margin-bottom: clamp(22px, 4vw, 42px);
  background: var(--gold);
}

.privacy-intro h2 {
  max-width: 590px;
  font-size: clamp(31px, 4vw, 58px);
}

.privacy-intro p {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
}

.privacy-features {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 5vw;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 245, 243, 0.58), rgba(234, 234, 234, 0.88)),
    var(--bg);
}

.privacy-section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 66px);
}

.privacy-section-heading h2 {
  max-width: 680px;
  font-size: clamp(29px, 3.2vw, 48px);
}

.privacy-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.privacy-feature-grid article {
  position: relative;
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(169, 133, 53, 0.24);
  background:
    linear-gradient(145deg, rgba(245, 245, 243, 0.58), rgba(234, 234, 234, 0.28)),
    rgba(245, 245, 243, 0.32);
  overflow: hidden;
}

.privacy-feature-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(169, 133, 53, 0.14);
  transform: rotate(45deg);
}

.privacy-feature-grid article:nth-child(1),
.privacy-feature-grid article:nth-child(2),
.privacy-feature-grid article:nth-child(3) {
  grid-column: span 2;
}

.privacy-feature-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.privacy-feature-grid article:nth-child(5) {
  grid-column: span 2;
}

.privacy-feature-grid span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.privacy-feature-grid h3 {
  font-size: clamp(24px, 2vw, 32px);
}

.privacy-feature-grid p {
  margin-top: 16px;
  color: var(--muted);
}

.privacy-sharing {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) 5vw;
  border-bottom: 1px solid var(--line);
}

.privacy-sharing-copy h2 {
  max-width: 620px;
  font-size: clamp(32px, 3.4vw, 52px);
}

.privacy-sharing-copy p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
}

.privacy-sharing-note {
  position: relative;
  display: grid;
  gap: 1px;
  padding: 1px;
  border: 1px solid rgba(169, 133, 53, 0.32);
  background: rgba(169, 133, 53, 0.18);
}

.privacy-sharing-note::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -24px;
  width: 96px;
  height: 96px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  pointer-events: none;
}

.privacy-sharing-note span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 22px 26px;
  background: rgba(245, 245, 243, 0.68);
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 2.6vw, 40px);
  font-weight: 700;
}

.privacy-final {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 5vw;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(169, 133, 53, 0.15), transparent 38%),
    var(--bg);
}

.privacy-final p {
  width: min(920px, 100%);
  margin: 0 auto;
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 700;
  line-height: 1.06;
}

.privacy-final .button {
  margin-top: 34px;
}

@media (max-width: 1080px) {
  .privacy-hero {
    min-height: auto;
  }

  .privacy-hero-copy {
    width: min(520px, 56vw);
    margin-right: 18px;
  }

  .privacy-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-feature-grid article,
  .privacy-feature-grid article:nth-child(1),
  .privacy-feature-grid article:nth-child(2),
  .privacy-feature-grid article:nth-child(3),
  .privacy-feature-grid article:nth-child(4),
  .privacy-feature-grid article:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .privacy-hero {
    display: block;
    padding: 12px 0 0;
  }

  .privacy-hero::before {
    inset: 9px 10px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 92% 100%, 0 100%);
  }

  .privacy-hero-media {
    width: calc(100% - 26px);
    min-height: 0;
    height: min(62vh, 500px);
    margin: 0 13px;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 90% 100%, 0 100%);
  }

  .privacy-hero-media img {
    object-position: 22% center;
  }

  .privacy-hero-media::after {
    background: linear-gradient(180deg, transparent 72%, rgba(0, 0, 0, 0.1));
  }

  .privacy-hero-copy {
    width: calc(100% - 38px);
    margin: -34px 19px 0;
    padding: 20px 16px 42px;
  }

  .privacy-hero-copy h1 {
    font-size: clamp(31px, 8.2vw, 39px);
  }

  .privacy-hero-copy p:not(.eyebrow) {
    max-width: 320px;
    font-size: 13px;
  }

  .privacy-intro,
  .privacy-features,
  .privacy-sharing,
  .privacy-final {
    padding: 58px 18px;
  }

  .privacy-intro,
  .privacy-section-heading,
  .privacy-sharing {
    grid-template-columns: 1fr;
  }

  .privacy-intro h2,
  .privacy-section-heading h2,
  .privacy-sharing-copy h2 {
    font-size: clamp(29px, 8vw, 38px);
  }

  .privacy-intro p {
    font-size: 16px;
  }

  .privacy-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .privacy-feature-grid article {
    min-height: auto;
    padding: 24px;
  }

  .privacy-feature-grid span {
    margin-bottom: 24px;
  }

  .privacy-sharing-note::before {
    left: 12px;
    top: -18px;
  }

  .privacy-sharing-note span {
    min-height: 66px;
    padding: 18px;
    font-size: clamp(24px, 7vw, 32px);
  }
}

/* Final navbar logo polish: embedded dark plate, royal lifted wordmark. */
.site-header .brand {
  align-self: center;
  min-width: 0;
  min-height: 39px;
  margin-left: 0;
  padding: 4px 13px;
  border: 1px solid rgba(169, 133, 53, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), transparent 46%),
    rgba(46, 45, 43, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -10px 20px rgba(0, 0, 0, 0.12);
  clip-path: polygon(0 0, 97% 0, 100% 18%, 100% 100%, 3% 100%, 0 82%);
}

.site-header .brand::before,
.site-header .brand::after {
  opacity: 0.42;
}

.site-header .brand img {
  width: clamp(128px, 8.8vw, 154px) !important;
  height: auto !important;
  max-height: none;
  filter:
    contrast(1.05)
    saturate(1.04)
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.78))
    drop-shadow(0 0 5px rgba(169, 133, 53, 0.12));
}

@media (max-width: 760px) {
  .site-header .brand {
    min-height: 38px;
    padding: 4px 10px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 46%),
      rgba(46, 45, 43, 0.58);
  }

  .site-header .brand img {
    width: 116px !important;
    height: auto !important;
  }
}

/* Reset bad badge direction: native ink wordmark in the glass navbar. */
.site-header .brand {
  align-self: center;
  min-width: 0;
  min-height: auto;
  margin-left: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.site-header .brand::before,
.site-header .brand::after {
  content: none;
}

.site-header .brand img {
  width: clamp(150px, 10.6vw, 178px) !important;
  height: auto !important;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 1px 0 rgba(245, 245, 243, 0.34))
    drop-shadow(0 8px 14px rgba(0, 0, 0, 0.08));
}

@media (max-width: 760px) {
  .site-header .brand {
    padding: 0;
  }

  .site-header .brand img {
    width: 148px !important;
    height: auto !important;
  }
}

/* Crisp navbar wordmark: vector text prevents clipped or fused J/O rendering. */
.site-header .brand {
  align-self: center;
  min-width: 0;
  min-height: 42px;
  margin-left: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.site-header .brand::before,
.site-header .brand::after {
  content: none;
}

.brand-wordmark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  color: #3a3734;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 2.15vw, 34px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.42),
    0 8px 14px rgba(0, 0, 0, 0.06);
}

.brand-wordmark > span:first-child {
  margin-right: 0.025em;
}

.brand-wordmark .brand-o {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  margin-right: 0.018em;
  color: #a98535;
}

.site-header .brand .brand-o img {
  position: absolute;
  left: 50%;
  top: -0.22em;
  width: 0.72em !important;
  height: auto !important;
  max-height: none;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

@media (max-width: 760px) {
  .site-header .brand {
    min-height: 41px;
  }

  .brand-wordmark {
    font-size: 31px;
  }
}

/* Header and mobile menu art direction. */
.site-header {
  min-height: 62px;
  background: rgba(234, 234, 234, 0.72);
  border-bottom: 1px solid rgba(169, 133, 53, 0.22);
  z-index: 80;
  backdrop-filter: blur(22px) saturate(1.08);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 133, 53, 0.5), transparent);
  pointer-events: none;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: rgba(0, 0, 0, 0.74);
  font-size: 10px;
  transition: color 220ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--gold);
  opacity: 0;
  transform: translateX(-50%) rotate(45deg) scale(0.6);
  transition: opacity 220ms ease, transform 220ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
body[data-page="home"] .main-nav a[data-nav="home"],
body[data-page="privacy"] .main-nav a[data-nav="privacy"],
body[data-page="personalized"] .main-nav a[data-nav="personalized"],
body[data-page="contact"] .main-nav a[data-nav="contact"] {
  color: var(--deep);
  border-color: transparent;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
body[data-page="home"] .main-nav a[data-nav="home"]::after,
body[data-page="privacy"] .main-nav a[data-nav="privacy"]::after,
body[data-page="personalized"] .main-nav a[data-nav="personalized"]::after,
body[data-page="contact"] .main-nav a[data-nav="contact"]::after {
  opacity: 1;
  transform: translateX(-50%) rotate(45deg) scale(1);
}

.nav-toggle {
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--gold);
  background: rgba(245, 245, 243, 0.72);
}

.nav-toggle span {
  transition: transform 260ms ease, opacity 200ms ease, width 220ms ease;
}

body.nav-open .nav-toggle {
  border-color: var(--gold);
  background: rgba(245, 245, 243, 0.8);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  width: 0;
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 760px) {
  .site-header {
    min-height: 58px;
    padding: 4px 18px;
    background: rgba(234, 234, 234, 0.76);
  }

  .main-nav {
    counter-reset: nav-item;
    position: absolute;
    grid-column: 1 / -1;
    justify-self: stretch;
    top: calc(100% + 1px);
    left: 50%;
    right: auto;
    z-index: 90;
    width: min(306px, calc(100vw - 48px));
    display: grid;
    gap: 0;
    padding: 15px 16px 14px;
    border: 1px solid rgba(169, 133, 53, 0.34);
    background: rgba(245, 245, 243, 0.96);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px) saturate(1.08);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -12px);
    transition: opacity 240ms ease, transform 240ms ease;
  }

  .main-nav::before {
    content: "Navigation";
    padding: 0 0 11px 32px;
    color: #8f7028;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(169, 133, 53, 0.28);
  }

  .main-nav::after {
    content: "+91 97485 48624";
    margin-top: 10px;
    padding: 11px 0 0 32px;
    color: rgba(0, 0, 0, 0.62);
    font-size: 11px;
    font-weight: 800;
    border-top: 1px solid rgba(169, 133, 53, 0.28);
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .main-nav a {
    counter-increment: nav-item;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 0 0 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
  }

  .main-nav a::before {
    content: "0" counter(nav-item);
    position: absolute;
    left: 0;
    top: 50%;
    color: var(--gold);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    transform: translateY(-50%);
  }

  .main-nav a::after {
    left: 18px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(45deg) scale(0.7);
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  body[data-page="home"] .main-nav a[data-nav="home"]::after,
  body[data-page="privacy"] .main-nav a[data-nav="privacy"]::after,
  body[data-page="personalized"] .main-nav a[data-nav="personalized"]::after,
  body[data-page="contact"] .main-nav a[data-nav="contact"]::after {
    transform: translateY(-50%) rotate(45deg) scale(1);
  }
}

/* Final polish: translucent curated header and compact glass mobile menu. */
.site-header {
  min-height: 56px;
  background: rgba(234, 234, 234, 0.46);
  border-bottom: 1px solid rgba(169, 133, 53, 0.16);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.045);
  backdrop-filter: blur(28px) saturate(1.12);
}

.site-header::before {
  opacity: 0.52;
}

.brand img {
  width: clamp(56px, 4.7vw, 68px);
  height: clamp(44px, 4vw, 54px);
}

.main-nav {
  gap: clamp(16px, 2.4vw, 34px);
}

.main-nav a {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.62);
  letter-spacing: 0;
}

.main-nav a::after {
  width: 20px;
  height: 1px;
  border: 0;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
body[data-page="home"] .main-nav a[data-nav="home"]::after,
body[data-page="privacy"] .main-nav a[data-nav="privacy"]::after,
body[data-page="personalized"] .main-nav a[data-nav="personalized"]::after,
body[data-page="contact"] .main-nav a[data-nav="contact"]::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-toggle {
  width: 39px;
  height: 39px;
  border-color: rgba(169, 133, 53, 0.3);
  background: rgba(245, 245, 243, 0.2);
  box-shadow: inset 0 0 0 1px rgba(245, 245, 243, 0.24);
  backdrop-filter: blur(18px);
}

.nav-toggle::before {
  inset: 7px;
  border-color: rgba(169, 133, 53, 0.14);
}

.nav-toggle:hover,
.nav-toggle:focus-visible,
body.nav-open .nav-toggle {
  background: rgba(245, 245, 243, 0.46);
}

.nav-toggle span {
  width: 17px;
  height: 1.5px;
  background: rgba(0, 0, 0, 0.74);
}

@media (max-width: 760px) {
  .site-header {
    min-height: 54px;
    padding: 4px 16px;
    background: rgba(234, 234, 234, 0.42);
  }

  .site-header::before {
    left: 16px;
    right: 16px;
    opacity: 0.4;
  }

  .brand img {
    width: 54px;
    height: 44px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    counter-reset: none;
    position: absolute;
    grid-column: 1 / -1;
    top: calc(100% + 8px);
    left: 50%;
    right: auto;
    width: calc(100vw - 28px);
    max-width: 420px;
    display: grid;
    gap: 0;
    align-items: stretch;
    justify-content: normal;
    justify-items: stretch;
    padding: 9px 10px;
    border: 1px solid rgba(169, 133, 53, 0.22);
    background: rgba(245, 245, 243, 0.64);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.12),
      inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px) saturate(1.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .main-nav::before,
  .main-nav::after {
    content: none;
    display: none;
  }

  .main-nav a {
    counter-increment: none;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 39px;
    padding: 0 10px 0 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
    color: rgba(0, 0, 0, 0.72);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
  }

  .main-nav a:last-of-type {
    border-bottom: 0;
  }

  .main-nav a::before {
    content: "";
    position: static;
    flex: 0 0 18px;
    width: 18px;
    height: 1px;
    margin-right: 12px;
    background: rgba(169, 133, 53, 0.5);
    transform: none;
  }

  .main-nav a::after {
    content: "";
    position: static;
    flex: 0 0 5px;
    width: 5px;
    height: 5px;
    margin-left: auto;
    border: 1px solid var(--gold);
    background: transparent;
    opacity: 0;
    transform: rotate(45deg) scale(0.72);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  body[data-page="home"] .main-nav a[data-nav="home"],
  body[data-page="privacy"] .main-nav a[data-nav="privacy"],
  body[data-page="personalized"] .main-nav a[data-nav="personalized"],
  body[data-page="contact"] .main-nav a[data-nav="contact"] {
    color: var(--deep);
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  body[data-page="home"] .main-nav a[data-nav="home"]::after,
  body[data-page="privacy"] .main-nav a[data-nav="privacy"]::after,
  body[data-page="personalized"] .main-nav a[data-nav="personalized"]::after,
  body[data-page="contact"] .main-nav a[data-nav="contact"]::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}
