:root {
  --burgundy: #7c132a;
  --burgundy-deep: #641022;
  --cream: #f9e2d1;
  --cream-soft: #f7eee6;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: rgba(255, 255, 255, 0.28);
  --white: #fff;
  --header-h: 72px;
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", cursive;
  --sans: "Jost", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e3a8a;
}

.logo-text small {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #1e3a8a;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav a,
.nav-text-btn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
}

.nav a:hover,
.nav-text-btn:hover {
  color: var(--burgundy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: none;
  display: grid;
  place-items: center;
  color: var(--ink);
  cursor: pointer;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  max-height: 780px;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  max-width: 100%;
  padding: 90px 8vw 80px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 10, 10, 0.5) 0%, rgba(20, 10, 10, 0.18) 52%, rgba(20, 10, 10, 0.04) 80%);
  z-index: 1;
}

.hero-kicker {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: var(--script);
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 400;
  line-height: 0.95;
}

@media (min-width: 1101px) {
  .hero-kicker,
  .hero h1 {
    white-space: nowrap;
  }
}

.hero-copy {
  max-width: 460px;
  margin: 0 0 28px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.hero-nav {
  position: absolute;
  right: 40px;
  bottom: 36px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-nav.static {
  position: static;
}

.round-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.round-btn.filled,
.testimonials .round-btn.filled {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.testimonials .round-btn {
  border-color: #ddd;
  color: var(--ink);
  background: var(--white);
}

.section {
  padding: 88px 48px 72px;
  max-width: 1440px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.script {
  margin: 0;
  font-family: var(--script);
  font-size: 34px;
  color: var(--burgundy);
  line-height: 1;
}

.script.burgundy {
  color: var(--burgundy);
}

.on-dark .script {
  color: #f3c9c0;
}

.section-heading h2,
.about-hero h2,
.story h2,
.visionaries h2,
.cta h2,
.book h2,
.customize h2,
.lab-copy h2,
.legacy-copy h2 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: clamp(32px, 3.4vw, 46px);
  text-transform: uppercase;
}

.product-row,
.price-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-media,
.price-card img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f3eee8;
}

.product-media img,
.price-card img,
.category-card img,
.ig-grid img,
.legacy-mosaic img,
.promise-collage img,
.about-hero-media img,
.lab-media img,
.story-media img,
.person img,
.customize img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 16px 0 4px;
}

.product-card h3,
.price-card span {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.product-card p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price {
  color: var(--ink) !important;
  font-weight: 500;
}

.product-icons {
  display: flex;
  gap: 8px;
}

.tiny-icon {
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
}

.tiny-icon svg {
  width: 18px;
  height: 18px;
}

.tiny-icon.wish.is-on {
  color: var(--burgundy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid transparent;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.btn-solid {
  width: 100%;
  background: var(--burgundy);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--burgundy);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.view-all {
  display: block;
  text-align: center;
  margin-top: 42px;
  letter-spacing: 0.08em;
}

.shapes,
.values,
.site-footer,
.trust-bar,
.promise,
.showroom {
  background: var(--burgundy);
  color: var(--white);
}

.shapes,
.values {
  padding: 72px 48px 80px;
}

.shape-row {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}

.shape-item {
  text-align: center;
  font-size: 13px;
}

.shape-item img {
  width: 78px;
  height: 78px;
  margin: 0 auto 12px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.15);
}

.categories {
  background: var(--cream);
  padding: 88px 48px 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  align-items: end;
  max-width: 1320px;
  margin: 0 auto;
}

.category-card {
  display: grid;
  gap: 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.category-card img {
  height: 420px;
}

.category-card:nth-child(odd) img {
  height: 360px;
}

.legacy-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 96px 64px;
  max-width: 1440px;
  margin: 0 auto;
}

.legacy-copy h2 em,
.customize h2 em {
  font-family: var(--script);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.15em;
  color: var(--ink);
}

.legacy-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.legacy-mosaic .wide {
  grid-column: 1 / -1;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 48px;
}

.trust-bar article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.trust-bar svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.trust-bar h3 {
  margin: 0;
  font-size: 16px;
  font-family: var(--serif);
}

.trust-bar p {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.price-card {
  position: relative;
}

.price-card span {
  display: block;
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
  padding: 12px;
}

.quote-banner {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.quote-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.62);
}

.quote-banner blockquote {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  font-family: var(--script);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  padding: 40px;
}

.lab-grown,
.customize,
.about-hero,
.story,
.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 88px 48px;
}

.lab-grown,
.story,
.cta,
.book {
  background: var(--cream-soft);
}

.lab-media,
.about-hero-media {
  height: 560px;
}

.lab-copy article h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.lab-copy .btn,
.about-hero .btn,
.customize .btn,
.book .btn,
.cta .btn,
.promise .btn {
  width: auto;
  margin-top: 12px;
}

.customize img {
  height: 460px;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-row.center {
  justify-content: center;
}

.testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
  text-align: left;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 18px;
}

.review-card {
  border: 1px solid #ece7e2;
  padding: 28px;
}

.review-card h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
}

.review-title {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 10px;
}

.stars {
  color: var(--burgundy);
  letter-spacing: 2px;
}

.instagram {
  padding: 72px 48px 88px;
  text-align: center;
}

.instagram h2 {
  font-family: var(--serif);
  font-size: 36px;
  margin: 0 0 36px;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}

.ig-grid img {
  height: 230px;
}

.about-hero-copy p,
.story-copy p,
.person p,
.promise-copy p,
.showroom-copy p {
  color: #3a3a3a;
}

.pullquote {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink) !important;
}

