/* Core palette */
/**/
@font-face {
  font-family: "Eracake";
  src: url("../fonts/eracake/Eracake.otf") format("opentype"),
       url("../fonts/eracake/Eracake.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f7f0e8; /*fdeded*/
  --sage: #a8b79d;
  --deep-sage: #8ea38c;
  --coffee: #4b2d2c;
  --caramel: #b68b68;
  --shadow: rgba(38, 32, 28, 0.14);
  --text: #2f2623;
  --muted: #5f504b;
  --white: #ffffff;
  --pink: #ffc6b7;
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.5), transparent 30%), var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: -100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.floating-circles {
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  mix-blend-mode: multiply;
}

.floating-circles .circle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  background: rgba(75, 45, 44, 0.14);
  border-radius: 50%;
  opacity: 0.9;
  filter: blur(0.4px);
  will-change: transform, opacity;
  transform: translate3d(var(--x, 0), var(--y, 0), 0) scale(var(--scale, 1));
  animation: bubble-fade 1.4s ease-out;
}

@keyframes bubble-fade {
  from { opacity: 0; }
  to { opacity: 0.9; }
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 0.6em;
  color: var(--coffee);
  letter-spacing: -0.01em;
}
h1{
  font-size: 2.8rem;
}
.font-eracake {
  font-family: "Eracake", "Playfair Display", serif;
}

p {
  margin: 0 0 1.2em;
  color: var(--muted);
}

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

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

ul {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--coffee);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(75, 45, 44, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: var(--coffee);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(43, 27, 24, 0.12);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--coffee);
  border-radius: 999px;
}

.nav-toggle-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(32, 22, 20, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 18;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  border-left: 1px solid rgba(75, 45, 44, 0.12);
  box-shadow: -20px 0 40px rgba(43, 27, 24, 0.18);
  padding: 1.6rem 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 19;
  backdrop-filter: blur(8px);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(75, 45, 44, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--coffee);
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.mobile-nav-links {
  display: grid;
  gap: 0.9rem;
  font-weight: 700;
  color: var(--coffee);
}

.mobile-nav-links a {
  padding: 0.6rem 0.2rem;
  border-bottom: 1px solid rgba(75, 45, 44, 0.08);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-scrim {
  opacity: 1;
  visibility: visible;
}

body.nav-open .mobile-nav {
  transform: translateX(0);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--coffee);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, var(--coffee), #2f1f1d);
  color: var(--cream);
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 15px 30px rgba(43, 27, 24, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.pill-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 25px 45px rgba(43, 27, 24, 0.25);
}

.pill-btn.ghost {
  background: rgba(75, 45, 44, 0.08);
  color: var(--coffee);
  border: 1px solid rgba(75, 45, 44, 0.15);
  box-shadow: none;
}

.pill-btn.sm {
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
}

main {
  padding-top: 5.5rem;
}

section {
  padding: 4.5rem 5vw;
}

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18% -20% -14% 35%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.5), transparent 40%), var(--sage);
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  z-index: 0;
}


.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--coffee);
  margin-bottom: 0.8rem;
}

.lede {
  font-size: 1.05rem;
  max-width: 30rem;
}

.lede.small {
  font-size: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.meta {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-weight: 600;
  flex-wrap: wrap;
}

.meta span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(75, 45, 44, 0.06);
}
.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.hero-circle {
  position: absolute;
  width: min(520px, 80vw);
  aspect-ratio: 1;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 42%), var(--sage);
  border-radius: 50%;
  box-shadow: 0 40px 90px rgba(75, 72, 60, 0.22);
}
.badge {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(64, 38, 34, 0.08);
  color: var(--coffee);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero-visual .candle {
  position: relative;
  width: min(360px, 70vw);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(45, 36, 30, 0.25);
}
.bubble-dot {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff6ea, #d6c2b2);
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
  animation: float 6s ease-in-out infinite;
}

.dot-1 { top: 14%; left: 18%; width: 70px; height: 70px; animation-delay: 0.2s; }
.dot-2 { top: 10%; right: 12%; width: 80px; height: 80px; animation-delay: 0.6s; }
.dot-3 { bottom: 8%; right: 30%; width: 110px; height: 110px; animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.bean {
  position: absolute;
  width: 90px;
  opacity: 0.9;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.18));
  animation: float 6s ease-in-out infinite;
}

.bean-1 { top: 12%; left: 56%; animation-delay: 0.2s; transform: rotate(-8deg); }
.bean-2 { top: 34%; left: 84%; animation-delay: 0.6s; width: 70px; transform: rotate(12deg); }
.bean-3 { bottom: 18%; left: 70%; animation-delay: 1s; width: 80px; transform: rotate(-14deg); }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}

.panel {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(75, 45, 44, 0.08);
  border-radius: 28px;
  padding: 3.5rem 4rem;
  margin: 2rem 5vw;
  box-shadow: 0 20px 60px var(--shadow);
}

.panel.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.8rem;
}

.panel-text {
  max-width: 560px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  padding: 1.8rem;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(75, 45, 44, 0.08);
}

