:root {
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --ink: #0b0907;
  --carbon: #12100d;
  --espresso: #25180f;
  --gold: #b88942;
  --bright-gold: #e9ca7a;
  --ivory: #fff8eb;
  --milk: #fffdf8;
  --sand: #ead8b8;
  --rose: #efe0d7;
  --wine: #3a1018;
  --emerald: #10382f;
  --smoke: #746757;
  --line: rgba(88, 61, 31, 0.18);
  --line-dark: rgba(233, 202, 122, 0.22);
  --shadow: 0 26px 80px rgba(32, 22, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--ivory);
  opacity: 0;
  transition: opacity 420ms ease;
}

body.is-loaded {
  opacity: 1;
}

body.is-leaving {
  opacity: 0;
}

body[data-page="home"] {
  background:
    linear-gradient(90deg, rgba(11, 9, 7, 0.96), rgba(11, 9, 7, 0.7)),
    var(--ink);
}

body[data-page="collections"] {
  background:
    linear-gradient(90deg, rgba(184, 137, 66, 0.08) 1px, transparent 1px),
    linear-gradient(#fbf1dd, #fff8eb);
  background-size: 120px 100%, auto;
}

body[data-page="bridal"] {
  background:
    radial-gradient(circle at 14% 18%, rgba(233, 202, 122, 0.2), transparent 28%),
    linear-gradient(135deg, #3a1018 0%, #21090f 44%, #f7dfcd 44%, #f7dfcd 100%);
}

body[data-page="craftsmanship"] {
  background:
    linear-gradient(90deg, rgba(64, 38, 18, 0.1) 1px, transparent 1px),
    #ead8b8;
  background-size: 86px 100%;
}

body[data-page="gallery"] {
  color: var(--ivory);
  background: #050505;
}

body[data-page="about"] {
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(184, 137, 66, 0.18) 47% 53%, transparent 53%),
    #fff8eb;
}

body[data-page="contact"] {
  background:
    linear-gradient(122deg, #10382f 0 44%, #f1dfc3 44% 100%);
}

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

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

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: clamp(16px, 3.6vw, 58px);
  right: clamp(16px, 3.6vw, 58px);
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr minmax(140px, auto);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  min-height: 78px;
  padding: 11px 14px 11px 18px;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(255, 248, 235, 0.06), transparent 22%, rgba(233, 202, 122, 0.05)),
    rgba(8, 7, 5, 0.72);
  border: 1px solid rgba(233, 202, 122, 0.3);
  border-radius: 20px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px) saturate(1.12);
  transition: top 240ms ease, background 240ms ease, min-height 240ms ease;
}

.site-header.is-scrolled {
  top: 8px;
  min-height: 66px;
  background:
    linear-gradient(90deg, rgba(255, 248, 235, 0.04), transparent 28%, rgba(233, 202, 122, 0.04)),
    rgba(8, 7, 5, 0.94);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(233, 202, 122, 0.18));
}

.site-header.is-scrolled .brand-logo {
  width: 46px;
  height: 46px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  justify-self: center;
  padding: 7px;
  color: rgba(255, 248, 235, 0.74);
  background: rgba(255, 248, 235, 0.055);
  border: 1px solid rgba(255, 248, 235, 0.1);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 11px 13px;
  border-radius: 999px;
  transition: color 220ms ease, background 220ms ease;
}

.main-nav a::after {
  display: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ivory);
  background: rgba(233, 202, 122, 0.15);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.icon-button,
.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ivory);
  background: rgba(255, 248, 235, 0.08);
  border: 1px solid rgba(255, 248, 235, 0.2);
  border-radius: 50%;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.heart-icon::before,
.wishlist-button::before {
  content: "\2661";
  font-size: 1.18rem;
}

