/* =============================================
   SALTWATER SYRUPS — simple site
   Fonts: Libre Baskerville (body) · Beth Ellen (script)
   ============================================= */

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

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

:root {
  --cream:       #faf6f0;
  --ink:         #2c1810;
  --ink-soft:    #6a4a38;
  --mocha:       #8b7263;
  --mocha-dark:  #6e5a4d;
  --line:        #e4d9cc;

  --strawberry:  #ffe7e7;
  --strawberry-ink: #8a5a5a;
  --banana:      #fff9c7;
  --banana-ink:  #8a7a2a;
  --vanilla:     #f3ead4;
  --vanilla-ink: #8a7350;

  --font-body:   'Libre Baskerville', Georgia, serif;
  --font-script: 'Beth Ellen', cursive;

  --max-w: 960px;
  --gutter: clamp(1.5rem, 5vw, 3rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}

/* === PROMO RIBBON ===================================== */
.promo-ribbon {
  background: #f7c3cf;
  overflow: hidden;
}
.promo-ribbon__track {
  display: flex;
  width: max-content;
  animation: promo-ribbon-scroll 48s linear infinite;
}
.promo-ribbon__group {
  display: flex;
  flex-shrink: 0;
}
.promo-ribbon__group span {
  display: inline-block;
  padding: 0.65rem 2rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #4a3020;
}
@keyframes promo-ribbon-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .promo-ribbon__track { animation: none; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
}

/* === NAV ===================================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.nav__logo img { height: 80px; }

.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links a { transition: color 0.15s ease; }
.nav__links a:hover { color: var(--mocha); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 var(--gutter) 1.5rem;
}
.nav__mobile a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__mobile.is-open { display: flex; }

@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* === HERO ===================================== */
.hero {
  background: var(--mocha);
  color: var(--cream);
  text-align: center;
  padding: clamp(4rem, 12vw, 7rem) var(--gutter);
}

.hero__mark { width: clamp(90px, 14vw, 140px); margin: 0 auto 1.5rem; }

.hero h1 {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.85;
  max-width: 34ch;
  margin: 0 auto 2rem;
}

.hero__tagline {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem) !important;
  opacity: 1 !important;
}

