/* =========================================================
   Rainbow Jewelry, by Alexandra Gitlin
   Design system: cream surfaces, brushed gold, rainbow accent
   ========================================================= */

:root {
  --cream: #f4ede1;
  --cream-2: #ece2d0;
  --ivory: #faf6ee;
  --paper: #ffffff;

  --ink: #1a1714;
  --ink-2: #3a3530;
  --mute: #7a7268;
  --mute-2: #a89e8f;
  --hairline: #d9cfbb;
  --hairline-2: #e8dfcd;

  --gold: #b08840;
  --gold-2: #c9a663;
  --gold-soft: #e6d3a3;

  --rainbow: linear-gradient(
    90deg,
    #e26d5c 0%,
    #f2a65a 18%,
    #f4d35e 36%,
    #6abf69 55%,
    #5a9bd4 73%,
    #9b6cc2 92%
  );

  --serif: "Cormorant Garamond", "Adobe Caslon Pro", "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------- Reset ----------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font: inherit; }

/* ----------------------- Base ----------------------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--ink); color: var(--cream); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ----------------------- Typography ----------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.005em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}

.display-1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8.4vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.018em;
}
.display-2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.012em;
}
.display-3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  font-style: italic;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

.eyebrow-gold { color: var(--gold); }

.body-lg { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.body-md { font-size: 15px; line-height: 1.7; color: var(--ink-2); }
.muted { color: var(--mute); }

/* ----------------------- Intro loader ----------------------- */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.7s var(--ease);
}
.site-loader img {
  display: block;
  width: clamp(260px, 40vw, 460px);
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.site-loader.is-hiding {
  opacity: 0;
  pointer-events: none;
}
.site-loader.is-done { display: none; }
html[data-intro-seen] .site-loader { display: none; }
html.intro-locked,
html.intro-locked body { overflow: hidden; }

/* ----------------------- Rainbow line ----------------------- */
.rainbow-line {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--rainbow);
  border: 0;
  margin: 0;
}
.rainbow-line.thin { height: 1.5px; }

.hair {
  height: 1px;
  background: var(--hairline);
  border: 0;
  width: 100%;
}

/* ----------------------- Buttons ----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-light:hover { background: var(--cream); color: var(--ink); }

.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 6px;
}
.link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.link:hover::after { transform: scaleX(0.4); }

.link svg { width: 14px; height: 14px; }

/* ----------------------- Announcement bar ----------------------- */
.announce {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px var(--gutter);
}

/* ----------------------- Header / nav ----------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--hairline-2); }

.nav-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 22px var(--gutter) 22px;
  gap: 24px;
}
.nav-left, .nav-right { padding-top: 22px; }

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 0.4s var(--ease);
}
.nav-link:hover::after,
.nav-link.is-active::after { transform: translateX(-50%) scaleX(0.6); }

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0;
}
.wordmark .crest {
  display: block;
  width: clamp(96px, 8vw, 128px);
  height: auto;
  margin-bottom: 16px;
  user-select: none;
  -webkit-user-drag: none;
}
.wordmark .mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.1vw, 28px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
  padding-left: 0.34em;
  line-height: 1;
}
.wordmark .sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
  line-height: 1;
  margin-top: 4px;
}

.icon-btn {
  width: 22px;
  height: 22px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--ink);
}
.nav-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.4; }

.nav-left { display: none; }
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 22px;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.4; }

/* ----------------------- Hero ----------------------- */
.hero {
  position: relative;
  background: var(--cream);
  padding-top: 24px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
.hero-figure {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.hero:hover .hero-figure img { transform: scale(1.02); }

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 6vw, 88px);
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.62) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0) 35%);
  color: var(--cream);
}
.hero-overlay .stack { max-width: 560px; }
.hero-overlay .eyebrow {
  color: rgba(244, 237, 225, 0.92);
  text-shadow: 0 1px 14px rgba(0,0,0,0.35);
}
.hero-overlay h1 {
  color: var(--cream);
  margin: 14px 0 22px;
  text-shadow: 0 1px 24px rgba(0,0,0,0.32);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--gutter) 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ----------------------- Section base ----------------------- */