.cart-button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--ivory), #f2d88d);
  border: 1px solid rgba(233, 202, 122, 0.6);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(233, 202, 122, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cart-button span {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  background: var(--bright-gold);
  border-radius: 50%;
  font-size: 0.72rem;
}

.icon-button:hover,
.menu-toggle:hover,
.cart-button:hover {
  transform: translateY(-2px);
}

.icon-button:hover,
.menu-toggle:hover {
  background: rgba(233, 202, 122, 0.14);
  border-color: rgba(233, 202, 122, 0.42);
}

.cart-button:hover {
  box-shadow: 0 16px 38px rgba(233, 202, 122, 0.2);
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  width: 17px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.7rem, 9.4vw, 9.4rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5.2rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p {
  line-height: 1.75;
}

.eyebrow,
.card-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: 96svh;
  padding: 136px clamp(20px, 6vw, 90px) 70px;
  color: var(--ivory);
}

.video-hero {
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transform: scale(1.04);
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 9, 7, 0.92), rgba(11, 9, 7, 0.46) 45%, rgba(11, 9, 7, 0.72)),
    linear-gradient(0deg, rgba(11, 9, 7, 0.9), transparent 44%);
}

.hero::after {
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  bottom: clamp(36px, 8vw, 100px);
  z-index: -1;
  width: min(30vw, 420px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(233, 202, 122, 0.34);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  max-width: 740px;
}

.hero-content::before {
  display: block;
  width: 132px;
  height: 1px;
  margin-bottom: 24px;
  content: "";
  background: var(--bright-gold);
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 248, 235, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-link,
.secondary-link,
.add-cart,
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-weight: 800;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.primary-link,
.add-cart,
.whatsapp-cta {
  color: var(--ink);
  background: var(--bright-gold);
}

.secondary-link {
  color: var(--ivory);
  background: rgba(255, 248, 235, 0.04);
}

.primary-link:hover,
.secondary-link:hover,
.add-cart:hover,
.whatsapp-cta:hover {
  transform: translateY(-2px);
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 78px);
  bottom: 38px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  border: 1px solid rgba(233, 202, 122, 0.28);
  background: rgba(11, 9, 7, 0.58);
  backdrop-filter: blur(14px);
}

.hero-note span {
  padding: 13px 17px;
  color: rgba(255, 248, 235, 0.84);
  border-right: 1px solid rgba(233, 202, 122, 0.18);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-note span:last-child {
  border-right: 0;
}

.page-hero {
  min-height: 64svh;
  color: var(--ink);
  background: #f3dfc0;
}

.page-hero::before {
  position: absolute;
  inset: auto clamp(20px, 8vw, 100px) clamp(24px, 6vw, 70px) auto;
  width: min(28vw, 380px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(184, 137, 66, 0.34);
  border-radius: 50%;
}

.page-hero .hero-content p:not(.eyebrow) {
  color: var(--smoke);
}

.compact-hero {
  min-height: 56svh;
}

body[data-page="home"] .hero {
  min-height: 100svh;
}

body[data-page="home"] h1 {
  max-width: 880px;
  line-height: 0.88;
}

body[data-page="bridal"] .hero {
  background: var(--wine);
}

body[data-page="bridal"] .video-overlay {
  background:
    linear-gradient(90deg, rgba(58, 16, 24, 0.42), rgba(58, 16, 24, 0.8) 52%, rgba(33, 9, 15, 0.96)),
    linear-gradient(0deg, rgba(33, 9, 15, 0.88), transparent 46%);
}

body[data-page="bridal"] .hero-content {
  margin-left: auto;
  text-align: right;
}

body[data-page="bridal"] .hero-content::before {
  margin-left: auto;
}

body[data-page="craftsmanship"] .hero {
  color: #24170d;
  background: #ead8b8;
}

body[data-page="craftsmanship"] .hero-video {
  width: 52%;
  left: auto;
  opacity: 0.9;
  filter: sepia(0.18) contrast(1.05);
}

body[data-page="craftsmanship"] .video-overlay {
  background: linear-gradient(90deg, rgba(234, 216, 184, 0.98), rgba(234, 216, 184, 0.86) 52%, rgba(234, 216, 184, 0.24));
}

body[data-page="craftsmanship"] .hero-content,
body[data-page="craftsmanship"] .hero-content p:not(.eyebrow) {
  color: #24170d;
}

body[data-page="gallery"] .hero-content {
  margin-inline: auto;
  text-align: center;
}

body[data-page="gallery"] .hero-content::before {
  margin-inline: auto;
}

.section {
  padding: clamp(74px, 9vw, 132px) clamp(20px, 6vw, 90px);
}

.section-ivory,
.section {
  background: transparent;
}

.section-black {
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(233, 202, 122, 0.08), transparent 44%),
    var(--ink);
}

.section-champagne {
  background: var(--sand);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

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

.collection-grid,
.product-grid,
.testimonial-grid,
.process-row,
.trust-grid,
.values-grid,
.editorial-row {
  display: grid;
  gap: 22px;
}

.collection-grid {
  grid-template-columns: 1.16fr 0.84fr;
  grid-auto-rows: 330px;
  gap: 16px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 330px;
  padding: 28px;
  color: var(--ivory);
  background: var(--ink);
  border: 1px solid rgba(233, 202, 122, 0.2);
  box-shadow: var(--shadow);
}

.collection-card:first-child {
  grid-row: span 2;
}

.collection-card .media-panel {
  position: absolute;
  inset: 0;
}

.collection-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(11, 9, 7, 0.9), transparent 64%),
    linear-gradient(120deg, rgba(11, 9, 7, 0.64), transparent);
}

.collection-card span:not(.media-panel),
.collection-card strong {
  position: relative;
  z-index: 1;
}

.collection-card strong {
  max-width: 360px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 0.98;
}

.media-panel video,
.product-media video,
.split-media video,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 760ms ease, filter 760ms ease;
}