/* === MARQUEE ===================================== */
.marquee {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mocha-dark);
}
.marquee__sep {
  margin: 0 1.25rem;
  color: var(--sand, var(--mocha));
  opacity: 0.6;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.statement {
  text-align: center;
  max-width: 46ch;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: var(--mocha-dark);
  line-height: 1.5;
}

/* === BUTTONS ===================================== */
.btn {
  display: inline-block;
  text-align: center;
  padding: 0.85rem 2rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn--light {
  color: var(--cream);
}
.btn--light:hover { background: var(--cream); color: var(--mocha); }

.btn--dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  font-size: 13px;
  padding: 16px 2rem;
}
.btn--dark:hover { background: #4a3020; border-color: #4a3020; }

.btn--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

/* === SECTIONS ===================================== */
section { padding: clamp(3rem, 8vw, 5rem) var(--gutter); }

.section-title {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  color: var(--mocha-dark);
}

/* === FLAVOR TILES ===================================== */
.tiles {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.merch-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tile {
  display: block;
  padding: clamp(2.5rem, 6vw, 3.5rem) 1.5rem;
  text-align: center;
  border-radius: 4px;
  transition: transform 0.15s ease;
}
.tile:hover { transform: translateY(-3px); }

.tile--strawberry { background: var(--strawberry); color: var(--strawberry-ink); }
.tile--banana      { background: var(--banana); color: var(--banana-ink); }
.tile--vanilla     { background: var(--vanilla); color: var(--vanilla-ink); }

.tile h3 {
  font-family: var(--font-script);
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
@media (max-width: 700px) {
  .tiles { grid-template-columns: 1fr; }
}

/* === SIMPLE PAGE LAYOUT ===================================== */
.page {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) var(--gutter) 5rem;
}

.page h1 {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 6vw, 3rem);
  color: var(--mocha-dark);
  text-align: center;
  margin-bottom: 1.5rem;
}

.page p { margin-bottom: 1.25rem; }

.page__photo {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 2rem;
  object-fit: cover;
  max-height: 380px;
}

/* === FLAVOR PAGE ===================================== */
.flavor-hero {
  text-align: center;
  padding: clamp(3.5rem, 9vw, 5.5rem) var(--gutter);
}
.flavor-hero h1 {
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.flavor-hero p {
  max-width: 42ch;
  margin: 0 auto 2rem;
}
.flavor-hero .btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.flavor-hero .btn-row .btn--dark,
.flavor-hero .btn-row > div {
  width: 230px;
}

.flavor-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  text-align: left;
}
.flavor-hero__inner .shop-card__carousel {
  border-radius: 6px;
  margin-bottom: 0;
  background: transparent;
}
.flavor-hero__inner .shop-card__img { object-fit: cover; }
.flavor-hero__inner .btn-row {
  justify-content: flex-start;
}
.flavor-hero__serving-info {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
@media (max-width: 700px) {
  .flavor-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .flavor-hero__inner .btn-row {
    justify-content: center;
  }
  .flavor-hero__serving-info {
    text-align: center;
  }
}

/* gallery: thumbnail rail + main image, used on flavor pages */
.flavor-gallery {
  display: flex;
  gap: 0.75rem;
}
.flavor-gallery .shop-card__carousel {
  flex: 1;
  min-width: 0;
}
.flavor-gallery .shop-card__img--label {
  object-fit: contain;
  background: #fff;
}
.flavor-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}
.flavor-gallery__thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.flavor-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flavor-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--ink);
}
@media (max-width: 700px) {
  .flavor-gallery {
    flex-direction: column;
  }
  .flavor-gallery__thumbs {
    flex-direction: row;
    justify-content: center;
  }
}

.flavor-detail__cta {
  text-align: center;
  padding-top: 0.5rem;
}

.flavor--strawberry { background: var(--strawberry); color: var(--strawberry-ink); }
.flavor--banana      { background: var(--banana); color: var(--banana-ink); }
.flavor--vanilla      { background: var(--vanilla); color: var(--vanilla-ink); }

.whats-inside {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding-top: clamp(2.5rem, 6vw, 4rem);
}
.whats-inside h2 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.flavor-detail {
  max-width: 520px;
  margin: 0 auto;
  padding: 1rem var(--gutter) 3rem;
}
.flavor-detail .ingredient-block:first-child { border-top: none; }

/* === RECIPES HERO ===================================== */
.recipes-hero {
  position: relative;
  height: clamp(240px, 38vw, 400px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}
.recipes-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.recipes-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 114, 99, 0.55);
}
.recipes-hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 400;
  color: var(--cream);
}

/* === RECIPE / INGREDIENT CARDS ===================================== */
.cards {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  padding: 1.5rem;
  transition: transform 0.15s ease;
}
.card:hover { transform: translateY(-3px); }
.card__tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.card h3 {
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 0.4rem;
}

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

/* === RECIPE DETAIL ===================================== */
.recipe-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.recipe-hero {
  display: block;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 auto 2rem;
}

.recipe h2 {
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--mocha-dark);
  margin: 2rem 0 0.75rem;
}

.recipe ul, .recipe ol {
  padding-left: 1.25rem;
}
.recipe ul li { list-style: disc; margin-bottom: 0.5rem; }
.recipe ol li { list-style: decimal; margin-bottom: 0.75rem; }

