/* =========================================================
   MILLIE'S FILLING STATION
   Cream butter paper × deep forest green × coral.
   Real palette pulled from the shop sign.
   Magnolia / Joanna Gaines direction.
   ========================================================= */

:root {
  /* Real palette pulled from the painted Millie's sign */
  --butter: #f3ead0; /* warm cream-butter (sign background) */
  --butter-deep: #ebdfba; /* edge of paper */
  --paper: #f8f1de; /* page back */
  --linen: #faf4e3;
  --moss: #1f3a28; /* deep forest green ("MILLIE'S" type) */
  --moss-soft: #2c4a35;
  --moss-line: #3d5b41;
  --sage: #a3b298; /* the sign border */
  --sage-mid: #859479;
  --coral: #d4593c; /* coral / red flowers */
  --coral-deep: #b3492f;
  --terracotta: #b5664a; /* terracotta pots */
  --mustard: #c99b40; /* yellow flower */
  --rose: #e3a890;
  --ink: #25201b;
  --ink-soft: #5b5246;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --tall: "Italiana", "Fraunces", "Cormorant Garamond", serif;
  --body: "Cormorant Garamond", "Fraunces", Georgia, serif;
  --hand: "Caveat", cursive;
  --script: "Allura", "Caveat", cursive;
  --label: "Manrope", -apple-system, "Helvetica Neue", sans-serif;

  --fs-kicker: clamp(0.8rem, 0.7rem + 0.4vw, 0.95rem);
  --fs-body: clamp(1.05rem, 1rem + 0.4vw, 1.18rem);
  --fs-lede: clamp(1.15rem, 1rem + 0.8vw, 1.4rem);
  --fs-h3: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem);
  --fs-h2: clamp(2.2rem, 1.7rem + 1.8vw, 3.2rem);
  --fs-h1: clamp(2.8rem, 2rem + 3vw, 4.4rem);

  --gutter: clamp(1.25rem, 1rem + 2vw, 2.5rem);
  --section-y: clamp(3.5rem, 2.6rem + 4vw, 6rem);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}

/* Soft paper grain — warm, not too noisy */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.32;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.34 0 0 0 0 0.20 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============== shared bits ============== */
.kicker {
  font-family: var(--hand);
  font-size: clamp(1.4rem, 1.15rem + 0.8vw, 1.85rem);
  color: var(--coral);
  letter-spacing: 0.005em;
  margin: 0 0 0.6rem;
  font-weight: 500;
  line-height: 1;
  font-style: italic;
}
.kicker--cream {
  color: var(--butter);
}

h2,
.h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: var(--fs-h2);
  letter-spacing: -0.022em;
  line-height: 0.95;
  color: var(--moss);
  margin: 0 0 1.2rem;
}
h2 em,
.h2 em {
  color: var(--coral);
  font-style: italic;
}

.lead {
  font-size: var(--fs-lede);
  line-height: 1.5;
}

.dropcap {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 4.4em;
  line-height: 0.85;
  float: left;
  color: var(--coral);
  padding: 0.06em 0.12em 0 0;
  margin-right: 0.1em;
  font-style: italic;
}

/* Buttons */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  font-family: var(--label);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid currentColor;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
  min-height: 46px;
  white-space: nowrap;
}
.pill:hover {
  transform: translateY(-2px);
}
.pill--ink {
  background: var(--moss);
  color: var(--butter);
  border-color: var(--moss);
}
.pill--ink:hover {
  background: var(--coral);
  border-color: var(--coral);
}
.pill--coral {
  background: var(--coral);
  color: var(--butter);
  border-color: var(--coral);
}
.pill--coral:hover {
  background: var(--moss);
  border-color: var(--moss);
}
.pill--cream {
  background: var(--butter);
  color: var(--moss);
  border-color: var(--butter);
}
.pill--cream:hover {
  background: var(--moss);
  color: var(--butter);
  border-color: var(--moss);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--label);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--moss);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.link-arrow:hover {
  color: var(--coral);
}