.collection-card:hover video,
.product-card:hover video,
.gallery-item:hover video {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(320px, 0.46fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  padding: clamp(76px, 9vw, 132px) clamp(20px, 6vw, 90px);
}

.split-media {
  overflow: hidden;
  min-height: 620px;
  border: 1px solid var(--line-dark);
  border-radius: 999px 999px 8px 8px;
}

.split-copy {
  padding: clamp(24px, 4vw, 56px);
  border-left: 1px solid rgba(233, 202, 122, 0.32);
}

.split-copy p {
  color: rgba(255, 248, 235, 0.72);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--bright-gold);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.product-card {
  position: relative;
  padding: 0 0 18px;
  background: transparent;
  border-bottom: 1px solid rgba(184, 137, 66, 0.26);
  transition: transform 240ms ease;
}

.product-card:nth-child(even) {
  margin-top: 42px;
}

.product-card:hover {
  transform: translateY(-7px);
}

.product-media {
  overflow: hidden;
  height: 320px;
  background: var(--carbon);
  border: 1px solid rgba(184, 137, 66, 0.24);
  border-radius: 190px 190px 6px 6px;
  box-shadow: 0 18px 54px rgba(32, 22, 12, 0.14);
}

.product-card:nth-child(even) .product-media {
  border-radius: 6px 6px 190px 190px;
}

.product-card p {
  min-height: 48px;
  margin: 18px 4px 5px;
  color: inherit;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.16;
}

.product-card strong {
  display: block;
  margin: 0 4px 16px;
  color: var(--smoke);
}

.wishlist-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(255, 248, 235, 0.5);
  border-radius: 50%;
  backdrop-filter: blur(12px);
}

.wishlist-button.is-active::before {
  content: "\2665";
  color: #8a171c;
}

.add-cart {
  width: calc(100% - 8px);
  margin-inline: 4px;
}

.process-row,
.trust-grid,
.values-grid,
.editorial-row,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card,
.trust-card,
.value-card,
.editorial-card,
blockquote,
.mini-card,
.contact-form {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 58px rgba(32, 22, 12, 0.08);
}

.process-card,
.trust-card,
.value-card,
.editorial-card,
blockquote {
  padding: clamp(24px, 3vw, 38px);
}

.process-card span,
.timeline-item span,
.trust-card span {
  color: var(--gold);
  font-weight: 900;
}

.testimonials blockquote {
  margin: 0;
  color: rgba(255, 248, 235, 0.82);
  background: rgba(255, 248, 235, 0.045);
  border-color: var(--line-dark);
}

blockquote cite {
  display: block;
  margin-top: 24px;
  color: var(--bright-gold);
  font-style: normal;
  font-weight: 800;
}

.cta-band {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 80px 20px;
  text-align: center;
  color: var(--ivory);
  background:
    linear-gradient(rgba(11, 9, 7, 0.76), rgba(11, 9, 7, 0.9)),
    var(--ink);
}

