/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background-color: #fafaf8;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fafaf8;
  border-bottom: 1px solid #e8e4df;
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a5550;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1a1a1a;
}

.nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #5a5550;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
  margin-left: 8px;
}

.nav-search-btn:hover {
  color: #1a1a1a;
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-box {
  background-color: #fafaf8;
  width: 100%;
  max-width: 600px;
  padding: 40px;
  position: relative;
  border-top: 3px solid #c8b89a;
}

.search-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 0.85rem;
  color: #9a948e;
  cursor: pointer;
  transition: color 0.2s ease;
}

.search-close:hover {
  color: #1a1a1a;
}

.search-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8b89a;
  margin-bottom: 16px;
}

.search-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e8e4df;
  background: transparent;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: #1a1a1a;
  padding: 8px 0 16px;
  outline: none;
}

.search-input::placeholder {
  color: #c8b89a;
}

.search-results {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-result-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid #f0ece8;
  transition: background-color 0.15s ease;
}

.search-result-item:hover {
  padding-left: 8px;
}

.search-result-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8b89a;
}

.search-result-title {
  font-size: 1rem;
  color: #1a1a1a;
  font-family: 'Playfair Display', Georgia, serif;
}

.search-result-desc {
  font-size: 0.8rem;
  color: #9a948e;
  line-height: 1.5;
}

.search-hint {
  font-size: 0.75rem;
  color: #c8b89a;
  letter-spacing: 0.06em;
  margin-top: 16px;
  font-style: italic;
}

.search-results mark {
  background: transparent;
  color: #8a6040;
  font-weight: 600;
}

.search-empty {
  font-size: 0.85rem;
  color: #9a948e;
  padding: 16px 0;
}

/* ===== ANNOUNCEMENT BAR ===== */
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.announcement-bar {
  background-color: #1a1a1a;
  color: #c8b89a;
  padding: 10px 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-bar-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
  will-change: transform;
}

.announcement-bar-inner:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-block;
  padding: 0 48px;
}

.ticker-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #c8b89a;
  border-radius: 50%;
  margin: 0 0 2px 0;
  vertical-align: middle;
  opacity: 0.5;
}

nav {
  top: 36px !important;
}

/* ===== HERO ===== */
@keyframes spin-cw {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero {
  padding-top: 96px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding-left: 48px;
  padding-right: 48px;
  border-bottom: 1px solid #e8e4df;
  background-color: #fafaf8;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(200, 184, 154, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(200, 184, 154, 0.08) 0%, transparent 50%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-spin {
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  object-fit: cover;
  border-radius: 50%;
  animation: spin-cw 18s linear infinite;
  opacity: 0.92;
}

/* ===== PAGE LOGO (interior pages) ===== */
.page-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-logo-spin {
  width: clamp(160px, 18vw, 280px);
  height: clamp(160px, 18vw, 280px);
  object-fit: cover;
  border-radius: 50%;
  animation: spin-cw 18s linear infinite;
  opacity: 0.92;
}

.page-logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.hero-title {
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 32px;
}


.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #7a746e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 480px;
  line-height: 1.8;
  border-left: 2px solid #c8b89a;
  padding-left: 20px;
  margin-bottom: 48px;
}

.hero-scroll-hint {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b0a89e;
}

/* ===== SECTION BASE ===== */
section {
  padding: 80px 48px;
  border-bottom: 1px solid #e8e4df;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8b89a;
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 24px;
  color: #1a1a1a;
}

/* ===== INTRO SECTION ===== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.intro-text p {
  font-size: 1.05rem;
  color: #4a4540;
  line-height: 1.85;
  margin-bottom: 20px;
}

.intro-meta {
  padding-top: 24px;
}

.intro-meta-item {
  padding: 24px 0;
  border-top: 1px solid #e8e4df;
}

.intro-meta-item:last-child {
  border-bottom: 1px solid #e8e4df;
}

.meta-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8b89a;
  margin-bottom: 6px;
}

.meta-value {
  font-size: 0.95rem;
  color: #3a3530;
  line-height: 1.5;
}

/* ===== FEATURED STORIES ===== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.story-card {
  cursor: pointer;
}

.story-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.tag-origin   { background-color: #e8f0e8; color: #4a7c4a; }
.tag-taste    { background-color: #f0ece8; color: #8a6040; }
.tag-process  { background-color: #e8ecf0; color: #405a7a; }
.tag-clean    { background-color: #f0f0e8; color: #6a7040; }
.tag-natural  { background-color: #f4ece4; color: #7a5035; }

.story-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #1a1a1a;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.story-card:hover h3 {
  color: #8a6040;
}

.story-card p {
  font-size: 0.88rem;
  color: #7a746e;
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-date {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b0a89e;
}

.read-more {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6040;
  border-bottom: 1px solid #c8b89a;
  padding-bottom: 1px;
  transition: color 0.2s ease;
  margin-left: 12px;
}

.read-more:hover {
  color: #1a1a1a;
}

/* ===== DIVIDER ===== */
.divider {
  width: 40px;
  height: 2px;
  background-color: #c8b89a;
  margin: 20px 0;
}

