:root {
  --plum-1000: #1d0711;
  --plum-950: #290816;
  --plum-900: #350a1d;
  --plum-800: #4b112c;
  --plum-700: #6a1c3d;
  --wine: #862f51;
  --rose: #c17d92;
  --blush: #ebccd3;
  --cream: #f6eee2;
  --paper: #fdf9f3;
  --white: #fffdf9;
  --ink: #211619;
  --muted: #705f64;
  --gold: #cfa85f;
  --gold-light: #eed69f;
  --line: rgba(53, 10, 29, 0.17);
  --light-line: rgba(255, 255, 255, 0.18);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100% - 64px));
  --shadow: 0 30px 80px rgba(34, 8, 19, 0.15);
}

.beta-badge { position: fixed; z-index: 80; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 9px; padding: 9px 13px; color: #320b1d; background: #d8a650; box-shadow: 0 8px 30px rgba(28,5,13,.2); font-family: Arial, sans-serif; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.beta-badge strong { font-size: 10px; letter-spacing: .14em; }
.beta-badge span { padding-left: 9px; border-left: 1px solid rgba(50,11,29,.3); }

@media (max-width: 640px) {
  .beta-badge { right: 10px; bottom: 10px; }
  .beta-badge span { display: none; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

::selection {
  color: var(--plum-950);
  background: var(--gold-light);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 10px 15px;
  color: var(--plum-950);
  background: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.35rem, 6.6vw, 7.15rem);
  letter-spacing: -0.065em;
  line-height: 0.88;
}

h2 em,
h1 em {
  font-weight: 400;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  margin: 0 auto;
  padding: 25px 0;
  color: var(--white);
  border-bottom: 1px solid var(--light-line);
}

.site-header.is-scrolled {
  position: fixed;
  width: 100%;
  padding: 14px max(32px, calc((100vw - 1240px) / 2));
  color: var(--plum-950);
  background: rgba(253, 249, 243, 0.93);
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(31, 6, 16, 0.08);
  backdrop-filter: blur(18px);
  animation: header-in 220ms ease both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand > img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(238, 214, 159, 0.5);
  border-radius: 50%;
  box-shadow: 0 10px 32px rgba(20, 1, 10, 0.24);
}

.is-scrolled .brand > img {
  width: 44px;
  height: 44px;
  box-shadow: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.is-scrolled .brand-copy strong {
  font-size: 1.75rem;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-nav a:not(.nav-book) {
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.primary-nav a:not(.nav-book):hover {
  opacity: 1;
}

.nav-book {
  padding: 10px 20px;
  color: var(--plum-950);
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  border-radius: 99px;
}

.menu-toggle {
  display: none;
  padding: 10px;
  color: inherit;
  background: transparent;
  border: 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  min-height: 900px;
  padding: 165px max(32px, calc((100vw - 1240px) / 2)) 128px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 26%, rgba(193, 125, 146, 0.28), transparent 24%),
    radial-gradient(circle at 95% 95%, rgba(111, 35, 70, 0.68), transparent 32%),
    linear-gradient(132deg, var(--plum-1000), var(--plum-900) 52%, #54142f);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-ambient i {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(238, 214, 159, 0.14);
  border-radius: 50%;
}

.hero-ambient i:nth-child(1) {
  top: -360px;
  left: 33%;
  width: 710px;
  height: 710px;
}

.hero-ambient i:nth-child(2) {
  right: -450px;
  bottom: -480px;
  width: 920px;
  height: 920px;
}

.hero-ambient i:nth-child(3) {
  right: 17%;
  bottom: 8%;
  width: 410px;
  height: 410px;
}

.hero-copy,
.hero-gallery,
.hero-facts {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 720px;
  padding-right: 38px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold-light);
}

.eyebrow span {
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 32px;
  font-size: clamp(4.4rem, 7.3vw, 8.15rem);
  letter-spacing: -0.072em;
  line-height: 0.82;
}

.hero h1 em {
  display: block;
  margin-top: 0.12em;
  color: var(--gold-light);
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 14px 23px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--plum-950);
  background: var(--gold-light);
}

.button-cream {
  color: var(--plum-950);
  background: var(--cream);
}

.button-plum {
  color: var(--white);
  background: var(--plum-900);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  color: var(--plum-800);
  font-size: 0.69rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.text-link-light {
  color: var(--white);
}

.hero-gallery {
  align-self: stretch;
  min-height: 620px;
}

.hero-image-main,
.hero-image-detail {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(17, 1, 8, 0.42);
}

.hero-image-main {
  top: 8%;
  right: 0;
  width: 88%;
  height: 66%;
  border-radius: 48% 48% 8px 8px / 24% 24% 8px 8px;
}

.hero-image-main::after,
.hero-image-detail::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(34, 6, 17, 0.32));
}

.hero-image-main img,
.hero-image-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-detail {
  right: -5%;
  bottom: 0;
  width: 34%;
  height: 45%;
  border: 6px solid var(--plum-900);
}

.hero-image-detail img {
  object-position: 50% 40%;
}

.hero-seal {
  position: absolute;
  bottom: 11%;
  left: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  padding: 18px;
  color: var(--plum-950);
  background: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 20px 45px rgba(22, 3, 11, 0.35);
  text-align: center;
}

.hero-seal::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(53, 10, 29, 0.36);
  border-radius: 50%;
}

.hero-seal span {
  position: relative;
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-seal strong {
  position: relative;
  margin: -8px 0;
  font-family: var(--display);
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
}

.hero-caption {
  position: absolute;
  right: 1%;
  bottom: 2%;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-caption span {
  color: var(--gold-light);
  font-weight: 800;
}

.hero-caption a {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
}

.hero-facts {
  position: absolute;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 32px;
  left: max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--light-line);
}

.hero-facts p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 20px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-facts p + p {
  padding-left: 28px;
  border-left: 1px solid var(--light-line);
}

.hero-facts span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1rem;
}

.statement {
  padding: 150px 0 128px;
}

.section-kicker {
  color: var(--wine);
}

.section-kicker span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: var(--plum-800);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.section-kicker p {
  margin: 0;
}

.section-kicker-light {
  color: var(--gold-light);
}

.section-kicker-light span {
  color: var(--gold-light);
  border-color: var(--light-line);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}

.statement h2 em {
  color: var(--wine);
}

.statement-copy {
  max-width: 525px;
  padding-bottom: 8px;
  color: var(--muted);
}

.lead {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.12rem);
  letter-spacing: -0.025em;
  line-height: 1.26;
}

