/* ============================================================
   RAD — refined 70s editorial t-shirt brand
   ============================================================
   Inspired by Symbol: massive chunky retro logotype, cream + rust
   palette, minimal text nav, photo-driven, no decoration unless
   it earns its place.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Allura&family=Anton&family=Bagel+Fat+One&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;1,9..144,400&family=Inter:wght@400;500;600;700&display=swap");

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:     #FAF2D9;
  --cream-2:   #F2E8C4;
  --rust:      #B83C1E;
  --rust-dark: #8B2D1A;
  --sage:      #8B9970;
  --beige:     #E8DBA8;
  --ink:       #1a120c;
  --black:     #0d0907;
  --muted:     #7A6859;
  --line:      rgba(43, 27, 20, 0.15);
}

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Custom cursor: rust lightning bolt with multiple zigzag tabs (cream halo for visibility on dark BGs) */
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24'%3E%3Cpath d='M17 2L13 8L18 8L14 13L19 13L6 22L11 16L6 16L10 11L5 11L11 5Z' fill='%23B83C1E' stroke='%23FAF2D9' stroke-width='1' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 20 2, auto;
}

/* Slightly bigger version on clickables for hover feedback */
a, button, [role="button"], summary, .polaroid, .product-card, .best-item, .pd-size, .pd-thumb, .qty-btn, .checkout-btn, .remove-btn, .pd-add-btn {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 24 24'%3E%3Cpath d='M17 2L13 8L18 8L14 13L19 13L6 22L11 16L6 16L10 11L5 11L11 5Z' fill='%23B83C1E' stroke='%23FAF2D9' stroke-width='1.2' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 24 3, pointer;
}

/* Text inputs keep the I-beam */
input[type="text"], input[type="email"], input[type="search"], textarea, select {
  cursor: text;
}
select { cursor: pointer; }

/* Cursor trail — small rust dots that fade behind the cursor as you move */
.cursor-trail {
  position: fixed;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rust);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  animation: trail-fade 0.75s ease-out forwards;
  will-change: opacity, transform;
}

@keyframes trail-fade {
  0%   { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0;    transform: translate(-50%, -50%) scale(0.2); }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   SHIPPING TICKER - scrolling banner above the nav
   ============================================================ */
.ticker {
  background: var(--rust);
  color: var(--cream);
  overflow: hidden;
  padding: 11px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: ticker-scroll 35s linear infinite;
  font-family: "Anton", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-right: 32px;
}

.ticker-dot { opacity: 0.55; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   NAV - minimal plain text, no pills, no borders
   ============================================================ */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 40px;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.92rem;
  color: var(--ink);
  justify-self: start;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--rust); }

.nav-links a.has-plus::after {
  content: "+";
  margin-left: 4px;
  color: var(--rust);
  font-weight: 700;
}

/* Shop dropdown — opens on hover (desktop) or tap (touch, via .open) */
.nav-drop { position: relative; }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -18px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

/* Invisible bridge so the menu survives the gap under the link */
.nav-drop-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-drop.open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: hover) {
  .nav-drop:hover .nav-drop-menu,
  .nav-drop:focus-within .nav-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav-drop-menu a {
  font-family: "Anton", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0;
}

.nav-drop-menu a:hover { color: var(--rust); }

/* Small cursive brand mark in nav center */
.brand-mark {
  font-family: "Allura", cursive;
  font-size: 2.2rem;
  color: var(--rust);
  line-height: 1;
  letter-spacing: 0.02em;
  justify-self: center;
}

.nav-right {
  font-size: 0.92rem;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-right a:hover { color: var(--rust); }

/* ---- Mobile menu: hamburger + full-width panel ---- */
.nav-menu-btn {
  display: none;            /* desktop shows the full link row instead */
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 26px;
  height: 26px;
  padding: 0;
  background: none;
  border: 0;
}

.nav-menu-btn span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hamburger folds into an X while the panel is open */
.nav-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 16px;
  padding: 22px 20px 26px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  z-index: 55;
}

.nav-panel a {
  font-family: "Anton", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-panel a:hover { color: var(--rust); }

.nav-panel-label {
  font-family: "Anton", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rust);
}

.nav-panel-rule {
  height: 1px;
  background: var(--line);
  margin: 4px 0;
}

/* The panel belongs to small screens only */
@media (min-width: 701px) {
  .nav-panel { display: none !important; }
}

@media (max-width: 700px) {
  .nav { position: sticky; }
  .nav-menu-btn { display: flex; }
  /* Contact + About Us live in the panel now; Shop and Cart stay in the bar */
  .nav-links a[data-nav="secondary"] { display: none; }
  .nav-drop-menu { display: none !important; }
  .nav-panel { display: flex; }
}

/* ============================================================
   HERO - Symbol-style poster layout
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 0 40px;
  align-items: start;
}

/* Massive logotype - spans the full top, photo crops part of it */
.hero-logotype {
  grid-column: 1 / -1;
  font-family: "Anton", sans-serif;
  font-size: clamp(8rem, 26vw, 26rem);
  line-height: 0.85;
  color: var(--rust);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
  margin-top: 10px;
  pointer-events: none;
  user-select: none;
}

/* Hero photo - top-aligned with the RAD logotype */
.hero-photo {
  position: absolute;
  top: 10px;
  right: 40px;
  width: 38%;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  background: url('photos/hero.webp') center / cover no-repeat;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(43, 27, 20, 0.25);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(43, 27, 20, 0.25));
  border-radius: 4px;
}