/* ===== OUR MENU ===== */
.still-menu {
  --paper: #f4f0e8;
  --ink: #23201b;
  --ink-soft: #5c574d;
  --ink-faint: #8a8478;
  --line: #d8d1c2;
  --accent: #7a3b1d;

  position: relative;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.5rem, 6vw, 7rem);
  overflow: hidden;
  border-bottom: 1px solid #e8e4df;
}

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

.still-menu__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.still-menu__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 1.4rem;
  font-weight: 500;
}

.still-menu__title {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
}

.still-menu__title em {
  font-style: italic;
  color: var(--accent);
}

.still-menu__lead {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 2rem 0 0;
}

.still-menu__rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.still-menu__block { margin: 0 0 clamp(2rem, 4vw, 2.8rem); }
.still-menu__block:last-of-type { margin-bottom: 0; }

.still-menu__block h3 {
  font-family: "Archivo", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1rem;
}

.still-menu__block p {
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
  font-weight: 300;
}

.still-menu__block p:last-child { margin-bottom: 0; }

.still-menu__block p strong {
  color: var(--ink);
  font-weight: 500;
}

.still-menu__close {
  margin: clamp(3rem, 6vw, 4.5rem) 0 0;
  text-align: center;
}

.still-menu__close span {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.still-menu__close span::before,
.still-menu__close span::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin: 0 0.9rem;
}

@media (max-width: 600px) {
  .still-menu__close span::before,
  .still-menu__close span::after { width: 16px; margin: 0 0.55rem; }
}

/* ===== CRAFT STATEMENT ===== */
.craft-statement {
  background-color: #1a1a1a;
  padding: 80px 48px;
  border-bottom: 1px solid #2a2520;
}

.craft-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8b89a;
  margin-bottom: 20px;
}

.craft-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fafaf8;
  line-height: 1.15;
  margin-bottom: 56px;
  max-width: 680px;
}

.craft-links {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.craft-link-divider {
  width: 1px;
  background-color: #2e2a26;
  margin: 0 48px;
}

.craft-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
  transition: opacity 0.2s ease;
}

.craft-link:hover {
  opacity: 0.7;
}

.craft-link-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #c8b89a;
}

.craft-link-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: #fafaf8;
  line-height: 1;
}

.craft-link-desc {
  font-size: 0.8rem;
  color: #5a5550;
  letter-spacing: 0.04em;
}

/* ===== FOOTER ===== */
footer {
  padding: 48px 48px 40px;
  border-top: 1px solid #e8e4df;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.68rem;
  color: #b0a89e;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 10px;
}

.hero-tasting-note {
  font-size: 0.78rem;
  color: #9a948e;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-style: italic;
  max-width: 380px;
  margin-top: 16px;
  margin-bottom: 32px;
}

/* Language selector */
.footer-translate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-translate-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8b89a;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-btn {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c0b4a8;
  padding: 10px 6px;
  margin: -10px -6px;
  transition: color 0.15s ease;
  line-height: 1;
}
.lang-btn[href]:hover { color: #6a6460; }
.lang-btn.lang-btn--active {
  color: #2a2520;
  cursor: default;
  pointer-events: none;
}
.lang-sep {
  color: #ddd8d2;
  font-size: 0.62rem;
  line-height: 1;
  user-select: none;
}

/* Ensure body position is not shifted by any injected toolbar */
body { top: 0 !important; }

.footer-location {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-location-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8b89a;
}

.footer-location-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: right;
}

