:root {
  --bg: #0c0b0a;
  --bg-elevated: #161412;
  --bg-soft: #1c1916;
  --ink: #f4efe6;
  --ink-muted: #b7aea0;
  /* Softened from logo yellow #fec409 for a quieter luxury accent */
  --gold: #d4a80e;
  --gold-bright: #fec409;
  --gold-soft: rgba(254, 196, 9, 0.12);
  --line: rgba(244, 239, 230, 0.12);
  --radius: 2px;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 72rem;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -15%, var(--gold-soft), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 20%, rgba(255, 255, 255, 0.025), transparent 50%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(12, 11, 10, 0.78);
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.85;
}

.brand-logo {
  width: auto;
  height: 2.35rem;
  object-fit: contain;
}

@media (min-width: 760px) {
  .brand-logo {
    height: 2.65rem;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.28rem auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold-bright);
  color: #0c0b0a;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffd126;
}

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

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 48rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, 0.2) 0%, rgba(12, 11, 10, 0.78) 58%, var(--bg) 100%),
    radial-gradient(circle at 68% 18%, rgba(254, 196, 9, 0.14), transparent 42%),
    linear-gradient(135deg, #141210 0%, #0c0b0a 48%, #1a160f 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 3px
    );
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  right: -6%;
  top: 12%;
  width: min(48vw, 26rem);
  opacity: 0.045;
  color: var(--gold-bright);
  pointer-events: none;
  z-index: 0;
}

.hero-watermark img {
  width: 100%;
  height: auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 14vh, 9rem) 0 clamp(3.5rem, 8vh, 5.5rem);
}

