:root {
  --ivory: #f7efdf;
  --paper: #efe0c4;
  --warm-white: #fdf8ef;
  --ink: #2b2013;
  --text: #362a1b;
  --text-muted: #7c6650;
  --terracotta: #b0472a;
  --terracotta-dark: #8f3620;
  --lagoon: #3e6e5f;
  --lagoon-dark: #2c5044;
  --gold: #c8963c;
  --hibiscus: #c2506a;
  --sand: #d8bd94;
  --border: #e2cda6;
  --section-alt: #f0e2c6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  overflow-x: hidden;
  background-color: var(--ivory);
  color: var(--text);
  font-family: 'Zen Kaku Gothic New', 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.01em;
}

h1, h2, h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.brand-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Heart-wreath signature motif ──
   Echoes the floral heart mark on every bottle label. Used as a
   divider and as bullet markers instead of generic rules/numbers. */
.mark {
  display: inline-block;
  width: 22px;
  height: 20px;
  flex-shrink: 0;
}

.mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--terracotta);
  margin: 1.4rem 0 2rem;
}

.divider::after {
  content: '';
  flex: 1;
  max-width: 64px;
  height: 1px;
  background: var(--border);
}

.divider.center {
  justify-content: center;
}

.divider.center::after { display: none; }

.divider.center::before {
  content: '';
  flex: 1;
  max-width: 64px;
  height: 1px;
  background: var(--border);
  margin-right: 0.7rem;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: rgba(247, 239, 223, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.nav-logo span {
  display: block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.2s;
}

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

.nav-instagram svg {
  width: 20px;
  height: 20px;
  fill: var(--text);
  transition: fill 0.2s;
  display: block;
}

.nav-instagram:hover svg { fill: var(--terracotta); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  background: transparent;
  transition: all 0.25s;
  cursor: pointer;
}

.btn:hover {
  background: var(--terracotta);
  color: var(--warm-white);
}

.btn-filled {
  background: var(--terracotta);
  color: var(--warm-white);
}

.btn-filled:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--warm-white);
}

.btn-ghost {
  border-color: rgba(253, 248, 239, 0.7);
  color: var(--warm-white);
}

.btn-ghost:hover {
  background: rgba(253, 248, 239, 0.14);
  color: var(--warm-white);
}

/* ── Section base ── */
section { padding: 6rem 0; }

.section-label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

section h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  color: var(--ink);
  margin-bottom: 1.2rem;
}

/* ── Full-bleed photo hero (home / workshop / sales) ── */
.hero-full {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 16, 8, 0.85) 0%,
    rgba(24, 16, 8, 0.5) 42%,
    rgba(24, 16, 8, 0.22) 68%,
    rgba(24, 16, 8, 0.36) 100%
  );
}

.hero-full-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8rem 2rem 6rem;
  color: var(--warm-white);
}

.hero-full-content .container {
  max-width: 1120px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--sand);
  margin-bottom: 1.3rem;
  display: block;
  text-shadow: 0 2px 14px rgba(20, 12, 6, 0.55);
}

.hero-full h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
  color: var(--warm-white);
  max-width: 720px;
  margin-bottom: 1.1rem;
  text-shadow: 0 4px 24px rgba(20, 12, 6, 0.4);
}

.hero-full p {
  font-size: 1rem;
  color: rgba(253, 248, 239, 0.88);
  max-width: 480px;
  margin-bottom: 2.3rem;
  text-shadow: 0 2px 14px rgba(20, 12, 6, 0.45);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Maker badge (Mina) ──
   A kraft swing-tag echoing the tags tied to every bottle neck. */
.maker-badge {
  position: absolute;
  right: clamp(1.25rem, 5vw, 4rem);
  bottom: -64px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.maker-badge img {
  width: clamp(96px, 12vw, 136px);
  height: clamp(96px, 12vw, 136px);
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--ivory);
  box-shadow: 0 12px 30px rgba(43, 32, 19, 0.35);
}

.maker-tag {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  box-shadow: 0 4px 10px rgba(43, 32, 19, 0.12);
  transform: rotate(-2deg);
}

.maker-tag strong {
  color: var(--ink);
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
}

/* ── Brand story ── */
.story { background-color: var(--ivory); }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.text-side p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.15rem;
  max-width: 540px;
}