/* ============== hours strip ============== */
.hours-strip {
  margin: 0;
  padding: 0.7rem var(--gutter);
  text-align: center;
  background: var(--moss);
  color: var(--butter);
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
.hours-strip__sep {
  color: var(--coral);
  opacity: 0.85;
}
.hours-strip__hand {
  font-family: var(--hand);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.2rem;
  color: var(--rose);
}

/* ============== masthead ============== */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.9rem var(--gutter);
  background: rgba(248, 241, 222, 0.93);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(31, 58, 40, 0.08);
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.masthead__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.masthead__brand img {
  width: 64px;
  height: 64px;
  border-radius: 0;
  object-fit: contain;
  background: var(--butter);
  border: none;
}
.masthead__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}
.masthead__line1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--moss);
  letter-spacing: -0.02em;
}
.masthead__line2 {
  font-family: var(--label);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--moss);
  margin-top: 4px;
  opacity: 0.7;
}
.masthead__nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
}
.masthead__nav a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--moss);
  position: relative;
}
.masthead__nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -3px 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.masthead__nav a:hover::after {
  transform: scaleX(1);
}
.masthead__cta {
  display: none;
}
.burger {
  background: transparent;
  border: 1px solid var(--moss);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.burger span {
  width: 18px;
  height: 1.5px;
  background: var(--moss);
  transition: transform 0.3s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

@media (min-width: 920px) {
  .masthead__nav {
    display: flex;
  }
  .masthead__cta {
    display: inline-flex;
  }
  .burger {
    display: none;
  }
}
@media (max-width: 540px) {
  .masthead__brand img {
    width: 52px;
    height: 52px;
  }
  .masthead__line1 {
    font-size: 1.4rem;
  }
  .masthead__line2 {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
  }
}

.sheet {
  position: fixed;
  inset: 110px 0 0 0;
  background: var(--paper);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem var(--gutter) 4rem;
  border-top: 1px solid rgba(31, 58, 40, 0.08);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  overflow-y: auto;
}
.sheet[data-open="true"] {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.sheet a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--moss);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(31, 58, 40, 0.08);
}
.sheet .pill {
  margin-top: 1.2rem;
  align-self: flex-start;
  font-style: normal;
  font-size: 0.78rem;
  font-family: var(--label);
}

/* ============== COVER (hero) — large editorial photo, side-by-side */
.cover {
  padding: clamp(2rem, 1rem + 4vw, 4rem) var(--gutter);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.cover__paper {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 940px) {
  .cover__paper {
    grid-template-columns: 0.95fr 1.05fr;
  }
}
.cover__col-text {
  position: relative;
  z-index: 1;
}
.cover__hand {
  font-family: var(--hand);
  font-size: clamp(1.7rem, 1.2rem + 1vw, 2.3rem);
  color: var(--coral);
  margin: 0 0 0.4rem;
  font-weight: 500;
}
.cover__hand em {
  font-style: italic;
}
.cover__title {
  font-family: var(--serif);
  font-size: var(--fs-h1);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 1.4rem;
  color: var(--moss);
}
.cover__title .cover__word {
  display: inline-block;
  margin: 0 0.16em 0 0;
}
.cover__title .cover__word--it {
  font-style: italic;
  color: var(--coral);
  position: relative;
}
.cover__title .cover__word--it::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0.18em;
  height: 0.3em;
  background: rgba(227, 168, 144, 0.55);
  z-index: -1;
  border-radius: 4px;
}
.cover__lede {
  font-size: var(--fs-lede);
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}
.cover__hl {
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(201, 155, 64, 0.4) 60%
  );
  padding: 0 0.1em;
}
.cover__sig {
  font-family: var(--script);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.6rem);
  color: var(--moss);
  margin: 0.4rem 0 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.cover__actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.cover__photo {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 720px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--butter-deep);
  box-shadow:
    0 30px 80px -32px rgba(31, 58, 40, 0.45),
    0 12px 30px -10px rgba(31, 58, 40, 0.25);
}
.cover__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover__photo figcaption {
  position: absolute;
  inset: auto 1rem 1rem auto;
  background: var(--butter);
  padding: 0.5rem 0.9rem;
  font-family: var(--hand);
  color: var(--moss);
  font-size: 1.2rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px -8px rgba(31, 58, 40, 0.4);
}
.cover__rule {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  font-family: var(--label);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--moss);
  opacity: 0.7;
}
.cover__rule::before,
.cover__rule::after {
  content: "";
  height: 1px;
  background: var(--moss);
  opacity: 0.5;
  flex: 1;
  max-width: 80px;
}