/* Subtitle right under the RAD logotype */
.hero-kicker {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  z-index: 3;
  position: relative;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-top: 28px;
  margin-bottom: 40px;
}

/* Bottom-right tagline + shop now */
.hero-tagline {
  grid-column: 2 / 3;
  grid-row: 3;
  align-self: end;
  z-index: 3;
  position: relative;
  max-width: 380px;
  font-size: 0.92rem;
  color: var(--ink);
  background: rgba(239, 224, 195, 0.85);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 4px 8px;
  line-height: 1.5;
  padding-bottom: 10px;
}

.hero-tagline p { margin-bottom: 16px; }

.shop-link {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.shop-link:hover {
  color: var(--rust-dark);
  border-bottom-color: var(--rust-dark);
}

/* ============================================================
   SECTION base
   ============================================================ */
.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-eyebrow {
  font-family: "Anton", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
  font-weight: 400;
}

.section-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 0.9;
  color: var(--rust);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-title em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

/* ============================================================
   POSTER PANEL - black bg, bold condensed type cropped by photo
   ============================================================ */
.poster {
  background: var(--black);
  color: var(--rust);
  position: relative;
  min-height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 50px;
  margin: 60px 0;
}

.poster-headline {
  font-family: "Anton", sans-serif;
  font-size: clamp(4rem, 13.5vw, 14rem);
  line-height: 0.82;
  letter-spacing: -0.015em;
  color: var(--rust);
  text-transform: uppercase;
  /* Below the photo on purpose — the band crops the type */
  z-index: 1;
  position: relative;
  max-width: 90%;
}

.poster-headline .cream-line {
  color: var(--cream);
  font-size: 0.75em;
}

/* Full-bleed band down the right edge of the panel */
.poster-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  background: url('photos/poster.webp') center / cover no-repeat;
  z-index: 2;
  border-radius: 0;
}

/* Narrow screens: headline stacks above a full-width photo band */
@media (max-width: 700px) {
  .poster {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding: 56px 24px 0;
  }
  .poster-headline {
    max-width: 100%;
    font-size: clamp(2.6rem, 13vw, 5rem);
    margin-bottom: 40px;
  }
  .poster-photo {
    position: relative;
    width: calc(100% + 48px);
    margin: 0 -24px;
    height: 56vh;
  }
}

.poster-meta {
  position: absolute;
  bottom: 40px;
  right: 50px;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: var(--cream);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
  text-align: right;
  line-height: 1.6;
  opacity: 0.7;
}

.poster-r {
  position: absolute;
  bottom: 30px;
  left: 50px;
  font-family: "Anton", sans-serif;
  color: var(--rust);
  font-size: 1.5rem;
  z-index: 3;
}
.poster-r::after { content: "®"; vertical-align: super; font-size: 0.7em; }

/* ============================================================
   BEST SELLERS - clean circular thumbs, refined labels
   ============================================================ */
.bestsellers { text-align: center; }

/* Kept smaller than a standard section title so it reads as a quiet line
   after the black hero, not a second headline competing with it */
.bestsellers .section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
}