.tag {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 12px;
  background: rgba(166, 187, 154, 0.25);
  color: var(--coffee);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.products {
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(43, 27, 24, 0.08);
  border: 1px solid rgba(75, 45, 44, 0.08);
  display: flex;
  flex-direction: column;
}

.product-img {
  position: relative;
  padding: 1.2rem;
  background: linear-gradient(150deg, rgba(168, 183, 157, 0.5), rgba(247, 240, 232, 0.8));
}

.product-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: var(--coffee);
}

.notes {
  list-style: none;
  padding: 0;
}

.notes li {
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--muted);
}

.notes strong {
  color: var(--coffee);
  margin-right: 0.35rem;
}

.stack {
  display: grid;
  gap: 1rem;
}

.stack-card {
  background: var(--white);
  padding: 1.4rem 1.6rem;
  border-radius: 16px;
  border: 1px solid rgba(75, 45, 44, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}

.timeline {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.steps {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.3rem 1.6rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(75, 45, 44, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.step-num {
  font-weight: 800;
  color: var(--coffee);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.cta {
  padding: 4rem 5vw 5rem;
  text-align: center;
  background: linear-gradient(120deg, rgba(168, 183, 157, 0.4), rgba(247, 240, 232, 0.9));
}

.cta .cta-row {
  justify-content: center;
}

.site-footer {
  padding: 2.5rem 5vw 3rem;
  background: rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.site-footer > :not(.footer-wave) {
  position: relative;
  z-index: 1;
}

.footer-wave {
  position: absolute;
  left: -10%;
  right: -10%;
  top: -160px;
  height: 220px;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

.footnote {
  margin: 0;
  color: var(--muted);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header .pill-btn.ghost {
    display: none;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero::after {
    inset: 28% -20% -20% 10%;
  }

  .hero-visual {
    min-height: 380px;
  }

  .panel {
    padding: 3rem 1.6rem;
    margin: 1.5rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.4rem;
  }

  .hero::after {
    inset: 30% -10% -20% -10%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-wave {
    top: -140px;
    height: 200px;
  }
}
    body.experiment {
      scroll-snap-type: y mandatory;
      scroll-padding-top: 90px;
      background: linear-gradient(180deg, #f7f0e8 0%, #f3eadf 50%, #f7f0e8 100%);
    }

    body.experiment.no-snap {
      scroll-snap-type: none;
    }

    .art-section {
      position: relative;
      overflow: hidden;
    }

    .art-section > * {
      position: relative;
      z-index: 1;
    }

    .art-layer {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 0.6;
    }

    .art-layer svg {
      width: 100%;
      height: 100%;
    }

    .art-line {
      fill: none;
      stroke: rgba(75, 45, 44, 0.35);
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 520;
      stroke-dashoffset: 520;
      transition: stroke-dashoffset 1.6s ease;
    }

    .art-sparkle {
      fill: rgba(255, 198, 183, 0.65);
      transform-origin: center;
      opacity: 0;
      transform: scale(0.6);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .art-blob {
      fill: rgba(168, 183, 157, 0.32);
      opacity: 0.7;
    }

    .art-visible .art-line {
      stroke-dashoffset: 0;
    }

    .art-visible .art-sparkle {
      opacity: 1;
      transform: scale(1);
    }
    .section-head h2::after {
      content: "";
      display: block;
      width: 150px;
      height: 12px;
      margin-top: 0.6rem;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='16' viewBox='0 0 180 16'%3E%3Cpath d='M2 10 C 16 6, 30 6, 44 10 C 58 14, 72 14, 86 10 C 100 6, 114 6, 128 10 C 142 14, 156 14, 178 9' fill='none' stroke='%238ea38c' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-title::after {
      content: "";
      display: block;
      width: 180px;
      height: 12px;
      margin-top: 0.6rem;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='16' viewBox='0 0 180 16'%3E%3Cpath d='M2 10 C 16 6, 30 6, 44 10 C 58 14, 72 14, 86 10 C 100 6, 114 6, 128 10 C 142 14, 156 14, 178 9' fill='none' stroke='%238ea38c' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain;
    }

    #top .art-layer {
      opacity: 0.65;
    }

    #top .art-blob {
      fill: rgba(168, 183, 157, 0.45);
    }

    #top .art-line {
      stroke: rgba(75, 45, 44, 0.5);
      stroke-width: 2.6;
      stroke-dasharray: 900;
      stroke-dashoffset: 900;
    }

    #top .art-sparkle {
      fill: rgba(255, 198, 183, 0.7);
    }

    .logo.lockup {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #fff;
      display: grid;
      place-items: center;
      box-shadow: 0 10px 24px rgba(43, 27, 24, 0.2);
      border: 2px solid var(--coffee);
      overflow: hidden;
    }

    .logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.8);
      filter: drop-shadow(0 1px 0 rgba(75, 45, 44, 0.6));
    }

    .logo-text {
      font-family: "Eracake", "Playfair Display", serif;
      font-size: 1.05rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .scroll-stack {
      position: relative;
      z-index: 1;
    }

    .snap-section {
      min-height: 100vh;
      padding: clamp(5.5rem, 8vw, 7.2rem) clamp(6vw, 9vw, 9rem) 4rem;
      scroll-snap-align: start;
      position: relative;
    }

    .hero-snap {
      display: grid;
      align-items: center;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
    }

    .hero-title {
      margin-bottom: 0.3rem;
    }

    .hero-word {
      display: block;
      font-size: clamp(3rem, 7vw, 5.4rem);
      color: var(--coffee);
    }

    .hero-subtitle {
      display: block;
      font-size: clamp(1.5rem, 2.8vw, 2.4rem);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
    }

    .hero-brand {
      font-weight: 800;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--coffee);
      margin-bottom: 1.2rem;
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 1rem;
      margin-top: 1.8rem;
    }

    .hero-meta-card {
      padding: 1.1rem 1.3rem;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(75, 45, 44, 0.08);
      box-shadow: 0 16px 36px rgba(43, 27, 24, 0.08);
    }

    .hero-meta-card h3 {
      margin: 0 0 0.4rem;
      font-size: 1rem;
      color: var(--coffee);
    }

    .hero-art {
      display: grid;
      gap: 1.6rem;
      justify-items: center;
    }

    .hero-blob {
      position: relative;
      padding: clamp(2rem, 4vw, 3.4rem);
      border-radius: 52% 48% 42% 58% / 45% 60% 40% 55%;
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6), transparent 45%), var(--sage);
      box-shadow: 0 30px 60px rgba(75, 68, 60, 0.25);
      min-width: min(420px, 90vw);
    }

    .hero-blob::before {
      content: "";
      position: absolute;
      inset: 12px;
      border: 2px solid rgba(75, 45, 44, 0.35);
      border-radius: 50% 40% 55% 45% / 55% 45% 55% 45%;
      pointer-events: none;
    }

    .hero-blob-content {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .hero-blob-title {
      font-size: clamp(2.8rem, 6vw, 4.2rem);
      color: var(--coffee);
    }

    .hero-blob-sub {
      display: block;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 0.4rem;
    }

    .hero-blob-brand {
      display: inline-block;
      margin-top: 1.2rem;
      padding: 0.4rem 1rem;
      border-radius: 999px;
      background: rgba(75, 45, 44, 0.12);
      color: var(--coffee);
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .sparkle {
      position: absolute;
      width: 18px;
      height: 18px;
      background: var(--pink);
      clip-path: polygon(50% 0%, 60% 35%, 100% 50%, 60% 65%, 50% 100%, 40% 65%, 0% 50%, 40% 35%);
      opacity: 0.8;
    }

    .sparkle.sp-1 { top: 14%; left: 10%; }
    .sparkle.sp-2 { top: 22%; right: 14%; }
    .sparkle.sp-3 { bottom: 14%; right: 18%; }

    .bean-dot {
      position: absolute;
      width: 22px;
      height: 14px;
      border-radius: 999px;
      background: linear-gradient(120deg, #6a3d2f, #3f251d);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    }

    .bean-dot::after {
      content: "";
      position: absolute;
      inset: 3px 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.2);
      transform: rotate(-12deg);
    }

    .bean-1 { top: 10%; left: 30%; transform: rotate(-20deg); }
    .bean-2 { top: 20%; right: 22%; transform: rotate(18deg); }
    .bean-3 { bottom: 18%; left: 18%; transform: rotate(12deg); }

    .floating-card {
      width: min(360px, 86vw);
      background: rgba(255, 255, 255, 0.82);
      border-radius: 20px;
      padding: 1.4rem 1.6rem;
      border: 1px solid rgba(75, 45, 44, 0.12);
      box-shadow: 0 20px 40px rgba(43, 27, 24, 0.16);
    }

    .floating-card h3 {
      margin: 0.4rem 0;
      color: var(--coffee);
    }

    .card-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 0.8rem;
      color: var(--coffee);
      font-weight: 700;
    }

    .scroll-cue {
      position: absolute;
      bottom: 2.2rem;
      left: 50%;
      transform: translateX(-50%);
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-weight: 700;
      font-size: 0.8rem;
      color: var(--coffee);
    }

    .scroll-dot {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1.5px solid rgba(75, 45, 44, 0.5);
      display: grid;
      place-items: center;
    }

    .scroll-dot i {
      width: 8px;
      height: 8px;
      border-right: 2px solid var(--coffee);
      border-bottom: 2px solid var(--coffee);
      transform: rotate(45deg);
      margin-top: -2px;
      display: block;
    }

    .about {
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.6), rgba(168, 183, 157, 0.18));
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
      margin-top: 2rem;
    }

    .video-frame {
      background: rgba(255, 255, 255, 0.8);
      padding: 1.5rem;
      border-radius: 24px;
      border: 1px solid rgba(75, 45, 44, 0.12);
      box-shadow: 0 24px 50px rgba(43, 27, 24, 0.12);
    }

    .video-screen {
      position: relative;
      aspect-ratio: 16 / 9;
      border-radius: 18px;
      background: linear-gradient(140deg, #dcd3c8, #efe5da);
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .video-screen::before {
      content: "Video Placeholder";
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(75, 45, 44, 0.6);
    }

    .play-btn {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 2px solid var(--coffee);
      background: rgba(255, 255, 255, 0.85);
      display: grid;
      place-items: center;
      cursor: default;
    }

    .play-btn::after {
      content: "";
      border-style: solid;
      border-width: 12px 0 12px 18px;
      border-color: transparent transparent transparent var(--coffee);
      margin-left: 4px;
    }

    .video-caption {
      margin-top: 1rem;
      font-weight: 600;
      color: var(--muted);
    }

    .about-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .about-card {
      background: rgba(255, 255, 255, 0.75);
      padding: 1rem 1.1rem;
      border-radius: 16px;
      border: 1px solid rgba(75, 45, 44, 0.1);
    }

    .about-card h3 {
      margin: 0 0 0.3rem;
      color: var(--coffee);
      font-size: 1.1rem;
    }

    .menu {
      background: radial-gradient(circle at 20% 20%, rgba(168, 183, 157, 0.2), transparent 50%);
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.6rem;
      margin-top: 2.5rem;
    }

    .menu-card {
      background: rgba(255, 255, 255, 0.8);
      border-radius: 22px;
      padding: 1.6rem;
      border: 1px solid rgba(75, 45, 44, 0.12);
      box-shadow: 0 20px 40px rgba(43, 27, 24, 0.1);
      display: grid;
      gap: 1rem;
      grid-template-rows: auto auto 1fr auto auto;
    }

    .menu-art {
      border-radius: 18px;
      padding: 1rem;
      background: linear-gradient(140deg, rgba(168, 183, 157, 0.4), rgba(247, 240, 232, 0.7));
      min-height: 150px;
      display: grid;
      place-items: center;
      color: var(--coffee);
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .menu-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .menu-tags span {
      display: inline-flex;
      align-items: center;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      background: rgba(75, 45, 44, 0.08);
      color: var(--coffee);
      font-weight: 600;
      font-size: 0.8rem;
      line-height: 1;
      white-space: nowrap;
    }

    .menu-card .pill-btn.sm {
      justify-self: start;
      min-height: 38px;
      line-height: 1;
      width: 100%;
    }

    .ritual {
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(255, 198, 183, 0.25));
    }

    .visit {
      background: linear-gradient(130deg, rgba(168, 183, 157, 0.28), rgba(255, 255, 255, 0.6));
    }

    .visit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
    }

    .visit-card {
      background: rgba(255, 255, 255, 0.85);
      border-radius: 24px;
      padding: 2rem;
      border: 1px solid rgba(75, 45, 44, 0.12);
      box-shadow: 0 22px 50px rgba(43, 27, 24, 0.12);
    }

    .visit-list {
      display: grid;
      gap: 0.8rem;
      margin: 1.5rem 0;
      font-weight: 600;
      color: var(--muted);
    }

    .map-card {
      border-radius: 26px;
      padding: 1.4rem;
      background: linear-gradient(150deg, #f1e6da, #e1d2c2);
      min-height: 300px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(75, 45, 44, 0.1);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    }

    .map-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 20% 30%, rgba(75, 45, 44, 0.1) 0 2px, transparent 3px),
        radial-gradient(circle at 60% 50%, rgba(75, 45, 44, 0.15) 0 3px, transparent 4px),
        radial-gradient(circle at 80% 20%, rgba(75, 45, 44, 0.12) 0 2px, transparent 3px);
      opacity: 0.7;
    }

    .map-pin {
      position: absolute;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--coffee);
      top: 45%;
      left: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 0 10px rgba(75, 45, 44, 0.15);
    }

    .map-label {
      position: absolute;
      bottom: 1.4rem;
      left: 1.4rem;
      font-weight: 700;
      color: var(--coffee);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.75rem;
    }

    .finale {
      display: grid;
      align-content: center;
      gap: 3rem;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(168, 183, 157, 0.25));
    }

    .finale-card {
      max-width: 680px;
      margin: 0 auto;
      padding: 2.6rem;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(75, 45, 44, 0.12);
      box-shadow: 0 26px 50px rgba(43, 27, 24, 0.12);
      text-align: center;
    }

    .finale .site-footer {
      background: transparent;
      border-top: 1px solid rgba(75, 45, 44, 0.12);
      padding: 5.5rem 0 3rem;
    }

    .finale .site-footer .footer-wave {
      top: -170px;
      height: 230px;
      opacity: 1;
    }

    @media (max-width: 900px) {
      .snap-section {
        padding: 6rem 7vw 3.5rem;
      }

      .site-header {
        padding: 1rem 6vw;
      }

      .hero-blob {
        min-width: auto;
      }

      .scroll-cue {
        display: none;
      }

      .art-layer {
        opacity: 0.4;
      }
    }

    @media (max-width: 600px) {
      .logo-text {
        font-size: 0.95rem;
      }

      .hero-subtitle {
        letter-spacing: 0.12em;
      }

      .hero-blob::before {
        inset: 8px;
      }

      .finale-card {
        padding: 2rem 1.5rem;
      }

      .art-layer {
        display: none;
      }

      #top .art-layer {
        display: block;
        opacity: 0.35;
      }

      #top .art-sparkle.is-secondary {
        display: none;
      }
    }

    .team-hero {
      background: linear-gradient(180deg, #f7f0e8 0%, #f3eadf 50%, #f7f0e8 100%);
    }

    .team-wrap {
      max-width: 980px;
      margin: 0 auto;
      display: grid;
      gap: clamp(2rem, 4vw, 3rem);
    }

    .team-hero-photo {
      min-height: clamp(200px, 28vw, 320px);
      border-radius: 26px;
      border: 1px solid rgba(75, 45, 44, 0.15);
      background:
        linear-gradient(140deg, rgba(168, 183, 157, 0.4), rgba(247, 240, 232, 0.8)),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.7), transparent 45%);
      box-shadow: 0 26px 50px rgba(43, 27, 24, 0.12);
    }

    .leader-card {
      display: grid;
      grid-template-columns: minmax(180px, 240px) 1fr;
      gap: clamp(1.4rem, 3vw, 2.4rem);
      background: rgba(255, 255, 255, 0.85);
      border-radius: 26px;
      border: 1px solid rgba(75, 45, 44, 0.12);
      padding: clamp(1.6rem, 3vw, 2.4rem);
      box-shadow: 0 24px 50px rgba(43, 27, 24, 0.12);
      align-items: center;
    }

    .leader-photo {
      width: 100%;
      aspect-ratio: 4 / 5;
      border-radius: 20px;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.6), rgba(168, 183, 157, 0.5));
      border: 1px solid rgba(75, 45, 44, 0.12);
    }

    .leader-title {
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--coffee);
      margin: 0 0 0.6rem;
    }

    .leader-name {
      margin: 0 0 0.5rem;
      font-size: clamp(1.4rem, 2.6vw, 1.8rem);
      color: var(--coffee);
    }

    .leader-note {
      margin: 0;
      color: var(--muted);
    }

