:root {
  --bg: #f8f1f1;
  --paper: #fffafa;
  --ink: #151313;
  --muted: #756f70;
  --dark: #151414;
  --dark-2: #242222;
  --ivory: #f6f1ef;
  --line: rgba(21, 19, 19, 0.12);
  --line-dark: rgba(246, 241, 239, 0.15);
  --rose: #b8848b;
  --sage: #829681;
  --burgundy: #6f2f3b;
  --lilac: #b8a9c9;
  --shadow: 0 24px 70px rgba(30, 20, 20, 0.13);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px 36px;
  color: var(--ivory);
  background: rgba(21, 20, 20, 0.88);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(21, 20, 20, 0.96);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

.brand {
  justify-self: start;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 0.88;
  letter-spacing: 0;
}

.brand span,
.brand strong {
  display: block;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(246, 241, 239, 0.74);
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: var(--ivory);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.icon-button {
  justify-self: end;
}

.header-cta {
  border: 1px solid rgba(246, 241, 239, 0.38);
  background: transparent;
  color: var(--ivory);
  border-radius: 4px;
  padding: 11px 18px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 29;
  top: 72px;
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--dark);
  color: var(--ivory);
  border-bottom: 1px solid var(--line-dark);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  padding: 18px 24px;
  background: var(--dark-2);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 46px;
}

.hero-copy {
  padding-top: 28px;
}

.kicker {
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--rose);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: 68px;
  line-height: 0.98;
}

h2 {
  font-size: 44px;
  line-height: 1.08;
}

h3 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.hero-lead,
.section-text,
.showcase-copy p,
.wholesale-panel p,
.final-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-lead {
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  padding: 15px 22px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--dark);
  color: var(--ivory);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(21, 19, 19, 0.25);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 560px);
  margin: 40px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero-proof div {
  padding: 18px;
  background: rgba(255, 250, 250, 0.72);
}

.hero-proof dt {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}

.hero-proof dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-gallery {
  position: relative;
  min-height: 600px;
}

.hero-photo {
  overflow: hidden;
  margin: 0;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.hero-photo:hover img {
  transform: scale(1.035);
}

.hero-photo-large {
  position: absolute;
  top: 0;
  right: 0;
  width: 76%;
  aspect-ratio: 1 / 1.08;
}

.hero-photo-small {
  position: absolute;
  width: 34%;
  aspect-ratio: 1 / 1.18;
  border: 10px solid var(--bg);
}

.hero-photo-small.one {
  left: 0;
  top: 15%;
}

.hero-photo-small.two {
  left: 18%;
  bottom: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark);
  color: var(--ivory);
  border-block: 1px solid rgba(246, 241, 239, 0.12);
}

.trust-strip div {
  min-height: 112px;
  padding: 28px 30px;
  border-right: 1px solid var(--line-dark);
}

.trust-strip span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 20px;
}