/* ============== BOARD (today specials) ============== */
.board {
  background: var(--moss);
  color: var(--butter);
  position: relative;
  overflow: hidden;
}
.board__inner {
  position: relative;
  padding: clamp(2rem, 1.5rem + 2vw, 3rem) var(--gutter);
  display: grid;
  gap: 1.4rem;
  align-items: center;
  grid-template-columns: 1fr;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .board__inner {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}
.board__hand {
  font-family: var(--script);
  font-size: clamp(2.2rem, 1.5rem + 2.4vw, 3.4rem);
  font-weight: 400;
  color: var(--rose);
  margin: 0;
  line-height: 1;
}
.board__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
@media (min-width: 600px) {
  .board__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }
}
@media (min-width: 1100px) {
  .board__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.board__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  border-bottom: 1px dotted rgba(243, 234, 208, 0.4);
  padding: 0.4rem 0;
  gap: 1rem;
  color: var(--butter);
}
.board__list li span {
  font-family: var(--hand);
  font-style: normal;
  font-size: 1.2rem;
  color: var(--rose);
}

/* ============== STORY ============== */
.story {
  padding: var(--section-y) var(--gutter);
}
.story__head {
  text-align: center;
  margin: 0 auto clamp(2rem, 1.5rem + 2vw, 3.5rem);
  max-width: 720px;
}
.story__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  margin: 0 auto;
}
@media (min-width: 920px) {
  .story__cols {
    grid-template-columns: 1.6fr 1fr;
  }
}
.story__body p {
  margin: 0 0 1.2rem;
  max-width: 56ch;
  color: var(--ink-soft);
}
.story__aside {
  background: var(--butter);
  border: 1px solid rgba(31, 58, 40, 0.12);
  border-radius: 6px;
  padding: 3.5rem 1.6rem 2rem;
  position: relative;
  text-align: center;
  align-self: start;
}
.story__sprig {
  position: absolute;
  top: -56px;
  left: 50%;
  width: 48px;
  height: 80px;
  transform: translateX(-50%);
  color: var(--moss);
  background: var(--butter);
  padding: 6px;
  border-radius: 4px;
}
.story__pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.65rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--moss);
  margin: 1.4rem 0 1rem;
}
.story__pull em {
  color: var(--coral);
}
.story__sig {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--coral);
  margin: 0;
}

/* ============== ETHOS ============== */
.ethos {
  padding: var(--section-y) var(--gutter);
  background: var(--butter);
  position: relative;
}
.ethos::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 8% 10%,
      rgba(163, 178, 152, 0.18),
      transparent 35%
    ),
    radial-gradient(circle at 92% 90%, rgba(212, 89, 60, 0.08), transparent 40%);
  pointer-events: none;
}
.ethos__cluster {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .ethos__cluster {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ethos__panel {
  background: var(--paper);
  border-radius: 8px;
  padding: 2.5rem 1.8rem;
  border: 1px solid rgba(31, 58, 40, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.ethos__panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -28px rgba(31, 58, 40, 0.32);
}
.ethos__panel::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(31, 58, 40, 0.15);
  border-radius: 5px;
  pointer-events: none;
}
.ethos__hand {
  font-family: var(--script);
  font-size: 1.7rem;
  color: var(--coral);
  font-weight: 400;
  line-height: 1;
}
.ethos__panel h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem);
  color: var(--moss);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ethos__icon {
  color: var(--moss);
  opacity: 0.7;
}
.ethos__panel p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 28ch;
  font-size: 1.08rem;
  line-height: 1.55;
}