.vp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
}

.vp-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  border: 1px solid rgba(75, 45, 44, 0.12);
  padding: 1.4rem;
  box-shadow: 0 18px 36px rgba(43, 27, 24, 0.1);
  display: grid;
  gap: 0.8rem;
  text-align: center;
  justify-items: center;
  max-width: 320px;
  width: 100%;
  flex: 0 1 260px;
}

    .vp-photo {
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 16px;
      background: linear-gradient(150deg, rgba(255, 255, 255, 0.6), rgba(168, 183, 157, 0.5));
      border: 1px solid rgba(75, 45, 44, 0.12);
    }

    .vp-card h3 {
      margin: 0;
      font-size: 1.05rem;
      color: var(--coffee);
    }

    .vp-card p {
      margin: 0;
      color: var(--muted);
    }

    @media (max-width: 800px) {
      .leader-card {
        grid-template-columns: 1fr;
      }

      .leader-photo {
        max-width: 260px;
      }
    }

    .shop-section {
      position: relative;
    }

    .shop-section::before,
    .shop-section::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(168, 183, 157, 0.45), transparent 65%);
      opacity: 0.7;
      filter: blur(0.4px);
      z-index: 0;
    }

    .shop-section::before {
      top: -40px;
      left: -80px;
    }

    .shop-section::after {
      bottom: -80px;
      right: -60px;
    }

    .shop-wrap {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      gap: clamp(2rem, 4vw, 3rem);
      position: relative;
      z-index: 1;
    }

    .shop-controls {
      display: grid;
      grid-template-columns: 1fr minmax(220px, 300px);
      gap: clamp(1.5rem, 4vw, 3rem);
      align-items: start;
      background: rgba(255, 255, 255, 0.65);
      border-radius: 24px;
      border: 1px solid rgba(75, 45, 44, 0.1);
      padding: clamp(1.4rem, 2.6vw, 2rem);
      box-shadow: 0 18px 40px rgba(43, 27, 24, 0.08);
    }

    .shop-filters {
      display: grid;
      gap: 0.8rem;
    }

    .filter-title {
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.75rem;
      color: var(--coffee);
      margin: 0;
    }

    .filter-group {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .filter-pill {
      border: 1px solid rgba(75, 45, 44, 0.18);
      background: rgba(255, 255, 255, 0.8);
      color: var(--coffee);
      border-radius: 999px;
      padding: 0.5rem 0.9rem;
      font-weight: 600;
      font-size: 0.85rem;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .filter-pill:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(43, 27, 24, 0.12);
    }

    .filter-pill.is-active {
      background: rgba(168, 183, 157, 0.35);
      border-color: rgba(75, 45, 44, 0.25);
    }

    .search-field {
      display: grid;
      gap: 0.6rem;
      font-weight: 600;
      color: var(--coffee);
    }

    .search-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .search-field input {
      width: 100%;
      padding: 0.7rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(75, 45, 44, 0.2);
      background: rgba(255, 255, 255, 0.9);
      font-family: inherit;
      font-size: 0.95rem;
      color: var(--text);
    }

    .shop-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.6rem;
    }

    .shop-card {
      background: rgba(255, 255, 255, 0.85);
      border-radius: 22px;
      border: 1px solid rgba(75, 45, 44, 0.1);
      box-shadow: 0 20px 40px rgba(43, 27, 24, 0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .shop-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 28px 50px rgba(43, 27, 24, 0.14);
    }

    .shop-img {
      position: relative;
      padding: 1.6rem;
      background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.7), transparent 50%),
        linear-gradient(150deg, rgba(168, 183, 157, 0.35), rgba(247, 240, 232, 0.85));
      min-height: 180px;
      display: grid;
      place-items: center;
    }

    .shop-img::after {
      content: "";
      width: 120px;
      height: 150px;
      border-radius: 18px;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(168, 183, 157, 0.45));
      border: 1px solid rgba(75, 45, 44, 0.12);
      box-shadow: 0 12px 26px rgba(43, 27, 24, 0.12);
    }

    .size-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      background: rgba(75, 45, 44, 0.85);
      color: var(--cream);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .candle-color-dot {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--candle-color);
      border: 2px solid rgba(255, 255, 255, 0.8);
      box-shadow: 0 8px 18px rgba(43, 27, 24, 0.2);
    }

    .shop-body {
      padding: 1.4rem;
      display: grid;
      gap: 0.6rem;
    }

    .shop-body h3 {
      margin: 0;
      font-size: 1.1rem;
    }

    .shop-size {
      margin: 0;
      color: var(--muted);
      font-weight: 600;
    }

    .shop-card.is-hidden {
      display: none;
    }

    @media (max-width: 900px) {
      .shop-controls {
        grid-template-columns: 1fr;
      }
    }


    .product-section {
      position: relative;
    }

    .product-section::before,
    .product-section::after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(168, 183, 157, 0.45), transparent 65%);
      opacity: 0.7;
      filter: blur(0.4px);
      z-index: 0;
    }

    .product-section::before {
      top: -60px;
      left: -90px;
    }

    .product-section::after {
      bottom: -80px;
      right: -70px;
    }

    .product-wrap {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      gap: clamp(2rem, 4vw, 3.5rem);
      grid-template-columns: 1fr minmax(260px, 360px);
      align-items: stretch;
      position: relative;
      z-index: 1;
    }

    .product-media {
      background: rgba(255, 255, 255, 0.7);
      border-radius: 26px;
      border: 1px solid rgba(75, 45, 44, 0.1);
      padding: clamp(1.5rem, 3vw, 2.2rem);
      box-shadow: 0 24px 50px rgba(43, 27, 24, 0.1);
      display: grid;
      gap: 1.2rem;
      justify-items: center;
      height: 100%;
      min-height: 520px;
      order: 2;
    }

    .product-image {
      width: min(100%, 260px);
      aspect-ratio: 3 / 4;
      border-radius: 18px;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.85), transparent 55%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(168, 183, 157, 0.35));
      border: 1px solid rgba(75, 45, 44, 0.12);
      box-shadow: 0 12px 26px rgba(43, 27, 24, 0.12);
      display: grid;
      place-items: center;
    }

    .product-image::after {
      content: "Image";
      font-size: 0.85rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(75, 45, 44, 0.7);
      font-weight: 700;
    }

    .product-color {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      color: var(--coffee);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.7rem;
    }

    .divider-line {
      width: 40px;
      height: 1px;
      background: rgba(75, 45, 44, 0.4);
    }

    .color-row {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 600;
      color: var(--muted);
    }

    .color-dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--candle-color, #8b5a3c);
      border: 2px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 8px 16px rgba(43, 27, 24, 0.2);
    }

    .product-info {
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      justify-content: space-between;
      align-items: flex-start;
      text-align: left;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(75, 45, 44, 0.1);
      border-radius: 26px;
      padding: clamp(1.6rem, 3vw, 2.4rem);
      box-shadow: 0 18px 40px rgba(43, 27, 24, 0.08);
      backdrop-filter: blur(6px);
      height: 100%;
      min-height: 520px;
      order: 1;
    }

    .product-size-tag {
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--coffee);
      margin: 0;
    }

    .product-title {
      margin: 0;
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      color: var(--coffee);
    }

    .product-description {
      margin: 0;
      max-width: 32rem;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.9;
    }

    .product-price {
      margin: 0;
      font-weight: 700;
      color: var(--coffee);
      font-size: 1.1rem;
    }

    .product-actions {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .quantity {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(75, 45, 44, 0.18);
      background: rgba(255, 255, 255, 0.9);
      color: var(--coffee);
      font-weight: 700;
    }

    .qty-btn {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: none;
      background: rgba(75, 45, 44, 0.12);
      color: var(--coffee);
      font-weight: 700;
      cursor: pointer;
      display: grid;
      place-items: center;
    }

    .text-link {
      color: var(--coffee);
      font-weight: 600;
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 3px;
    }

    @media (max-width: 900px) {
      .product-wrap {
        grid-template-columns: 1fr;
        text-align: left;
      }

      .product-media,
      .product-info {
        align-items: flex-start;
        text-align: left;
        order: 0;
      }

      .product-actions {
        justify-content: flex-start;
      }
    }
    .cart-section {
      position: relative;
    }

    .cart-section::before,
    .cart-section::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(168, 183, 157, 0.45), transparent 65%);
      opacity: 0.7;
      filter: blur(0.4px);
      z-index: 0;
    }

    .cart-section::before {
      top: -50px;
      left: -80px;
    }

    .cart-section::after {
      bottom: -70px;
      right: -70px;
    }

    .cart-wrap {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      gap: clamp(2rem, 4vw, 3rem);
      position: relative;
      z-index: 1;
    }

    .cart-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: clamp(1.6rem, 3vw, 2.4rem);
      align-items: start;
    }

    .cart-items,
    .cart-summary {
      background: rgba(255, 255, 255, 0.75);
      border-radius: 26px;
      border: 1px solid rgba(75, 45, 44, 0.12);
      box-shadow: 0 20px 40px rgba(43, 27, 24, 0.08);
      padding: clamp(1.4rem, 2.6vw, 2.2rem);
      backdrop-filter: blur(6px);
    }

    .cart-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 1.2rem;
      padding: 1.2rem 0;
      border-bottom: 1px solid rgba(75, 45, 44, 0.08);
      align-items: center;
    }

    .cart-item:last-child {
      border-bottom: none;
    }

    .cart-item > div:last-child {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.45rem;
    }

    .cart-item .price-row {
      justify-content: flex-end;
      width: 100%;
    }

    .cart-thumb {
      width: 72px;
      height: 84px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.85), transparent 55%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(168, 183, 157, 0.35));
      border: 1px solid rgba(75, 45, 44, 0.12);
      position: relative;
    }

    .cart-color-dot {
      position: absolute;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      bottom: -6px;
      right: -6px;
      border: 2px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 6px 12px rgba(43, 27, 24, 0.18);
      background: var(--candle-color, #8b5a3c);
    }

    .cart-item h3 {
      margin: 0 0 0.35rem;
      color: var(--coffee);
      font-size: 1.05rem;
    }

    .cart-item p {
      margin: 0;
      color: var(--muted);
      font-weight: 600;
    }

    .cart-qty {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(75, 45, 44, 0.18);
      background: rgba(255, 255, 255, 0.9);
      color: var(--coffee);
      font-weight: 700;
    }

    .cart-remove {
      margin-top: 0.5rem;
      border: none;
      background: transparent;
      color: var(--muted);
      font-weight: 600;
      cursor: pointer;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.45rem 0;
      font-weight: 600;
      color: var(--muted);
    }

    .summary-row.total {
      color: var(--coffee);
      font-weight: 800;
      font-size: 1.05rem;
      border-top: 1px solid rgba(75, 45, 44, 0.12);
      margin-top: 0.6rem;
      padding-top: 0.9rem;
    }

.cart-summary .pill-btn {
  width: 100%;
  margin-top: 1.2rem;
}

.thank-you-section {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: center;
}

.thank-you-wrap {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.thank-you-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  border: 1px solid rgba(75, 45, 44, 0.12);
  box-shadow: 0 24px 60px rgba(43, 27, 24, 0.12);
  padding: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
}

.thank-you-title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--coffee);
  margin-bottom: 0.6rem;
}

