/* ═══════════════════════════════════════════════
   Treadway Botanica — Read Blvd, New Orleans East
   Earthy apothecary: espresso, candle red, mustard, cream
   ═══════════════════════════════════════════════ */

:root {
  --espresso: #241812;
  --espresso-2: #31221a;
  --red: #b5432e;
  --red-deep: #963625;
  --mustard: #d9a03f;
  --cream: #f5eddd;
  --cream-2: #ece1cb;
  --text-dark: #322820;
  --muted: #77695a;
  --muted-light: #cbb9a4;
  --head: "Yeseva One", Georgia, serif;
  --body: "Work Sans", "Segoe UI", sans-serif;
  --maxw: 1120px;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, iframe { max-width: 100%; }

h1, h2, h3 {
  font-family: var(--head);
  font-weight: 400;
  line-height: 1.14;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: .9rem; }
h3 { font-size: 1.15rem; }

a { color: var(--red-deep); }
a:hover { color: var(--red); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

.section { padding: clamp(64px, 9vw, 104px) 0; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.6rem;
  font-size: 1.05rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: .05em;
  font-size: .92rem;
  padding: .9em 1.8em;
  border-radius: 8px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-lg { font-size: .97rem; padding: 1em 2.1em; }

.btn-red {
  background: linear-gradient(150deg, #c9503a, var(--red-deep));
  color: #fff;
  box-shadow: 0 8px 26px rgba(181, 67, 46, .35);
}
.btn-red:hover { color: #fff; box-shadow: 0 12px 34px rgba(181, 67, 46, .5); }

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .6);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.btn-line {
  border: 2px solid rgba(50, 40, 32, .25);
  color: var(--text-dark);
}
.btn-line:hover { border-color: var(--red); color: var(--red-deep); }

.btn-line-light {
  border: 2px solid rgba(245, 237, 221, .5);
  color: var(--cream);
}
.btn-line-light:hover { background: rgba(245, 237, 221, .1); color: var(--cream); }

/* ─── Nav ─── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(36, 24, 18, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
  padding: 9px 0;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand { display: flex; align-items: center; gap: .5em; margin-right: auto; text-decoration: none; }
.brand-flame { font-size: 1.25rem; }
.brand-text { font-family: var(--head); font-size: 1.15rem; color: #fff; }
.brand-text em { font-style: normal; color: var(--mustard); }

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  opacity: .85;
}
.nav-links a:hover { opacity: 1; color: var(--mustard); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: .3s; display: block; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowzoom 20s ease-out both;
}
@keyframes slowzoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 14, 10, .65) 0%, rgba(24, 14, 10, .4) 45%, rgba(24, 14, 10, .78) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 130px 24px 90px; max-width: 800px; margin: 0 auto; }
.hero .eyebrow { color: var(--mustard); }
.hero-tag {
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mustard);
  margin: .8rem 0 1rem;
}
.hero-sub {
  color: #e8ddcb;
  font-size: clamp(1.02rem, 1.9vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-sub strong { color: #fff; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Carry grid ─── */
.carry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 2.8rem;
}
.carry {
  background: #fffdf7;
  border: 1px solid #e3d5bc;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.carry:hover {
  transform: translateY(-5px);
  border-color: var(--mustard);
  box-shadow: 0 16px 40px rgba(50, 40, 32, .12);
}
.carry span { font-size: 1.8rem; display: block; margin-bottom: .6rem; }
.carry h3 { margin-bottom: .35rem; }
.carry p { color: var(--muted); font-size: .93rem; }

.shelf-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e3d5bc;
  box-shadow: 0 22px 54px rgba(50, 40, 32, .18);
}
.shelf-photo img { display: block; width: 100%; height: auto; }
.shelf-photo figcaption {
  background: #fffdf7;
  padding: 12px 18px;
  font-size: .88rem;
  color: var(--muted);
  font-style: italic;
}

/* ─── Dark split ─── */
.dark-split {
  background:
    radial-gradient(ellipse 50% 60% at 85% 10%, rgba(217, 160, 63, .1) 0%, transparent 55%),
    linear-gradient(165deg, var(--espresso-2), var(--espresso));
  color: var(--cream);
  padding: clamp(64px, 9vw, 104px) 0;
}
.dark-split .grid-2 { align-items: start; }
.dark-split .eyebrow { color: var(--mustard); }
.dark-split h2 { color: var(--cream); }
.dark-split p { color: var(--muted-light); }

/* ─── Review band ─── */
.band {
  background: var(--red-deep);
  color: #fdf4ec;
  padding: clamp(52px, 7vw, 78px) 0;
}
.stars-row {
  color: var(--mustard);
  font-size: 1.5rem;
  letter-spacing: .28em;
  margin-bottom: 1rem;
}
.band-quote p {
  font-family: var(--head);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.35;
  margin-bottom: 1rem;
}
.band-source { opacity: .9; }
.band-source strong { color: var(--mustard); }
.band-source a { color: #fdf4ec; text-decoration: underline; }

/* ─── Visit ─── */
.contact-list { list-style: none; margin: 1.4rem 0 2rem; }
.contact-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 1.05rem;
  align-items: flex-start;
}
.contact-list .ci { font-size: 1.15rem; line-height: 1.7; }
.visit-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.visit-media { display: grid; gap: 20px; }
.storefront-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e3d5bc;
  box-shadow: 0 20px 50px rgba(50, 40, 32, .16);
  max-height: 340px;
}
.storefront-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e3d5bc;
  box-shadow: 0 20px 50px rgba(50, 40, 32, .16);
  aspect-ratio: 16 / 8;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: sepia(.2) saturate(.9); }

/* ─── Footer ─── */
.footer { background: var(--espresso); color: var(--muted-light); }
.footer-inner { padding: 46px 24px 96px; }
.footer-brand {
  font-family: var(--head);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: .6rem;
}
.footer-brand em { font-style: normal; color: var(--mustard); }
.footer-meta { font-size: .95rem; margin-bottom: .7rem; }
.footer-meta a { color: var(--mustard); }
.footer-tag { font-size: .8rem; opacity: .65; max-width: 640px; margin: 0 auto 1rem; }
.footer-copy { font-size: .82rem; opacity: .5; }

/* ─── Mobile call bar ─── */
.mobile-call {
  display: none;
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 90;
  background: linear-gradient(150deg, #c9503a, var(--red-deep));
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 10px 32px rgba(36, 24, 18, .45);
  align-items: center;
  justify-content: center;
  gap: .5em;
  text-decoration: none;
}
.mobile-call:hover { text-decoration: none; color: #fff; }

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  translate: 0 22px;
  transition: opacity .75s ease, translate .75s ease;
}
.reveal.in { opacity: 1; translate: 0 0; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; translate: none; transition: none; }
  .hero-media img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── Responsive ─── */
@media (max-width: 940px) {
  .grid-2 { grid-template-columns: 1fr; }
  .carry-grid { grid-template-columns: 1fr 1fr; }
  .dark-split .grid-2 { gap: 48px; }
}

@media (max-width: 700px) {
  .nav-links, .nav-call { display: none; }
  .nav-toggle { display: flex; }
  .nav { background: rgba(36, 24, 18, .96); }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--espresso);
    padding: 20px 24px 26px;
    gap: 18px;
    border-bottom: 2px solid var(--mustard);
  }
  .carry-grid { grid-template-columns: 1fr; }
  .mobile-call { display: inline-flex; }
  .footer-inner { padding-bottom: 112px; }
  .hero-content { padding-top: 116px; }
}