section { padding: clamp(64px, 10vw, 140px) 0; }
section.tight { padding: clamp(48px, 7vw, 96px) 0; }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-head .lede { max-width: 640px; }

/* ----------------------- Collection grid ----------------------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 56px) clamp(20px, 3vw, 40px);
}
.collection-grid.dense { gap: clamp(20px, 3vw, 32px); }

.product-card {
  display: block;
  color: inherit;
}
.product-card .frame {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--ivory);
  overflow: hidden;
  margin-bottom: 22px;
}
.product-card .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.product-card:hover .frame img { transform: scale(1.04); }
.product-card .frame .alt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.product-card:hover .frame .alt { opacity: 1; }

.product-meta { text-align: center; }
.product-meta .name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.product-meta .desc {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 10px;
}
.product-meta .price {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-2);
}

/* ----------------------- Editorial split ----------------------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split.reverse .split-media { order: 2; }

.split-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ivory);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.split-body { padding-block: clamp(8px, 2vw, 24px); }
.split-body .eyebrow { margin-bottom: 18px; }
.split-body h2 { margin-bottom: 22px; }
.split-body p { margin: 0 0 18px; max-width: 520px; }
.split-body .actions { margin-top: 28px; display: flex; gap: 24px; flex-wrap: wrap; }

/* ----------------------- Press bar ----------------------- */
.press {
  background: var(--ivory);
  border-top: 1px solid var(--hairline-2);
  border-bottom: 1px solid var(--hairline-2);
  padding: clamp(48px, 7vw, 88px) 0;
}
.press-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
}
.press-quote {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.press-quote .pub {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.4vw, 22px);
  letter-spacing: 0.05em;
  color: var(--ink);
}
.press-quote .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--ink-2);
}
.press-quote .by {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ----------------------- Story banner ----------------------- */
.banner {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.banner img { width: 100%; height: 100%; object-fit: cover; }
.banner .overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.32));
  color: var(--cream);
  text-align: center;
  padding: var(--gutter);
}
.banner .overlay .stack { max-width: 720px; }
.banner h2 { color: var(--cream); margin: 16px 0 22px; }

@media (max-width: 980px) {
  .banner { aspect-ratio: 16 / 10; }
}
@media (max-width: 600px) {
  .banner { aspect-ratio: 4 / 5; }
  .banner .overlay { padding: 24px var(--gutter); }
  .banner h2 { font-size: clamp(28px, 7vw, 40px); margin: 12px 0 18px; }
}

/* ----------------------- Crest hero (homepage) -----------------------
   On desktop the maison opens with the twin-eye crest, on cream,
   between two hairlines. One italic line beneath. One small text
   link. The model photograph follows below as a 21:9 banner with no
   overlay text.
   On phones this entire block is hidden (see media query below):
   the small eye crest moves into the nav as the maison's mark, and
   the photograph rises up to be the first hero.
*/
.crest-hero {
  background: var(--cream);
  padding: clamp(56px, 8vw, 128px) var(--gutter) clamp(56px, 8vw, 120px);
  text-align: center;
  position: relative;
}

/* Homepage wordmark on desktop: the typeset name stands alone since
   the giant crest below is the maison's mark. */
.wordmark.wordmark-home .crest { display: none; }
/* A single rainbow hairline carries the maison's color promise into
   the structure and marks the transition from the crest opening
   into the photograph below. */
.crest-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(28px, 4vw, 56px);
  width: clamp(40px, 6vw, 72px);
  height: 1px;
  background: var(--rainbow);
}
.crest-hero .big-crest {
  display: block;
  width: clamp(360px, 50vw, 660px);
  height: auto;
  margin: 0 auto;
  user-select: none;
  -webkit-user-drag: none;
}
.crest-hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: clamp(28px, 4vw, 56px) 0 0;
  color: var(--ink);
}
.crest-hero-title em { font-style: italic; font-weight: 300; }
.crest-hero .actions { margin-top: clamp(40px, 5.5vw, 76px); }

/* The photograph below the crest hero. Calmer, no overlay text,
   only a small caption in the lower-left corner. */
