/* Sara Sitarah luxury editorial website.
   Replace image filenames, prices, and product text in the HTML pages as your catalogue grows. */

:root {
  --emerald: #002b20;
  --emerald-2: #064232;
  --emerald-3: #0d5a45;
  --ivory: #fbf6ea;
  --paper: #f3ead8;
  --beige: #d6c19a;
  --gold: #c9a84c;
  --gold-2: #e2c66f;
  --wood: #26180f;
  --ink: #20170f;
  --muted: #75664f;
  --line: rgba(160, 120, 48, 0.24);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  height: 78px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 72px);
  background: linear-gradient(to bottom, rgba(0, 43, 32, 0.94), rgba(0, 43, 32, 0.62), transparent);
  color: var(--gold-2);
}

.nav-logo img { width: 124px; filter: drop-shadow(0 10px 24px rgba(0,0,0,0.32)); }
.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a,
.nav-cta,
.section-kicker,
.tile-label,
.meta,
.small-link,
.footer-title {
  font-family: "Times New Roman", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}
.nav-links a {
  font-size: 0.72rem;
  color: rgba(245,230,184,0.9);
}
.nav-cta {
  border: 1px solid rgba(201,168,76,0.45);
  padding: 12px 20px;
  color: var(--gold-2);
  font-size: 0.68rem;
}
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(0,0,0,0.12);
  color: var(--gold-2);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  margin: 5px auto;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: var(--gold-2);
  background: var(--emerald);
  overflow: hidden;
}
.hero-media,
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero video {
  filter: brightness(0.62) saturate(0.92) contrast(1.08);
  transform: scale(1.12);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 28, 20, 0.22), rgba(0, 28, 20, 0.12) 34%, rgba(0, 28, 20, 0.86)),
    linear-gradient(to right, rgba(0, 28, 20, 0.62), transparent 58%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 44px));
  margin: 0 0 clamp(74px, 10vw, 128px) clamp(22px, 8vw, 132px);
}
.hero-brand {
  width: min(520px, 72vw);
  margin-bottom: 28px;
  filter: drop-shadow(0 22px 42px rgba(0,0,0,0.38));
}
.hero h1,
.page-hero h1,
.section-title,
.story-title,
.product-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 6.2rem);
  color: var(--ivory);
}
.hero-subline {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.1vw, 2rem);
  color: rgba(245,230,184,0.9);
}
.hero-copy {
  margin: 26px 0 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.6rem);
  line-height: 1.55;
  color: var(--beige);
}
.actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 210px;
  padding: 17px 28px;
  border: 1px solid var(--line);
  font-family: "Times New Roman", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  font-size: 0.76rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--emerald);
  border-color: transparent;
}
.btn.ghost {
  color: var(--gold-2);
  border-color: rgba(201,168,76,0.46);
}
.btn.dark {
  background: var(--emerald);
  color: var(--gold-2);
  border-color: var(--emerald);
}
.btn.whatsapp-btn,
.whatsapp-link {
  background: linear-gradient(135deg, var(--emerald), #00150f);
  color: var(--gold-2);
  border-color: rgba(201,168,76,0.46);
  box-shadow: 0 18px 42px rgba(0, 21, 15, 0.18);
}
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 13px 18px;
  border: 1px solid rgba(201,168,76,0.46);
  font-family: "Times New Roman", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.68rem;
}
.product-whatsapp {
  width: 100%;
  margin-top: 14px;
}

.film-toggle {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  width: 44px;
  height: 44px;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(245,230,184,0.42);
  background: rgba(0,21,15,0.42);
  color: var(--gold-2);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,0.24);
  backdrop-filter: blur(8px);
}
.film-toggle::before,
.film-toggle::after {
  content: "";
  width: 3px;
  height: 14px;
  background: currentColor;
  border-radius: 999px;
}
.film-toggle::before {
  transform: translateX(-3px);
}
.film-toggle::after {
  position: absolute;
  transform: translateX(4px);
}
.film-toggle.is-paused::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  background: transparent;
  border-radius: 0;
  transform: none;
}
.film-toggle.is-paused::after {
  display: none;
}