/* Inline-block sized to the title width, so the link can right-align under "MT." */
.bestsellers-header {
  display: inline-block;
  text-align: right;
  margin-bottom: 50px;
}

.bestsellers-header .section-title {
  margin-bottom: 18px;
  text-align: left;
}

.bestsellers-header .shop-link {
  display: inline-block;
}

.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.best-item {
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s;
}

.best-item:hover { transform: translateY(-6px); }

.best-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.best-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(43, 27, 20, 0.15));
  border-radius: 50%;
}

.best-label {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.best-label::after {
  content: "→";
  font-size: 1rem;
  color: var(--rust);
  margin-left: 12px;
  transition: transform 0.2s;
}

.best-item:hover .best-label::after { transform: translateX(4px); }

.best-price {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}

/* ============================================================
   STORY - editorial two-column with photo block
   ============================================================ */
.story {
  background: var(--cream);
  padding: 100px 40px;
  border-top: 1px solid var(--line);
}

.story-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  line-height: 0.95;
  color: var(--rust);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.story-text h2 em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.story-text p {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.02rem;
  max-width: 460px;
}

.story-photo {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background: url('photos/story.webp') center / cover no-repeat;
  position: relative;
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43, 27, 20, 0.2));
  border-radius: 4px;
}

/* ============================================================
   PRODUCT GRID - refined cards
   ============================================================ */
.product-grid {
  display: grid;
  /* Four across on desktop — the full catalog reads as one row */
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; gap: 36px; }
}

.product-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

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

.product-image {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

/* Two stacked photo layers that crossfade between each other on hover */
.card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.9s ease-in-out;
  pointer-events: none;
}

/* Photo navigation dots on the shop card */
.card-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(250, 242, 217, 0.92);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(43, 27, 20, 0.25);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.card-dot:hover { background: var(--rust-dark); transform: scale(1.2); }
.card-dot.active { background: var(--rust); }

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43, 27, 20, 0.2));
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 4px 0; /* breathing room the tagline used to provide */
}