.thank-you-copy {
  font-size: 1.05rem;
  margin: 0 auto 1.6rem;
  max-width: 28rem;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

    .summary-field {
      display: grid;
      gap: 0.55rem;
      margin-bottom: 0.9rem;
    }

    .summary-field label {
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--coffee);
    }

    .summary-field input {
      width: 100%;
      padding: 0.7rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(75, 45, 44, 0.2);
      background: rgba(255, 255, 255, 0.9);
      font-family: inherit;
      font-size: 0.95rem;
      color: var(--text);
    }

    .summary-field input[type="radio"] {
      width: auto;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }

.summary-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.summary-hint.is-error {
  color: #c0392b;
}

.summary-field #delivery-fields,
.summary-field #pickup-fields {
  display: grid;
  gap: 0.7rem;
}

.summary-field #delivery-fields[hidden],
.summary-field #pickup-fields[hidden] {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.4rem;
}

.newsletter-input {
  flex: 1 1 220px;
  min-width: 180px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 45, 44, 0.2);
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
}

.newsletter-status {
  margin: 0.6rem 0 0;
  font-weight: 600;
  color: var(--coffee);
}

.newsletter-status.is-error {
  color: #c0392b;
}

.delivery-check {
  align-self: flex-start;
}

.delivery-check.is-checking {
  opacity: 0.8;
  cursor: progress;
}