.trust-strip p {
  margin: 0;
  color: rgba(246, 241, 239, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.intro-section,
.catalog-section,
.showcase,
.wholesale,
.steps,
.editorial-gallery,
.final-cta {
  padding-block: 88px;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: end;
}

.section-heading {
  max-width: 620px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-text {
  margin-bottom: 0;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 34px 0;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter {
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  color: var(--ivory);
  background: var(--dark);
  border-color: var(--dark);
}

.text-link {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  padding: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 250, 250, 0.56);
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 19, 19, 0.26);
  box-shadow: var(--shadow);
}

.product-card figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ded6d4;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.product-card:hover img {
  transform: scale(1.055);
}

.product-card-content {
  padding: 18px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.showcase {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 72px;
  align-items: center;
}

.showcase-image {
  min-height: 580px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.showcase-copy h2,
.wholesale-panel h2,
.final-card h2 {
  margin-bottom: 22px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.benefit-list span {
  border-left: 2px solid var(--rose);
  padding: 10px 14px;
  background: rgba(255, 250, 250, 0.62);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.wholesale {
  width: 100%;
}

.wholesale-panel {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 42px;
  align-items: stretch;
  padding: 46px;
  background: var(--dark);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.wholesale-panel p {
  color: rgba(246, 241, 239, 0.68);
}

.wholesale-panel figure {
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

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

.wholesale-panel .button-primary,
.final-card .button-primary {
  background: var(--ivory);
  color: var(--dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.step-card {
  min-height: 244px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.step-card span {
  display: block;
  margin-bottom: 56px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 28px;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
  margin-top: 36px;
}

.gallery-tile {
  overflow: hidden;
  background: #ded6d4;
  cursor: zoom-in;
}

.gallery-tile:nth-child(1),
.gallery-tile:nth-child(7) {
  grid-row: span 2;
}

.gallery-tile:nth-child(3),
.gallery-tile:nth-child(9) {
  grid-column: span 2;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 220ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.06);
  filter: contrast(1.05);
}

.faq-section {
  padding-block: 90px;
  background: var(--dark);
  color: var(--ivory);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-top: 34px;
}

details {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
}

summary {
  list-style: none;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 20px;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(246, 241, 239, 0.68);
  line-height: 1.65;
}

.final-card {
  max-width: 920px;
  margin-inline: auto;
  padding: 64px;
  text-align: center;
  background: var(--dark-2);
  color: var(--ivory);
  border: 1px solid rgba(21, 19, 19, 0.22);
  box-shadow: var(--shadow);
}

.final-card p {
  max-width: 620px;
  margin: 0 auto 32px;
  color: rgba(246, 241, 239, 0.72);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 46px 36px 76px;
  background: var(--dark);
  color: var(--ivory);
}

.site-footer p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(246, 241, 239, 0.58);
  line-height: 1.6;
}

.footer-brand {
  display: inline-block;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: rgba(246, 241, 239, 0.68);
  font-size: 13px;
  font-weight: 600;
}

.mobile-action-bar {
  display: none;
}

.modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 8, 8, 0.72);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  width: min(920px, calc(100% - 36px));
  max-height: calc(100vh - 36px);
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 0;
  margin: 18px auto;
  overflow: auto;
  background: var(--bg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.modal-card figure {
  margin: 0;
  min-height: 560px;
  background: #ddd;
}

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

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.modal-copy h2 {
  margin-bottom: 18px;
}

.modal-copy p:not(.kicker) {
  color: var(--muted);
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  border: 1px solid var(--line);
  background: rgba(248, 241, 241, 0.9);
  color: var(--ink);
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
}

body.js-ready .reveal.is-visible,
.hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 20px;
  }

  .brand {
    font-size: 26px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: start;
  }

  .site-header .brand {
    justify-self: center;
    text-align: center;
  }

  .hero,
  .intro-section,
  .showcase,
  .wholesale-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    padding-top: 100px;
  }

  .hero-copy {
    order: 2;
    padding-top: 0;
  }

  .hero-gallery {
    order: 1;
    min-height: 520px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .masonry-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .modal-card {
    grid-template-columns: 1fr;
  }

  .modal-card figure {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 66px;
  }

  .mobile-menu {
    top: 66px;
  }

  .brand {
    font-size: 24px;
  }

  .hero {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 52px;
  }

  .hero-gallery {
    min-height: 430px;
  }

  .hero-photo-large {
    width: 82%;
  }

  .hero-photo-small {
    width: 39%;
    border-width: 7px;
  }

  .hero-photo-small.two {
    left: 10%;
  }

  h1 {
    font-size: 39px;
    line-height: 1.04;
  }

  h2 {
    font-size: 31px;
  }

  .hero-lead,
  .section-text,
  .showcase-copy p,
  .wholesale-panel p,
  .final-card p {
    font-size: 15px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .intro-section,
  .catalog-section,
  .showcase,
  .wholesale,
  .steps,
  .editorial-gallery,
  .final-cta {
    padding-block: 58px;
  }

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

  .showcase-image {
    min-height: 420px;
  }

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

  .wholesale-panel {
    padding: 24px;
  }

  .wholesale-panel figure {
    min-height: 300px;
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 124px;
  }

  .gallery-tile:nth-child(3),
  .gallery-tile:nth-child(9) {
    grid-column: span 1;
  }

  .final-card {
    padding: 34px 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 20px;
    padding-bottom: 104px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 40;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(21, 20, 20, 0.92);
    border: 1px solid var(--line-dark);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    min-height: 48px;
    border: 0;
    border-radius: 4px;
    background: rgba(246, 241, 239, 0.12);
    color: var(--ivory);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-action-bar button {
    background: var(--ivory);
    color: var(--dark);
  }

  .modal-card {
    width: calc(100% - 22px);
    max-height: calc(100vh - 22px);
    margin: 11px auto;
  }

  .modal-card figure {
    min-height: 320px;
  }

  .modal-copy {
    padding: 28px;
  }
}