.footer-location-address {
  font-size: 0.78rem;
  color: #7a746e;
  line-height: 1.7;
  text-align: right;
}

.footer-location-map {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8b89a;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  margin-top: 2px;
}

.footer-location-map:hover {
  color: #8a6040;
  border-bottom-color: #c8b89a;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    position: relative;
    align-items: flex-start;
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 32px;
  }
  .hero-content {
    width: 100%;
  }
  .hero-logo-wrap {
    position: absolute;
    top: 124px;
    left: 46%;
    padding-left: 0;
    width: auto;
  }
  .hero-logo-spin {
    width: clamp(80px, 22vw, 120px);
    height: clamp(80px, 22vw, 120px);
  }
  /* Hide spinning logo on interior pages on mobile */
  .page-logo-wrap { display: none; }
  .page-logo-grid { display: block; }
  /* Hide Coffee Origins logo on mobile */
  .origin-intro-logo { display: none; }
  .origin-intro-wrap { display: block; }
  .footer-location {
    align-items: center;
  }

  .footer-location-name,
  .footer-location-address {
    text-align: center;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 0 10px;
  border-top: 1px solid #e8e4df;
  margin-bottom: 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #c8b89a;
  transition: color 0.2s ease;
}

.footer-social a[aria-label="Instagram"]:hover {
  color: #c13584;
}

.footer-social a[aria-label="Threads"]:hover {
  color: #1a1a1a;
}

