/* =====================================================================
   BREW HAVEN — Café / Coffee Shop Website Template
   Plain HTML5 + CSS3 + vanilla JS. No frameworks. No image files.
   ---------------------------------------------------------------------
   REBRAND: To rebrand, edit the CSS variables in :root below.
   Change --brand (coffee brown), --cream, --caramel and the fonts.
   Replace the café name "Brew Haven" in the HTML files + logo.
   ===================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — warm coffee palette */
  --brand:        #6f4e37;   /* coffee brown (primary)            */
  --brand-dark:   #503625;   /* darker brown for hovers/contrast  */
  --brand-light:  #8c6a4f;   /* lighter brown                     */
  --cream:        #f5ecd9;   /* warm cream background             */
  --cream-soft:   #fbf6ec;   /* softer cream / cards              */
  --caramel:      #c98a3c;   /* caramel accent                    */
  --caramel-dark: #a96f29;   /* caramel hover                     */
  --ink:          #2b211b;   /* near-black text                   */
  --muted:        #6c5f55;   /* muted text                        */
  --white:        #ffffff;
  --line:         #e7dcc6;   /* hairline border on cream          */

  /* Typography */
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(80, 54, 37, 0.08);
  --shadow-md: 0 14px 40px rgba(80, 54, 37, 0.14);
  --shadow-lg: 0 26px 60px rgba(80, 54, 37, 0.20);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; color: var(--brand-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: 1.3rem; }
p  { color: var(--muted); }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--cream { background: var(--cream); }
.section--brand { background: var(--brand); color: var(--cream); }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--caramel-dark);
  margin-bottom: 12px;
  display: inline-block;
}
.section-head { max-width: 680px; margin: 0 auto 56px; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--caramel); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--caramel-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--brand-dark); border: 2px solid var(--brand); }
.btn--ghost:hover { background: var(--brand); color: var(--cream); transform: translateY(-3px); }
.btn--light { background: var(--cream); color: var(--brand-dark); }
.btn--light:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline-light { border: 2px solid rgba(245,236,217,.6); color: var(--cream); }
.btn--outline-light:hover { background: var(--cream); color: var(--brand-dark); }

/* =====================================================================
   HEADER (shared, sticky)
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 236, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(251,246,236,.96); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--brand-dark); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.4rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  box-shadow: var(--shadow-sm);
}
.logo span small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--caramel-dark); margin-top: -2px; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  padding: 9px 15px; border-radius: 50px; color: var(--ink);
  transition: color .2s, background .2s;
}
.nav-menu a:hover { color: var(--brand-dark); background: rgba(111,78,55,.07); }
.nav-menu a.active { color: var(--brand-dark); background: rgba(201,138,60,.16); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 22px; }

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  position: relative; background: rgba(111,78,55,.08);
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2.5px; border-radius: 3px;
  background: var(--brand-dark); transition: transform .3s var(--ease), opacity .2s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   HERO (home)
   ===================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(201,138,60,.30), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(111,78,55,.22), transparent 55%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-soft) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding: 88px 0 96px;
}
.hero-text h1 { margin-bottom: 18px; }
.hero-text .lead { margin-bottom: 30px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-head); font-size: 1.7rem; color: var(--brand-dark); display: block; }
.hero-stats .stat span { font-size: .85rem; color: var(--muted); }

/* Hero visual: stacked gradient "cup" art */
.hero-art { position: relative; min-height: 440px; }
.hero-card {
  position: absolute; border-radius: 24px; box-shadow: var(--shadow-lg);
  display: grid; place-items: center; color: #fff;
}
.hero-card .emoji { font-size: 4rem; filter: drop-shadow(0 8px 14px rgba(0,0,0,.25)); }
.hero-card--main {
  inset: 0 20% 20% 0;
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-light) 100%);
}
.hero-card--accent {
  width: 46%; bottom: 0; right: 0;
  aspect-ratio: 1; background: linear-gradient(150deg, var(--caramel) 0%, var(--caramel-dark) 100%);
  animation: float 6s ease-in-out infinite;
}
.hero-card--note {
  top: 8%; right: 4%; background: var(--white); color: var(--brand-dark);
  padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; font-weight: 600; font-family: var(--font-head);
  animation: float 5s ease-in-out infinite reverse;
}
.hero-card--note .dot { width: 9px; height: 9px; border-radius: 50%; background: #3fae6f; box-shadow: 0 0 0 4px rgba(63,174,111,.2); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* =====================================================================
   PAGE BANNER (inner pages)
   ===================================================================== */
.page-banner {
  position: relative; padding: 70px 0 62px; text-align: center; color: var(--cream);
  background:
    radial-gradient(700px 360px at 80% -30%, rgba(201,138,60,.45), transparent 60%),
    linear-gradient(150deg, var(--brand-dark) 0%, var(--brand) 100%);
}
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.page-banner p { color: rgba(245,236,217,.85); max-width: 620px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 18px; font-size: .88rem; font-family: var(--font-head); }
.breadcrumb a { color: var(--cream); opacity: .8; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb span { opacity: .55; }
.breadcrumb .current { color: var(--caramel); opacity: 1; font-weight: 600; }

/* =====================================================================
   CARDS / GRIDS
   ===================================================================== */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: 10px; }
.icon-badge {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(201,138,60,.18), rgba(111,78,55,.12));
}

