/* ---------- Fonts ---------- */
@font-face {
  font-family: "Creato Display";
  src: url("fonts/CreatoDisplay-Light.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("fonts/CreatoDisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("fonts/CreatoDisplay-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Creato Display";
  src: url("fonts/CreatoDisplay-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #f1f1f0;
  --bg-bar: #ededec;
  --ink: #2a2a2a;
  --ink-soft: #6f6f6d;
  --line: rgba(0, 0, 0, 0.12);
  --teal-top: #7c9499;
  --teal-bot: #ced4d2;
  --sans: "Creato Display", -apple-system, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 26px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px var(--pad);
  /* frosted "liquid glass" — translucent, blurred, slightly textured */
  background: linear-gradient(
    180deg,
    rgba(247, 247, 246, 0.62) 0%,
    rgba(238, 238, 236, 0.5) 100%
  );
  -webkit-backdrop-filter: blur(18px) saturate(160%) brightness(1.04);
  backdrop-filter: blur(18px) saturate(160%) brightness(1.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 1px 14px rgba(0, 0, 0, 0.06);
}
/* grain / roughness overlay */
.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}
.topbar .brand {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  /* hidden at the top of the page — revealed on scroll */
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.45s ease, transform 0.45s ease, max-width 0.45s ease, margin-right 0.45s ease;
  max-width: 0;
  margin-right: 0;
  overflow: hidden;
  white-space: nowrap;
}
.topbar.scrolled .brand {
  opacity: 1;
  transform: translateY(0);
  max-width: 160px;
  margin-right: 0;
}
.topbar nav {
  display: flex;
  gap: 18px;
}
.topbar nav a,
.topbar .menu {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.topbar nav a:hover,
.topbar .menu:hover { color: var(--ink); }
.topbar .menu {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---------- Glass menu ---------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(96px, 14vh, 160px) var(--pad) clamp(32px, 5vw, 56px);
  /* frosted glass — same language as the top bar, heavier */
  background: linear-gradient(
    180deg,
    rgba(244, 244, 243, 0.55) 0%,
    rgba(232, 234, 233, 0.45) 100%
  );
  -webkit-backdrop-filter: blur(28px) saturate(160%) brightness(1.03);
  backdrop-filter: blur(28px) saturate(160%) brightness(1.03);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0s linear 0.5s;
}
.menu-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}
body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0s linear 0s;
}
body.menu-open { overflow: hidden; }

.menu-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1vw, 12px);
}
.menu-nav a {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 2vw, 28px);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.35s ease;
}
.menu-nav a .i {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  transform: translateY(-0.6em);
}
.menu-nav:hover a { opacity: 0.4; }
.menu-nav a:hover { opacity: 1; transform: translateX(20px); }

.menu-foot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 6vw, 80px);
  border-top: 1px solid var(--line);
  padding-top: clamp(20px, 3vw, 32px);
}
.menu-foot-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-foot-col span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.menu-foot-col a {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 300;
}
.menu-foot-col a:hover { color: var(--ink-soft); }

/* keep the toggle above the overlay */
.topbar { isolation: isolate; }

/* ---------- Hero (one-shot intro reveal) ---------- */
.hero {
  position: relative;
  height: 100vh;
}
.hero-sticky {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 6vw, 64px) var(--pad) var(--pad);
  overflow: hidden;
}

.wordmark {
  font-weight: 400;
  font-size: clamp(72px, 19vw, 280px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: clamp(18px, 3vw, 34px);
  transform-origin: left top;
  overflow: hidden;
  flex: none;
  will-change: max-height, opacity, transform;
  /* start/end values for the collapse are driven inline by JS */
  transition:
    max-height 0.95s cubic-bezier(0.72, 0, 0.18, 1),
    margin-bottom 0.95s cubic-bezier(0.72, 0, 0.18, 1),
    opacity 0.6s ease,
    transform 0.95s cubic-bezier(0.72, 0, 0.18, 1);
}
/* brief scroll lock while the intro plays */
body.intro-lock { overflow: hidden; }

.hero-card {
  position: relative;
  /* transparent container — fills the space the wordmark frees up */
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: stretch;
  gap: clamp(14px, 1.6vw, 24px);
}

/* two beveled panels: text (left) + product (right) */
.hero-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, var(--teal-top) 0%, #93a6a8 38%, #b6bfbd 70%, var(--teal-bot) 100%);
}
.hero-panel--text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center; /* text vertically centred again */
}
.hero-panel--media {
  flex: none;
  width: clamp(280px, 42%, 640px);
  display: block;
  text-decoration: none;
}
.hero-panel--media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-intro {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 52px);
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 22px;
}
.hero-sub {
  margin-top: clamp(14px, 2vw, 22px);
  max-width: 46ch;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  /* revealed as part of the intro animation, after the card rises */
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.7s ease 0.45s,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.45s;
}
.hero.played .hero-sub,
.hero.played .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