/* ============== SHOP ============== */
.shop {
  padding: var(--section-y) var(--gutter);
  background: var(--paper);
}
.shop__head {
  max-width: 720px;
  margin: 0 0 clamp(2rem, 1.5rem + 2vw, 3.5rem);
}
.shop__sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--fs-lede);
}
.shop__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .shop__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .card {
    grid-column: span 3;
  }
  .card--tall {
    grid-column: span 2;
    grid-row: span 2;
  }
  .card--wide {
    grid-column: span 4;
  }
}
@media (min-width: 1100px) {
  .shop__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }
  .card {
    grid-column: span 4;
  }
  .card--tall {
    grid-column: span 4;
    grid-row: span 2;
  }
  .card--wide {
    grid-column: span 8;
  }
}
@media (min-width: 1700px) {
  .shop__grid {
    grid-template-columns: repeat(16, 1fr);
  }
  .card {
    grid-column: span 4;
  }
  .card--tall {
    grid-column: span 4;
    grid-row: span 2;
  }
  .card--wide {
    grid-column: span 8;
  }
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--butter);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(31, 58, 40, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -30px rgba(31, 58, 40, 0.45);
}
.card__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--butter-deep);
}
.card--tall .card__photo {
  aspect-ratio: 4 / 5;
  flex: 1;
}
.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.card:hover .card__photo img {
  transform: scale(1.04);
}
.card__body {
  padding: 1.5rem 1.6rem 1.7rem;
}
.card__hand {
  font-family: var(--script);
  color: var(--coral);
  margin: 0 0 0.2rem;
  font-size: 1.7rem;
  line-height: 1;
}
.card__body h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2rem + 0.9vw, 2rem);
  color: var(--moss);
  margin: 0 0 0.5rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.card__copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.55;
}

/* ============== JOURNAL ============== */
.journal {
  padding: var(--section-y) var(--gutter);
  background: var(--butter);
  position: relative;
}
.journal__head {
  max-width: 760px;
  margin: 0 0 clamp(2rem, 1.5rem + 2vw, 3rem);
}
.journal__head h2 {
  margin-bottom: 1rem;
}
.journal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .journal__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .journal__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .entry--feature {
    grid-column: span 2;
    grid-row: span 2;
  }
  .entry--feature a {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .entry--feature .entry__photo {
    aspect-ratio: auto;
    flex: 1;
    min-height: 460px;
  }
}
@media (min-width: 1700px) {
  .journal__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .entry--feature {
    grid-column: span 2;
  }
}
.entry {
  position: relative;
  transition: transform 0.3s ease;
}
.entry:hover {
  transform: translateY(-3px);
}
.entry a {
  display: block;
}
.entry__photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(31, 58, 40, 0.12);
  background: var(--butter-deep);
}
.entry--feature .entry__photo {
  aspect-ratio: 16 / 11;
}
.entry__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.entry:hover .entry__photo img {
  transform: scale(1.04);
}
.entry__copy {
  padding: 1rem 0.2rem 0;
}
.entry__date {
  font-family: var(--hand);
  font-size: 1.25rem;
  color: var(--coral);
  margin: 0 0 0.2rem;
  font-style: italic;
}
.entry__copy h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem);
  color: var(--moss);
  margin: 0 0 0.4rem;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.entry--feature .entry__copy h3 {
  font-size: clamp(1.7rem, 1.3rem + 1.5vw, 2.4rem);
}
.entry__copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 1.05rem;
}