.product-name {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.product-price {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 400;
  white-space: nowrap;
}

.product-tagline {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.product-card .add-btn {
  background: transparent;
  border: none;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
  padding: 0 0 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}

.product-card .add-btn:hover {
  color: var(--rust-dark);
  border-bottom-color: var(--rust-dark);
}

/* ============================================================
   CART page
   ============================================================ */
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.cart-thumb {
  width: 100px;
  height: 120px;
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.78rem;
  text-align: center;
  padding: 8px;
}

.cart-name {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.qty-btn:hover {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}

.remove-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: underline;
  font-family: "Fraunces", serif;
  font-style: italic;
}
.remove-btn:hover { color: var(--rust); }

.cart-summary {
  margin-top: 40px;
  padding: 32px 0;
  border-top: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cart-total {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  color: var(--rust);
  letter-spacing: -0.01em;
}

.checkout-btn {
  background: var(--rust);
  color: var(--cream);
  border: none;
  padding: 16px 32px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.1rem;
  border-radius: 2px;
  transition: background 0.2s;
}

.checkout-btn:hover { background: var(--rust-dark); }

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart p {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--muted);
}

/* ============================================================
   FOOTER - black, bold cropped logotype
   ============================================================ */
.footer {
  padding: 20px 40px 50px;
  background: var(--black);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

/* Logotype + the full studio name stacked under it */
.footer-brand {
  z-index: 1;
  min-width: 0;
}

.footer-mark {
  font-family: "Anton", sans-serif;
  font-size: clamp(6rem, 20vw, 18rem);
  line-height: 0.85;
  color: var(--rust);
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.footer-sub {
  margin-top: 10px;
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}

.footer-text {
  text-align: right;
  font-size: 0.85rem;
  color: var(--cream);
  line-height: 1.7;
  opacity: 0.8;
  z-index: 2;
  position: relative;
}

.footer-text a:hover { color: var(--rust); opacity: 1; }

.footer-text .heading {
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 8px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 40px 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { text-align: left; margin-bottom: 20px; }

.contact-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 50px;
  max-width: 440px;
}

.contact-block {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.contact-block:last-child { border-bottom: 1px solid var(--line); }

.contact-label {
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 8px;
}

.contact-value {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  color: var(--ink);
  display: block;
}

a.contact-value { border-bottom: 1px solid transparent; transition: border-color 0.15s; }
a.contact-value:hover { border-bottom-color: var(--rust); }

.contact-meta {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 4px;
  font-family: "Fraunces", serif;
  font-style: italic;
}

.contact-socials {
  display: flex;
  gap: 22px;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
}

.contact-socials a {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.contact-socials a:hover { color: var(--rust); border-bottom-color: var(--rust); }

/* ---- form ---- */
.contact-form { display: flex; flex-direction: column; }

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.form-label {
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}

.form-input {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--ink);
  padding: 10px 0;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus { border-bottom-color: var(--rust); }

.form-textarea {
  resize: vertical;
  font-family: "Fraunces", serif;
  min-height: 120px;
}

.contact-form .pd-add-btn { align-self: flex-start; margin-top: 10px; }

.form-success {
  display: none;
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--rust);
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-style: italic;
  border-radius: 2px;
  font-size: 1rem;
}

.form-success.shown { display: block; }

@media (max-width: 800px) {
  .contact { padding: 40px 20px 80px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.pd {
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 40px 100px;
}

.pd-breadcrumb {
  font-family: "Anton", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.pd-breadcrumb a { color: var(--rust); }
.pd-breadcrumb a:hover { color: var(--rust-dark); }

.pd-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}

/* ---- LEFT: photo gallery ---- */
.pd-hero {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  margin-bottom: 16px;
  transition: background 0.3s ease;
  position: relative;
}

.pd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 75%, rgba(43, 27, 20, 0.15));
  border-radius: 2px;
}

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pd-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s, transform 0.15s;
}

.pd-thumb:hover { transform: translateY(-2px); }
.pd-thumb.active { border-color: var(--rust); }

/* ---- RIGHT: details ---- */
.pd-details {
  padding-top: 8px;
  position: relative;
}

.pd-details .lb-rad-mark {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2.2rem;
}

.pd-name {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 12px 0 14px;
}

.pd-tag {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 22px;
}

.pd-price {
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 30px;
}

.pd-desc {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.pd-size-label {
  font-family: "Anton", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}

.pd-size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

/* ---- Variant dropdown ---- */
.pd-variant-block { margin-bottom: 28px; }
.pd-variant-select {
  width: 100%;
  padding: 12px 18px;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a120c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* ---- Color dropdown ---- */
.pd-color-block { margin-bottom: 28px; }
.pd-color-block .pd-size-label { margin-bottom: 14px; }

.pd-color-select { position: relative; display: inline-block; }

.pd-color-trigger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 1.5px solid var(--ink);
  padding: 12px 18px;
  font-family: "Anton", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 2px;
  min-width: 260px;
  justify-content: space-between;
  transition: background 0.15s;
}

.pd-color-trigger:hover { background: var(--cream-2); }

.pd-color-chevron {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-left: 6px;
}

.pd-color-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  z-index: 30;
  overflow: hidden;
}

.pd-color-options.open { display: block; }

.pd-color-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 18px;
  background: transparent;
  border: none;
  font-family: "Anton", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
  transition: background 0.15s;
}

.pd-color-option:hover { background: var(--cream-2); }
.pd-color-option.active { background: var(--cream-2); }

.pd-color-swatch {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  flex-shrink: 0;
}

.pd-sold-out-tag {
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--rust);
  font-family: "Anton", sans-serif;
}

/* ---- Sold-out notify form ---- */
.pd-notify { margin-top: 8px; }

.pd-soldout-label {
  font-family: "Anton", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}

.pd-soldout-msg {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 420px;
}

.pd-notify-form {
  display: flex;
  gap: 12px;
  align-items: stretch;
  max-width: 460px;
  flex-wrap: wrap;
}

.pd-notify-form .form-input {
  flex: 1;
  min-width: 220px;
  margin: 0;
  border-bottom: 1.5px solid var(--ink);
  padding: 12px 0;
}

.pd-notify-form .pd-add-btn {
  padding: 14px 28px;
  white-space: nowrap;
}

.pd-notify-success {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--rust);
  color: var(--cream);
  border-radius: 2px;
  font-family: "Fraunces", serif;
  font-style: italic;
}

.pd-notify-success.shown { display: block; }

.pd-size {
  padding: 13px 20px;
  min-width: 58px;
  background: transparent;
  border: 1.5px solid var(--ink);
  font-family: "Anton", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.pd-size:hover {
  background: var(--ink);
  color: var(--cream);
}

.pd-size.selected {
  background: var(--rust);
  color: var(--cream);
  border-color: var(--rust);
}

.pd-size.unavailable {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.pd-add-btn {
  display: inline-block;
  padding: 18px 44px;
  background: var(--rust);
  color: var(--cream);
  border: none;
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s;
}

.pd-add-btn:hover { background: var(--rust-dark); }

.pd-shipping {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 16px;
  font-family: "Fraunces", serif;
  font-style: italic;
}

.pd-info-block {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  margin-top: 0;
}

.pd-info-block:first-of-type { margin-top: 40px; }
.pd-info-block:last-of-type  { border-bottom: 1px solid var(--line); }

.pd-info-block summary {
  font-family: "Anton", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pd-info-block summary::-webkit-details-marker { display: none; }
.pd-info-block summary::after {
  content: "+";
  color: var(--rust);
  font-size: 1.4rem;
  transition: transform 0.2s;
}

.pd-info-block[open] summary::after { transform: rotate(45deg); }

.pd-info-block p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 460px;
}

/* ============================================================
   TRI HERO (homepage) — black directory of the three disciplines.
   Same black panel + oversized Anton titles as the coming-soon pages.
   ============================================================ */
.tri {
  background: var(--black);
  color: var(--cream);
  padding: 90px 40px 40px;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tri-top { max-width: 1500px; margin: 0 auto; width: 100%; }

.tri-mark {
  font-family: "Anton", sans-serif;
  font-size: clamp(6rem, 20vw, 20rem);
  line-height: 0.82;
  color: var(--rust);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  user-select: none;
}

/* Studio name sitting directly under the logotype */
.tri-studio {
  margin-top: 14px;
  font-family: "Anton", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
}

.tri-sub {
  margin-top: 18px;
  max-width: 30ch;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1.15;
  color: var(--cream);
}

.tri-list {
  max-width: 1500px;
  margin: 70px auto 0;
  width: 100%;
}

/* Each discipline is one full-width row, like a contents page */
.tri-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(250, 242, 217, 0.18);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.28s ease, border-color 0.28s ease;
}

.tri-row:last-child { border-bottom: 1px solid rgba(250, 242, 217, 0.18); }

/* Rows nudge right on hover — the only motion in the panel */
.tri-row:hover {
  padding-left: 18px;
  border-top-color: var(--rust);
}
.tri-row:hover + .tri-row { border-top-color: var(--rust); }
.tri-row:last-child:hover { border-bottom-color: var(--rust); }

.tri-num {
  font-family: "Anton", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--rust);
}

.tri-name {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.9rem, 5.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.28s ease;
}

.tri-row:hover .tri-name { color: var(--rust); }

.tri-meta {
  font-family: "Anton", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  white-space: nowrap;
  transition: color 0.28s ease;
}

.tri-row:hover .tri-meta { color: var(--cream); }

@media (max-width: 700px) {
  .tri { padding: 50px 20px 30px; min-height: 0; }
  .tri-list { margin-top: 44px; }
  .tri-row {
    grid-template-columns: auto 1fr;
    gap: 14px;
    row-gap: 8px;
    padding: 18px 0;
  }
  /* Meta drops to its own line under the name on narrow screens */
  .tri-meta { grid-column: 2; }
}

/* ============================================================
   THREE DISCIPLINES — unused since the tri hero replaced it,
   kept in case the centered three-column layout is wanted again
   ============================================================ */
.disciplines { text-align: center; }

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}

/* Hairline rule over each column, like a magazine contents page */
.discipline {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s;
}

.discipline:hover { border-top-color: var(--rust); }

.discipline-num {
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--ink);
  margin-bottom: 14px;
}