.post-banner {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.post-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-banner .meta {
  position: absolute;
  left: clamp(20px, 3vw, 56px);
  bottom: clamp(16px, 2vw, 28px);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}
@media (max-width: 980px) {
  .post-banner { aspect-ratio: 16 / 10; }
}
@media (max-width: 600px) {
  /* On phones the crest hero is hidden. The eye crest goes into
     the nav (see wordmark-home rule), and the photograph below
     rises to become the first hero. */
  .crest-hero { display: none; }

  .post-banner { aspect-ratio: 4 / 5; }
}

/* ----------------------- Mobile homepage masthead -------------------
   On phones the photograph is the first hero (the giant crest hero is
   hidden), so the maison's name is layered onto the image as a
   compact serif masthead at the top, and the photographer's caption
   sits at the bottom over a soft scrim for legibility. Desktop keeps
   the giant crest hero, so the masthead is hidden there. */
.post-banner-masthead { display: none; }

@media (max-width: 600px) {
  .post-banner-masthead {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: absolute;
    left: 0;
    right: 0;
    top: clamp(18px, 3.5vw, 28px);
    text-align: center;
    z-index: 2;
    color: var(--cream);
    font-family: var(--serif);
  }
  .post-banner-masthead .mark {
    font-weight: 300;
    font-size: clamp(28px, 8vw, 44px);
    letter-spacing: 0.34em;
    text-transform: uppercase;
    line-height: 1;
    padding-left: 0.34em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
  }
  .post-banner-masthead .sub {
    font-family: var(--sans);
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    opacity: 0.94;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
  }

  /* Soft top scrim sits behind the masthead so the type reads on any
     ground in the photograph. */
  .post-banner::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 28%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.36) 0%,
      rgba(0, 0, 0, 0.14) 55%,
      rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  /* The photographer's caption is hidden on phones; the masthead at
     the top of the photograph carries the brand and the rest stays
     image-first. */
  .post-banner .meta { display: none; }
}

/* ----------------------- PDP gallery ----------------------- */
.pdp {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: clamp(40px, 5vw, 88px);
  padding-top: clamp(28px, 4vw, 56px);
  align-items: flex-start;
}
.pdp-gallery {
  position: relative;
  display: grid;
  gap: 12px;
}
.pdp-gallery .main {
  aspect-ratio: 4 / 5;
  background: var(--ivory);
  overflow: hidden;
}
.pdp-gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pdp-thumbs button {
  aspect-ratio: 1 / 1;
  background: var(--ivory);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.pdp-thumbs button.is-active { border-color: var(--ink); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info {
  position: sticky;
  top: 96px;
  padding: clamp(8px, 2vw, 24px) 0;
}
.pdp-info .eyebrow { margin-bottom: 14px; }
.pdp-info h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
}
.pdp-info .price {
  font-size: 14px;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
  color: var(--ink-2);
}
.pdp-info .desc {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 480px;
}

.pdp-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.pdp-options label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  display: block;
  margin-bottom: 10px;
}
.pdp-sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-sizes button {
  min-width: 46px;
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  background: var(--paper);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.pdp-sizes button:hover { border-color: var(--ink); }
.pdp-sizes button.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.pdp-cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pdp-cta .btn { width: 100%; padding: 18px; }

.pdp-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.pdp-availability .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--rainbow);
}

.pdp-accordion { border-top: 1px solid var(--hairline-2); }
.pdp-accordion details {
  border-bottom: 1px solid var(--hairline-2);
}
.pdp-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.pdp-accordion summary::-webkit-details-marker { display: none; }
.pdp-accordion summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s var(--ease);
}
.pdp-accordion details[open] summary::after { content: "—"; }
.pdp-accordion .body {
  padding: 4px 0 26px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 520px;
}

/* ----------------------- Materials slabs ----------------------- */
.slabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.slab {
  background: var(--ivory);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--hairline-2);
}
.slab .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 22px;
}
.slab h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 1.8vw, 28px);
  margin-bottom: 14px;
}
.slab p { font-size: 14px; line-height: 1.7; color: var(--ink-2); margin: 0; }