/* ============== MAKERS ============== */
.makers {
  padding: var(--section-y) var(--gutter);
  background: var(--moss);
  color: var(--butter);
  position: relative;
  overflow: hidden;
}
.makers::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 10% 90%,
      rgba(212, 89, 60, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(163, 178, 152, 0.1),
      transparent 30%
    );
  pointer-events: none;
}
.makers__head {
  position: relative;
  max-width: 760px;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
}
.makers__head h2 {
  color: var(--butter);
}
.makers__head h2 em {
  color: var(--rose);
  font-style: italic;
}
.makers__sub {
  margin: 0;
  color: rgba(243, 234, 208, 0.85);
  font-size: var(--fs-lede);
}
.makers__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .makers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1700px) {
  .makers__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.maker {
  background: var(--butter);
  color: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.maker__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--butter-deep);
}
.maker__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.maker:hover .maker__photo img {
  transform: scale(1.04);
}
.maker__copy {
  padding: 1.5rem 1.6rem 1.8rem;
}
.maker__hand {
  font-family: var(--script);
  color: var(--coral);
  font-size: 1.6rem;
  margin: 0 0 0.2rem;
  line-height: 1;
}
.maker__copy h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem);
  margin: 0 0 0.5rem;
  color: var(--moss);
  letter-spacing: -0.01em;
}
.maker__copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}
.makers__cta {
  position: relative;
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  padding: 2rem 1.6rem;
  border: 1px dashed rgba(243, 234, 208, 0.5);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 720px) {
  .makers__cta {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.makers__cta p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
}

/* ============== PREORDER ============== */
.preorder {
  padding: var(--section-y) var(--gutter);
}
.preorder__head {
  max-width: 720px;
  margin: 0 0 clamp(2rem, 1.5rem + 2vw, 3rem);
}
.preorder__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .preorder__cards {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.ticket {
  background: var(--butter);
  border-radius: 8px;
  padding: clamp(1.8rem, 1.5rem + 1.5vw, 2.6rem);
  position: relative;
  border: 1px solid rgba(31, 58, 40, 0.12);
}
.ticket--coral {
  background: var(--coral);
  color: var(--butter);
  border-color: var(--coral-deep);
}
.ticket--coral h3,
.ticket--coral b {
  color: var(--butter);
}
.ticket__hand {
  font-family: var(--script);
  color: var(--coral);
  font-size: 1.9rem;
  margin: 0 0 0.5rem;
  font-weight: 400;
  line-height: 1;
}
.ticket--coral .ticket__hand {
  color: var(--butter);
  opacity: 0.95;
}
.ticket h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.6rem);
  margin: 0 0 1.2rem;
  letter-spacing: -0.02em;
  color: var(--moss);
}
.ticket__lead {
  margin: 0 0 1.4rem;
  font-size: var(--fs-lede);
  color: var(--ink-soft);
  line-height: 1.5;
}
.ticket--coral .ticket__lead {
  color: var(--butter);
  opacity: 0.92;
}
.ticket ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ticket ul li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dotted rgba(31, 58, 40, 0.3);
  padding-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.ticket ul li span {
  font-style: italic;
}
.ticket ul li b {
  font-family: var(--label);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--coral);
}
.ticket--coral ul li {
  border-color: rgba(248, 241, 222, 0.4);
}
.ticket__small {
  font-family: var(--label);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
}
.ticket--coral .ticket__small {
  color: var(--butter);
  opacity: 0.85;
}

/* ============== SUBSCRIBE ============== */
.subscribe {
  padding: var(--section-y) var(--gutter);
  background: var(--butter);
}
.subscribe__paper {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(31, 58, 40, 0.12);
  border-radius: 8px;
  padding: clamp(2rem, 1.5rem + 3vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.5rem + 2vw, 3rem);
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 30px 70px -40px rgba(31, 58, 40, 0.4);
}
@media (min-width: 880px) {
  .subscribe__paper {
    grid-template-columns: 1fr 1fr;
  }
}
.subscribe__copy {
  position: relative;
}
.subscribe__copy h2 {
  margin-bottom: 1rem;
}
.subscribe__copy > p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: var(--fs-lede);
  line-height: 1.55;
  max-width: 42ch;
}
.subscribe__points {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.subscribe__points li::before {
  content: "❋ ";
  color: var(--coral);
  font-style: normal;
}
.subscribe__sprig {
  position: absolute;
  right: 8%;
  top: -10px;
  color: var(--moss);
  opacity: 0.5;
}
.subscribe__embed {
  background: var(--butter);
  border: 1px solid rgba(31, 58, 40, 0.1);
  border-radius: 6px;
  padding: 0.8rem;
}
.subscribe__embed iframe {
  width: 100%;
  display: block;
  border: 0;
  border-radius: 4px;
  background: var(--paper);
}

/* ============== POCKET / QR ============== */
.pocket {
  padding: var(--section-y) var(--gutter);
  background: var(--paper);
}
.pocket__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.5rem + 2vw, 3rem);
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .pocket__inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.pocket__copy h2 {
  margin-bottom: 1.2rem;
}
.pocket__copy p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: var(--fs-lede);
  max-width: 50ch;
  line-height: 1.55;
}
.pocket__hand {
  font-family: var(--script);
  font-size: 2rem;
  color: var(--coral);
  margin-top: 0.5rem;
}
.pocket__qr {
  display: flex;
  justify-content: center;
}
.qr-card {
  position: relative;
  background: var(--butter);
  padding: 1.4rem 1.4rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(31, 58, 40, 0.15);
  box-shadow: 0 30px 70px -36px rgba(31, 58, 40, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 320px;
  width: 100%;
  text-align: center;
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}
.qr-card:hover {
  transform: rotate(0);
}
.qr-card__top {
  font-family: var(--script);
  font-size: 2rem;
  color: var(--coral);
  margin: 0;
  line-height: 1;
}
.qr-card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  background: var(--butter);
}
.qr-card__url {
  font-family: var(--label);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0;
}