.discipline h3 {
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--rust);
  margin-bottom: 18px;
}

.discipline p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 auto 20px; /* centered column of copy */
  max-width: 32ch;
}

.discipline-link {
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  transition: color 0.2s;
}

.discipline:hover .discipline-link { color: var(--ink); }

@media (max-width: 900px) {
  .discipline-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 40px; }
  .discipline h3 br { display: none; }
}

/* ============================================================
   COMING SOON PANEL (jackets.html, furniture.html)
   ============================================================ */
.cs {
  position: relative;
  background: var(--black);
  color: var(--cream);
  padding: 120px 40px 140px;
  overflow: hidden;
}

.cs-inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}

.cs-eyebrow {
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
}

.cs-headline {
  font-family: "Anton", sans-serif;
  font-size: clamp(3.5rem, 13vw, 12rem);
  line-height: 0.86;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--rust);
}

/* Second line reads cream so the pair splits like a poster */
.cs-line { color: var(--cream); }

.cs-copy {
  margin-top: 36px;
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.75;
}

.cs-form-block { margin-top: 48px; max-width: 420px; }

.cs-form-label {
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}

.cs-form { display: flex; flex-direction: column; gap: 20px; }

/* Invert the shared form input for the dark panel */
.cs-form .form-input {
  border-bottom-color: rgba(250, 242, 217, 0.4);
  color: var(--cream);
}
.cs-form .form-input::placeholder { color: rgba(250, 242, 217, 0.4); }
.cs-form .form-input:focus { border-bottom-color: var(--rust); }

