/* =====================================================================
   LEAF — Tea House & Matcha Bar Website Template
   Plain HTML5 + CSS3 + vanilla JS. No frameworks. No build step.
   ---------------------------------------------------------------------
   REBRAND: edit the CSS variables in :root below.
   Change --brand (leaf green), --cream, --clay accent and the fonts.
   Replace the name "Leaf" in the HTML files + logo mark.
   ===================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors — serene, botanical palette */
  --brand:        #4a7c59;   /* soft leaf green (primary)         */
  --brand-dark:   #355e43;   /* deeper green for contrast/hovers  */
  --brand-light:  #6e9b7c;   /* lighter sage green                */
  --cream:        #f3f1e7;   /* warm cream background             */
  --cream-soft:   #faf9f2;   /* softer cream / cards              */
  --clay:         #c08457;   /* warm clay accent                  */
  --clay-dark:    #a66d44;   /* clay hover                        */
  --ink:          #2c332c;   /* deep moss near-black text         */
  --muted:        #62695f;   /* muted text                        */
  --white:        #ffffff;
  --line:         #e3e0d2;   /* hairline border on cream          */

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

  /* Layout */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 16px rgba(53, 94, 67, 0.07);
  --shadow-md: 0 14px 40px rgba(53, 94, 67, 0.12);
  --shadow-lg: 0 26px 60px rgba(53, 94, 67, 0.18);
  --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.75;
  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.1; font-weight: 600; color: var(--brand-dark); letter-spacing: .005em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 500; }
h3 { font-size: 1.45rem; }
p  { color: var(--muted); }