/* === INGREDIENTS PAGE ===================================== */
.ingredient-block {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0;
}
.ingredient-block h3 {
  font-family: var(--font-script);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

/* === COMPARE ===================================== */
.compare-cta {
  display: inline-block;
  background: #f7c3cf;
  color: #2c1810;
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.compare-cta:hover { background: #f2aebd; }
.compare-intro {
  text-align: center;
  max-width: 46ch;
  margin: 0 auto 1.5rem;
  color: var(--ink-soft);
}
.compare-toggle {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 auto 2rem;
}
.compare-toggle__btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.compare-toggle__btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.compare-panel {
  display: none;
  max-width: 640px;
  margin: 0 auto 3rem;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.compare-panel.is-active { display: grid; }
@media (max-width: 640px) {
  .compare-panel { grid-template-columns: 1fr; }
}
.compare-panel__col {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.compare-panel__col h4 {
  font-family: var(--font-script);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  text-align: center;
}
.compare-panel__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
}
.compare-panel__col li {
  padding: 0.4rem 0;
  border-top: 1px solid var(--line);
}
.compare-panel__col li:first-child { border-top: none; }
.compare-panel__col--them {
  background: #fbf3ee;
}
.compare-panel__col--us {
  background: #2c1810;
  color: #faf6f0;
  border-color: #2c1810;
}
.compare-panel__col--us li {
  border-top-color: rgba(250, 246, 240, 0.2);
}
.compare-flag {
  color: var(--strawberry-ink);
  font-weight: 700;
}
.compare-panel__stat {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--strawberry-ink);
  text-align: center;
  white-space: nowrap;
}
.compare-panel__col--us .compare-panel__stat {
  color: inherit;
  border-top-color: rgba(250, 246, 240, 0.2);
}

/* === SHOP ===================================== */
.shop-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 0 2rem;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.shop-card__carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: #fff;
}
.shop-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.shop-card__img.is-active { opacity: 1; }
.shop-card__img--label {
  object-fit: contain;
  background: #fff;
}
.carousel-dots {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  z-index: 2;
}
.carousel-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-dot::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(44, 24, 16, 0.3);
}
.carousel-dot.is-active::after { background: var(--ink); }
.shop-card__carousel { touch-action: pan-y; cursor: pointer; }
.shop-card__swatch {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.shop-card__body {
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shop-card__body > .btn,
.shop-card__body > .shop-card__more {
  margin-top: auto;
}
.color-swatches {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.color-swatch {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(44, 24, 16, 0.25);
  padding: 0;
  cursor: pointer;
}
.color-swatch.is-active {
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 3px var(--ink);
}
.color-swatch::after {
  content: attr(aria-label);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--cream);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 10;
}
.color-swatch:hover::after,
.color-swatch:focus-visible::after {
  opacity: 1;
}
.shop-card--strawberry { background: var(--strawberry); border: none; }
.shop-card--banana     { background: var(--banana); border: none; }
.shop-card--vanilla    { background: var(--vanilla); border: none; }
.shop-card--strawberry .shop-card__carousel,
.shop-card--banana .shop-card__carousel,
.shop-card--vanilla .shop-card__carousel { background: transparent; }
.shop-card--strawberry .shop-card__img:not(.shop-card__img--label),
.shop-card--banana .shop-card__img:not(.shop-card__img--label),
.shop-card--vanilla .shop-card__img:not(.shop-card__img--label) { object-fit: cover; }
.shop-card h3 {
  font-family: var(--font-script);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.shop-card p { font-size: 0.9rem; margin-bottom: 1.25rem; }

/* === MERCH DETAIL PAGE ===================================== */
.shop-card.merch-detail {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0;
  overflow: visible;
}
.merch-detail .shop-card__carousel {
  border-radius: 6px;
  margin-bottom: 0;
}
.merch-detail__info .color-swatches { justify-content: flex-start; }
.merch-detail__info h1 {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 400;
  margin: 0.3rem 0 0.5rem;
}
.merch-detail__info .price {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.merch-detail__info .desc {
  margin-bottom: 2rem;
  max-width: 42ch;
}
.merch-detail__info [id^="product-component-"] { display: inline-block; }
.merch-detail__sizing {
  margin: -1rem 0 2rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  max-width: 42ch;
}
.merch-detail__sizing-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.merch-detail__sizing-label::-webkit-details-marker { display: none; }
.merch-detail__sizing-label::after {
  content: '+';
  font-size: 0.95rem;
  line-height: 1;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.merch-detail__sizing[open] .merch-detail__sizing-label::after { content: '\2212'; }
.merch-detail__sizing[open] .merch-detail__sizing-label { margin-bottom: 0.5rem; }
.merch-detail__sizing-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .shop-card.merch-detail { grid-template-columns: 1fr; }
}
.merch-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 auto 1.25rem;
  max-width: var(--max-w);
  padding: 0 clamp(1rem, 5vw, 2rem);
}
.merch-detail-back:hover { color: var(--ink); }

.shop-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: inherit;
}
.shop-card__more span { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.shop-card__more::after { content: '\2192'; font-size: 1rem; }

.shop-note {
  text-align: center;
  max-width: 46ch;
  margin: 3rem auto 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* === FOOTER ===================================== */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem var(--gutter) 3rem;
  text-align: center;
}
.footer__mark { height: 120px; margin: 0 auto 1rem; opacity: 0.8; }
.footer__social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer__social a { color: var(--ink-soft); }
.footer__pinterest {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  overflow-x: auto;
}
@media (max-width: 700px) {
  .footer__pinterest { max-width: 420px; }
}
.footer__pinterest [class$="_board"] {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.footer__pinterest [class$="_ft"],
.footer__pinterest [class$="_hd"] {
  display: none !important;
}
.footer p {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.footer__contact {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4rem);
  flex-wrap: wrap;
  margin: 0 0 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.footer__org-mark {
  display: block;
  height: 56px;
  width: auto;
  margin: 0 auto 1rem;
  opacity: 0.85;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.footer__contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mocha);
}
.footer__contact-item a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

/* === COMING SOON OVERLAY ===================================== */
.coming-soon-block {
  position: relative;
}
.coming-soon-block .tiles {
  filter: blur(7px);
  pointer-events: none;
  user-select: none;
}
.coming-soon-block__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.coming-soon-block__badge {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 400;
  padding: 0.9rem 2.25rem;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(44, 24, 16, 0.28);
  white-space: nowrap;
}

/* === PER-CARD COMING SOON (single shop-card, image only) ===== */
.shop-card--coming-soon .shop-card__carousel { pointer-events: none; }
.shop-card--coming-soon .shop-card__img { filter: blur(6px); }
.shop-card--coming-soon .shop-card__more { display: none; }
.shop-card__coming-soon-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.shop-card__coming-soon-badge span {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-script);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 400;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(44, 24, 16, 0.28);
  white-space: nowrap;
}

/* === ANNOUNCEMENT MODAL ===================================== */
.announce-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 24, 16, 0.45);
  padding: var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.announce-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.announce-modal__card {
  position: relative;
  background: var(--cream);
  border-radius: 12px;
  max-width: 360px;
  width: 100%;
  padding: 2.5rem 2rem 2.25rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(44, 24, 16, 0.3);
  transform: scale(0.94) translateY(8px);
  transition: transform 0.25s ease;
}
.announce-modal.is-open .announce-modal__card {
  transform: scale(1) translateY(0);
}
.announce-modal__mark {
  height: 90px;
  margin: 0 auto 1rem;
}
.announce-modal__title {
  font-family: var(--font-script);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--mocha-dark);
  margin-bottom: 0.6rem;
}
.announce-modal__text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.announce-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.25rem;
}
.announce-modal__close:hover { color: var(--ink); }
.announce-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.announce-modal__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--ink);
  background: #fff;
  text-align: center;
  box-sizing: border-box;
}
.announce-modal__input:focus {
  outline: none;
  border-color: var(--mocha);
}
.announce-modal__submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.announce-modal__fine-print {
  font-size: 0.68rem;
  color: var(--ink-soft);
  opacity: 0.75;
  margin-top: 0.85rem;
  margin-bottom: 0;
}
.footer__contact-item a:hover { border-bottom-color: currentColor; }