/* CTA + product inside the hero card */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: clamp(20px, 3vw, 32px);
  /* revealed together with the sub-text */
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.7s ease 0.55s,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.55s;
}
.hero-cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.hero-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}

.hero-product {
  flex: none;
  align-self: stretch;
  width: clamp(220px, 36%, 560px);
}
.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 760px) {
  /* un-pin the hero on mobile so nothing gets clipped by the 100vh sticky */
  .hero { height: auto; }
  .hero-sticky {
    position: static;
    height: auto;
    overflow: visible;
    padding: clamp(20px, 6vw, 40px) var(--pad) var(--pad);
  }
  /* stack the two panels, both full width */
  .hero-card {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-panel--text { flex: 0 0 auto; }
  .hero-panel--media {
    flex: 0 0 auto;
    width: 100%;
    height: clamp(260px, 62vw, 360px);
  }
}
.hero-label span {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 34px);
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.hero-label .rule {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

/* ---------- Intro / about ---------- */
.intro {
  padding: clamp(72px, 12vw, 160px) var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1500px;
  margin: 0 auto;
}
.intro .eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.12;
  max-width: 18ch;
}
.intro h2 em { font-style: italic; }
.intro p {
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
}

/* ---------- Index ---------- */
.index {
  position: relative;
  padding: 0 var(--pad) clamp(72px, 12vw, 140px);
  max-width: 1500px;
  margin: 0 auto;
}
.index .section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(8px, 1.5vw, 18px);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.index .section-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 40px);
}
.index .section-head a {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
}
.index .section-head a:hover { color: var(--ink); }

.index-list {
  list-style: none;
}
.index-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: baseline;
  gap: clamp(16px, 4vw, 64px);
  padding: clamp(18px, 2.6vw, 30px) 4px;
  border-top: 1px solid var(--line);
  cursor: pointer;
  color: var(--ink);
  transition: color 0.35s ease, opacity 0.35s ease;
}
.index-row:last-child { border-bottom: 1px solid var(--line); }

.index-row .num {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.index-row .title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.index-row .desc {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 300;
  justify-self: end;
  text-align: right;
}
.index-row .price {
  font-size: 14px;
  justify-self: end;
  min-width: 48px;
  text-align: right;
}

/* dim the other rows while one is hovered, lift the active one */
.index-list:hover .index-row { opacity: 0.4; }
.index-list:hover .index-row:hover { opacity: 1; }
.index-row:hover .title { transform: translateX(18px); }

/* cursor-following image preview */
.index-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: clamp(220px, 22vw, 340px);
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  will-change: transform, opacity;
}
.index-preview.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.index-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (hover: none) {
  /* touch devices: no cursor preview — keep list usable */
  .index-list:hover .index-row { opacity: 1; }
  .index-row:hover .title { transform: none; }
  .index-preview { display: none; }
}

/* ---------- Product page ---------- */
.product {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 88px);
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(12px, 2vw, 28px) var(--pad) clamp(72px, 12vw, 140px);
}
.product-media {
  position: sticky;
  top: 84px;
  aspect-ratio: 4 / 5;
}

/* swipeable gallery — each slide is its own box that slides in/out */
.gallery {
  display: flex;
  height: 100%;
  gap: clamp(10px, 1.5vw, 16px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;          /* Firefox */
  cursor: grab;
}
.gallery::-webkit-scrollbar { display: none; } /* WebKit */
.slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, var(--teal-top) 0%, #9aacae 45%, #c4ccca 100%);
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; /* let drag work over the image */
  -webkit-user-drag: none;
  user-select: none;
}

/* progress-bar indicator */
.gallery-bar {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 2.4vw, 22px);
  transform: translateX(-50%);
  width: clamp(72px, 28%, 130px);
  height: 4px;
  border-radius: 99px;
  background: rgba(20, 28, 30, 0.22);
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.gallery-bar-fill {
  display: block;
  height: 100%;
  width: 33.333%;
  background: rgba(20, 28, 30, 0.8);
  border-radius: 99px;
  transition: transform 0.2s ease;
}

