/* ======================================================
   TOKYO CENTRAL — Modern Redesign
   Japanese aesthetic: warm, clean, subtle traditional motifs
   ====================================================== */

/* ── Design Tokens ── */
:root {
  /* Palette — Japanese earth tones */
  --green:        #2E7D32;
  --green-dark:   #1B5E20;
  --green-light:  #4CAF50;
  --cream:        #F5F0DC;
  --cream-light:  #FAF8F0;
  --cream-dark:   #EDE8D0;
  --gold:         #F5A623;
  --gold-dark:    #D4901A;
  --charcoal:     #2C2C2C;
  --ink:          #1A1A1A;
  --stone:        #6B6B6B;
  --mist:         #A8A8A0;
  --silk:         #F9F7F1;
  --white:        #FFFFFF;
  --red-accent:   #C62828;

  /* Typography */
  --font-body:    'Satoshi', 'DM Sans', system-ui, sans-serif;
  --font-display: 'Noto Serif JP', Georgia, serif;
  --font-ui:      'DM Sans', 'Satoshi', system-ui, sans-serif;

  /* Spacing (4px base) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows — warm-toned */
  --shadow-sm:  0 1px 3px rgba(42, 40, 30, 0.06), 0 1px 2px rgba(42, 40, 30, 0.04);
  --shadow-md:  0 4px 12px rgba(42, 40, 30, 0.08), 0 2px 4px rgba(42, 40, 30, 0.04);
  --shadow-lg:  0 12px 32px rgba(42, 40, 30, 0.10), 0 4px 8px rgba(42, 40, 30, 0.04);
  --shadow-xl:  0 20px 48px rgba(42, 40, 30, 0.14), 0 8px 16px rgba(42, 40, 30, 0.06);

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --content-narrow: 640px;
  --content-default: 1080px;
  --content-wide:   1240px;
  --nav-height:     72px;
}

/* ── Skip Link (WCAG 2.4.1) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 999;
  padding: var(--space-3) var(--space-6);
  background: var(--green);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ── Screen reader only ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Global Focus Styles (WCAG 2.4.7 / 2.4.11 / 2.4.12) ── */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-interactive);
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input {
  font: inherit;
  border: none;
  background: none;
}

/* ── Utility ── */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

.section-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(46, 125, 50, 0.08);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--space-3);
}

.section-subtitle {
  font-size: 16px;
  color: var(--stone);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header .section-subtitle {
  margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
  white-space: nowrap;
}

.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}


/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 240, 0.85);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(42, 40, 30, 0.06);
  transition: background 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 248, 240, 0.96);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: 0 var(--space-5);
  height: var(--nav-height);
}

.nav-logo img {
  height: 28px;
  width: auto;
  transition: opacity var(--transition-interactive);
}

.nav-logo:hover img { opacity: 0.7; }

.nav-links {
  display: none;
  gap: var(--space-1);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition-interactive),
              background var(--transition-interactive);
  position: relative;
}

.nav-link:hover {
  color: var(--green);
  background: rgba(46, 125, 50, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-search-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--charcoal);
  transition: color var(--transition-interactive),
              background var(--transition-interactive);
}

.nav-search-btn:hover {
  color: var(--green);
  background: rgba(46, 125, 50, 0.06);
}

/* Hamburger */
.nav-mobile-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-interactive);
}

@media (min-width: 1024px) {
  .nav-mobile-btn { display: none; }
}

.nav-mobile-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out),
              opacity 0.3s var(--ease-out);
}

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

/* Mobile Nav Drawer */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--nav-height));
  height: calc(100dvh - var(--nav-height));
  z-index: 99;
  background: var(--cream-light);
  padding: var(--space-6) var(--space-5);
  gap: var(--space-1);
  overflow-y: auto;
  animation: slideDown 0.3s var(--ease-out);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-links.mobile-open .nav-link {
  font-size: 16px;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
}


