/* ============================================
   ARLY'S — SHOP EASY
   Stylesheet · brand-aligned, mobile-first
   ============================================ */

:root {
  --brand-red: #9b2235;
  --brand-red-deep: #7a1a29;
  --brand-red-light: #c9536a;
  --brand-cream: #faf5ec;
  --brand-cream-deep: #f2ead8;
  --brand-gold: #c8924d;
  --brand-gold-light: #e8c891;
  --ink: #2a2a2a;
  --ink-soft: #555;
  --ink-faint: #8a8a8a;
  --border: #e3ddd0;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 2px 8px rgba(122, 26, 41, 0.06);
  --shadow-md: 0 8px 24px rgba(122, 26, 41, 0.1);
  --shadow-lg: 0 16px 40px rgba(122, 26, 41, 0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --nav-h: 64px;
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-red); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-red-deep); }
h1, h2, h3, h4 { font-family: var(--serif); margin: 0; color: var(--brand-red); letter-spacing: -0.01em; }

/* ============== LAYOUT HELPERS ============== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.eyebrow.gold { color: var(--brand-gold); }
.section-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.1;
}
.section-title.light { color: var(--brand-cream); }
.section-title em {
  font-style: normal;
  color: var(--brand-gold);
  font-weight: 500;
}
.lede {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--ink-soft);
  font-style: italic;
  max-width: 720px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.lede.light { color: rgba(250, 245, 236, 0.85); }
.lede.center { margin-left: auto; margin-right: auto; }
.placeholder { color: var(--ink-faint); font-style: italic; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--brand-red);
  color: var(--brand-cream);
}
.btn-primary:hover {
  background: var(--brand-red-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--brand-cream);
  border-color: rgba(250, 245, 236, 0.4);
}
.btn-ghost:hover {
  border-color: var(--brand-cream);
  background: rgba(250, 245, 236, 0.08);
  color: var(--brand-cream);
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-red);
}
.nav-logo { width: 36px; height: 36px; }
.nav-wordmark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--brand-red); }
.nav-links a.nav-cta {
  background: var(--brand-red);
  color: var(--brand-cream);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-links a.nav-cta:hover {
  background: var(--brand-red-deep);
  color: #fff;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 12%, rgba(232,200,145,0.15), transparent 40%),
    radial-gradient(circle at 12% 88%, rgba(122,26,41,0.4), transparent 50%),
    linear-gradient(170deg, #7a1a29 0%, #9b2235 50%, #b03245 100%);
  color: var(--brand-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  text-align: center;
  overflow: hidden;
}
.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(250, 245, 236, 0.12);
  border: 1px solid rgba(232, 200, 145, 0.4);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-gold-light);
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 12vw, 96px);
  font-weight: 700;
  color: var(--brand-cream);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 4vw, 32px);
  color: var(--brand-gold-light);
  margin: 4px 0 16px;
  font-weight: 400;
}
.hero-divider {
  width: 40px;
  height: 2px;
  background: var(--brand-gold-light);
  margin: 20px auto;
}
.hero-lede {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
  color: rgba(250, 245, 236, 0.92);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 24px 0 36px;
}
.cd-unit {
  background: rgba(250, 245, 236, 0.1);
  border: 1px solid rgba(232, 200, 145, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  min-width: 84px;
  backdrop-filter: blur(4px);
}
.cd-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--brand-cream);
  line-height: 1;
}
.cd-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-gold-light);
  margin-top: 6px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============== ABOUT ============== */