/* ---------- LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }
.section--cream { background: var(--cream); }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--clay-dark);
  margin-bottom: 14px;
  display: inline-block;
}
.section-head { max-width: 680px; margin: 0 auto 60px; }
.section-head p { margin-top: 16px; font-size: 1.08rem; }
.lead { font-size: 1.18rem; color: var(--muted); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: .02em;
  border-radius: 50px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--brand-dark); border: 1.5px 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: 1.5px solid rgba(243,241,231,.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(250, 249, 242, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(250,249,242,.96); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 1.6rem; color: var(--brand-dark); }
.logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  box-shadow: var(--shadow-sm);
}
.logo-mark svg { width: 24px; height: 24px; }
.logo span small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--clay-dark); margin-top: -1px; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  font-family: var(--font-body); font-weight: 500; font-size: .92rem;
  padding: 9px 16px; border-radius: 50px; color: var(--ink);
  transition: color .2s, background .2s;
}
.nav-menu a:hover { color: var(--brand-dark); background: rgba(74,124,89,.08); }
.nav-menu a.active { color: var(--brand-dark); background: rgba(74,124,89,.14); font-weight: 600; }

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

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  position: relative; background: rgba(74,124,89,.09);
}
.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 540px at 88% -10%, rgba(110,155,124,.28), transparent 60%),
    radial-gradient(700px 500px at -5% 110%, rgba(192,132,87,.16), transparent 55%),
    linear-gradient(165deg, var(--cream) 0%, var(--cream-soft) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center;
  padding: 96px 0 104px;
}
.hero-text h1 { margin-bottom: 22px; }
.hero-text .lead { margin-bottom: 34px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-head); font-size: 2.1rem; font-weight: 600; color: var(--brand-dark); display: block; line-height: 1; }
.hero-stats .stat span { font-size: .84rem; color: var(--muted); }

/* Hero visual: stacked photo composition */
.hero-art { position: relative; min-height: 480px; }
.hero-photo {
  position: absolute; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo--main { inset: 0 22% 18% 0; }
.hero-photo--accent {
  width: 46%; bottom: 0; right: 0; aspect-ratio: 3 / 4;
  border: 6px solid var(--cream-soft);
  animation: float 6s ease-in-out infinite;
}
.hero-note {
  position: absolute; top: 7%; right: 2%; background: var(--white); color: var(--brand-dark);
  padding: 13px 18px; border-radius: 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; font-weight: 600; font-family: var(--font-body); font-size: .9rem;
  animation: float 5s ease-in-out infinite reverse;
}
.hero-note .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(74,124,89,.2); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* =====================================================================
   PAGE BANNER (inner pages)
   ===================================================================== */
.page-banner {
  position: relative; padding: 78px 0 70px; text-align: center; color: var(--cream);
  background:
    radial-gradient(700px 360px at 80% -30%, rgba(110,155,124,.55), transparent 60%),
    linear-gradient(150deg, var(--brand-dark) 0%, var(--brand) 100%);
}
.page-banner h1 { color: #fff; margin-bottom: 14px; font-weight: 500; }
.page-banner p { color: rgba(243,241,231,.88); max-width: 620px; margin: 0 auto; font-size: 1.08rem; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 20px; font-size: .86rem; font-family: var(--font-body); }
.breadcrumb a { color: var(--cream); opacity: .82; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb span { opacity: .55; }
.breadcrumb .current { color: #ecdcc9; opacity: 1; font-weight: 600; }

/* =====================================================================
   CARDS / GRIDS
   ===================================================================== */
.grid { display: grid; gap: 28px; }
.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: 34px; 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: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  margin-bottom: 20px; color: var(--brand-dark);
  background: linear-gradient(135deg, rgba(110,155,124,.22), rgba(74,124,89,.12));
}
.icon-badge svg { width: 28px; height: 28px; }

/* Product / featured tea cards (with photo) */
.product { overflow: hidden; padding: 0; }
.product .thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.product .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product:hover .thumb img { transform: scale(1.05); }
.product .thumb .tag { position: absolute; top: 14px; left: 14px; background: var(--white); color: var(--brand-dark); font-family: var(--font-body); font-weight: 600; font-size: .7rem; letter-spacing: .04em; padding: 5px 13px; border-radius: 50px; box-shadow: var(--shadow-sm); }
.product .body { padding: 24px 26px 28px; }
.product .body .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.product .body h3 { font-size: 1.35rem; }
.product .body .price { font-family: var(--font-head); font-weight: 600; color: var(--clay-dark); font-size: 1.3rem; white-space: nowrap; }
.product .body p { font-size: .94rem; margin-top: 8px; }

/* =====================================================================
   ABOUT TEASER / SPLIT SECTIONS
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-visual {
  border-radius: var(--radius); position: relative; overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 4 / 3;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { margin-bottom: 20px; }
.split-text p + p { margin-top: 16px; }
.check-list { margin-top: 24px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.check-list li svg { flex: none; width: 22px; height: 22px; margin-top: 3px; color: var(--brand); }

/* =====================================================================
   FEATURE STRIP (intro values)
   ===================================================================== */
.strip { background: var(--brand-dark); color: var(--cream); border-radius: var(--radius); padding: 44px; display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; box-shadow: var(--shadow-md); }
.strip .item { display: flex; gap: 16px; align-items: flex-start; }
.strip .item .ic { flex: none; color: #cfe0d4; }
.strip .item .ic svg { width: 28px; height: 28px; }
.strip .item h4 { color: #fff; font-size: 1.15rem; margin-bottom: 4px; }
.strip .item p { color: rgba(243,241,231,.84); font-size: .92rem; }

/* =====================================================================
   GALLERY TEASER (home)
   ===================================================================== */
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.teaser-grid .gphoto { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.teaser-grid .gphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.teaser-grid .gphoto:hover img { transform: scale(1.06); }

/* =====================================================================
   TESTIMONIAL
   ===================================================================== */
.quote-card { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-card .stars { color: var(--clay); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 20px; }
.quote-card blockquote { font-family: var(--font-head); font-size: clamp(1.5rem,2.8vw,2.1rem); color: var(--brand-dark); line-height: 1.4; font-weight: 500; }
.quote-card .who { margin-top: 26px; display: flex; gap: 14px; align-items: center; justify-content: center; }
.quote-card .avatar { width: 54px; height: 54px; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-sm); }
.quote-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.quote-card .who b { font-family: var(--font-body); color: var(--ink); display: block; font-size: .98rem; }
.quote-card .who small { color: var(--muted); }

.testi-grid .card .stars { color: var(--clay); letter-spacing: 2px; margin-bottom: 14px; }
.testi-grid .card blockquote { font-family: var(--font-head); font-size: 1.3rem; color: var(--ink); font-weight: 500; line-height: 1.4; }
.testi-grid .card .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testi-grid .card .avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none; }
.testi-grid .card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-grid .card .who b { font-family: var(--font-body); 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: 72px 40px; color: var(--cream); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-band .inner::after { content: ""; position: absolute; right: -40px; bottom: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(243,241,231,.06); }
.cta-band h2 { color: #fff; margin-bottom: 16px; font-weight: 500; }
.cta-band p { color: rgba(243,241,231,.9); max-width: 540px; margin: 0 auto 30px; position: relative; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; position: relative; }

/* =====================================================================
   TEAM / FOUNDER
   ===================================================================== */
.team-card { text-align: center; }
.team-card .photo { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 18px; overflow: hidden; box-shadow: var(--shadow-md); }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.25rem; margin-bottom: 2px; }
.team-card .role { color: var(--clay-dark); font-family: var(--font-body); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.team-card p { font-size: .92rem; margin-top: 10px; }

/* =====================================================================
   MENU PAGE
   ===================================================================== */
.menu-cat { margin-bottom: 64px; }
.menu-cat:last-child { margin-bottom: 0; }
.menu-cat-head { display: flex; align-items: center; gap: 18px; margin-bottom: 32px; }
.menu-cat-head .ic { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: var(--brand-dark); flex: none; background: linear-gradient(135deg, rgba(110,155,124,.22), rgba(74,124,89,.12)); }
.menu-cat-head .ic svg { width: 28px; height: 28px; }
.menu-cat-head h2 { font-size: 2rem; }
.menu-cat-head p { font-size: .94rem; }

.menu-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 48px; }
.menu-item { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px dashed var(--line); align-items: flex-start; }
.menu-item .mphoto { width: 84px; height: 84px; flex: none; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.menu-item .mphoto img { width: 100%; height: 100%; object-fit: cover; }
.menu-item .minfo { flex: 1; min-width: 0; }
.menu-item .top { display: flex; align-items: baseline; gap: 10px; }
.menu-item .name { font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; color: var(--brand-dark); }
.menu-item .dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-5px); }
.menu-item .price { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--clay-dark); }
.menu-item .desc { font-size: .88rem; margin-top: 2px; }
.menu-item .badge { font-size: .62rem; background: rgba(74,124,89,.14); color: var(--brand-dark); padding: 2px 9px; border-radius: 50px; font-family: var(--font-body); font-weight: 600; letter-spacing: .03em; text-transform: uppercase; vertical-align: middle; }

/* =====================================================================
   GALLERY PAGE
   ===================================================================== */
.gallery-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.gallery-tabs a { padding: 9px 22px; border-radius: 50px; font-family: var(--font-body); font-weight: 600; font-size: .88rem; 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); }

.gallery-group { margin-bottom: 60px; }
.gallery-group h2 { margin-bottom: 24px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.tile {
  border-radius: var(--radius-sm); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  aspect-ratio: 1;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tile::after {
  content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 14px 14px; font-family: var(--font-body); font-size: .82rem; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(44,51,44,.78)); text-align: left;
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; pointer-events: none;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile:hover img { transform: scale(1.06); }
.tile:hover::after { opacity: 1; transform: translateY(0); }
.tile.wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; 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-of-type { border-bottom: none; }
.contact-info .info-item .ic { width: 48px; height: 48px; flex: none; border-radius: 50%; display: grid; place-items: center; color: var(--brand-dark); background: linear-gradient(135deg, rgba(110,155,124,.22), rgba(74,124,89,.12)); }
.contact-info .info-item .ic svg { width: 22px; height: 22px; }
.contact-info .info-item h4 { margin-bottom: 2px; font-size: 1.15rem; }
.contact-info .info-item p, .contact-info .info-item a { color: var(--muted); font-size: .95rem; }
.contact-info .info-item a:hover { color: var(--clay-dark); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-body); font-weight: 600; font-size: .86rem; 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(--brand); box-shadow: 0 0 0 3px rgba(74,124,89,.16); background: #fff; }
.field textarea { resize: vertical; min-height: 140px; }
.field.error input, .field.error textarea { border-color: #c0594f; }
.field .msg { color: #c0594f; font-size: .8rem; margin-top: 5px; display: none; }
.field.error .msg { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 8px; }
.form-success { display: none; background: rgba(74,124,89,.12); border: 1px solid rgba(74,124,89,.4); color: var(--brand-dark); padding: 14px 18px; border-radius: var(--radius-sm); font-family: var(--font-body); font-weight: 600; margin-bottom: 20px; }
.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(74,124,89,.05) 0 18px, transparent 18px 36px),
    linear-gradient(150deg, var(--cream) 0%, #e6e3d3 100%);
  border: 1px solid var(--line); display: grid; place-items: center; text-align: center;
}
.map-placeholder .pin { color: var(--brand); animation: float 4s ease-in-out infinite; }
.map-placeholder .pin svg { width: 44px; height: 44px; }
.map-placeholder .label { font-family: var(--font-head); font-size: 1.3rem; 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(243,241,231,.78); padding: 76px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 42px; }
.footer-grid h4 { color: var(--cream); font-size: 1.15rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand .logo span small { color: #d9c3aa; }
.footer-brand p { font-size: .92rem; max-width: 280px; }
.footer-col a, .footer-col p { display: block; color: rgba(243,241,231,.78); font-size: .92rem; padding: 5px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: #ecdcc9; padding-left: 5px; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(243,241,231,.08); padding: 0; color: var(--cream); }
.socials a svg { width: 18px; height: 18px; }
.socials a:hover { background: var(--clay); padding-left: 0; }
.footer-bottom { border-top: 1px solid rgba(243,241,231,.14); margin-top: 50px; padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color: #ecdcc9; }

/* =====================================================================
   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: 44px; }
  .hero-art { min-height: 400px; order: -1; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .gallery-grid, .teaser-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .section { padding: 72px 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: 24px; padding: 32px; }
  .menu-rows { grid-template-columns: 1fr; gap: 0; }
  .hero-stats { gap: 26px; }
}

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