.cta-band h2 {
  max-width: 880px;
  margin-bottom: 26px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 54px clamp(20px, 6vw, 90px);
  color: rgba(255, 248, 235, 0.68);
  background: #060504;
  border-top: 1px solid var(--line-dark);
}

.site-footer .brand-mark {
  color: var(--ivory);
}

.site-footer p {
  max-width: 430px;
  margin: 16px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  justify-content: center;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--bright-gold);
}

.footer-note {
  justify-self: end;
  font-size: 0.86rem;
}

body[data-page="collections"] .page-hero {
  background:
    linear-gradient(90deg, #fbf1dd 0 58%, #d8bc8d 58% 100%);
}

body[data-page="collections"] .page-hero h1 {
  font-size: clamp(5rem, 14vw, 14rem);
  text-transform: uppercase;
}

.shop-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 0;
  padding: 18px;
  color: var(--ivory);
  background: #21150d;
  border: 1px solid rgba(184, 137, 66, 0.22);
}

.shop-sidebar a {
  padding: 14px 0;
  color: rgba(255, 248, 235, 0.74);
  border-bottom: 1px solid rgba(233, 202, 122, 0.16);
  font-weight: 700;
}

.category-block {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid rgba(184, 137, 66, 0.16);
}

.category-block + .category-block {
  margin-top: 32px;
}

.category-block:nth-child(even) {
  color: var(--ivory);
  background: #21150d;
}

.category-block:nth-child(even) .product-card strong,
.category-block:nth-child(even) .category-heading span {
  color: rgba(255, 248, 235, 0.7);
}

.category-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(184, 137, 66, 0.22);
}

.category-heading span {
  color: var(--smoke);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="bridal"] .section {
  color: var(--ivory);
}

body[data-page="bridal"] #bridal-sets {
  background: linear-gradient(180deg, #19070d, #3a1018);
}

body[data-page="bridal"] .section-champagne {
  color: #251015;
  background: #f7dfcd;
}

body[data-page="bridal"] .product-card strong,
body[data-page="bridal"] .product-card p {
  color: inherit;
}

body[data-page="bridal"] .product-media {
  border-radius: 4px;
  border-color: rgba(247, 223, 205, 0.36);
}

.category-showcase,
.story-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.feature-column,
.story-copy {
  max-width: 700px;
}

.feature-column p,
.story-copy p,
.value-card p,
.editorial-card p,
.process-card p,
.timeline-item p {
  color: var(--smoke);
}

.mini-product-grid {
  display: grid;
  gap: 14px;
}

.mini-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px;
}

body[data-page="craftsmanship"] .timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: none;
}

body[data-page="craftsmanship"] .timeline-item {
  display: block;
  padding: 34px;
  border: 1px solid rgba(72, 43, 20, 0.2);
  background: rgba(255, 253, 248, 0.5);
}

body[data-page="craftsmanship"] .timeline-item:nth-child(even) {
  margin-top: 72px;
  color: var(--ivory);
  background: #2b1c10;
}

body[data-page="craftsmanship"] .timeline-item:nth-child(even) p {
  color: rgba(255, 248, 235, 0.7);
}

body[data-page="craftsmanship"] .trust-section {
  background: #24170d;
}

body[data-page="gallery"] .section,
body[data-page="gallery"] .section-champagne {
  color: var(--ivory);
  background: #050505;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.8fr;
  grid-auto-rows: 300px;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  border: 1px solid rgba(255, 248, 235, 0.12);
}

.gallery-item.large,
.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 52%);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  font-weight: 800;
}

body[data-page="gallery"] .editorial-card {
  color: var(--ivory);
  background: transparent;
  border-color: rgba(255, 248, 235, 0.18);
}

body[data-page="about"] .page-hero,
body[data-page="contact"] .page-hero {
  background: transparent;
}

body[data-page="about"] .story-section {
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
}

body[data-page="about"] .story-copy {
  padding: clamp(28px, 6vw, 80px);
  color: var(--ivory);
  background: #27180e;
}

body[data-page="about"] .story-copy p {
  color: rgba(255, 248, 235, 0.72);
}