/* ── Search Overlay ── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

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

.search-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  border-radius: var(--radius-full);
  transition: background var(--transition-interactive);
}

.search-close:hover { background: rgba(255, 255, 255, 0.1); }

.search-inner {
  width: min(560px, 90vw);
  transform: translateY(20px);
  transition: transform 0.3s var(--ease-out);
}

.search-overlay.open .search-inner { transform: translateY(0); }

.search-input {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  font-size: 18px;
  background: var(--white);
  border-radius: var(--radius-xl);
  color: var(--ink);
  box-shadow: var(--shadow-xl);
}

.search-input::placeholder { color: var(--mist); }
.search-input:focus { outline: 2px solid var(--green); outline-offset: 2px; }


/* ══════════════════════════════════════════════════
   HERO SLIDER — Horizontal carousel, natural size
   ══════════════════════════════════════════════════ */
.hero {
  margin-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 40%, var(--cream-dark) 100%);
  padding: var(--space-8) 0 0;
}

.hero-track-wrapper {
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.hero-track-wrapper:active { cursor: grabbing; }

.hero-track {
  display: flex;
  gap: var(--space-5);
  transition: transform 0.5s var(--ease-in-out);
  will-change: transform;
  padding: 0 var(--space-5);
}

/* Disable transition while dragging */
.hero-track.dragging {
  transition: none;
}

.hero-slide {
  flex: 0 0 auto;
  width: min(440px, 78vw);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s var(--ease-out),
              transform 0.3s var(--ease-out);
  display: block;
}

.hero-slide:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.015);
}

.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

/* Arrows — minimal, translucent pills */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
  color: var(--charcoal);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              transform var(--transition-interactive);
}

.hero-arrow svg { width: 16px; height: 16px; }

.hero-prev { left: var(--space-2); }
.hero-next { right: var(--space-2); }

@media (min-width: 768px) {
  .hero-arrow { width: 36px; height: 36px; }
  .hero-arrow svg { width: 18px; height: 18px; }
  .hero-prev { left: var(--space-4); }
  .hero-next { right: var(--space-4); }
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-dark);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-arrow:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

/* Dots — below the carousel */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  padding-top: var(--space-6);
  padding-bottom: var(--space-2);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--mist);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--ease-out),
              width 0.3s var(--ease-out);
}

.hero-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
}

.hero-dot:hover:not(.active) {
  background: var(--stone);
}

/* Progress bar — subtle thin line below dots */
.hero-progress {
  width: 60px;
  height: 1.5px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 1px;
  margin: var(--space-2) auto 0;
  margin-bottom: var(--space-8);
  overflow: hidden;
  position: relative;
}

.hero-progress::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--green);
  border-radius: 1px;
  opacity: 0.6;
  animation: heroProgress 5s linear infinite;
}

@keyframes heroProgress {
  from { width: 0%; }
  to { width: 100%; }
}

/* Responsive slide widths */
@media (min-width: 640px) {
  .hero-slide { width: min(480px, 42vw); }
  .hero-track { gap: var(--space-6); padding: 0 var(--space-8); }
  .hero { padding: var(--space-10) 0 0; }
}

@media (min-width: 1024px) {
  .hero-slide { width: 440px; }
  .hero-track { gap: var(--space-6); padding: 0 calc((100vw - 1240px) / 2 + var(--space-8)); }
}


/* ══════════════════════════════════════════════════
   ONLINE ARRIVALS
   ══════════════════════════════════════════════════ */
.arrivals {
  padding: var(--space-16) 0;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream-light) 30%, var(--cream-light) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle Japanese pattern — asanoha (hemp leaf) inspired */
.arrivals::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(60deg, transparent, transparent 28px, rgba(46, 125, 50, 0.025) 28px, rgba(46, 125, 50, 0.025) 29px),
    repeating-linear-gradient(-60deg, transparent, transparent 28px, rgba(46, 125, 50, 0.025) 28px, rgba(46, 125, 50, 0.025) 29px);
  pointer-events: none;
}

/* Grid layout with image */
.arrivals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .arrivals-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.arrivals-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.arrivals-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arrivals-with-image .arrivals-inner {
  text-align: left;
  max-width: none;
  margin-inline: 0;
}

.arrivals-with-image .arrivals-actions {
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .arrivals-image {
    max-height: 280px;
  }
  .arrivals-with-image .arrivals-inner {
    text-align: center;
  }
  .arrivals-with-image .arrivals-actions {
    justify-content: center;
  }
}

.arrivals-inner {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.arrivals-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(46, 125, 50, 0.08);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.arrivals-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--space-4);
}

