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

:root {
  --cream:    #faf6f0;
  --warm:     #f5ece0;
  --gold:     #c8973a;
  --gold-lt:  #e8b96a;
  --brown:    #3a2310;
  --brown-md: #6b3f1e;
  --brown-lt: #9c6b3c;
  --sage:     #8aab8e;
  --text:     #2a1a0e;
  --muted:    #7a6251;
  --white:    #ffffff;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── SHARED IMAGE HELPERS ── */
img { display: block; max-width: 100%; }

.nav-logo-img {
  height: 44px;
  width: auto;
  mix-blend-mode: multiply; /* makes white bg transparent on cream nav */
}

/* hero photo frame */
.hero-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0,0,0,0.48);
  width: 100%;
}
.hero-img-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.hero-img-frame .ftag {
  position: absolute;
  background: rgba(250,246,240,0.16);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,151,58,0.4);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  animation: ftag 5s ease-in-out infinite;
}
.hero-img-frame .ftag:nth-child(2) { top: 12%; right: -12px; animation-delay: 0s; }
.hero-img-frame .ftag:nth-child(3) { top: 42%; left: -12px; animation-delay: 1.8s; }
.hero-img-frame .ftag:nth-child(4) { bottom: 18%; right: -12px; animation-delay: 3.2s; }
@keyframes ftag { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* service card photos */
.svc-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}
.service-card { overflow: hidden; padding: 0; }
.service-card .svc-body { padding: 2.5rem; }

/* gift card real image */
.gc-real-img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
  border-radius: 20px;
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-strip img:hover { transform: scale(1.04); }
.photo-strip-wrap { overflow: hidden; }
.photo-strip-wrap:first-child { border-radius: 20px 0 0 20px; }
.photo-strip-wrap:last-child  { border-radius: 0 20px 20px 0; }

/* story photo grid */
.story-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 1rem;
}
.story-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.story-photo-grid .tall {
  grid-row: span 2;
  height: 100%;
}

/* patio / venue showcase */
.venue-img {
  width: 100%;
  border-radius: 20px;
  height: 380px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(58,35,16,0.15);
}

/* spring flavors promo graphic */
.spring-flavors-img {
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(58,35,16,0.15);
}

/* building / location photo */
.location-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(58,35,16,0.1);
}

/* team photo */
.team-photo {
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* coffee beans background section */
.coffee-bg {
  position: relative;
  background: var(--brown);
  overflow: hidden;
}
.coffee-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,151,58,0.14);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(58,35,16,0.09); }

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav-logo .wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.nav-logo .sub {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-md);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--brown); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--brown) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; transform: translateY(-1px); color: var(--brown) !important; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE HEADER (interior pages) ── */
.page-header {
  padding: 9rem 4rem 5rem;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-md) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(200,151,58,0.06);
  top: -180px; right: -120px;
}
.page-header::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(200,151,58,0.04);
  bottom: -100px; left: -80px;
}
.page-header .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.page-header .eyebrow::before,
.page-header .eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.12;
  position: relative;
  z-index: 1;
}
.page-header h1 em { font-style: italic; color: var(--gold-lt); }
.page-header p {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(250,246,240,0.65);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--gold);
  overflow: hidden;
  padding: 0.7rem 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  white-space: nowrap;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.marquee-item::after { content: '✦'; font-size: 0.45rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SHARED SECTION ── */
section { padding: 6rem 4rem; }

.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--gold);
}
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.section-title em { font-style: italic; color: var(--brown-md); }
.section-title.center { text-align: center; }

.section-body {
  font-size: 0.97rem;
  line-height: 1.82;
  color: var(--muted);
}
.section-body.center { text-align: center; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(200,151,58,0.3);
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(200,151,58,0.4);
}

.btn-dark {
  display: inline-block;
  background: var(--brown);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-dark:hover { background: var(--brown-md); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--brown);
  color: var(--brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}
.btn-outline:hover { background: var(--brown); color: var(--cream); transform: translateY(-2px); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1.5px solid rgba(250,246,240,0.4);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline-light:hover { border-color: var(--gold); background: rgba(200,151,58,0.1); transform: translateY(-2px); }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brown);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 10px 0;
  z-index: 999;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

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

/* ── LINE ICONS (replaces emoji) ── */
.icon-line { width: 1em; height: 1em; display: inline-block; vertical-align: -0.12em; }
.service-icon, .ci-icon, .offering-icon, .pickup-icon, .value-icon { color: var(--gold); }
.event-card-top { color: rgba(255,255,255,0.92); }
footer .ico { color: var(--gold-lt); }
.contact-info-item .ico, .order-note .ico { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--brown);
  color: var(--cream);
  padding: 4rem 4rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,151,58,0.14);
}
.footer-brand .wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-brand .sub {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: block;
  margin-top: 2px;
  margin-bottom: 1.1rem;
}
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.72;
  color: rgba(250,246,240,0.52);
  max-width: 230px;
}
.social-links { display: flex; gap: 0.65rem; margin-top: 1.4rem; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(200,151,58,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 0.82rem;
  color: rgba(250,246,240,0.55);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,151,58,0.08); }

.footer-col h5 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  text-decoration: none;
  font-size: 0.83rem;
  color: rgba(250,246,240,0.52);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-lt); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.83rem;
  color: rgba(250,246,240,0.52);
  line-height: 1.5;
}
.footer-contact-item .ico { margin-top: 1px; flex-shrink: 0; }
.footer-contact-item a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-lt); }

.footer-bottom {
  max-width: 1200px;
  margin: 1.8rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.73rem;
  color: rgba(250,246,240,0.28);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1.1rem 2rem; }
  section { padding: 5rem 2rem; }
  .page-header { padding: 8rem 2rem 4rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 101; }
  nav { padding: 1rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .page-header { padding: 7rem 1.5rem 3.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── GELATO FLAVORS DISPLAY (home + menu pages) ── */
.gelato-flavors-card {
  background: #2a1a0e;
  border-radius: 20px;
  padding: 1.5rem 1.2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 0.6rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.gelato-orb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.gelato-orb-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(250,246,240,0.88);
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.25;
}
.gelato-orb-circle {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 3px solid rgba(200,151,58,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gelato-orb-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(0,0,0,0.55);
}
.gelato-orb-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: rgba(250,246,240,0.45);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
}