.footer-social a[aria-label="Email"]:hover {
  color: #8a6040;
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding-top: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-copy {
  font-size: 0.65rem;
  color: #b0a89e;
  letter-spacing: 0.06em;
}

.footer-privacy {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8b89a;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
}

.footer-privacy:hover {
  color: #8a6040;
  border-bottom-color: #c8b89a;
}

@media (max-width: 900px) {
  footer {
    padding: 40px 24px 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer-legal {
    align-items: center;
  }
}

/* ===== HAMBURGER (MOBILE) ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #1a1a1a;
  transition: all 0.25s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  /* --- ANNOUNCEMENT BAR --- */
  .announcement-bar {
    font-size: 0.62rem;
    padding: 9px 16px;
    letter-spacing: 0.12em;
  }

  /* --- NAV --- */
  nav {
    padding: 0 20px;
    top: 36px; /* height of announcement bar */
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 96px; /* announcement bar (36) + nav (60) */
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1d3a5f;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 0 10vw;
    gap: 2px;
    z-index: 99;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav-links li {
    padding: 0;
    border-bottom: none;
    flex-shrink: 0;
  }

  .nav-links li a {
    display: block;
    padding: 2px 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.25;
    color: #e8e4df;
    text-align: right;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.15s ease;
  }

  .nav-links.open li a { opacity: 1; transform: none; }
  .nav-links.open li:nth-child(1) a { transition-delay: 0.07s; }
  .nav-links.open li:nth-child(2) a { transition-delay: 0.13s; }
  .nav-links.open li:nth-child(3) a { transition-delay: 0.19s; }
  .nav-links.open li:nth-child(4) a { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(5) a { transition-delay: 0.31s; }
  .nav-links.open li:nth-child(6) a { transition-delay: 0.37s; }

  .nav-links li a:hover { background: none; color: rgba(232,228,223,0.5); }
  .nav-links li a.active,
  .nav-links li a.active:hover { background: none; color: rgba(232,228,223,0.5); }
  .nav-links li a.active::before { content: none; }

  /* Nav bar turns navy when overlay is open */
  nav.nav-open {
    background-color: #1d3a5f;
    border-bottom-color: transparent;
  }
  nav.nav-open .nav-logo { color: rgba(232,228,223,0.65); }
  nav.nav-open .nav-toggle span { background-color: rgba(232,228,223,0.7); }
  nav.nav-open .nav-shop-btn,
  nav.nav-open .nav-search-btn { color: rgba(232,228,223,0.65); }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
  }

  .nav-toggle { display: flex; }

  .nav-search-btn {
    display: flex;
    margin-left: 0;
  }

  .nav-shop-btn {
    width: auto;
    height: auto;
    padding: 4px;
    border-radius: 4px;
  }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* --- HERO --- */
  .hero,
  section.hero {
    padding-top: 120px !important; /* bar (36) + nav (60) + buffer */
    padding-left: 20px !important;
    padding-right: 20px !important;
    min-height: auto !important;
    padding-bottom: 32px !important;
  }

  .hero-title {
    font-size: clamp(3.5rem, 18vw, 6rem);
    margin-bottom: 24px;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 100%;
    padding-left: 14px;
  }

  .hero-scroll-hint {
    font-size: 0.65rem;
  }

  /* --- SECTIONS --- */
  section {
    padding: 48px 20px;
  }

  /* --- INTRO GRID --- */
  .intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-text p {
    font-size: 0.97rem;
  }

  .section-heading {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  /* --- STORIES --- */
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* --- CRAFT STATEMENT --- */
  .craft-statement {
    padding: 48px 20px;
  }

  .craft-heading {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-bottom: 40px;
  }

  .craft-links {
    flex-direction: column;
    gap: 28px;
  }

  .craft-link-divider { display: none; }

  .craft-link-title {
    font-size: 1.15rem;
  }

  /* --- SEARCH OVERLAY --- */
  .search-overlay {
    padding-top: 96px;
    align-items: flex-start;
  }

  .search-box {
    padding: 28px 20px;
    margin: 0 16px;
  }

  .search-input {
    font-size: 1.2rem;
  }

  /* --- FOOTER --- */
  footer {
    padding: 36px 20px 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer-location {
    align-items: center;
  }

  .footer-location-address {
    text-align: center;
  }

  .footer-location-name {
    text-align: center;
  }
}

/* ===== SMALL MOBILE (≤ 420px) ===== */
@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(3rem, 20vw, 4.5rem);
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  section {
    padding: 40px 16px;
  }

  .craft-statement {
    padding: 40px 16px;
  }

  footer {
    padding: 32px 16px 24px;
  }

  .intro-meta-item {
    padding: 18px 0;
  }

  .meta-value {
    font-size: 0.88rem;
  }

  .story-card h3 {
    font-size: 1.05rem;
  }

  .search-box {
    margin: 0 8px;
    padding: 24px 16px;
  }
}

/* ===== SCROLL NAV ===== */
.snav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 150;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background-color: #fafaf8;
  border-bottom: 1px solid #e8e4df;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.snav.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.snav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
}

.snav__btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #5a5550;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  width: 36px;
  height: 36px;
}

.snav__btn:hover { color: #1a1a1a; }
.snav__btn svg { width: 18px; height: 18px; }

.snav__ham span {
  display: block;
  width: 20px;
  height: 1.5px;
  background-color: currentColor;
  margin: 4px 0;
  transition: all 0.25s ease;
}

/* SCROLL NAV OVERLAY MENU */
.snav-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background-color: #1d3a5f;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 0 10vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.snav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.snav-overlay__brand {
  position: absolute;
  top: 40px;
  left: 36px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(232, 228, 223, 0.55);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.snav-overlay__close {
  position: absolute;
  top: 36px;
  right: 36px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: rgba(232, 228, 223, 0.4);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
  line-height: 1;
}

.snav-overlay__close:hover { color: #e8e4df; }

.snav-overlay__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.snav-overlay__nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 700;
  color: #e8e4df;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.15s ease;
}

.snav-overlay.open .snav-overlay__nav a {
  opacity: 1;
  transform: none;
}

.snav-overlay.open .snav-overlay__nav a:nth-child(1) { transition-delay: 0.07s; }
.snav-overlay.open .snav-overlay__nav a:nth-child(2) { transition-delay: 0.13s; }
.snav-overlay.open .snav-overlay__nav a:nth-child(3) { transition-delay: 0.19s; }
.snav-overlay.open .snav-overlay__nav a:nth-child(4) { transition-delay: 0.25s; }
.snav-overlay.open .snav-overlay__nav a:nth-child(5) { transition-delay: 0.31s; }
.snav-overlay.open .snav-overlay__nav a:nth-child(6) { transition-delay: 0.37s; }
.snav-overlay.open .snav-overlay__nav a:nth-child(7) { transition-delay: 0.43s; }

.snav-overlay__nav a:hover { color: rgba(232, 228, 223, 0.5); }

.snav-overlay__social {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.snav-overlay__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(232, 228, 223, 0.25);
  color: rgba(232, 228, 223, 0.6);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.snav-overlay__social-link:hover {
  border-color: rgba(232, 228, 223, 0.65);
  color: #e8e4df;
}

.snav-overlay__social-link svg { width: 17px; height: 17px; }

@media (max-width: 700px) {
  .snav-overlay {
    align-items: center;
    padding: 0 24px;
  }
  .snav-overlay__nav {
    align-items: center;
  }
  .snav-overlay__nav a {
    font-size: clamp(1.4rem, 7vw, 2rem);
    letter-spacing: 0.04em;
  }
}

/* ===== DARK MODE ===== */
body.dark {
  background-color: #141210;
  color: #e8e4df;
}

body.dark nav,
body.dark .snav {
  background-color: #1a1815;
  border-color: #2a2520;
}

body.dark .nav-logo,
body.dark .snav__logo { color: #e8e4df; }

body.dark .snav__btn { color: #8a8478; }
body.dark .snav__btn:hover { color: #e8e4df; }

body.dark .snav-overlay { background-color: #1d3a5f; }
body.dark .snav-overlay__nav a { color: #e8e4df; }
body.dark .snav-overlay__brand { color: rgba(232, 228, 223, 0.55); }

body.dark section,
body.dark .hero { background-color: #141210; }

body.dark .hero {
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(200, 184, 154, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(200, 184, 154, 0.04) 0%, transparent 50%);
}

body.dark .hero-title,
body.dark .section-heading,
body.dark h2, body.dark h3 { color: #e8e4df; }

body.dark .hero-subtitle,
body.dark .hero-tasting-note,
body.dark .hero-scroll-hint { color: #7a746e; }

body.dark p { color: #9a8e84; }

body.dark .intro-meta-item,
body.dark .divider,
body.dark section { border-color: #2a2520; }

body.dark .story-card h3 { color: #e8e4df; }
body.dark .story-card p { color: #7a746e; }

body.dark .craft-statement { background-color: #0e0c0a; border-color: #1e1a16; }

body.dark .still-menu { background: #1a1815; }
body.dark .still-menu__title { color: #e8e4df; }
body.dark .still-menu__lead,
body.dark .still-menu__block p { color: #8a8478; }
body.dark .still-menu__close span { color: #e8e4df; }

body.dark footer { background-color: #141210; border-color: #2a2520; }
body.dark .footer-brand,
body.dark .footer-location-name { color: #e8e4df; }
body.dark .footer-copy,
body.dark .footer-tagline,
body.dark .footer-location-address { color: #5a5550; }

body.dark .announcement-bar { background-color: #0e0c0a; }

body.dark .search-overlay { background-color: rgba(14, 12, 10, 0.85); }
body.dark .search-box { background-color: #1a1815; border-color: #c8b89a; }
body.dark .search-input { color: #e8e4df; }
body.dark .search-result-title { color: #e8e4df; }

/* ===== SHOP NAV ICON ===== */
.nav-shop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #5a5550;
  border-radius: 50%;
  text-decoration: none;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.nav-shop-btn:hover { color: #1a1a1a; }
body.dark .nav-shop-btn { color: #9a948e; }
body.dark .nav-shop-btn:hover { color: #e8e4df; }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #221e1a;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.04), 0 -8px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-bar.visible { transform: translateY(0); }

.cookie-bar__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #9a948e;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.cookie-bar__link {
  color: #c8b89a;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(200,184,154,0.4);
  transition: color 0.15s ease;
}
.cookie-bar__link:hover { color: #e8e4df; }

.cookie-bar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-bar__btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.cookie-bar__btn--accept {
  background: #8a6040;
  color: #fff;
}
.cookie-bar__btn--accept:hover { background: #7a5030; }

.cookie-bar__btn--decline {
  background: transparent;
  color: #5a5550;
  border: 1px solid #3a3530;
}
.cookie-bar__btn--decline:hover { color: #c8b89a; border-color: #5a5550; }

@media (max-width: 640px) {
  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 24px;
    gap: 14px;
  }
  .cookie-bar__actions { width: 100%; justify-content: flex-end; }
}
body.dark .lang-btn { color: #504a44; }
body.dark .lang-btn:hover { color: #9a948e; }
body.dark .lang-btn.lang-btn--active { color: #e8e4df; }
body.dark .lang-sep { color: #2e2a26; }

/* ── 3D tilt glare overlay ──────────────────────────────── */
.card-tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3) 0%, transparent 65%);
  mix-blend-mode: overlay;
  z-index: 1;
}
