/* ===== Bradford Lans Coffee — coffee-toned theme ===== */
:root {
  --espresso: #2c1810;
  --coffee:   #4b2e1e;
  --roast:    #6f4e37;
  --caramel:  #c8893f;
  --gold:     #d8a657;
  --crema:    #e7c9a2;
  --latte:    #f6efe4;
  --cream:    #fbf6ee;
  --foam:     #fffdf9;
  --ink:      #2a1d14;
  --muted:    #7a6453;
  --line:     rgba(75, 46, 30, 0.14);
  --shadow:   0 18px 45px rgba(44, 24, 16, 0.18);
  --radius:   16px;
  --maxw:     1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-text strong {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.12;
  font-weight: 700;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--caramel);
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--caramel);
  color: var(--foam);
  box-shadow: 0 10px 24px rgba(200, 137, 63, 0.35);
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--foam);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 238, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { font-size: 1.5rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: 1.18rem; color: var(--espresso); }
.brand-text em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--caramel); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.94rem; font-weight: 500; color: var(--coffee); transition: color .2s; }
.nav-links a:hover { color: var(--caramel); }
.nav-cta {
  background: var(--espresso); color: var(--foam) !important;
  padding: 9px 18px; border-radius: 50px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--coffee); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--espresso); cursor: pointer; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--foam);
  background:
    url('https://images.unsplash.com/photo-1442512595331-e89e73853f31?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(28,18,12,0.92) 0%, rgba(44,24,16,0.72) 45%, rgba(44,24,16,0.35) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 620px; padding-top: 40px; padding-bottom: 40px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 22px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; }


.hero-sub { font-size: 1.12rem; color: rgba(255,253,249,0.86); max-width: 540px; margin-bottom: 32px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,253,249,0.7); animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ===== Marquee strip ===== */
.strip { background: var(--espresso); color: var(--crema); overflow: hidden; padding: 16px 0; }
.strip-track {
  display: flex; gap: 26px; white-space: nowrap; width: max-content;
  animation: scroll 28s linear infinite;
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem;
}
.strip-track span { opacity: 0.9; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Sections common ===== */
section { padding: 96px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--espresso); margin-bottom: 14px; }
.section-lead { color: var(--muted); font-size: 1.05rem; }

/* ===== About ===== */
.about { background: var(--foam); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--caramel); color: var(--foam);
  padding: 12px 20px; border-radius: 12px; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.05em; box-shadow: var(--shadow);
}
.about-text h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--espresso); margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-points { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.about-points li { position: relative; padding-left: 30px; color: var(--coffee); }
.about-points li::before {
  content: '☕'; position: absolute; left: 0; top: -1px; font-size: 0.95rem;
}
.about-points strong { color: var(--espresso); }

/* ===== Menu ===== */
.menu { background: var(--latte); }
.menu-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.menu-card {
  background: var(--foam); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: 0 10px 30px rgba(44,24,16,0.07); border: 1px solid var(--line);
}
.menu-card h3 {
  font-size: 1.4rem; color: var(--caramel); margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 2px solid var(--line);
}
.menu-card h3.mt { margin-top: 28px; }
.menu-list { list-style: none; display: grid; gap: 12px; }
.menu-list li { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.menu-list li span:first-child { color: var(--coffee); }
.price { font-weight: 600; color: var(--espresso); font-variant-numeric: tabular-nums; }
.menu-note { margin-top: 22px; font-size: 0.82rem; color: var(--muted); font-style: italic; }

/* ===== Gallery ===== */
.gallery { background: var(--espresso); }
.gallery .section-head h2 { color: var(--cream); }
.gallery .eyebrow { color: var(--gold); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 16px;
}
.g-item { overflow: hidden; border-radius: 12px; margin: 0; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.08); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ===== Visit ===== */
.visit { background: var(--cream); }
.visit-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.visit-info h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--espresso); margin-bottom: 28px; }
.info-block { margin-bottom: 22px; }
.info-block h4 {
  font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.74rem; color: var(--caramel); margin-bottom: 6px;
}
.info-block p { color: var(--coffee); font-size: 1.05rem; }
.info-block a:hover { color: var(--caramel); }
.hours { list-style: none; display: grid; gap: 7px; max-width: 320px; }
.hours li { display: flex; justify-content: space-between; color: var(--coffee); border-bottom: 1px dashed var(--line); padding-bottom: 6px; }
.visit-info .btn { margin-top: 12px; }
.visit-map iframe {
  width: 100%; height: 420px; border: 0; border-radius: var(--radius);
  box-shadow: var(--shadow); filter: sepia(0.18);
}

/* ===== Footer ===== */
.site-footer { background: var(--espresso); color: var(--crema); padding: 50px 0 36px; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--cream); margin-bottom: 12px; }
.footer-meta { margin-bottom: 8px; font-size: 0.95rem; }
.footer-meta a:hover { color: var(--gold); }
.footer-copy { font-size: 0.82rem; opacity: 0.6; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .hero { min-height: 80vh; }
}

@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-columns { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
}

@media (max-width: 680px) {
  .nav-links {
    position: absolute; top: 72px; right: 0; left: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .nav-links.open { max-height: 360px; }
  .nav-links a { padding: 15px 24px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin: 14px 24px; text-align: center; }
  .nav-toggle { display: block; }
  section { padding: 68px 0; }
  .hero { min-height: 82vh; }
}