.section {
  padding: clamp(72px, 9vw, 140px) clamp(22px, 8vw, 132px);
}
.section.dark {
  color: var(--ivory);
  background:
    radial-gradient(circle at 70% 40%, rgba(201,168,76,0.10), transparent 34%),
    linear-gradient(135deg, var(--emerald), #00150f);
}
.roman-divider {
  padding: clamp(64px, 9vw, 128px) 22px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 16vw, 18rem);
  line-height: 0.8;
  color: rgba(226, 198, 111, 0.10);
  background: var(--ivory);
  user-select: none;
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.68rem;
  margin-bottom: 18px;
}
.section-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  margin: 0;
  font-size: clamp(2.15rem, 4.8vw, 5rem);
}
.section-lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}
.dark .section-lede { color: rgba(245,230,184,0.72); }

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
}
.editorial-image {
  min-height: 620px;
  overflow: hidden;
  background: var(--emerald);
  box-shadow: var(--shadow);
}
.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 1s ease;
}
.editorial-image:hover img { transform: scale(1.04); }

.collection-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.collection-tile {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--wood);
  color: var(--ivory);
}
.collection-tile img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: brightness(0.72);
  transition: transform 0.8s ease, filter 0.8s ease;
}
.collection-tile:hover img { transform: scale(1.06); filter: brightness(0.86); }
.tile-caption {
  position: absolute;
  inset: auto 22px 24px;
}
.tile-label {
  color: var(--gold-2);
  font-size: 0.66rem;
}
.tile-caption h3 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.craft-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  align-items: stretch;
}
.craft-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.craft-mosaic img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.craft-mosaic img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 44px;
}
.product-card {
  background: #fffaf1;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(60,42,20,0.16); }
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.product-info {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.product-info .launch-badge,
.product-info .coming-badge {
  margin-bottom: 18px;
}
.meta {
  color: var(--gold);
  font-size: 0.62rem;
  margin: 0 0 18px;
}
.product-info h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 400;
}
.price {
  margin-top: 0;
  color: var(--wood);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}
.delivery-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}
.expected-price {
  margin-top: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
}
.launch-badge,
.coming-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(201,168,76,0.42);
  padding: 7px 10px;
  color: var(--gold);
  font-family: "Times New Roman", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.58rem;
  font-weight: 700;
}
.launch-badge {
  background: rgba(201,168,76,0.12);
  color: var(--gold-2);
}
.coming-badge {
  background: rgba(251,246,234,0.9);
}
.product-card.coming-soon img,
.throw-card.coming-soon img,
.runner-product.coming-soon .runner-main-image {
  filter: saturate(0.72) brightness(0.86);
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}
.mini-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--wood);
  padding: 11px 14px;
  font-family: "Times New Roman", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  font-weight: 700;
  cursor: pointer;
}
.mini-btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--emerald);
}
.mini-btn.waitlist {
  color: var(--gold);
  border-color: rgba(201,168,76,0.48);
}
.first-collection {
  background:
    radial-gradient(circle at 85% 18%, rgba(201,168,76,0.10), transparent 30%),
    #fffaf1;
}
.first-collection-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: stretch;
  margin-top: 48px;
}
.launch-feature {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  background: var(--emerald);
  color: var(--ivory);
  min-height: 460px;
}
.launch-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.launch-feature-copy {
  padding: clamp(26px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.launch-feature-copy h3 {
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.05;
  font-weight: 400;
}
.launch-feature-copy p {
  color: rgba(245,230,184,0.72);
  line-height: 1.85;
}
.coming-list {
  display: grid;
  gap: 14px;
}
.coming-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.coming-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 400;
}
.inline-waitlist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
}
.inline-waitlist label {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.inline-waitlist input {
  width: 100%;
  margin-top: 8px;
  padding: 13px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  color: var(--ink);
}
.inline-waitlist .btn,
.inline-waitlist-success {
  grid-column: 1 / -1;
}
.inline-waitlist-success {
  margin: 6px 0 0;
  color: var(--emerald);
  line-height: 1.6;
}
.collection-placeholder {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}
.placeholder-panel {
  border: 1px solid var(--line);
  background: #fffaf1;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 24px 70px rgba(60, 42, 20, 0.10);
}
.placeholder-panel .inline-waitlist {
  grid-template-columns: 1fr;
}
.placeholder-note {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
}

.room-grid,
.journal-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.room-card,
.journal-card,
.category-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--emerald);
  color: var(--ivory);
}
.room-card img,
.journal-card img,
.category-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: brightness(0.72);
  transition: transform 0.8s ease;
}
.room-card:hover img,
.journal-card:hover img,
.category-card:hover img { transform: scale(1.05); }
.room-card span,
.journal-card span,
.category-card span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}
.article-hero-image {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 52vw, 680px);
  margin-bottom: clamp(42px, 6vw, 76px);
  overflow: hidden;
  background: var(--emerald);
  box-shadow: var(--shadow);
}
.article-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,31,23,0.16), rgba(0,31,23,0.38));
  pointer-events: none;
}
.article-hero-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.article-product-link {
  margin-top: 38px;
}