.story-stat {
  display: grid;
  min-height: 350px;
  place-items: center;
  padding: 34px;
  text-align: center;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(233, 202, 122, 0.2), transparent 44%),
    var(--carbon);
}

.story-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
}

body[data-page="about"] .value-card {
  background: transparent;
  border-width: 0 0 1px;
  box-shadow: none;
}

.why-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.why-list span {
  padding: 12px 16px;
  color: var(--ink);
  background: var(--milk);
  border: 1px solid var(--line);
  font-weight: 800;
}

body[data-page="contact"] .page-hero {
  color: var(--ivory);
}

body[data-page="contact"] .page-hero .hero-content p:not(.eyebrow) {
  color: rgba(255, 248, 235, 0.82);
}

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

.contact-form {
  padding: clamp(24px, 4vw, 44px);
  background: var(--milk);
  border: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--smoke);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 14px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 0;
}

.form-submit {
  border: 0;
}

.contact-details {
  color: #10382f;
}

.detail-block {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(16, 56, 47, 0.2);
}

.detail-block h2 {
  font-size: clamp(1.9rem, 3vw, 3.4rem);
}

.map-placeholder {
  display: grid;
  min-height: 270px;
  place-items: center;
  color: #10382f;
  background:
    linear-gradient(45deg, rgba(16, 56, 47, 0.12) 25%, transparent 25% 75%, rgba(16, 56, 47, 0.12) 75%),
    #ead8b8;
  background-size: 32px 32px;
  border: 1px solid rgba(16, 56, 47, 0.2);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 68px;
  }

  .main-nav {
    position: fixed;
    top: 92px;
    left: 18px;
    right: 18px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px;
    color: var(--ivory);
    background: rgba(11, 9, 7, 0.96);
    border: 1px solid var(--line-dark);
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .menu-toggle {
    display: grid;
  }

  .product-grid,
  .process-row,
  .trust-grid,
  .values-grid,
  .editorial-row,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-grid,
  .split-feature,
  .category-showcase,
  .story-section,
  .contact-layout,
  .shop-shell,
  body[data-page="about"] .story-section,
  body[data-page="craftsmanship"] .timeline {
    grid-template-columns: 1fr;
  }

  body[data-page="craftsmanship"] .timeline-item:nth-child(even),
  .product-card:nth-child(even) {
    margin-top: 0;
  }

  .shop-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 18px;
  }

  .shop-sidebar .eyebrow {
    grid-column: 1 / -1;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .footer-note {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 62px;
    padding: 8px 10px 8px 11px;
    border-radius: 16px;
  }

  .brand-mark {
    gap: 10px;
    font-size: 1.1rem;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: 40px;
    height: 40px;
  }

  .icon-button,
  .cart-button {
    display: none;
  }

  .hero,
  .page-hero {
    min-height: 86svh;
    padding: 110px 20px 56px;
  }

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

  body[data-page="bridal"] .hero-content {
    margin-left: 0;
    text-align: left;
  }

  body[data-page="bridal"] .hero-content::before {
    margin-left: 0;
  }

  body[data-page="craftsmanship"] .hero-video {
    width: 100%;
    opacity: 0.35;
  }

  body[data-page="craftsmanship"] .video-overlay {
    background: rgba(234, 216, 184, 0.88);
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.3rem, 11vw, 3.7rem);
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-note span {
    border-right: 0;
    border-bottom: 1px solid rgba(233, 202, 122, 0.18);
  }

  .collection-grid,
  .product-grid,
  .process-row,
  .trust-grid,
  .values-grid,
  .editorial-row,
  .testimonial-grid,
  .shop-sidebar,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .collection-card:first-child {
    grid-row: auto;
  }

  .product-media {
    height: 330px;
    border-radius: 130px 130px 6px 6px;
  }

  .product-card:nth-child(even) .product-media {
    border-radius: 6px 6px 130px 130px;
  }

  .split-media {
    min-height: 380px;
    border-radius: 180px 180px 8px 8px;
  }

  .category-heading,
  .mini-card {
    display: grid;
  }

  .gallery-grid {
    grid-auto-rows: 330px;
  }

  .gallery-item.large,
  .gallery-item.tall {
    grid-row: auto;
  }

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

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