.cs-success {
  margin-top: 18px;
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  display: none;
}
.cs-success.shown { display: block; }

/* Quote-request CTA on quoted-per-project categories (no email capture) */
.cs-inquire {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  min-width: 220px;
}

.cs-back {
  display: inline-block;
  margin-top: 56px;
  color: var(--cream);
}
.cs-back:hover { color: var(--rust); }

/* Cropped watermark logotype bleeding off the right edge */
.cs-mark {
  position: absolute;
  right: -4vw;
  bottom: -6vh;
  z-index: 1;
  font-family: "Anton", sans-serif;
  font-size: clamp(14rem, 38vw, 34rem);
  line-height: 0.8;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 800px) {
  .cs { padding: 70px 20px 90px; }
  .cs-copy { margin-top: 26px; }
  .cs-back { margin-top: 40px; }
}

/* Conditional project block on the contact form */
[hidden] { display: none !important; }

.form-project {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  margin-top: 4px;
}

.form-project-label {
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 22px;
}

.form-note {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   CHECKOUT + ORDER CONFIRMATION
   ============================================================ */
.co { max-width: 720px; }

.co-mount { margin-top: 28px; min-height: 320px; }

.co-status {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.co-error { color: var(--rust); }

.oc { max-width: 720px; }

.oc-copy {
  margin-top: 8px;
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.oc .shop-link { margin-top: 32px; }

/* ------------------------------------------------------------
   Coming-soon checkout
   ------------------------------------------------------------
   Card payments aren't switched on yet. Rather than dead-end the
   customer, we show the order back to them and hand off to email.
   When the Stripe keys land, this whole block stops rendering on
   its own — no code change needed.
   ------------------------------------------------------------ */
.cso-copy {
  margin-top: 10px;
  max-width: 46ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.cso-summary {
  margin-top: 44px;
  border-top: 2px solid var(--ink);
}

.cso-label {
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 20px;
}

.cso-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cso-row-price {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  white-space: nowrap;
}

.cso-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding-top: 26px;
}

.cso-total-label {
  font-family: "Anton", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cso-ship {
  margin-top: 12px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--muted);
}

.cso-actions { margin-top: 40px; }

.cso-actions .pd-add-btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.cso-fineprint {
  margin-top: 22px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 44ch;
}

.cso-fineprint a {
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
}

/* ============================================================
   SERVICE PAGE (furniture.html) — what we work on / process
   ============================================================ */
.svc { padding-bottom: 40px; }
.svc + .svc { padding-top: 40px; }

.svc-intro {
  max-width: 54ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
}

/* Chips listing the piece types taken in */
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.svc-tags li {
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 11px 18px;
}

/* Quiet qualifier under the piece-type chips */
.svc-note {
  margin-top: 26px;
  max-width: 54ch;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Numbered process steps, stacked as hairline-separated rows */
.process-list {
  list-style: none;
  margin-top: 8px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.process-step:last-child { border-bottom: 1px solid var(--line); }

.process-num {
  font-family: "Anton", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--rust);
  padding-top: 6px;
}

.process-body h3 {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--rust);
  margin-bottom: 12px;
}

.process-body p {
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Closing black panel — furniture is design only */
.svc-dark {
  background: var(--black);
  color: var(--cream);
  padding: 100px 40px;
  margin-top: 60px;
}

.svc-dark-inner { max-width: 1320px; margin: 0 auto; }

.svc-dark .section-eyebrow { color: var(--rust); }

.svc-dark-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 44px;
}

/* Auto-fits however many paragraphs are in here, capped at a readable measure */
.svc-dark-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 42ch));
  gap: 40px;
  max-width: 1000px;
}