/* ----------------------- Footer ----------------------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(64px, 8vw, 112px) 0 32px;
  margin-top: clamp(56px, 8vw, 96px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(32px, 4vw, 72px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(244, 237, 225, 0.15);
}
.footer-top .brand .mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.footer-top .brand p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 237, 225, 0.7);
  max-width: 320px;
  margin: 0;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 22px;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13px;
  color: rgba(244, 237, 225, 0.72);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.55);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal { display: flex; gap: 28px; flex-wrap: wrap; }

/* ----------------------- Reveal on scroll ----------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ----------------------- Page header (non-home) ----------------------- */
.page-head {
  text-align: center;
  padding: clamp(72px, 9vw, 140px) var(--gutter) clamp(40px, 5vw, 72px);
  background: var(--cream);
}
.page-head .eyebrow { margin-bottom: 22px; }
.page-head h1 { margin-bottom: 22px; }
.page-head .lede { max-width: 640px; margin: 0 auto; }

/* ----------------------- Crumb ----------------------- */
.crumb {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 22px var(--gutter) 0;
}
.crumb a { color: var(--mute); }
.crumb a:hover { color: var(--ink); }
.crumb .sep { color: var(--mute-2); }

/* ----------------------- Newsletter (footer) ----------------------- */
.newsletter {
  display: flex;
  border-bottom: 1px solid rgba(244, 237, 225, 0.4);
  padding-bottom: 8px;
  gap: 12px;
  max-width: 360px;
  margin-top: 16px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--cream);
  font-size: 13px;
  padding: 8px 0;
}
.newsletter input::placeholder { color: rgba(244, 237, 225, 0.5); }
.newsletter button {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ----------------------- Founder portrait ----------------------- */
.founder-portrait {
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 4 / 5;
  background: var(--ivory);
  overflow: hidden;
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* ----------------------- Story long form ----------------------- */
.prose {
  max-width: 680px;
  margin: 0 auto;
}
/* When .prose is a direct child of <section> (no container wrapper),
   give it its own gutters so the long-form text never runs against
   the viewport edge on phones. */
section > .prose {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.prose p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 24px;
}
.prose .pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.25;
  color: var(--ink);
  text-align: center;
  padding: 40px 0;
  margin: 24px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.prose .signature {
  display: block;
  width: clamp(140px, 18vw, 200px);
  height: auto;
  margin: 56px 0 24px;
  user-select: none;
  -webkit-user-drag: none;
}

/* ----------------------- Discover row ----------------------- */
.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

/* ----------------------- Palette grid ----------------------- */
/* The nine vulcanized colors on the Craftsmanship page. Three across
   on desktop, two on phones, one on the narrowest devices so the
   color name never gets clipped by the viewport edge. */
.palette-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 700px) {
  .palette-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 430px) {
  .palette-grid { grid-template-columns: 1fr; }
}

/* ----------------------- Responsive ----------------------- */
@media (max-width: 980px) {
  .split, .pdp { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .pdp-info { position: static; }

  .press-quotes,
  .slabs,
  .discover-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .brand { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .split,
  .split.reverse {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
  }
  .split .split-media,
  .split.reverse .split-media {
    order: 0;
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    aspect-ratio: 4 / 3;
  }
  .split .split-body,
  .split.reverse .split-body {
    order: 1;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    padding-block: 0;
  }
  .split-body p {
    max-width: none;
    margin-inline: auto;
  }
  .split-body .actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .collection-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-figure { aspect-ratio: 4 / 5; }

  .nav-grid {
    padding: 14px var(--gutter) 14px;
    gap: 12px;
    align-items: center;
  }
  .nav-left, .nav-right { padding-top: 0; }
  .nav-toggle { margin-top: 0; }
  .nav-right { gap: 18px; }
  .nav-link { font-size: 10px; letter-spacing: 0.16em; }

  .wordmark { gap: 0; }
  .wordmark .crest {
    width: clamp(108px, 26vw, 132px);
    margin-bottom: 0;
  }
  .wordmark .mark,
  .wordmark .sub { display: none; }

  /* Homepage on phones: the giant crest hero is hidden below, so
     the small eye crest takes its place in the nav as the maison's
     mark. The typeset wordmark steps aside on this size. */
  .wordmark.wordmark-home .crest { display: block; }
  .wordmark.wordmark-home .mark,
  .wordmark.wordmark-home .sub { display: none; }

  /* Announcement bar: long sentence wraps to two lines on phones,
     looks gentler than a single squashed strip. */
  .announce {
    font-size: 10px;
    letter-spacing: 0.14em;
    line-height: 1.45;
    padding: 9px var(--gutter);
  }
}

/* ----------------------- Mobile menu ----------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 80;
  padding: 96px var(--gutter) 48px;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  overflow: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu .close {
  position: absolute;
  top: 22px; right: var(--gutter);
  width: 22px; height: 22px;
  color: var(--ink);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 6vw, 44px);
  color: var(--ink);
}

/* ----------------------- Overlay scrim (shared) ----------------------- */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 90;
}
.scrim.is-open { opacity: 1; pointer-events: auto; }

body.is-locked { overflow: hidden; }

/* ----------------------- Search overlay ----------------------- */
.search-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 100;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.search-overlay.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.search-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--gutter);
  border-bottom: 1px solid var(--hairline-2);
}
.search-overlay-top .mark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding-left: 0.32em;
}
.search-overlay-close {
  width: 22px; height: 22px;
  color: var(--ink);
}
.search-overlay-close svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}