.hero-logo-wrap {
  margin: 0;
  animation: rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-logo {
  width: min(100%, 26rem);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

@media (min-width: 860px) {
  .hero-logo {
    width: min(100%, 34rem);
  }
}

.hero-lead {
  margin: 1.5rem 0 0;
  max-width: 26rem;
  color: #d9d1c3;
  font-size: clamp(1rem, 2vw, 1.12rem);
  letter-spacing: 0.01em;
  animation: rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.hero--photo::before {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, 0.32) 0%, rgba(12, 11, 10, 0.74) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(12, 11, 10, 0.62) 0%, transparent 48%);
}

.hero--photo::after {
  z-index: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero--photo .hero-watermark {
  opacity: 0.028;
  z-index: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section-label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-copy {
  margin: 1.25rem 0 0;
  max-width: 38rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.section-copy + .section-copy {
  margin-top: 1rem;
}

.product-marquee {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(196, 164, 106, 0.04), transparent 40%),
    var(--bg-elevated);
  color: var(--ink);
  overflow: hidden;
}

.product-marquee-viewport {
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}

.product-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(2.75rem, 5vw, 4.25rem);
  padding-right: clamp(2.75rem, 5vw, 4.25rem);
  animation: product-marquee-scroll 60s linear infinite;
}

.product-marquee-viewport:hover .product-marquee-track {
  animation-play-state: paused;
}

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

.product-marquee-item {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.product-marquee-item:hover,
.product-marquee-item:focus-visible {
  opacity: 0.78;
}

.product-marquee-photo {
  width: clamp(5rem, 9vw, 6.25rem);
  height: clamp(5rem, 9vw, 6.25rem);
  margin: 0;
  display: grid;
  place-items: center;
  background: #f6f4ef;
  border: 1px solid var(--line);
  overflow: hidden;
  flex-shrink: 0;
}

.product-marquee-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.4rem;
}

.product-marquee-photo .product-sil {
  width: 55%;
  color: rgba(12, 11, 10, 0.2);
}

.product-marquee-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-marquee-name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.12;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.product-marquee-price {
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .product-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    padding-inline: var(--space);
  }

  .product-marquee-viewport {
    mask-image: none;
  }
}

.collection-band {
  position: relative;
  padding: clamp(4.5rem, 12vw, 8rem) 0;
  text-align: center;
  background:
    linear-gradient(180deg, transparent, rgba(196, 164, 106, 0.05), transparent),
    var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.collection-band .section-title {
  max-width: 16ch;
  margin-inline: auto;
}

.collection-band .section-copy {
  margin-inline: auto;
}

.collection-band .btn {
  margin-top: 2rem;
}

.collection-band--split {
  text-align: left;
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.collection-band-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .collection-band-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

.collection-band-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  max-height: 36rem;
}

.collection-band-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.collection-band--split .section-title,
.collection-band--split .section-copy {
  margin-inline: 0;
}

.collection-band--split .section-title {
  max-width: 14ch;
}

.collection-band-copy .btn {
  margin-top: 2rem;
}

.editorial-strip {
  border-top: 1px solid var(--line);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.editorial-intro {
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.editorial-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .editorial-grid {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: stretch;
    gap: 0.75rem;
  }

  .editorial-shot--lead,
  .editorial-shot:not(.editorial-shot--lead) {
    min-height: clamp(18rem, 38vw, 26rem);
  }
}

.editorial-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  min-height: 16rem;
}

@media (min-width: 720px) {
  .editorial-shot {
    min-height: 0;
    height: 100%;
  }

  .editorial-shot:not(.editorial-shot--lead) {
    aspect-ratio: 4 / 3;
  }
}

.editorial-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-shot:hover img {
  transform: scale(1.025);
}

.shop-header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  gap: 1.5rem;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-media {
  display: block;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(160deg, var(--bg-soft), #0f0e0c 70%),
    var(--bg-elevated);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
  width: 100%;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}

.product:hover .product-media,
.product:focus-within .product-media {
  border-color: rgba(196, 164, 106, 0.45);
  transform: translateY(-4px);
}

.product-media-inner {
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(244, 239, 230, 0.22);
  transition: color 0.25s ease, transform 0.35s ease;
}

.product:hover .product-media-inner {
  color: rgba(196, 164, 106, 0.55);
  transform: scale(1.04);
}

.product-sil {
  width: min(58%, 8.5rem);
  height: auto;
}

.product-sil--kids {
  width: min(48%, 7rem);
}

.product[data-kind="donation"] .product-media {
  background:
    radial-gradient(circle at 50% 40%, var(--gold-soft), transparent 55%),
    linear-gradient(160deg, var(--bg-soft), #0f0e0c 70%);
}

.product[data-kind="donation"] .product-photo--lifestyle {
  object-position: center 32%;
  background: transparent;
}

.product[data-kind="donation"]:has(.product-photo--lifestyle) .product-media {
  background: var(--bg-elevated);
}

.product[data-kind="donation"]:has(.product-photo--lifestyle) .product-media-inner {
  color: inherit;
}

.product-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
}

.product-desc {
  margin: 0.45rem 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-price {
  margin: 0.55rem 0 0.9rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.site-nav a[aria-current="page"] {
  color: var(--gold-bright);
}

.page-hero {
  padding: clamp(4rem, 10vw, 6.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}

.page-hero .section-title {
  max-width: 16ch;
}

.page-hero--photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(18rem, 44vw, 28rem);
  padding: 0;
}

.page-hero--photo .wrap {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 6.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
}

.page-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.page-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, 0.15) 0%, rgba(12, 11, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(12, 11, 10, 0.5) 0%, transparent 55%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.keyword-chip {
  border: 1px solid var(--line);
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin: 2.5rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
}

.prose h3 {
  margin: 1.75rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.prose p,
.prose li {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.prose ul {
  padding-left: 1.2rem;
}

.prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.prose a.btn {
  text-decoration: none;
}

.prose a.btn-primary {
  color: #0c0b0a;
}

.prose a.btn-primary:hover,
.prose a.btn-primary:focus-visible {
  color: #0c0b0a;
}

.prose a.btn-ghost {
  color: var(--ink);
}

.prose a.btn-ghost:hover,
.prose a.btn-ghost:focus-visible {
  color: var(--gold-bright);
}

.seo-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  margin-top: 2rem;
}

.seo-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.4rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.seo-card:hover {
  border-color: rgba(196, 164, 106, 0.45);
  transform: translateY(-2px);
}

.seo-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.seo-card p {
  margin: 0;
  color: var(--ink-muted);
  flex: 1;
}

.geo-panel {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 0%, var(--gold-soft), transparent 50%),
    var(--bg-elevated);
}

.geo-panel h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.geo-panel p {
  margin: 0;
  color: var(--ink-muted);
}

.footer-sitemap {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.footer-sitemap h3 {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-sitemap a {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.footer-sitemap a:hover {
  color: var(--ink);
}

.cta-band {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Visual / photo pages ---------- */
.visual-hero {
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.visual-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .visual-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.visual-hero-copy .section-title {
  max-width: 10ch;
}

.visual-hero-shot {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.visual-hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-tight {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.photo-grid img[src*="products/"] {
  object-fit: contain;
  background: #f6f4ef;
  padding: 0.5rem;
}

.visual-caption {
  margin: 1.5rem 0 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.85rem;
  background: #f6f4ef;
}

.product-photo--lifestyle {
  object-fit: cover;
  padding: 0;
}

.product-flip {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-flip-front,
.product-flip-back {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.85rem;
  background: #f6f4ef;
  transition: opacity 0.3s ease;
}

.product-flip-back {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-media:hover .product-flip-front,
.product-modal-media:hover .product-flip-front {
  opacity: 0;
}

.product-media:hover .product-flip-back,
.product-modal-media:hover .product-flip-back {
  opacity: 1;
}

.product-flip--modal .product-flip-front,
.product-flip--modal .product-flip-back {
  max-height: 28rem;
}

.product-modal-media-wrap {
  position: relative;
}

.product-modal-media {
  background: #f6f4ef;
  min-height: 16rem;
  display: grid;
  place-items: center;
}

.product-modal-hint {
  margin: 0.65rem 0 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.product-name-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.product-name-btn:hover {
  color: var(--gold-bright);
}

.product-colours {
  margin: 0.35rem 0 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.product-donation-note {
  margin: 0.35rem 0 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 22ch;
}

.product-card-swatches {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.color-swatch {
  --swatch: #7a7a7a;
  width: 1.35rem;
  height: 1.35rem;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--swatch);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.color-swatch--sm {
  width: 0.85rem;
  height: 0.85rem;
  border-width: 1px;
}

.color-swatch--card {
  cursor: pointer;
}

.color-swatch--card.is-selected {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.color-swatch--sm.color-swatch--card {
  cursor: pointer;
}

.color-swatch.is-selected {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.color-swatch-more {
  color: var(--ink-muted);
  font-size: 0.75rem;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.shop-filter {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-muted);
  font: inherit;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.shop-filter.is-active,
.shop-filter:hover {
  border-color: var(--gold-bright);
  color: var(--ink);
}

.field-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.size-option {
  min-width: 2.6rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.size-option.is-selected,
.size-option:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.qty-input {
  width: 5rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
}

.product-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-modal-feedback {
  min-height: 1.25rem;
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.9rem;
}

.product-modal-form .color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.25rem;
}

.design-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.25rem;
}

.design-option {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: inherit;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.design-option img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.design-option span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.design-option.is-selected,
.design-option:hover {
  border-color: var(--gold);
}

.design-option.is-selected {
  box-shadow: inset 0 0 0 1px var(--gold);
}

.product-cta {
  margin-top: auto;
  align-self: start;
  min-height: 2.6rem;
  padding-inline: 1rem;
}

.team-section {
  border-top: 1px solid var(--line);
  background: var(--bg-elevated);
}

.team-founder {
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.team-founder .section-title {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 16ch;
}

.team-founder-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.team-founder-copy {
  max-width: 38rem;
}

.team-founder-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: var(--bg);
  width: min(100%, 22rem);
  margin-inline: auto;
}

.team-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

@media (min-width: 720px) {
  .team-founder-grid {
    grid-template-columns: minmax(0, 1fr) clamp(16rem, 34vw, 24rem);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .team-founder-photo {
    width: 100%;
    margin-inline: 0;
    justify-self: end;
  }
}

@media (min-width: 1024px) {
  .team-founder-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 28rem);
  }
}

.team-header {
  margin-bottom: 2rem;
}

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

.team-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  grid-template-columns: 1fr;
  justify-items: center;
}

.team-card {
  width: 100%;
  max-width: 17.5rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 560px) {
  .team-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-items: stretch;
  }

  .team-card {
    max-width: none;
  }

  .team-card:nth-child(1) {
    grid-column: 1 / 3;
  }

  .team-card:nth-child(2) {
    grid-column: 3 / 5;
  }

  .team-card:nth-child(3) {
    grid-column: 5 / 7;
  }

  .team-card:nth-child(4) {
    grid-column: 2 / 4;
  }

  .team-card:nth-child(5) {
    grid-column: 4 / 6;
  }
}

.team-card-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  background: var(--bg);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.65rem;
}

.team-card p {
  margin: 0 0 0.65rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.team-fun {
  font-size: 0.88rem !important;
  font-style: italic;
  color: var(--ink-soft) !important;
}

.cart-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.5rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.cart-icon::before {
  content: "";
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0 auto;
  border: 1.5px solid currentColor;
  border-radius: 0 0 3px 3px;
  box-shadow: inset 0 -4px 0 -1px currentColor;
}

.cart-count {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--gold-bright);
  color: #111;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.1rem;
  text-align: center;
}

.cart-count[hidden] {
  display: none;
}

.product-modal-root[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.product-modal-root {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.product-modal {
  position: relative;
  z-index: 1;
  width: min(56rem, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  overflow: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.product-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.product-modal-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .product-modal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.product-modal-media {
  background: #f6f4ef;
  min-height: 16rem;
  display: grid;
  place-items: center;
}

.product-modal-media img {
  width: 100%;
  max-height: 28rem;
  object-fit: contain;
}

.product-modal-body {
  padding: 1.5rem 1.5rem 2rem;
}

.product-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.product-modal-price {
  margin: 0 0 1.25rem;
  color: var(--gold-bright);
  font-weight: 500;
}

.product-modal-form {
  display: grid;
  gap: 1rem;
}

.checkout-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .checkout-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.checkout-summary,
.checkout-form {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  padding: 1.5rem;
}

.checkout-summary h2,
.checkout-form h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.checkout-line-meta {
  margin: 0.25rem 0 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.checkout-note,
.checkout-fine {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.checkout-error {
  color: #f2a3a3;
  font-size: 0.92rem;
  min-height: 1.25rem;
}

.checkout-pay {
  width: 100%;
}

.checkout-empty a {
  color: var(--gold-bright);
}

.purpose {
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.purpose-inner {
  max-width: 42rem;
}

.purpose--photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.purpose-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.purpose-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.purpose--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    rgba(12, 11, 10, 0.9) 40%,
    rgba(12, 11, 10, 0.5) 100%
  );
}

@media (min-width: 860px) {
  .purpose--photo::before {
    background: linear-gradient(
      90deg,
      var(--bg) 0%,
      rgba(12, 11, 10, 0.94) 34%,
      rgba(12, 11, 10, 0.48) 68%,
      rgba(12, 11, 10, 0.18) 100%
    );
  }
}

.purpose--photo .purpose-inner {
  position: relative;
  z-index: 1;
}

.contact {
  border-bottom: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    grid-template-rows: auto auto;
    gap: 2.5rem 4rem;
    align-items: start;
  }

  .contact-photo {
    grid-row: 1 / -1;
    aspect-ratio: auto;
    align-self: stretch;
  }
}

.contact-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.contact-feedback {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.contact-feedback.is-success {
  color: #b7d7a8;
}

.contact-feedback.is-error {
  color: #f2a3a3;
}

.contact-form .btn:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.site-footer {
  padding: 2.5rem 0 3rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  transition: opacity 0.25s ease;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  opacity: 0.85;
}

.footer-logo {
  width: auto;
  height: 3.25rem;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1.25rem;
    background: rgba(12, 11, 10, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .site-header-inner {
    position: relative;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-logo-wrap,
  .hero-lead,
  .hero-actions,
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