.about {
  padding: 100px 0;
  background: var(--brand-cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin: 32px 0 60px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.about-grid strong { color: var(--brand-red); font-weight: 600; }
.about-grid em { color: var(--brand-red-deep); font-style: italic; }

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: left;
  border-top: 3px solid var(--brand-gold);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--brand-red);
}
.value-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ============== SECTIONS / WHAT'S IN STORE ============== */
.sections {
  padding: 100px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(232,200,145,0.1), transparent 40%),
    linear-gradient(160deg, #7a1a29 0%, #9b2235 100%);
  color: var(--brand-cream);
}
.sections .eyebrow { color: var(--brand-gold-light); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.cat-card {
  background: rgba(250, 245, 236, 0.08);
  border: 1px solid rgba(232, 200, 145, 0.18);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  transition: all .3s ease;
  display: block;
}
.cat-card:hover {
  background: rgba(250, 245, 236, 0.14);
  border-color: rgba(232, 200, 145, 0.4);
  transform: translateY(-3px);
}
.cat-card.feature {
  background: linear-gradient(135deg, rgba(232, 200, 145, 0.18), rgba(232, 200, 145, 0.06));
  border-color: var(--brand-gold-light);
  grid-column: span 1;
}
.cat-emoji {
  font-size: 36px;
  margin-bottom: 14px;
}
.cat-card h3 {
  font-family: var(--serif);
  color: var(--brand-cream);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cat-card p {
  color: rgba(250, 245, 236, 0.78);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.cat-arrow {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand-gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============== SPICE FEATURE ============== */
.spice {
  padding: 100px 0;
  background: var(--brand-cream);
}
.spice-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.spice-copy h2 { line-height: 1.05; }
.spice-copy p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 12px 0;
}
.spice-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 28px 0 24px;
}
.spice-list div {
  padding: 10px 0 10px 24px;
  border-bottom: 1px dotted var(--border);
  font-size: 15px;
  position: relative;
  color: var(--ink);
}
.spice-list div::before {
  content: "🌶";
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 12px;
}
.spice-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brand-red);
  font-size: 18px;
  margin-top: 12px;
}
.spice-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.spice-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.spice-circle::before,
.spice-circle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(250, 245, 236, 0.3);
}
.spice-circle::before { inset: 12px; }
.spice-circle::after { inset: 24px; }
.spice-spark {
  font-size: 110px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

/* ============== VISIT US ============== */
.visit {
  padding: 100px 0;
  background: #fff;
}
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.visit-card {
  background: var(--brand-cream);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border-left: 3px solid var(--brand-gold);
}
.visit-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--brand-red);
  margin-bottom: 10px;
  font-weight: 600;
}
.visit-card p {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.visit-link {
  color: var(--brand-red);
  font-weight: 500;
  border-bottom: 1px dotted var(--brand-red-light);
}
.visit-link:hover {
  color: var(--brand-red-deep);
  border-bottom-color: var(--brand-red-deep);
}
.visit-cta {
  text-align: center;
  margin-top: 28px;
}

/* ============== ONLINE COMING SOON ============== */
.online {
  padding: 100px 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(232,200,145,0.08), transparent 60%),
    linear-gradient(135deg, #7a1a29 0%, #9b2235 100%);
  color: var(--brand-cream);
  text-align: center;
}
.online .eyebrow { color: var(--brand-gold-light); }
.online-icon {
  font-size: 56px;
  margin-bottom: 16px;
}
.online-note {
  margin-top: 28px;
  color: rgba(250, 245, 236, 0.85);
}
.online-note a {
  color: var(--brand-gold-light);
  font-weight: 500;
  border-bottom-color: rgba(232, 200, 145, 0.5);
}
.online-note a:hover {
  color: var(--brand-cream);
}

/* ============== FOOTER ============== */
.footer {
  background: #1a1213;
  color: rgba(250, 245, 236, 0.7);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
}
.footer-brand p { margin: 4px 0; }
.footer-logo {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  margin-bottom: 12px;
}
.footer-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-cream);
  margin: 0;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brand-gold-light);
  font-size: 16px;
  margin: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-cols h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand-gold-light);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-cols a {
  display: block;
  color: rgba(250, 245, 236, 0.7);
  font-size: 14px;
  padding: 4px 0;
  font-weight: 400;
}
.footer-cols a:hover { color: var(--brand-cream); }
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 245, 236, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(250, 245, 236, 0.5);
}
.footer-bottom p { margin: 0; }
.footer-credit { color: var(--brand-gold-light); }

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform .3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }
  .nav-links a:last-child {
    border-bottom: 0;
    margin-top: 8px;
    text-align: center;
  }
  .nav-toggle { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .values { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .spice-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .spice-visual { order: -1; }
  .spice-circle { width: 220px; height: 220px; }
  .spice-spark { font-size: 90px; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .about, .sections, .spice, .visit, .online { padding: 70px 0; }
  .hero { padding: calc(var(--nav-h) + 32px) 18px 50px; }
  .hero-logo { width: 110px; height: 110px; }
  .countdown { gap: 10px; }
  .cd-unit { min-width: 70px; padding: 10px 12px; }
  .values { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .spice-list { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn { padding: 12px 22px; font-size: 14px; }
}

/* ============== REVEAL ON SCROLL ============== */
.value-card,
.cat-card,
.visit-card,
.spice-inner {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.value-card.in-view,
.cat-card.in-view,
.visit-card.in-view,
.spice-inner.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Countdown — open state */
.cd-open {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 26px);
  font-style: italic;
  color: var(--brand-gold-light);
  padding: 16px 24px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .value-card, .cat-card, .visit-card, .spice-inner {
    opacity: 1;
    transform: none;
  }
}