.search-overlay-body {
  flex: 1;
  overflow-y: auto;
  padding: clamp(48px, 8vw, 96px) var(--gutter) clamp(48px, 6vw, 80px);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.search-input-wrap {
  position: relative;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.search-input-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.4;
  flex-shrink: 0;
}
.search-input-wrap input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.005em;
  color: var(--ink);
  padding: 8px 0;
}
.search-input-wrap input::placeholder {
  color: var(--mute-2);
  font-style: italic;
}

.search-results {
  margin-top: clamp(40px, 5vw, 64px);
}
.search-results-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 24px;
}
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.search-result {
  display: block;
  color: inherit;
}
.search-result .frame {
  aspect-ratio: 1 / 1;
  background: var(--ivory);
  overflow: hidden;
  margin-bottom: 16px;
}
.search-result .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.search-result:hover .frame img { transform: scale(1.04); }
.search-result .name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 4px;
}
.search-result .price {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--mute);
}

.search-empty {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--mute);
  padding: 32px 0;
}

@media (max-width: 800px) {
  .search-results-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ----------------------- Bag drawer ----------------------- */
.bag-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100%);
  background: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(26, 23, 20, 0.06);
}
.bag-drawer.is-open { transform: translateX(0); }

.bag-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--hairline-2);
}
.bag-head .title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 24px;
}
.bag-head .count {
  color: var(--mute);
  font-size: 14px;
  font-style: italic;
}
.bag-close {
  width: 22px; height: 22px;
  color: var(--ink);
}
.bag-close svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}

.bag-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 28px;
}
.bag-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline-2);
}
.bag-item .frame {
  aspect-ratio: 1 / 1;
  background: var(--ivory);
  overflow: hidden;
}
.bag-item .frame img { width: 100%; height: 100%; object-fit: cover; }
.bag-item .body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bag-item .name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.2;
  margin: 0;
}
.bag-item .config {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.bag-item .price {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  margin-top: auto;
}
.bag-item .controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.bag-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--hairline);
}
.bag-qty button {
  width: 30px;
  height: 30px;
  font-size: 14px;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ink);
}
.bag-qty button:hover { background: var(--ivory); }
.bag-qty .n {
  width: 30px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.bag-remove {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bag-remove:hover { color: var(--ink); }

.bag-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  gap: 18px;
}
.bag-empty .ico {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mute);
}
.bag-empty .ico svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.2; }
.bag-empty p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--mute);
  margin: 0;
}

.bag-foot {
  border-top: 1px solid var(--hairline-2);
  padding: 22px 28px 28px;
  background: var(--cream);
}
.bag-totals {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.bag-totals .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.bag-totals .value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
}
.bag-fineprint {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--mute);
  margin-bottom: 18px;
}
.bag-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bag-cta .btn { width: 100%; padding: 16px; }

/* Toast for "Added to bag" */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  z-index: 110;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
  .bag-item { grid-template-columns: 76px 1fr; gap: 14px; }
  .bag-list, .bag-head, .bag-foot { padding-left: 20px; padding-right: 20px; }
}