.product-info {
  padding-top: clamp(6px, 2vw, 28px);
}
.product-info .back {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  display: inline-block;
  margin-bottom: clamp(24px, 5vw, 56px);
}
.product-info .back:hover { color: var(--ink); }
.product-info .eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 14px;
}
.product-info h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.product-info .price {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: clamp(24px, 4vw, 40px);
}
.product-info .lead {
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.product-buy {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.product-buy .add {
  position: relative;
  flex: 1 1 auto;
  min-width: 200px;
  padding: 16px 26px;
  border-radius: 999px;
  /* frosted grey "liquid glass" */
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(
    180deg,
    rgba(60, 66, 66, 0.55) 0%,
    rgba(40, 44, 44, 0.62) 100%
  );
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 6px 20px rgba(0, 0, 0, 0.18);
  color: #fff;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-buy .add::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}
.product-buy .add span,
.product-buy .add { position: relative; }
.product-buy .add:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 10px 26px rgba(0, 0, 0, 0.22);
}
.product-buy .save {
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.product-buy .save:hover { border-color: var(--ink); }

.product-specs {
  border-top: 1px solid var(--line);
}
.product-specs .row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  padding: clamp(16px, 2vw, 22px) 2px;
  border-bottom: 1px solid var(--line);
}
.product-specs .row dt {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.product-specs .row dd {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink);
}

@media (max-width: 860px) {
  .product { grid-template-columns: 1fr; }
  .product-media { position: relative; top: 0; }
}

/* ---------- Shop grid ---------- */
.shop {
  padding: 0 var(--pad) clamp(72px, 12vw, 140px);
  max-width: 1500px;
  margin: 0 auto;
}
.shop .section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.shop .section-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 40px);
}
.shop .section-head a {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
}
.shop .section-head a:hover { color: var(--ink); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(14px, 1.8vw, 28px);
}
.card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card .thumb {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--teal-top) 0%, var(--teal-bot) 100%);
  aspect-ratio: 4 / 5;
}
.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card:hover .thumb img { transform: scale(1.04); }
.card .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 16px 4px 0;
}
.card .meta .name {
  font-size: 15px;
  font-weight: 500;
}
.card .meta .sub {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 300;
}
.card .meta .price {
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
}

/* ---------- CTA band ---------- */
.cta {
  margin: 0 var(--pad) clamp(40px, 6vw, 80px);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--teal-top) 0%, #b3bdbb 100%);
  padding: clamp(48px, 9vw, 120px) clamp(24px, 5vw, 80px);
  text-align: center;
  color: #fff;
}
.cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 28px;
}
.cta form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.cta input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}
.cta input::placeholder { color: rgba(255, 255, 255, 0.75); }
.cta input:focus { outline: none; border-color: #fff; }
.cta button {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.cta button:hover { opacity: 0.85; }

/* ---------- Footer ---------- */
.footer {
  /* inset, rounded card — same language as the hero / cta blocks */
  margin: 0 var(--pad) var(--pad);
  border-radius: var(--radius);
  background: #e6e7e6;
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px) clamp(20px, 2.5vw, 34px);
  overflow: hidden;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-end;
}
.footer .mark {
  font-weight: 700;
  font-size: clamp(72px, 21vw, 320px);
  letter-spacing: -0.035em;
  line-height: 0.86;
  margin-top: clamp(24px, 5vw, 80px);
}
.footer .cols {
  display: flex;
  gap: clamp(32px, 6vw, 96px);
  flex-wrap: wrap;
}
.footer .col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer .col a {
  display: block;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 9px;
  font-weight: 300;
}
.footer .col a:hover { color: var(--ink-soft); }
.footer .legal {
  width: 100%;
  font-size: 12px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .topbar nav { gap: 14px; }
  .index-row {
    grid-template-columns: 36px 1fr auto;
    gap: 14px;
  }
  .index-row .desc { display: none; }
  /* shrink the footer wordmark so it fits the narrow card (no clipping) */
  .footer .mark { font-size: clamp(38px, 14vw, 88px); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* no intro animation — wordmark rests, sub-text shows immediately */
  .wordmark {
    max-height: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-sub,
  .hero-actions {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* drop the cursor-trailing preview and other motion flourishes */
  .index-preview { display: none !important; }
  .index-row .title,
  .menu-nav a,
  .card .thumb img,
  .index-preview {
    transition: none !important;
    transform: none !important;
  }
}