/* Product / popular item cards */
.product { overflow: hidden; padding: 0; }
.product .thumb { height: 190px; display: grid; place-items: center; font-size: 3.4rem; position: relative; }
.product .thumb .tag { position: absolute; top: 14px; left: 14px; background: var(--white); color: var(--brand-dark); font-family: var(--font-head); font-weight: 600; font-size: .72rem; padding: 5px 12px; border-radius: 50px; box-shadow: var(--shadow-sm); }
.product .body { padding: 22px 24px 26px; }
.product .body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.product .body .price { font-family: var(--font-head); font-weight: 700; color: var(--caramel-dark); font-size: 1.1rem; white-space: nowrap; }
.product .body p { font-size: .92rem; margin-top: 6px; }

/* Gradient thumb variants */
.g1 { background: linear-gradient(150deg,#7b5436,#a9794f); }
.g2 { background: linear-gradient(150deg,#c98a3c,#a96f29); }
.g3 { background: linear-gradient(150deg,#6f4e37,#8c6a4f); }
.g4 { background: linear-gradient(150deg,#b07d4a,#7b5436); }
.g5 { background: linear-gradient(150deg,#caa46b,#9c7740); }
.g6 { background: linear-gradient(150deg,#5e4a3a,#866249); }

/* =====================================================================
   ABOUT TEASER / SPLIT SECTIONS
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-visual {
  min-height: 380px; border-radius: var(--radius); position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-light) 100%);
  display: grid; place-items: center; box-shadow: var(--shadow-md);
}
.split-visual .big-emoji { font-size: 6rem; filter: drop-shadow(0 10px 18px rgba(0,0,0,.3)); }
.split-visual.alt { background: linear-gradient(150deg, var(--caramel) 0%, var(--caramel-dark) 100%); }
.split-text h2 { margin-bottom: 18px; }
.split-text p + p { margin-top: 14px; }
.check-list { margin-top: 22px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.check-list li::before { content: "☕"; flex: none; }

/* =====================================================================
   HOURS / LOCATION STRIP
   ===================================================================== */
.strip { background: var(--brand-dark); color: var(--cream); border-radius: var(--radius); padding: 40px; display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; box-shadow: var(--shadow-md); }
.strip .item { display: flex; gap: 16px; align-items: flex-start; }
.strip .item .ic { font-size: 1.7rem; }
.strip .item h4 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.strip .item p { color: rgba(245,236,217,.82); font-size: .92rem; }

/* =====================================================================
   TESTIMONIAL
   ===================================================================== */
.quote-card { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-card .stars { color: var(--caramel); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 18px; }
.quote-card blockquote { font-family: var(--font-head); font-size: clamp(1.3rem,2.4vw,1.8rem); color: var(--brand-dark); line-height: 1.4; font-weight: 600; }
.quote-card .who { margin-top: 22px; display: flex; gap: 14px; align-items: center; justify-content: center; }
.quote-card .avatar { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; background: linear-gradient(135deg,var(--caramel),var(--caramel-dark)); color: #fff; }
.quote-card .who b { font-family: var(--font-head); color: var(--ink); display: block; }
.quote-card .who small { color: var(--muted); }

.testi-grid .card .stars { color: var(--caramel); letter-spacing: 2px; margin-bottom: 12px; }
.testi-grid .card p { color: var(--ink); font-style: italic; }
.testi-grid .card .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.testi-grid .card .avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1.1rem; background: linear-gradient(135deg,var(--brand),var(--brand-light)); }
.testi-grid .card .who b { font-family: var(--font-head); font-size: .95rem; }
.testi-grid .card .who small { color: var(--muted); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { text-align: center; }
.cta-band .inner {
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 26px; padding: 64px 40px; color: var(--cream); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-band .inner::after { content: "☕"; position: absolute; right: -10px; bottom: -30px; font-size: 12rem; opacity: .08; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(245,236,217,.88); max-width: 540px; margin: 0 auto 28px; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* =====================================================================
   TEAM / VALUES
   ===================================================================== */
.team-card { text-align: center; }
.team-card .photo { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; font-size: 3rem; color: #fff; box-shadow: var(--shadow-md); }
.team-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.team-card .role { color: var(--caramel-dark); font-family: var(--font-head); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.team-card p { font-size: .9rem; margin-top: 10px; }

/* =====================================================================
   MENU PAGE
   ===================================================================== */
.menu-cat { margin-bottom: 60px; }
.menu-cat:last-child { margin-bottom: 0; }
.menu-cat-head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.menu-cat-head .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 1.7rem; background: linear-gradient(135deg, rgba(201,138,60,.2), rgba(111,78,55,.14)); }
.menu-cat-head h2 { font-size: 1.7rem; }
.menu-cat-head p { font-size: .9rem; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 48px; }
.menu-item { padding: 16px 0; border-bottom: 1px dashed var(--line); }
.menu-item .top { display: flex; align-items: baseline; gap: 10px; }
.menu-item .name { font-family: var(--font-head); font-weight: 600; color: var(--brand-dark); white-space: nowrap; }
.menu-item .dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); }
.menu-item .price { font-family: var(--font-head); font-weight: 700; color: var(--caramel-dark); }
.menu-item .desc { font-size: .88rem; margin-top: 3px; }
.menu-item .badge { font-size: .65rem; background: rgba(201,138,60,.16); color: var(--caramel-dark); padding: 2px 8px; border-radius: 50px; font-family: var(--font-head); font-weight: 600; vertical-align: middle; }

/* =====================================================================
   GALLERY PAGE
   ===================================================================== */
.gallery-group { margin-bottom: 54px; }
.gallery-group h2 { margin-bottom: 22px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.tile {
  aspect-ratio: 1; border-radius: var(--radius-sm); position: relative; overflow: hidden;
  display: grid; place-items: center; font-size: 2.6rem; color: #fff; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tile::after {
  content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px; font-family: var(--font-head); font-size: .82rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(43,33,27,.7)); text-align: left;
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s;
}
.tile:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.tile:hover::after { opacity: 1; transform: translateY(0); }
.tile.wide { grid-column: span 2; aspect-ratio: 2 / 1; }

.gallery-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.gallery-tabs a { padding: 9px 20px; border-radius: 50px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; background: var(--white); border: 1px solid var(--line); color: var(--brand-dark); transition: background .2s, color .2s; }
.gallery-tabs a:hover { background: var(--brand); color: var(--cream); }

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-child { border-bottom: none; }
.contact-info .info-item .ic { width: 48px; height: 48px; flex: none; border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; background: linear-gradient(135deg, rgba(201,138,60,.2), rgba(111,78,55,.14)); }
.contact-info .info-item h4 { margin-bottom: 2px; }
.contact-info .info-item p, .contact-info .info-item a { color: var(--muted); font-size: .95rem; }
.contact-info .info-item a:hover { color: var(--caramel-dark); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--brand-dark); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--cream-soft);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--caramel); box-shadow: 0 0 0 3px rgba(201,138,60,.18); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field.error input, .field.error textarea { border-color: #d9534f; }
.field .msg { color: #d9534f; font-size: .8rem; margin-top: 5px; display: none; }
.field.error .msg { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; background: rgba(63,174,111,.12); border: 1px solid rgba(63,174,111,.4); color: #2f7d52; padding: 14px 18px; border-radius: var(--radius-sm); font-family: var(--font-head); font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }

.map-placeholder {
  margin-top: 30px; height: 280px; border-radius: var(--radius); overflow: hidden; position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(111,78,55,.05) 0 18px, transparent 18px 36px),
    linear-gradient(150deg, var(--cream) 0%, #e9dcc4 100%);
  border: 1px solid var(--line); display: grid; place-items: center; text-align: center;
}
.map-placeholder .pin { font-size: 2.6rem; animation: float 4s ease-in-out infinite; }
.map-placeholder .label { font-family: var(--font-head); font-weight: 600; color: var(--brand-dark); margin-top: 6px; }
.map-placeholder small { color: var(--muted); }

/* =====================================================================
   FOOTER (shared)
   ===================================================================== */
.site-footer { background: var(--brand-dark); color: rgba(245,236,217,.78); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-grid h4 { color: var(--cream); font-size: 1rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand .logo span small { color: var(--caramel); }
.footer-brand p { font-size: .92rem; max-width: 280px; }
.footer-col a, .footer-col p { display: block; color: rgba(245,236,217,.78); font-size: .92rem; padding: 5px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--caramel); padding-left: 5px; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 1.1rem; background: rgba(245,236,217,.08); padding: 0; }
.socials a:hover { background: var(--caramel); padding-left: 0; }
.footer-bottom { border-top: 1px solid rgba(245,236,217,.14); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color: var(--caramel); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
/* Fallback: if JS disabled, show everything */
.no-js .reveal { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { min-height: 360px; order: -1; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split-visual { min-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  /* Mobile nav */
  .hamburger { display: block; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream-soft); padding: 16px 20px 26px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 13px 16px; font-size: 1rem; }
  .nav-cta .btn { display: none; }
  .strip { grid-template-columns: 1fr; gap: 22px; padding: 30px; }
  .menu-list { grid-template-columns: 1fr; gap: 0 0; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .tile.wide { grid-column: span 1; aspect-ratio: 1; }
  .container { padding: 0 18px; }
  .cta-band .inner { padding: 44px 24px; }
}