/* ============== PHOTOG ============== */
.photog {
  padding: var(--section-y) var(--gutter);
  background: var(--butter);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .photog {
    grid-template-columns: 1fr 1fr;
  }
}
.photog__copy h2 {
  margin-bottom: 1.2rem;
}
.photog__copy p {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: var(--fs-lede);
  line-height: 1.55;
  max-width: 48ch;
}
.photog__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(31, 58, 40, 0.12);
}
.photog__strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.photog__strip img:hover {
  transform: scale(1.05);
}

/* ============== VISIT ============== */
.visit {
  padding: var(--section-y) var(--gutter);
  background: var(--paper);
}
.visit__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  max-width: 100%;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 880px) {
  .visit__inner {
    grid-template-columns: 0.85fr 1.15fr;
  }
}
.visit__copy h2 {
  margin-bottom: 1.2rem;
}
.visit__addr {
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem);
  color: var(--moss);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hours {
  font-family: var(--label);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  width: 100%;
  max-width: 320px;
  border-collapse: collapse;
  margin: 0 0 1.2rem;
}
.hours th,
.hours td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px dotted rgba(31, 58, 40, 0.2);
}
.hours th {
  width: 30%;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
}
.hours td {
  color: var(--ink-soft);
}
.hours__open th,
.hours__open td {
  color: var(--moss);
}
.hours__open td {
  color: var(--coral);
  font-weight: 600;
}
.visit__season {
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--coral);
  margin: 0 0 1.5rem;
  line-height: 1;
}
.visit__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.visit__map {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(31, 58, 40, 0.12);
  background: var(--butter-deep);
}
.visit__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============== IG ============== */
.ig {
  padding: var(--section-y) var(--gutter);
  background: var(--coral);
  color: var(--butter);
  text-align: center;
}
.ig__inner {
  max-width: 720px;
  margin: 0 auto;
}
.ig__inner h2 {
  color: var(--butter);
  font-size: clamp(2.4rem, 1.6rem + 4vw, 5rem);
  margin: 0.4rem 0 1rem;
  font-style: italic;
  word-break: break-word;
}
.ig__inner p {
  margin: 0 0 1.8rem;
  font-size: var(--fs-lede);
  opacity: 0.95;
}

/* ============== CLOSER (footer) ============== */
.closer {
  background: var(--moss);
  color: var(--butter);
  padding: clamp(3rem, 2rem + 4vw, 5rem) var(--gutter) 0;
}
.closer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(243, 234, 208, 0.18);
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .closer__inner {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}
.closer__brand img {
  width: 96px;
  height: auto;
  border-radius: 0;
  margin-bottom: 1rem;
  border: none;
  background: var(--butter);
  padding: 4px;
}
.closer__tag {
  font-family: var(--script);
  font-size: 2rem;
  margin: 0 0 0.6rem;
  color: var(--rose);
  line-height: 1;
}
.closer__addr {
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(243, 234, 208, 0.7);
  margin: 0;
  line-height: 1.7;
  text-transform: uppercase;
}
.closer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.closer__col h4 {
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--rose);
}
.closer__col a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(243, 234, 208, 0.85);
  transition: color 0.2s ease;
  padding: 0.2rem 0;
}
.closer__col a:hover {
  color: var(--rose);
}
.closer__strip {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1.4rem 0;
  font-family: var(--label);
  font-size: 0.65rem;
  color: rgba(243, 234, 208, 0.55);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  max-width: 100%;
  margin: 0 auto;
}
.closer__hand {
  font-family: var(--script);
  font-size: 1.3rem;
  color: var(--rose);
  text-transform: none;
  letter-spacing: 0;
}

/* ============== utilities ============== */
::selection {
  background: var(--mustard);
  color: var(--moss);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--butter);
}
::-webkit-scrollbar-thumb {
  background: var(--moss);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--coral);
}