.page-hero {
  min-height: 64vh;
  padding: 150px clamp(22px, 8vw, 132px) 80px;
  color: var(--ivory);
  background:
    linear-gradient(rgba(0,31,23,0.62), rgba(0,31,23,0.72)),
    var(--hero-image, url("sara-product-sitarah.jpg")) center/cover;
}
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 7rem);
}
.page-hero p {
  max-width: 620px;
  color: rgba(245,230,184,0.78);
  font-size: 1.08rem;
  line-height: 1.9;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  align-items: start;
}
.shop-note {
  position: sticky;
  top: 100px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.collection-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}
.throws-hero {
  min-height: 72vh;
  background-position: center;
}
.pillows-hero {
  min-height: 72vh;
  background-position: center;
}
.table-runners-hero {
  min-height: 72vh;
  background-position: center;
}
.throws-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.throw-card {
  background: #fffaf1;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.throw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(60,42,20,0.16);
}
.throw-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.throw-featured {
  grid-column: span 2;
  grid-row: span 2;
}
.throw-featured img {
  aspect-ratio: 4 / 3;
}
.throw-info {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.throw-info .launch-badge,
.throw-info .coming-badge {
  margin-bottom: 14px;
}
.throw-info .meta {
  margin: 0 0 18px;
}
.throw-info h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
  font-weight: 400;
}
.throw-info p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.75;
}
.throw-info .product-actions {
  margin-top: auto;
  padding-top: 24px;
}