.arrivals-text {
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
}

.arrivals-sub {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

.arrivals-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}


/* ══════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════ */
.about {
  padding: var(--space-20) 0;
  background: var(--cream-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-content .section-badge { margin-bottom: var(--space-3); }

.about-lead {
  font-size: 18px;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: var(--space-4);
  line-height: 1.5;
}

.about-body {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  color: var(--green-dark);
  margin: var(--space-6) 0;
  padding-left: var(--space-5);
  border-left: 3px solid var(--gold);
}

.about-cta-text {
  margin-bottom: var(--space-6);
}


/* ══════════════════════════════════════════════════
   PROMOTIONS
   ══════════════════════════════════════════════════ */
.promos {
  padding: var(--space-20) 0;
  background: var(--silk);
}

.promos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .promos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .promos-grid { grid-template-columns: repeat(4, 1fr); }
}

.promo-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
}

.promo-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.promo-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.promo-card:hover .promo-img img { transform: scale(1.05); }

.promo-img-pattern {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.promo-pattern-inner {
  color: var(--green);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.promo-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promo-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.promo-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-3);
}

.promo-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  transition: color var(--transition-interactive);
}

.promo-card:hover .promo-link { color: var(--green-dark); }


/* ══════════════════════════════════════════════════
   NEWS & BLOG
   ══════════════════════════════════════════════════ */
.news {
  padding: var(--space-20) 0;
  background: var(--cream-light);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.news-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.news-card:hover .news-img img { transform: scale(1.04); }

.news-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

.news-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: var(--space-3);
}

.news-excerpt {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-4);
}

.news-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.news-card:hover .news-link { color: var(--green-dark); }

.news-more {
  text-align: center;
  margin-top: var(--space-10);
}


/* ══════════════════════════════════════════════════
   LOCATIONS
   ══════════════════════════════════════════════════ */
.locations {
  padding: var(--space-20) 0;
  background: var(--cream);
  position: relative;
}

.locations-body {
  text-align: center;
  font-size: 15px;
  color: var(--stone);
  max-width: 680px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto var(--space-10);
}

@media (min-width: 640px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .locations-grid { grid-template-columns: repeat(4, 1fr); }
}

.loc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-3);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
  text-align: center;
  position: relative;
}

.loc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.loc-icon {
  color: var(--green);
}

.loc-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.loc-card-new {
  border: 1.5px solid var(--green);
}

.loc-badge {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--red-accent);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* ── Location Grid: Show More ── */
.locations-grid:not(.locations-expanded) .loc-card:nth-child(n+9) {
  display: none;
}

.locations-toggle {
  text-align: center;
  margin-top: var(--space-6);
  margin-bottom: var(--space-10);
}

.locations-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.locations-toggle-icon {
  transition: transform 0.3s var(--ease-out);
}

.locations-expanded ~ .locations-toggle .locations-toggle-icon {
  transform: rotate(180deg);
}

.locations-cta {
  text-align: center;
}

.locations-cta p {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: var(--space-5);
  max-width: 540px;
  margin-inline: auto;
}

.locations-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}


/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: var(--space-8); }
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-5);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  transition: background var(--transition-interactive),
              color var(--transition-interactive);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-1) 0;
  transition: color var(--transition-interactive);
}

.footer-link:hover { color: var(--white); }

.footer-newsletter-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.footer-card-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  transition: background var(--transition-interactive),
              border-color var(--transition-interactive);
  white-space: nowrap;
}

.footer-card-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: var(--space-4);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-interactive);
}

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

.footer-attribution {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-interactive);
}

.footer-attribution:hover { color: rgba(255, 255, 255, 0.8); }


/* ══════════════════════════════════════════════════
   NEWSLETTER + SMART SAVER POPUP
   ══════════════════════════════════════════════════ */
.subscribe-popup {
  position: fixed;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  width: min(780px, calc(100vw - 32px));
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s var(--ease-out),
              opacity 0.4s var(--ease-out),
              visibility 0.4s;
  overflow: hidden;
}

.subscribe-popup.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

/* When minimized, hide the main popup body */
.subscribe-popup.minimized {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  visibility: hidden;
}

/* Close button */
.popup-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--stone);
  z-index: 5;
  transition: background var(--transition-interactive),
              color var(--transition-interactive);
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--charcoal);
}