.statement-motto {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 115px 0 0;
  padding: 23px 0;
  color: var(--plum-700);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-style: italic;
}

.statement-motto i {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.looks {
  padding: 132px 0 150px;
  color: var(--white);
  background: var(--plum-950);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(55px, 9vw, 125px);
  align-items: end;
  margin-bottom: 78px;
}

.section-heading h2 em {
  color: var(--gold-light);
}

.section-heading-copy,
.section-heading > p {
  max-width: 510px;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.65);
}

.section-heading-copy .text-link {
  margin-top: 20px;
}

.looks-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.16fr 0.88fr;
  grid-template-rows: 580px;
  gap: 22px;
  align-items: end;
}

.look-card {
  position: relative;
  display: block;
  height: 86%;
  overflow: hidden;
  background: var(--plum-800);
}

.look-card-wide {
  align-self: stretch;
  height: 100%;
}

.look-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.look-card-wide img {
  object-position: 50% 28%;
}

.look-card:hover img {
  transform: scale(1.035);
}

.look-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(26, 4, 13, 0.86));
}

.look-overlay {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.look-overlay small {
  grid-column: 1 / -1;
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.look-overlay strong {
  max-width: 285px;
  margin-top: 4px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.03;
}

.look-overlay i {
  color: var(--gold-light);
  font-style: normal;
}

.services {
  padding: 145px 0;
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 0.57fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 85px;
}

.services-intro h2 em {
  color: var(--wine);
}

.services-intro > p {
  max-width: 470px;
  margin: 0 0 10px;
  color: var(--muted);
}

.service-table {
  border-top: 1px solid var(--line);
}

.service-table article {
  display: grid;
  grid-template-columns: 58px 1fr 140px 100px;
  gap: 22px;
  align-items: center;
  min-height: 154px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--wine);
  font-family: var(--display);
  font-style: italic;
}

.service-table h3 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-table p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-table article > strong {
  color: var(--plum-800);
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 500;
  text-align: right;
}

.service-table article > a {
  display: inline-flex;
  justify-content: space-between;
  padding-bottom: 5px;
  color: var(--wine);
  border-bottom: 1px solid currentColor;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.service-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-notes p::before {
  margin-right: 10px;
  color: var(--gold);
  content: "✦";
}

.moments {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  background: var(--cream);
}

.moments::before {
  position: absolute;
  top: -280px;
  right: -180px;
  width: 640px;
  height: 640px;
  content: "";
  border: 1px solid rgba(106, 28, 61, 0.11);
  border-radius: 50%;
}

.section-heading-moments {
  color: var(--ink);
}

.section-heading-moments h2 em {
  color: var(--wine);
}

.section-heading-moments > p {
  color: var(--muted);
}

.moment-editorial {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.moment-feature {
  position: relative;
  overflow: hidden;
}

.moment-feature h3 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.4vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.moment-feature > p:not(.moment-index),
.moment-feature > div > p:not(.moment-index) {
  max-width: 545px;
}

.moment-index {
  margin-bottom: 34px;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.matric {
  grid-row: 1 / 3;
  min-height: 700px;
  padding: clamp(42px, 6vw, 78px);
  color: var(--white);
  background:
    linear-gradient(165deg, rgba(41, 8, 22, 0.9), rgba(75, 17, 44, 0.8)),
    url("/images/featured-soft-glam-ad2bbac9.jpg") center / cover;
}

.matric::after {
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(238, 214, 159, 0.35);
  border-radius: 50%;
}

.matric .moment-index,
.performance .moment-index {
  color: var(--gold-light);
}

.matric .button {
  margin-top: 24px;
}

.bridal {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  min-height: 390px;
  color: var(--ink);
  background: var(--white);
}

.bridal > div {
  padding: 44px 18px 44px 44px;
}

.bridal h3 {
  font-size: clamp(2.4rem, 3.7vw, 3.8rem);
}

.bridal .moment-index {
  color: var(--wine);
}

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

.performance {
  min-height: 290px;
  padding: 42px 44px;
  color: var(--white);
  background: var(--plum-800);
}

.performance h3 {
  max-width: 620px;
  font-size: clamp(2.2rem, 3.5vw, 3.7rem);
}

.performance > p:not(.moment-index) {
  color: rgba(255, 255, 255, 0.66);
}

.nayma {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 12vw, 170px);
  align-items: center;
  padding: 145px 0;
}

.nayma-visual {
  position: relative;
  min-height: 665px;
}

.nayma-process {
  width: 86%;
  height: 610px;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: 50% 50% 8px 8px / 28% 28% 8px 8px;
  box-shadow: var(--shadow);
}

.nayma-mark {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 156px;
  height: 156px;
  object-fit: cover;
  border: 6px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(41, 8, 22, 0.2);
}

.nayma-visual > p {
  position: absolute;
  top: 55%;
  right: -48px;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--wine);
  font-family: var(--display);
  font-size: 0.86rem;
  font-style: italic;
  transform: rotate(90deg);
}

.nayma-copy {
  max-width: 600px;
}

.nayma-copy h2 {
  margin-bottom: 42px;
}

.nayma-copy > p:not(.lead) {
  max-width: 510px;
  color: var(--muted);
}

.nayma-copy .text-link {
  margin-top: 16px;
}

.journal {
  padding: 135px 0 150px;
  color: var(--white);
  background: var(--plum-900);
}

.journal .section-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.journal-card figure {
  position: relative;
  height: 490px;
  margin: 0 0 28px;
  overflow: hidden;
  background: var(--plum-800);
}

.journal-card figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(29, 7, 17, 0.65));
}