.chip-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.2rem;
  margin-top: 2.2rem;
  max-width: 540px;
}

.chip-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--ink);
}

.chip-list .mark { color: var(--terracotta); }

.brew-panel {
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, var(--lagoon) 0%, var(--lagoon-dark) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.brew-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1), transparent 55%);
}

.brew-panel-inner {
  position: relative;
  text-align: center;
  color: var(--warm-white);
}

.brew-panel-inner .mark {
  color: rgba(253,248,239,0.85);
  width: 30px;
  height: 27px;
  margin-bottom: 1.1rem;
}

.brew-panel-inner p {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.35rem;
  line-height: 1.7;
}

.brew-panel-inner span {
  display: block;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(253,248,239,0.6);
}

/* ── Duo cards (workshop / sales links, or individuals / business) ── */
.duo-section { background-color: var(--section-alt); }

.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.duo-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

a.duo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(43, 32, 19, 0.14);
}

.duo-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.duo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

a.duo-card:hover .duo-card-image img { transform: scale(1.05); }

.duo-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.duo-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--terracotta);
}

.duo-card-body h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.4rem;
  color: var(--ink);
}

.duo-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.duo-card-link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* No-link variant for content cards (workshop page) */
.duo-card.plain { cursor: default; }
.duo-card.plain:hover { transform: none; box-shadow: none; }

/* ── Order tag card (sales page) ──
   Styled after the kraft tags tied to the bottle necks. */
.order-tag {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 2.6rem clamp(1.5rem, 5vw, 3.2rem);
  position: relative;
  max-width: 640px;
}

.order-tag::before {
  content: '';
  position: absolute;
  top: -1px; left: 2rem;
  width: 34px;
  height: 34px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 50%;
  transform: translateY(-50%);
}

.order-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px dashed var(--sand);
}

.order-price .amount {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.6rem;
  color: var(--terracotta);
}

.order-price .unit {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.order-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-facts li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.order-facts .fact-label {
  color: var(--text-muted);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.order-facts .fact-value {
  color: var(--ink);
  text-align: right;
}

/* ── Content section (workshop copy blocks) ── */
.content-section p {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 640px;
  margin-bottom: 1.2rem;
}

.gift-note {
  background: var(--lagoon);
  color: var(--warm-white);
  padding: 3rem clamp(1.5rem, 5vw, 3.5rem);
  margin-top: 1rem;
}

.gift-note .mark { color: var(--hibiscus); margin-bottom: 1rem; }

.gift-note h2 { color: var(--warm-white); }

.gift-note p {
  color: rgba(253,248,239,0.85);
  max-width: 560px;
  margin: 0;
}

/* ── Instagram / CTA section ── */
.instagram-section { text-align: center; }

.instagram-section .container {
  max-width: 600px;
}

.instagram-section p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0 auto 0.5rem;
}

.instagram-handle {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--terracotta);
  margin: 0.5rem auto 2rem;
}

/* ── Footer ── */
footer {
  background: var(--ink);
  color: var(--sand);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--warm-white);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.footer-brand .footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--sand);
  max-width: 300px;
  line-height: 1.8;
}

.footer-nav h4 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.footer-nav ul { list-style: none; }

.footer-nav li { margin-bottom: 0.6rem; }

.footer-nav a {
  font-size: 0.88rem;
  color: var(--sand);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--warm-white); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(216,189,148,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(216,189,148,0.5);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .two-col,
  .duo-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .brew-panel { aspect-ratio: 16/10; }

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

  .footer-brand { grid-column: 1 / -1; }

  .maker-badge { bottom: -48px; }
}

@media (max-width: 600px) {
  .site-nav { padding: 1rem 1.25rem; }

  .nav-links { display: none; }

  section { padding: 4rem 0; }

  .hero-full {
    min-height: 88vh;
    flex-direction: column;
  }

  .hero-full-content { padding: 7rem 1.5rem 5rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
    white-space: nowrap;
  }

  .maker-badge {
    position: static;
    align-self: center;
    margin: -3.5rem auto 0;
    align-items: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .chip-list { grid-template-columns: 1fr; }

  .order-facts li { flex-direction: column; gap: 0.2rem; }

  .order-facts .fact-value { text-align: left; }
}