/* Inner layout — side by side */
.popup-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Left side: Smart Saver Card */
.popup-card-side {
  flex: 1;
  padding: var(--space-8) var(--space-6);
  background: linear-gradient(145deg, rgba(46, 125, 50, 0.06) 0%, rgba(46, 125, 50, 0.02) 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.popup-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.popup-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.popup-card-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.55;
}

.popup-card-btn {
  align-self: flex-start;
  margin-top: var(--space-1);
}

/* Vertical divider */
.popup-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
  position: relative;
  flex-shrink: 0;
}

.popup-divider-text {
  position: absolute;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--white);
  padding: var(--space-2) 0;
}

/* Right side: Newsletter */
.popup-newsletter-side {
  flex: 1;
  padding: var(--space-8) var(--space-6);
  padding-right: var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-newsletter-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-1);
  line-height: 1.2;
}

.popup-newsletter-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.55;
  margin-bottom: var(--space-4);
}

.popup-form-row {
  display: flex;
  gap: var(--space-2);
}

.popup-input {
  flex: 1;
  padding: var(--space-2) var(--space-4);
  font-size: 14px;
  background: var(--cream-light);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  color: var(--ink);
  transition: border-color var(--transition-interactive),
              box-shadow var(--transition-interactive);
  min-width: 0;
}

.popup-input::placeholder { color: var(--mist); }

.popup-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.popup-submit {
  flex-shrink: 0;
}

.popup-form-note {
  font-size: 11px;
  color: var(--mist);
  margin-top: var(--space-2);
  padding-left: var(--space-4);
}

/* Success state */
.popup-form-success {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
}

.popup-form.submitted { display: none; }
.popup-form.submitted ~ .popup-form-success { display: flex; }

/* Minimized pill button */
.popup-pill {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  display: none;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  z-index: 89;
  transition: background var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
  transform: translateY(120px);
  opacity: 0;
}

.popup-pill.show {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  animation: pillSlideUp 0.4s var(--ease-out) forwards;
}

@keyframes pillSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-pill:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.popup-pill:active {
  transform: translateY(0) scale(0.97);
}

/* Mobile responsive — stack vertically */
@media (max-width: 640px) {
  .subscribe-popup {
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateX(0) translateY(120%);
    width: 100%;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-height: 85vh;
    overflow-y: auto;
  }

  .subscribe-popup.show {
    transform: translateX(0) translateY(0);
  }

  .subscribe-popup.minimized {
    transform: translateX(0) translateY(120%);
  }

  .popup-inner {
    flex-direction: column;
  }

  .popup-card-side {
    padding: var(--space-6) var(--space-5);
    padding-top: var(--space-8);
  }

  .popup-divider {
    width: auto;
    height: 1px;
    flex-direction: row;
  }

  .popup-divider-text {
    position: relative;
    padding: 0 var(--space-3);
  }

  .popup-newsletter-side {
    padding: var(--space-5);
    padding-right: var(--space-5);
  }

  .popup-form-row {
    flex-direction: column;
  }

  .popup-form-note {
    padding-left: 0;
    text-align: center;
  }

  .popup-pill {
    right: var(--space-4);
    bottom: var(--space-4);
  }
}


/* ══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════ */
.reveal {
  opacity: 1; /* Visible by default (no-JS fallback) */
}

.reveal.hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

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


/* ══════════════════════════════════════════════════
   RESPONSIVE REFINEMENTS
   ══════════════════════════════════════════════════ */

/* Small mobile tweaks */
@media (max-width: 480px) {
  .hero-arrow { width: 28px; height: 28px; }
  .hero-arrow svg { width: 14px; height: 14px; }

  .arrivals { padding: var(--space-12) 0; }
  .about { padding: var(--space-12) 0; }
  .promos { padding: var(--space-12) 0; }
  .news { padding: var(--space-12) 0; }
  .locations { padding: var(--space-12) 0; }

  .section-header { margin-bottom: var(--space-8); }
  .footer-grid { gap: var(--space-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Tablet refinements */
@media (min-width: 768px) and (max-width: 1023px) {
  .promos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal.hidden {
    opacity: 1;
    transform: none;
  }
  .hero-slide { transition-duration: 0.01ms !important; }
}