.runner-list {
  display: grid;
  gap: clamp(44px, 7vw, 92px);
}
.runner-product {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-bottom: clamp(44px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
}
.runner-product:last-child { border-bottom: 0; padding-bottom: 0; }
.runner-main {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #fffaf1;
  cursor: zoom-in;
  overflow: hidden;
}
.runner-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: opacity 0.24s ease, transform 0.45s ease;
}
.runner-main:hover .runner-main-image { transform: scale(1.02); }
.runner-main-image.is-fading { opacity: 0; }
.runner-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.runner-thumb {
  min-height: 48px;
  border: 1px solid var(--line);
  background: #fffaf1;
  color: var(--wood);
  font-family: "Times New Roman", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.62rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.runner-thumb.is-active,
.runner-thumb:hover {
  background: var(--emerald);
  border-color: var(--gold);
  color: var(--gold-2);
}
.runner-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
}
.runner-copy p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.05rem;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 18, 13, 0.92);
}
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 84vh;
  object-fit: contain;
  box-shadow: var(--shadow);
}
.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0,18,13,0.82);
}
.waitlist-modal[hidden] { display: none; }
.waitlist-panel {
  width: min(560px, 100%);
  background: #fffaf1;
  border: 1px solid rgba(201,168,76,0.35);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 52px);
  position: relative;
}
.waitlist-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 400;
}
.waitlist-panel p {
  color: var(--muted);
  line-height: 1.75;
}
.waitlist-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.waitlist-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
}
.waitlist-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}
.waitlist-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--wood);
  cursor: pointer;
  font-family: "Times New Roman", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
}
.waitlist-success {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--emerald);
  background: rgba(201,168,76,0.10);
  line-height: 1.7;
}
.waitlist-success[hidden] { display: none; }
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-width: auto;
  padding: 12px 18px;
  border: 1px solid rgba(201,168,76,0.55);
  background: rgba(0,43,32,0.88);
  color: var(--gold-2);
  font-family: "Times New Roman", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  cursor: pointer;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 18px;
}
.product-gallery .runner-thumbnails { margin-bottom: 28px; }
.product-summary {
  position: sticky;
  top: 110px;
}
.product-title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
}
.detail-list {
  margin-top: 30px;
  border-top: 1px solid rgba(201,168,76,0.42);
}
.detail-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,168,76,0.42);
  color: var(--muted);
}
.detail-list strong { color: var(--ink); }
.size-guide-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 0.92rem;
  line-height: 1.6;
}
.quantity-control {
  display: inline-grid;
  grid-template-columns: 42px 62px 42px;
  align-items: center;
  border: 1px solid var(--line);
  margin-top: 26px;
}
.quantity-control button,
.quantity-control input {
  height: 44px;
  border: 0;
  background: #fffaf1;
  color: var(--wood);
  text-align: center;
  font: inherit;
}
.quantity-control button {
  cursor: pointer;
  font-size: 1.2rem;
}
.quantity-control input {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.purchase-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}
.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  max-width: 360px;
  padding: 18px 20px;
  background: var(--emerald);
  color: var(--gold-2);
  border: 1px solid rgba(201,168,76,0.42);
  box-shadow: var(--shadow);
}
.cart-toast[hidden] { display: none; }

.process-list {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.process-card {
  border-top: 1px solid var(--gold);
  padding-top: 22px;
}
.process-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 22px;
}
.process-card::before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.footer {
  padding: 70px clamp(22px, 8vw, 132px) 34px;
  background: #00150f;
  color: rgba(245,230,184,0.72);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 38px;
}
.footer-logo { width: 210px; margin-bottom: 18px; }
.footer ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.footer-title { color: var(--gold); font-size: 0.68rem; }
.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.18);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

@media (max-width: 1100px) {
  .collection-tiles { grid-template-columns: repeat(2, 1fr); }
  .product-row, .room-grid, .journal-grid, .category-grid, .process-list { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .throws-grid { grid-template-columns: repeat(2, 1fr); }
  .runner-product { grid-template-columns: 1fr; }
  .first-collection-grid, .launch-feature, .collection-placeholder { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .site-nav { height: 70px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .site-nav.open .nav-links {
    display: grid;
    position: fixed;
    inset: 70px 0 auto;
    padding: 22px;
    background: rgba(0,43,32,0.98);
  }
  .hero-inner { margin: 0 22px 78px; width: calc(100% - 44px); }
  .hero-brand { width: min(360px, 86vw); }
  .hero-copy { font-size: 1.45rem; }
  .actions, .film-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .editorial-split, .craft-band, .shop-layout, .product-page, .collection-intro, .collection-placeholder { grid-template-columns: 1fr; }
  .editorial-image, .editorial-image img { min-height: 420px; }
  .collection-tiles, .product-row, .room-grid, .journal-grid, .category-grid, .product-grid, .process-list, .throws-grid { grid-template-columns: 1fr; }
  .throw-featured { grid-column: auto; grid-row: auto; }
  .shop-note, .product-summary { position: static; }
  .footer-top { grid-template-columns: 1fr; }
  .inline-waitlist { grid-template-columns: 1fr; }
  .detail-list div { grid-template-columns: 1fr; gap: 6px; }
  .runner-thumbnails { grid-template-columns: 1fr; }
  .coming-list article { align-items: flex-start; flex-direction: column; }
}