.story-media {
  display: grid;
  gap: 16px;
}

.story-media img:first-child {
  height: 240px;
}

.story-media img:last-child {
  height: 320px;
}

.values-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.values-grid article {
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.values-grid article:last-child {
  border: 0;
}

.values-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
}

.values-grid h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 10px;
}

.visionaries {
  background: var(--cream);
  padding: 88px 64px;
}

.person {
  max-width: 1240px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.person.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.person.reverse img {
  order: 2;
}

.person img {
  height: 520px;
  object-position: top;
  background: var(--white);
}

.person ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: var(--burgundy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
}

.person li + li {
  margin-top: 8px;
}

.promise {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 72px 64px;
}

.promise-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 160px 170px;
  gap: 12px;
}

.promise-collage img:nth-child(1) { grid-column: 1 / 3; }
.promise-collage img:nth-child(2) { grid-column: 3 / 5; }
.promise-collage img:nth-child(3) { grid-column: 1 / 3; }
.promise-collage img:nth-child(4) { grid-column: 3 / 5; }
.promise-collage img:nth-child(5) { grid-column: 5 / 7; grid-row: 1 / 3; }

.promise-copy .script {
  color: #f4d2c8;
  font-size: 36px;
  margin: 8px 0 16px;
}

.promise-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.showroom {
  min-height: 460px;
  background:
    linear-gradient(90deg, rgba(40, 16, 12, 0.55), rgba(40, 16, 12, 0.15)),
    url("images/showroom.jpg") center / cover no-repeat;
  display: grid;
  align-items: center;
  padding: 80px 72px;
}

.showroom-copy {
  max-width: 520px;
}

.showroom h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 46px);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.showroom p,
.link-arrow.light {
  color: rgba(255, 255, 255, 0.92);
}

.group {
  padding: 88px 48px;
}

.group-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.group-grid article {
  border: 1px solid #e2cfc4;
  padding: 36px 28px;
  text-align: center;
  min-height: 230px;
}

.group-icon {
  display: block;
  color: var(--burgundy);
  font-size: 28px;
  margin-bottom: 12px;
}

.group-grid h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 10px;
}

.cta {
  text-align: center;
  padding: 72px 24px 88px;
}

.cta h2 {
  text-transform: none;
  letter-spacing: 0;
}

.book-form,
.mail-form,
.search-form {
  display: grid;
  gap: 12px;
}

.book-form input,
.book-form select,
.book-form textarea,
.mail-form input,
.search-form input {
  width: 100%;
  border: 1px solid #cfc4bb;
  background: var(--white);
  padding: 12px 14px;
  color: var(--ink);
}

.site-footer {
  padding: 56px 48px 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto 28px;
}

.footer-brand img {
  width: 180px;
  mix-blend-mode: screen;
  margin-bottom: 16px;
}

.footer-mail {
  text-align: center;
}

.footer-mail h2 {
  font-family: var(--serif);
  font-size: 40px;
  margin: 0 0 18px;
}

.mail-form {
  grid-template-columns: 1fr auto;
  max-width: 560px;
  margin: 0 auto;
}

.mail-form input {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.mail-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.mail-form button {
  background: var(--white);
  color: var(--burgundy);
  border: 0;
  padding: 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.footer-links {
  max-width: 1240px;
  margin: 12px auto 24px 280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  opacity: 0.92;
}

.copyright {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 8, 10, 0.55);
  display: grid;
  place-items: center;
  z-index: 60;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal-card {
  background: var(--white);
  max-width: 480px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

.form-note {
  margin: 8px 0 0;
  color: var(--burgundy);
  font-size: 14px;
}

.form-note.light {
  color: #f3d5cc;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  z-index: 70;
  font-size: 14px;
}

.toast[hidden] {
  display: none;
}

@media (max-width: 1100px) {
  .product-row,
  .price-row,
  .trust-bar,
  .values-grid,
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shape-row,
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .legacy-split,
  .lab-grown,
  .customize,
  .about-hero,
  .story,
  .person,
  .person.reverse,
  .promise,
  .book-inner,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .person.reverse img,
  .footer-links {
    order: 0;
    margin-left: 0;
  }

  .category-card img,
  .category-card:nth-child(odd) img {
    height: 280px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    padding: 0 16px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid #eee;
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .section,
  .shapes,
  .categories,
  .legacy-split,
  .lab-grown,
  .about-hero,
  .story,
  .visionaries,
  .promise,
  .showroom,
  .group,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .shape-row,
  .category-grid,
  .product-row,
  .price-row,
  .review-track,
  .group-grid,
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .ig-grid,
  .trust-bar,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    padding: 48px 20px 72px;
    max-width: 100%;
    width: 100%;
  }

  .hero-kicker {
    font-size: 22px;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .hero::after {
    background: rgba(12, 6, 8, 0.5);
  }

  .hero-kicker,
  .hero h1,
  .hero-copy,
  .hero .link-arrow {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  }

  .hero-copy {
    max-width: 32ch;
    width: auto;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-copy-break {
    display: block;
    margin-top: 0.55em;
  }

  .hero-nav {
    right: 16px;
    bottom: 16px;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo-text strong {
    font-size: 18px;
  }

  .mail-form {
    grid-template-columns: 1fr;
  }
}