.journal-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.journal-card:hover figure img {
  transform: scale(1.035);
}

.journal-card figure span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--plum-950);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 0.78rem;
}

.journal-card > small {
  color: var(--gold-light);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 8px 0 13px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.journal-card > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.journal-card > em {
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 4px;
  color: var(--gold-light);
  border-bottom: 1px solid currentColor;
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.investment {
  padding: 145px 0;
}

.investment-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(60px, 10vw, 145px);
}

.investment-grid h2 em {
  color: var(--wine);
}

.investment-steps {
  border-top: 1px solid var(--line);
}

.investment-steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.investment-steps article > span {
  color: var(--wine);
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
}

.investment-steps h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  letter-spacing: -0.025em;
}

.investment-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.booking {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0 100%, rgba(134, 47, 81, 0.5), transparent 34%),
    var(--plum-950);
}

.booking-backdrop {
  position: absolute;
  top: 50%;
  left: -5vw;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: 70vw;
  line-height: 0.7;
  transform: translateY(-50%);
  pointer-events: none;
}

.booking-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 118px;
}

.booking-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(3.2rem, 5.8vw, 6.35rem);
}

.booking-copy > p {
  color: rgba(255, 255, 255, 0.65);
}

.booking-truth {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 45px;
  padding: 27px 0;
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.booking-truth strong {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
}

.booking-truth span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.booking-truth span::before {
  margin-right: 9px;
  color: var(--gold-light);
  content: "✓";
}

.booking-panel {
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 40px 90px rgba(14, 1, 7, 0.36);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span {
  color: var(--plum-800);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 47px;
  padding: 9px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(53, 10, 29, 0.28);
  border-radius: 0;
  outline: 0;
}

.field textarea {
  min-height: 95px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 1px 0 var(--wine);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9b8d91;
  font-size: 0.84rem;
}

.field .invalid,
.field input:invalid:focus,
.field select:invalid:focus {
  border-color: #a62f46;
}

.check-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin: 28px 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--plum-700);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-privacy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.enquiry-result {
  padding: 10px 0;
}

.result-kicker {
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.enquiry-result h3 {
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.enquiry-result pre {
  max-height: 340px;
  margin: 0 0 24px;
  padding: 22px;
  overflow: auto;
  white-space: pre-wrap;
  color: var(--plum-950);
  background: var(--cream);
  border-left: 3px solid var(--gold);
  font-family: var(--sans);
  font-size: 0.77rem;
  line-height: 1.7;
}

.result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.result-reset {
  margin-top: 22px;
  padding: 0 0 4px;
  color: var(--wine);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.enquiry-result > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.site-footer {
  padding: 88px 0 28px;
  color: var(--white);
  background: var(--plum-1000);
}

.footer-top {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.75fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--light-line);
}

.footer-brand > img {
  width: 62px;
  height: 62px;
}

.footer-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-cta small {
  color: var(--gold-light);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  padding: 35px 0;
}

.footer-bottom p,
.footer-bottom nav,
.social-links {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom nav,
.social-links {
  display: flex;
  gap: 17px;
}

.social-links {
  justify-content: flex-end;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 25px;
  align-items: start;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid var(--light-line);
  font-size: 0.61rem;
}

.footer-legal > p:last-child {
  text-align: right;
}

.footer-legal summary {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.footer-legal details[open] {
  max-width: 580px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-legal details div {
  margin-top: 14px;
  line-height: 1.65;
}

.mobile-book {
  display: none;
}

.not-found-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  color: var(--white);
  background: var(--plum-950);
}

.not-found-page main {
  width: min(720px, calc(100% - 40px));
  text-align: center;
}

.not-found-page img {
  width: 112px;
  height: 112px;
  margin: 0 auto 34px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
}

.not-found-page .eyebrow {
  justify-content: center;
}

.not-found-page h1 {
  margin-bottom: 38px;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.18, 0.7, 0.25, 1);
}

.reveal-ready [data-reveal][data-delay="1"] {
  transition-delay: 100ms;
}

.reveal-ready [data-reveal][data-delay="2"] {
  transition-delay: 200ms;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 980px);
  }

  .primary-nav {
    gap: 15px;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 7.3vw, 6.5rem);
  }

  .hero-facts {
    right: 24px;
    left: 24px;
  }

  .hero-seal {
    width: 130px;
    height: 130px;
  }

  .looks-grid {
    grid-template-rows: 510px;
  }

  .moment-editorial {
    grid-template-columns: 1fr 1fr;
  }

  .bridal {
    grid-template-columns: 1fr;
  }

  .bridal img {
    display: none;
  }

  .nayma {
    gap: 70px;
  }

  .booking-shell {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 48px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .site-header,
  .site-header.is-scrolled {
    width: 100%;
    padding: 17px 20px;
  }

  .site-header:not(.is-scrolled) {
    width: calc(100% - 40px);
    padding-right: 0;
    padding-left: 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 24px;
    height: 1px;
    content: "";
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle i::before {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(-90deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 100px 34px;
    color: var(--white);
    background: var(--plum-950);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-nav a {
    font-family: var(--display);
    font-size: clamp(2.5rem, 9vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: none;
  }

  .primary-nav .nav-book {
    margin-top: 18px;
    padding: 12px 21px;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 150px 20px 150px;
  }

  .hero-copy {
    max-width: 700px;
    padding-right: 0;
  }

  .hero-gallery {
    min-height: 580px;
    margin-top: 65px;
  }

  .hero-image-main {
    width: 90%;
  }

  .hero-image-detail {
    right: 0;
    width: 32%;
  }

  .hero-seal {
    bottom: 8%;
  }

  .hero-caption {
    right: 0;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    bottom: 26px;
  }

  .hero-facts p {
    display: none;
  }

  .hero-facts p:first-child {
    display: flex;
  }

  .statement,
  .services,
  .moments,
  .nayma,
  .investment,
  .booking {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .statement-grid,
  .services-intro,
  .section-heading,
  .investment-grid,
  .booking-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .statement-motto {
    margin-top: 70px;
  }

  .section-heading {
    margin-bottom: 55px;
  }

  .looks {
    padding: 105px 0;
  }

  .looks-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 540px 450px;
  }

  .look-card {
    height: 100%;
  }

  .look-card-wide {
    grid-row: 1 / 2;
  }

  .look-card-bridal {
    grid-column: 1 / -1;
    width: 58%;
    justify-self: center;
  }

  .service-table article {
    grid-template-columns: 45px 1fr 100px;
  }

  .service-table article > a {
    display: none;
  }

  .moment-editorial {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .matric {
    grid-row: auto;
    min-height: 610px;
  }

  .bridal {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .bridal img {
    display: block;
  }

  .nayma {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
  }

  .nayma-process {
    width: 90%;
  }

  .journal {
    padding: 105px 0;
  }

  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journal-card:last-child {
    grid-column: 1 / -1;
    width: 48%;
    justify-self: center;
  }

  .booking-copy {
    position: static;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta,
  .social-links {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-bottom nav {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(3.05rem, 17vw, 4.9rem);
  }

  .brand > img {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 1.8rem;
  }

  .brand-copy small {
    font-size: 0.42rem;
  }

  .site-header:not(.is-scrolled) {
    width: calc(100% - 32px);
  }

  .menu-toggle span {
    display: none;
  }

  .hero {
    padding: 132px 16px 115px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.25rem);
    line-height: 0.85;
  }

  .eyebrow {
    font-size: 0.52rem;
    letter-spacing: 0.15em;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 34px;
  }

  .hero-gallery {
    min-height: 445px;
    margin-top: 56px;
  }

  .hero-image-main {
    left: 0;
    width: 94%;
    height: 68%;
  }

  .hero-image-detail {
    right: 0;
    bottom: 10px;
    width: 38%;
    height: 49%;
  }

  .hero-seal {
    bottom: 15%;
    left: 5%;
    width: 106px;
    height: 106px;
    padding: 12px;
  }

  .hero-seal strong {
    font-size: 2.55rem;
  }

  .hero-seal span {
    font-size: 0.36rem;
  }

  .hero-caption {
    display: none;
  }

  .statement,
  .services,
  .moments,
  .nayma,
  .investment,
  .booking {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .statement-motto {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 55px;
    font-size: 0.94rem;
  }

  .statement-motto i:nth-of-type(2) {
    display: none;
  }

  .looks,
  .journal {
    padding: 82px 0;
  }

  .looks-grid,
  .journal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .look-card,
  .look-card-wide,
  .look-card-bridal,
  .journal-card,
  .journal-card:last-child {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: 510px;
  }

  .look-card-wide img {
    object-position: 50% 34%;
  }

  .service-table article {
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
    min-height: 140px;
  }

  .service-table h3 {
    font-size: 1.8rem;
  }

  .service-table p {
    font-size: 0.75rem;
  }

  .service-table article > strong {
    align-self: start;
    font-size: 1.6rem;
  }

  .service-notes {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .matric {
    min-height: 570px;
    padding: 34px 26px;
  }

  .moment-feature h3,
  .bridal h3,
  .performance h3 {
    font-size: 2.65rem;
  }

  .bridal {
    grid-template-columns: 1fr;
  }

  .bridal > div,
  .performance {
    padding: 34px 26px;
  }

  .bridal img {
    height: 380px;
  }

  .nayma {
    grid-template-columns: 1fr;
  }

  .nayma-visual {
    min-height: 545px;
  }

  .nayma-process {
    height: 510px;
  }

  .nayma-mark {
    width: 118px;
    height: 118px;
  }

  .nayma-visual > p {
    display: none;
  }

  .journal-card figure {
    height: 100%;
    margin-bottom: 20px;
  }

  .journal-card {
    height: auto !important;
    margin-bottom: 30px;
  }

  .journal-card figure {
    height: 490px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .booking-panel {
    margin-right: -4px;
    margin-left: -4px;
    padding: 25px 20px;
  }

  .result-actions {
    flex-direction: column;
  }

  .result-actions .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .footer-top,
  .footer-bottom,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-line {
    margin: 12px 0;
  }

  .footer-legal {
    gap: 10px;
  }

  .footer-legal summary,
  .footer-legal > p:last-child {
    text-align: left;
  }

  .mobile-book {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 18;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 15px 20px;
    color: var(--plum-950);
    background: var(--gold-light);
    box-shadow: 0 12px 30px rgba(31, 5, 16, 0.28);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(130%);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .mobile-book.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