.svc-dark-cols p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.78;
}

.svc-dark-cta { margin-top: 48px; }

@media (max-width: 800px) {
  .svc-dark { padding: 64px 20px; margin-top: 40px; }
  .svc-dark-cols { grid-template-columns: 1fr; gap: 22px; }
  .process-step { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .process-num { padding-top: 0; }
}

/* Caption under a product photo — e.g. "example of past work" */
.photo-note {
  margin-top: 10px;
  font-family: "Anton", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Size guide table inside the product accordion */
.pd-size-guide {
  margin-top: 16px;
  max-width: 100%;
  overflow-x: auto; /* wide tables scroll inside the box, not the page */
}

.pd-size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  color: var(--ink);
}

.pd-size-table th,
.pd-size-table td {
  padding: 10px 7px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.pd-size-table thead th {
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  border-bottom: 1px solid var(--ink);
}

/* Row labels sit left-aligned against the centered measurement columns */
.pd-size-table tbody th,
.pd-size-table thead th:first-child {
  text-align: left;
  font-weight: 400;
  color: var(--muted);
  padding-right: 16px;
  white-space: normal;
}

.pd-size-table tbody tr:last-child th,
.pd-size-table tbody tr:last-child td { border-bottom: none; }

.pd-size-note {
  font-size: 0.8rem !important;
  color: var(--muted);
  margin-top: 12px;
}

@media (max-width: 800px) {
  .pd { padding: 20px 20px 80px; }
  .pd-grid { grid-template-columns: 1fr; gap: 36px; }
  .pd-details .lb-rad-mark { position: static; margin-bottom: 8px; }
}

/* ============================================================
   POLAROID STACK - 3 tilted polaroids, scattered casually
   ============================================================ */
/* Full-width black band that bleeds to viewport edges and into the footer */
.polaroids-section {
  width: 100%;
  margin: 0;
  background: var(--black);
  padding: 90px 0 0;
  text-align: center;
}

/* Inner content container constrains width while the black bg stays edge-to-edge */
.polaroid-box {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

.polaroid-box .polaroids-header {
  margin-bottom: 70px;
}

/* Color treatment matching the poster panel: rust primary + cream italic accent */
.polaroid-box .section-eyebrow { color: var(--rust); }
.polaroid-box .section-title { color: var(--rust); }
.polaroid-box .section-title em { color: var(--cream); }

.polaroids-header { margin-bottom: 70px; }

.polaroid-stack {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: 500px;
  margin: 0 auto;
}

.polaroid {
  position: absolute;
  width: 350px;
  background: #fdfaf0;
  padding: 18px 18px 64px;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.3, 1),
              box-shadow 0.35s ease;
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.08),
    0 22px 40px rgba(43, 27, 20, 0.22);
}

.polaroid-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
}

.polaroid-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.18));
}

.polaroid-caption {
  text-align: center;
  margin-top: 22px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1;
}

/* Asymmetric tilts + offsets — feels handheld, not in a grid */
.polaroid:nth-child(1) {
  left: 0;
  top: 30px;
  transform: rotate(-7deg);
  z-index: 1;
}

.polaroid:nth-child(2) {
  left: 50%;
  margin-left: -175px; /* center horizontally (half of 350px) */
  top: 0;
  transform: rotate(3deg);
  z-index: 3;
}

.polaroid:nth-child(3) {
  right: 0;
  top: 40px;
  transform: rotate(-4deg);
  z-index: 2;
}

.polaroid:hover {
  transform: rotate(0deg) translateY(-14px) scale(1.04);
  z-index: 10;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.15),
    0 35px 60px rgba(43, 27, 20, 0.32);
}

.polaroids-hint {
  margin-top: 80px;
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
}