.delivery-check.is-valid {
  background: rgba(168, 183, 157, 0.35);
  border-color: rgba(75, 45, 44, 0.25);
}

.delivery-check.is-invalid {
  background: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.35);
  color: #c0392b;
}

.summary-toggle {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.toggle-option {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(75, 45, 44, 0.2);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}

.toggle-option input {
  margin: 0;
  accent-color: #7b4b3a;
}

    .paypal-wrap {
      margin-top: 1.2rem;
    }

    #paypal-button-container {
      display: grid;
      gap: 0.6rem;
      padding: 0.6rem;
      border-radius: 16px;
      border: 1px solid rgba(75, 45, 44, 0.18);
      background: rgba(255, 255, 255, 0.6);
    }

    .empty-cart {
      text-align: center;
      padding: 2rem 1rem;
      color: var(--muted);
      font-weight: 600;
    }

    @media (max-width: 900px) {
      .cart-grid {
        grid-template-columns: 1fr;
      }
    }


    .profile-wrap {
      max-width: 980px;
      margin: 0 auto;
      display: grid;
      gap: clamp(2rem, 4vw, 3rem);
    }

    .profile-card {
      display: grid;
      grid-template-columns: minmax(220px, 320px) 1fr;
      gap: clamp(1.6rem, 3vw, 2.6rem);
      background: rgba(255, 255, 255, 0.88);
      border-radius: 26px;
      border: 1px solid rgba(75, 45, 44, 0.12);
      padding: clamp(1.8rem, 3vw, 2.6rem);
      box-shadow: 0 24px 50px rgba(43, 27, 24, 0.12);
      align-items: center;
    }

    .profile-photo {
      width: 100%;
      aspect-ratio: 4 / 5;
      border-radius: 20px;
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.6), rgba(168, 183, 157, 0.55)),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 45%);
      border: 1px solid rgba(75, 45, 44, 0.12);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    }

    .profile-role {
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--coffee);
      margin: 0 0 0.6rem;
    }

    .profile-name {
      margin: 0 0 0.5rem;
      font-size: clamp(1.5rem, 3vw, 2rem);
      color: var(--coffee);
    }

    .profile-bio {
      margin: 0;
      color: var(--muted);
    }

    .profile-meta {
      margin-top: 1.4rem;
    }

    .profile-actions {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
      margin-top: 1.6rem;
    }

    @media (max-width: 800px) {
      .profile-card {
        grid-template-columns: 1fr;
      }

      .profile-photo {
        max-width: 280px;
        justify-self: center;
      }
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(34, 24, 22, 0.35);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 5vw;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
      z-index: 30;
      overflow-y: auto;
    }

    .modal-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }

    .modal-card {
      width: min(820px, 92vw);
      background: rgba(255, 255, 255, 0.92);
      border-radius: 28px;
      border: 1px solid rgba(75, 45, 44, 0.12);
      box-shadow: 0 30px 70px rgba(43, 27, 24, 0.2);
      display: grid;
      grid-template-columns: minmax(200px, 320px) 1fr;
      gap: clamp(1.6rem, 3vw, 2.4rem);
      padding: clamp(1.6rem, 3vw, 2.4rem);
      position: relative;
      align-items: center;
    }

    .modal-photo {
      width: 100%;
      aspect-ratio: 4 / 5;
      border-radius: 20px;
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.6), rgba(168, 183, 157, 0.55)),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent 45%);
      border: 1px solid rgba(75, 45, 44, 0.12);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    }

    .modal-role {
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--coffee);
      margin: 0 0 0.6rem;
    }

    .modal-name {
      margin: 0 0 0.6rem;
      font-size: clamp(1.5rem, 3vw, 2rem);
      color: var(--coffee);
    }

    .modal-bio {
      margin: 0;
      color: var(--muted);
    }

    .modal-meta {
      margin-top: 1.4rem;
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(75, 45, 44, 0.2);
      background: rgba(255, 255, 255, 0.9);
      color: var(--coffee);
      font-size: 1.4rem;
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .modal-close:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(43, 27, 24, 0.16);
    }

    body.modal-open {
      overflow: hidden;
    }

    @media (max-width: 800px) {
      .modal-card {
        grid-template-columns: 1fr;
      }

      .modal-photo {
        max-width: 260px;
        justify-self: center;
      }
    }

    @media (max-width: 600px) {
      .hero-grid {
        justify-items: center;
      }

      .hero-art {
        width: 100%;
      }

      .floating-card {
        width: min(360px, 92vw);
        margin-inline: auto;
      }

      .card-row {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
        text-align: center;
      }

      .card-row .pill-btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
      }

      .newsletter-form {
        justify-content: center;
      }

      .newsletter-form .pill-btn {
        margin-inline: auto;
      }

      .modal-overlay {
        align-items: flex-start;
        padding: 1.5rem 4vw;
      }

      .modal-card {
        max-height: calc(100svh - 3rem);
        overflow-y: auto;
      }

      .modal-close {
        position: sticky;
        top: 0.6rem;
        justify-self: end;
      }
    }