@media (max-width: 780px) {
  .polaroid-stack {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .polaroid-box { padding: 0 20px; }
  .polaroid {
    position: relative;
    /* 350px overflows a phone once the box padding is subtracted */
    width: min(350px, 100%);
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin-left: 0 !important;
  }
  .polaroid:nth-child(1) { transform: rotate(-4deg); }
  .polaroid:nth-child(2) { transform: rotate(2deg); }
  .polaroid:nth-child(3) { transform: rotate(-3deg); }
}

/* ============================================================
   LOOKBOOK SPREAD - editorial magazine, page turns on hover
   ============================================================ */
.lookbook-section {
  padding: 100px 40px 130px;
  max-width: 1320px;
  margin: 0 auto;
}

.lookbook-header {
  text-align: center;
  margin-bottom: 70px;
}

.lookbook-header .section-title { margin-bottom: 0; }

.lookbook {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  perspective: 3000px;
  cursor: pointer;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.18));
}

/* Each spread is a 2-page layout */
.spread {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fdfaf0;
  overflow: hidden;
}

.spread-next    { z-index: 1; }
.spread-current { z-index: 2; }

/* Spine shadow down the center of the spread */
.spread-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 60px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.04) 30%,
      rgba(0, 0, 0, 0.18) 50%,
      rgba(0, 0, 0, 0.04) 70%,
      transparent 100%);
  z-index: 10;
  pointer-events: none;
}

/* Left page - always shows current photo */
.spread-left,
.flip-face-back {
  position: relative;
  background: #fdfaf0;
  overflow: hidden;
}

/* Right page that flips around the spine */
.spread-right-flip {
  position: relative;
  transform-style: preserve-3d;
  transform-origin: left center;
  transition: transform 1s cubic-bezier(0.55, 0.05, 0.25, 1);
}

.spread-right-flip.turning { transform: rotateY(-180deg); }

.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  background: #fdfaf0;
}

.flip-face-back { transform: rotateY(180deg); }

/* ---- PHOTO PAGE (left) ---- */
.lb-photo {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.lb-photo-label {
  position: relative;
  z-index: 2;
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.lb-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(43, 27, 20, 0.35));
}

.lb-page-num {
  position: absolute;
  bottom: 22px;
  left: 28px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream);
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* ---- TEXT PAGE (right) ---- */
.lb-text {
  padding: 60px 60px 50px 70px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.lb-eyebrow {
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 32px;
}

.lb-name {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}

.lb-tag {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 28px;
}

.lb-price {
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
}

.lb-description {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 340px;
}

.lb-add {
  background: transparent;
  border: none;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
  padding: 0 0 3px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.lb-add:hover {
  color: var(--rust-dark);
  border-bottom-color: var(--rust-dark);
}

.lb-page-num-right {
  position: absolute;
  bottom: 32px;
  right: 50px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
}

.lb-rad-mark {
  position: absolute;
  top: 32px;
  right: 50px;
  font-family: "Allura", cursive;
  font-size: 2rem;
  color: var(--rust);
  line-height: 1;
}

.lookbook-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 28px auto 0;
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
}

.lookbook-hint::before { content: "←  "; }
.lookbook-hint::after  { content: "  →"; }

@media (max-width: 800px) {
  .lookbook { aspect-ratio: 4 / 5; }
  .spread { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .spread-right-flip { transform-origin: center top; }
  .spread-right-flip.turning { transform: rotateX(180deg); }
  .lb-text { padding: 32px 28px; }
  .lb-rad-mark { top: 16px; right: 24px; font-size: 1.6rem; }
  .lb-page-num-right { bottom: 18px; right: 24px; }
  .spread-spine {
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 60px;
    transform: translateY(-50%);
    background:
      linear-gradient(180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.04) 30%,
        rgba(0, 0, 0, 0.18) 50%,
        rgba(0, 0, 0, 0.04) 70%,
        transparent 100%);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 0 24px 40px;
  }
  .hero-photo {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 20px 0;
  }
  .hero-kicker, .hero-tagline {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .bestsellers-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer { grid-template-columns: 1fr; }
  .footer-text { text-align: left; }
}

@media (max-width: 600px) {
  .nav { padding: 18px 20px; }
  .nav-links { gap: 18px; font-size: 0.85rem; }
  .brand-mark { font-size: 1.8rem; }
  .section, .story { padding: 70px 20px; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item .qty-controls,
  .cart-item .remove-btn { grid-column: span 2; }
  .lookbook-section { padding: 60px 20px 90px; }
  .lookbook { max-width: 100%; }
}
