/* ==========================================================================
   HILL & BROOKS COFFEE AND TEA COMPANY — Luxury Design System
   Palette derived from the original monochrome heritage logo:
   espresso ink · warm cream · antique gold
   ========================================================================== */

:root {
  /* Color tokens */
  --ink: #17120e;
  --espresso: #241b14;
  --coffee: #3e2c1e;
  --roast: #5c4433;
  --caramel: #a9743e;
  --gold: #b98a3c;
  --gold-light: #d4af5e;
  --gold-pale: #ecd9a8;
  --cream: #f7f2e9;
  --cream-2: #efe7d8;
  --cream-3: #e5d9c3;
  --white: #ffffff;
  --muted: #6f6353;
  --success: #3d6b35;
  --error: #a83232;

  --grad-gold: linear-gradient(135deg, #d4af5e 0%, #b98a3c 45%, #96702c 100%);
  --grad-dark: linear-gradient(180deg, rgba(23, 18, 14, 0.25) 0%, rgba(23, 18, 14, 0.78) 100%);

  /* Multi-layer luxury shadows */
  --shadow-sm: 0 1px 2px rgba(23, 18, 14, 0.06), 0 2px 6px rgba(23, 18, 14, 0.05);
  --shadow-md: 0 2px 4px rgba(23, 18, 14, 0.05), 0 8px 16px rgba(23, 18, 14, 0.08), 0 16px 32px rgba(23, 18, 14, 0.06);
  --shadow-lg: 0 4px 8px rgba(23, 18, 14, 0.06), 0 12px 24px rgba(23, 18, 14, 0.09), 0 32px 64px rgba(23, 18, 14, 0.12);
  --shadow-gold: 0 4px 12px rgba(185, 138, 60, 0.25), 0 12px 32px rgba(185, 138, 60, 0.18);

  /* Type scale (fluid) */
  --fs-display: clamp(2.6rem, 6vw + 0.5rem, 5.2rem);
  --fs-h1: clamp(2.3rem, 4.5vw + 0.5rem, 4rem);
  --fs-h2: clamp(1.8rem, 3vw + 0.4rem, 2.8rem);
  --fs-h3: clamp(1.3rem, 1.5vw + 0.4rem, 1.65rem);
  --fs-lead: clamp(1.05rem, 0.6vw + 0.9rem, 1.25rem);

  --font-head: "Playfair Display", "Georgia", serif;
  --font-body: "Lato", "Segoe UI", -apple-system, sans-serif;

  --container: 1200px;
  --radius: 18px;
  --radius-lg: 28px;

  /* z-index scale */
  --z-topbar: 50;
  --z-header: 40;
  --z-mobilenav: 60;
  --z-sticky-cta: 45;
  --z-progress: 70;

  --ease-lux: 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);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
input, select, textarea { font: inherit; }

::selection { background: var(--gold); color: var(--white); }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--cream); padding: 0.75rem 1.5rem;
  border-radius: 0 0 12px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--ink); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
.lead { font-size: var(--fs-lead); color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 2.4rem; height: 1px; background: var(--gold); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 2.4rem; height: 1px; background: var(--gold); }

.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-head p { margin-top: 1rem; color: var(--muted); font-size: var(--fs-lead); }

.text-gold { color: var(--gold); }
.italic-accent { font-style: italic; font-weight: 500; }

/* ---------- Layout ---------- */
.container { width: min(var(--container), 92%); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section--dark { background: var(--espresso); color: var(--cream-2); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark .lead, .section--dark p { color: #cfc4b2; }
.section--cream2 { background: var(--cream-2); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: rgba(247, 242, 233, 0.85);
  font-size: 0.82rem;
  position: relative;
  z-index: var(--z-topbar);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.55rem 0; flex-wrap: wrap;
}
.topbar__contacts { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.topbar__contacts a, .topbar__contacts span {
  display: inline-flex; align-items: center; gap: 0.45rem;
  transition: color 0.2s ease;
}
.topbar__contacts a:hover { color: var(--gold-light); }
.topbar__contacts svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }
.topbar__social { display: flex; align-items: center; gap: 0.4rem; }
.topbar__social a {
  display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 50%; border: 1px solid rgba(247, 242, 233, 0.2);
  transition: all 0.25s var(--ease-lux);
}
.topbar__social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.topbar__social svg { width: 13px; height: 13px; fill: var(--cream); }

/* ==========================================================================
   HEADER — sticky glassmorphism
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(247, 242, 233, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(23, 18, 14, 0.06);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.header.is-scrolled {
  background: rgba(247, 242, 233, 0.92);
  box-shadow: 0 1px 0 rgba(23, 18, 14, 0.05), 0 12px 40px rgba(23, 18, 14, 0.1);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0.65rem 0; }
.header__logo img { height: 62px; width: auto; transition: height 0.3s var(--ease-lux); }
.header.is-scrolled .header__logo img { height: 52px; }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav > li { position: relative; }
.nav a {
  display: block; padding: 0.6rem 0.95rem; font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase;
  position: relative; transition: color 0.25s ease;
}
.nav > li > a::after {
  content: ""; position: absolute; left: 0.95rem; right: 100%;
  bottom: 0.3rem; height: 2px; background: var(--gold);
  transition: right 0.35s var(--ease-lux);
}
.nav > li > a:hover::after, .nav > li > a[aria-current="page"]::after { right: 0.95rem; }
.nav > li > a:hover, .nav > li > a[aria-current="page"] { color: var(--gold); }

/* Dropdown */
.nav .has-sub:hover .sub, .nav .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid rgba(23, 18, 14, 0.07);
  border-radius: 14px; padding: 0.6rem;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.3s var(--ease-lux);
}
.sub a { text-transform: none; letter-spacing: 0; font-weight: 500; border-radius: 9px; padding: 0.55rem 0.9rem; }
.sub a:hover { background: var(--cream-2); color: var(--gold); }

.header__cta { display: inline-flex; }

/* Hamburger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 0.65rem; border-radius: 10px; z-index: calc(var(--z-mobilenav) + 1);
}
.burger span { width: 26px; height: 2px; background: var(--ink); transition: 0.35s var(--ease-lux); border-radius: 2px; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: var(--z-mobilenav);
  background: rgba(23, 18, 14, 0.97);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease-lux);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav ul { text-align: center; display: grid; gap: 0.4rem; max-height: 82vh; overflow-y: auto; padding: 1rem; }
.mobile-nav a {
  font-family: var(--font-head); font-size: clamp(1.4rem, 5vw, 2rem);
  color: var(--cream); padding: 0.45rem 1.5rem; display: block;
  transition: color 0.25s ease, transform 0.25s ease;
  opacity: 0; transform: translateY(24px);
}
.mobile-nav.is-open a { animation: navReveal 0.55s var(--ease-lux) forwards; }
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .mobile-nav__small a { font-family: var(--font-body); font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
@keyframes navReveal { to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem; padding: 0.95rem 2.1rem; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; overflow: hidden; white-space: nowrap;
  transition: transform 0.3s var(--ease-lux), box-shadow 0.3s var(--ease-lux), background 0.3s ease, color 0.3s ease;
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.3s var(--ease-lux); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold { background: var(--grad-gold); color: var(--white); box-shadow: var(--shadow-gold); }
.btn--gold::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(185, 138, 60, 0.35), 0 20px 48px rgba(185, 138, 60, 0.25); }
.btn--gold:hover::before { transform: translateX(100%); }

.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); background: var(--coffee); }

.btn--ghost { border: 1.5px solid rgba(23, 18, 14, 0.25); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.section--dark .btn--ghost, .btn--ghost-light { border-color: rgba(247, 242, 233, 0.35); color: var(--cream); }
.section--dark .btn--ghost:hover, .btn--ghost-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ==========================================================================
   HERO — layered parallax
   ========================================================================== */
.hero {
  position: relative; min-height: clamp(560px, 92vh, 900px);
  display: grid; align-items: center; overflow: hidden;
  color: var(--cream); isolation: isolate;
}
.hero--inner { min-height: clamp(380px, 55vh, 560px); }
.hero__bg { position: absolute; inset: -12% 0; z-index: -2; will-change: transform; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: var(--grad-dark); }
.hero__vignette {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse at 30% 45%, transparent 30%, rgba(23, 18, 14, 0.55) 100%);
}
.hero__content { max-width: 780px; padding: 6rem 0 7rem; }
.hero__content h1 { font-size: var(--fs-display); color: var(--cream); font-weight: 800; }
.hero__content h1 em { font-style: italic; color: var(--gold-light); }
.hero__content .lead { color: rgba(247, 242, 233, 0.82); margin: 1.6rem 0 2.4rem; max-width: 560px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }

.hero__badge {
  position: absolute; right: 6%; bottom: 12%;
  background: rgba(247, 242, 233, 0.1);
  border: 1px solid rgba(247, 242, 233, 0.22);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-radius: var(--radius-lg); padding: 1.4rem 1.8rem; text-align: center;
  box-shadow: var(--shadow-lg);
  animation: floaty 6s ease-in-out infinite;
}
.hero__badge strong { font-family: var(--font-head); font-size: 2.2rem; color: var(--gold-light); display: block; line-height: 1; }
.hero__badge span { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: grid; justify-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(247, 242, 233, 0.7);
}
.hero__scroll::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(var(--gold-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.55); opacity: 0.5; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Floating ambient particles */
.particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particles span {
  position: absolute; display: block; border-radius: 50% 50% 50% 0;
  background: rgba(212, 175, 94, 0.35); transform: rotate(-45deg);
  animation: beanFloat linear infinite;
}
@keyframes beanFloat {
  0% { transform: translateY(105vh) rotate(-45deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(315deg); opacity: 0; }
}

/* ==========================================================================
   MARQUEE STRIP
   ========================================================================== */
.marquee { background: var(--ink); padding: 1.1rem 0; overflow: hidden; border-block: 1px solid rgba(212, 175, 94, 0.25); }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 30s linear infinite; }
.marquee span {
  font-family: var(--font-head); font-style: italic; font-size: 1.05rem;
  color: var(--gold-pale); display: inline-flex; align-items: center; gap: 3.5rem; white-space: nowrap;
}
.marquee span::after { content: "✦"; color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   CARDS
   ========================================================================== */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux);
  cursor: pointer; position: relative;
  transform-style: preserve-3d; will-change: transform;
}
.card:hover { box-shadow: var(--shadow-lg); }
.card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-lux); }
.card:hover .card__media img { transform: scale(1.07); }
.card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(23, 18, 14, 0.5));
  opacity: 0; transition: opacity 0.4s ease;
}
.card:hover .card__media::after { opacity: 1; }
.card__body { padding: 1.8rem 1.8rem 2rem; }
.card__body h3 { margin-bottom: 0.6rem; }
.card__body p { color: var(--muted); font-size: 0.98rem; }
.card__link {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.1rem;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}
.card__link svg { width: 15px; height: 15px; fill: currentColor; transition: transform 0.3s var(--ease-lux); }
.card:hover .card__link svg { transform: translateX(5px); }

/* Product (bag) cards */
.product-card {
  background: var(--white); border-radius: var(--radius-lg); text-align: center;
  padding: 2.4rem 1.6rem 2rem; box-shadow: var(--shadow-md); cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux);
  transform-style: preserve-3d;
}
.product-card::before {
  content: ""; position: absolute; inset: 0 0 auto;
  height: 4px; background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease-lux);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover { box-shadow: var(--shadow-lg); }
.product-card img {
  height: 210px; width: auto; margin: 0 auto 1.5rem; object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(23, 18, 14, 0.22));
  transition: transform 0.5s var(--ease-lux);
}
.product-card:hover img { transform: translateY(-10px) scale(1.04) rotate(1.5deg); }
.product-card h3 { font-size: 1.25rem; }
.product-card p { color: var(--muted); font-size: 0.92rem; margin-top: 0.4rem; }
.product-card .tag {
  display: inline-block; margin-top: 1rem; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-pale); border-radius: 999px; padding: 0.3rem 0.9rem;
}

/* Glass feature card */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-radius: var(--radius-lg); padding: 2.2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux);
}
.glass-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.section--dark .glass-card {
  background: rgba(247, 242, 233, 0.06);
  border-color: rgba(247, 242, 233, 0.14);
}
.icon-circle {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-gold); box-shadow: var(--shadow-gold); margin-bottom: 1.4rem;
}
.icon-circle svg { width: 26px; height: 26px; fill: var(--white); }

/* ==========================================================================
   IMAGE COMPOSITIONS — layered offsets
   ========================================================================== */
.img-stack { position: relative; }
.img-stack__main { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.img-stack__main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.img-stack__accent {
  position: absolute; width: 46%; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream); bottom: -12%; right: -6%;
  animation: floaty 7s ease-in-out infinite;
}
.img-stack__accent img { aspect-ratio: 1; object-fit: cover; }
.img-stack__frame {
  position: absolute; inset: 8% -8% -8% 8%; z-index: -1;
  border: 1.5px solid var(--gold); border-radius: var(--radius-lg); opacity: 0.5;
}
.img-stack__seal {
  position: absolute; top: -9%; left: -7%; width: 118px; height: 118px;
  background: var(--ink); color: var(--gold-light); border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-head); font-style: italic; font-size: 0.85rem; line-height: 1.3;
  box-shadow: var(--shadow-lg); padding: 1rem;
  animation: spinSlow 24s linear infinite paused;
}
.img-stack__seal strong { font-size: 1.5rem; display: block; font-style: normal; }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stats__num {
  font-family: var(--font-head); font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800; color: var(--gold-light); line-height: 1;
}
.stats__label { margin-top: 0.6rem; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247, 242, 233, 0.65); }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews__tabs { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
.reviews__tab {
  padding: 0.6rem 1.5rem; border-radius: 999px; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid var(--cream-3); color: var(--muted); background: var(--white);
  transition: all 0.3s var(--ease-lux); cursor: pointer;
}
.reviews__tab:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.reviews__tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.review-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.2rem;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 1.1rem;
  position: relative; transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux), opacity 0.35s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-card::before {
  content: "“"; position: absolute; top: 0.6rem; right: 1.6rem;
  font-family: var(--font-head); font-size: 5.5rem; color: var(--gold-pale); line-height: 1;
}
.review-card.is-hidden { display: none; }
.review-card__stars { display: flex; gap: 3px; }
.review-card__stars svg { width: 17px; height: 17px; fill: #e8a33d; }
.review-card__text { color: var(--muted); font-size: 0.98rem; flex: 1; }
.review-card__author { display: flex; align-items: center; gap: 0.9rem; }
.review-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-gold); color: var(--white); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
}
.review-card__author strong { display: block; font-size: 0.95rem; }
.review-card__author span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.review-card__badge {
  position: absolute; bottom: 1.6rem; right: 1.6rem; width: 22px; height: 22px;
}
.reviews__actions { display: flex; justify-content: center; gap: 1rem; margin-top: 2.8rem; flex-wrap: wrap; }
.reviews__rating-strip {
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
  margin-bottom: 2.2rem; flex-wrap: wrap;
}
.reviews__rating-strip strong { font-family: var(--font-head); font-size: 2rem; }
.reviews__rating-strip .review-card__stars svg { width: 21px; height: 21px; }
.reviews__rating-strip span { color: var(--muted); font-size: 0.9rem; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form { display: grid; gap: 1.2rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form__group { display: grid; gap: 0.45rem; }
.form__group label { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.form__group input, .form__group select, .form__group textarea {
  width: 100%; padding: 0.95rem 1.2rem; border-radius: 14px;
  border: 1.5px solid var(--cream-3); background: var(--white);
  color: var(--ink); transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(185, 138, 60, 0.15);
}
.form__group textarea { min-height: 130px; resize: vertical; }
.form__group.has-error input, .form__group.has-error select, .form__group.has-error textarea { border-color: var(--error); }
.form__error { color: var(--error); font-size: 0.82rem; display: none; }
.form__group.has-error .form__error { display: block; }
.form__success {
  display: none; padding: 1.1rem 1.4rem; border-radius: 14px;
  background: rgba(61, 107, 53, 0.1); border: 1.5px solid rgba(61, 107, 53, 0.35);
  color: var(--success); font-weight: 700;
}
.form__success.is-visible { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.section--dark .form__group input, .section--dark .form__group select, .section--dark .form__group textarea {
  background: rgba(247, 242, 233, 0.07); border-color: rgba(247, 242, 233, 0.18); color: var(--cream);
}
.section--dark .form__group option { color: var(--ink); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--ink); }
.cta-band__inner {
  position: relative; z-index: 1; text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) 1rem;
}
.cta-band h2 { color: var(--cream); font-size: var(--fs-h2); max-width: 680px; margin: 0 auto 1.2rem; }
.cta-band h2 em { color: var(--gold-light); }
.cta-band p { color: rgba(247, 242, 233, 0.72); max-width: 540px; margin: 0 auto 2.4rem; }
.cta-band__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-band__glow {
  position: absolute; width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 138, 60, 0.18), transparent 65%);
  top: -30vw; left: 50%; transform: translateX(-50%); pointer-events: none;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs { font-size: 0.82rem; letter-spacing: 0.06em; color: rgba(247, 242, 233, 0.7); margin-bottom: 1.2rem; }
.breadcrumbs ol { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.breadcrumbs li + li::before { content: "›"; margin-right: 0.6rem; color: var(--gold-light); }
.breadcrumbs a:hover { color: var(--gold-light); }

/* ==========================================================================
   TIMELINE (about page)
   ========================================================================== */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 2.4rem; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1.5px;
  background: linear-gradient(var(--gold), var(--cream-3));
}
.timeline__item { position: relative; padding-bottom: 2.6rem; }
.timeline__item::before {
  content: ""; position: absolute; left: -2.4rem; top: 8px; width: 17px; height: 17px;
  border-radius: 50%; background: var(--cream); border: 3.5px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(185, 138, 60, 0.15);
}
.timeline__year { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.timeline__item p { color: var(--muted); margin-top: 0.35rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 1rem; }
.faq details {
  background: var(--white); border-radius: var(--radius); padding: 1.4rem 1.8rem;
  box-shadow: var(--shadow-sm); border: 1px solid transparent; transition: border-color 0.3s ease;
}
.faq details[open] { border-color: var(--gold-pale); box-shadow: var(--shadow-md); }
.faq summary {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--gold); transition: transform 0.3s var(--ease-lux); flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 0.9rem; color: var(--muted); }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-info-list { display: grid; gap: 1.4rem; }
.contact-info-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-info-list .icon-circle { width: 50px; height: 50px; margin: 0; flex-shrink: 0; }
.contact-info-list .icon-circle svg { width: 21px; height: 21px; }
.contact-info-list strong { display: block; font-family: var(--font-head); font-size: 1.1rem; }
.contact-info-list a:hover, .contact-info-list span { color: var(--muted); }
.contact-info-list a { color: var(--muted); transition: color 0.2s ease; }
.contact-info-list a:hover { color: var(--gold); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: rgba(247, 242, 233, 0.72); position: relative; overflow: hidden; }
.footer::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 3rem;
}
.footer__brand img { height: 74px; width: auto; filter: invert(1) brightness(1.6) sepia(0.15); margin-bottom: 1.3rem; }
.footer__brand p { font-size: 0.95rem; max-width: 300px; }
.footer h4 {
  color: var(--cream); font-size: 1.05rem; margin-bottom: 1.3rem;
  letter-spacing: 0.06em;
}
.footer ul { display: grid; gap: 0.65rem; font-size: 0.95rem; }
.footer ul a { transition: color 0.2s ease, padding-left 0.25s var(--ease-lux); }
.footer ul a:hover { color: var(--gold-light); padding-left: 6px; }
.footer__contact li { display: flex; gap: 0.7rem; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 5px; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(247, 242, 233, 0.2); transition: all 0.3s var(--ease-lux);
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.footer__social svg { width: 16px; height: 16px; fill: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(247, 242, 233, 0.1);
  padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer__bottom a { color: var(--gold-light); font-weight: 700; }
.footer__bottom a:hover { text-decoration: underline; }

/* ==========================================================================
   STICKY MOBILE CTA (call + WhatsApp)
   ========================================================================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky-cta);
  display: none; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 24px rgba(23, 18, 14, 0.25);
}
.sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem 0.6rem; font-weight: 800; font-size: 0.92rem;
  letter-spacing: 0.06em; text-transform: uppercase; min-height: 54px;
}
.sticky-cta svg { width: 20px; height: 20px; fill: currentColor; }
.sticky-cta__call { background: var(--ink); color: var(--cream); }
.sticky-cta__wa { background: #1eb955; color: var(--white); position: relative; overflow: hidden; }
.sticky-cta__wa::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255, 255, 255, 0.25); opacity: 0;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(0.4); opacity: 0.6; } 100% { transform: scale(1.6); opacity: 0; } }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform-origin: left; transform: scaleX(0);
  background: var(--grad-gold); z-index: var(--z-progress); pointer-events: none;
}

/* Back to top */
.back-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: var(--z-sticky-cta);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--gold-light); display: grid; place-items: center;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all 0.35s var(--ease-lux);
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--gold); color: var(--white); }
.back-top svg { width: 18px; height: 18px; fill: currentColor; }

/* ==========================================================================
   SCROLL REVEAL SYSTEM
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(42px); transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux); will-change: transform, opacity; }
.reveal--left { transform: translateX(-52px); }
.reveal--right { transform: translateX(52px); }
.reveal--zoom { transform: scale(0.9); }
.reveal.is-inview { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease-lux), transform 0.8s var(--ease-lux); }
[data-stagger].is-inview > * { opacity: 1; transform: none; }
[data-stagger].is-inview > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].is-inview > *:nth-child(2) { transition-delay: 0.15s; }
[data-stagger].is-inview > *:nth-child(3) { transition-delay: 0.25s; }
[data-stagger].is-inview > *:nth-child(4) { transition-delay: 0.35s; }
[data-stagger].is-inview > *:nth-child(5) { transition-delay: 0.45s; }
[data-stagger].is-inview > *:nth-child(6) { transition-delay: 0.55s; }
[data-stagger].is-inview > *:nth-child(7) { transition-delay: 0.65s; }
[data-stagger].is-inview > *:nth-child(8) { transition-delay: 0.75s; }

/* Hero entrance */
.hero-entrance > * { opacity: 0; transform: translateY(46px); animation: heroIn 1.1s var(--ease-lux) forwards; }
.hero-entrance > *:nth-child(1) { animation-delay: 0.15s; }
.hero-entrance > *:nth-child(2) { animation-delay: 0.3s; }
.hero-entrance > *:nth-child(3) { animation-delay: 0.5s; }
.hero-entrance > *:nth-child(4) { animation-delay: 0.68s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* 404 */
.page-404 { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 5rem 1rem; }
.page-404 h1 { font-size: clamp(6rem, 18vw, 12rem); line-height: 1; color: var(--gold); opacity: 0.9; }
.page-404 p { color: var(--muted); max-width: 460px; margin: 1rem auto 2.2rem; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .topbar__contacts .topbar__address { display: none; }
  .hero__badge { display: none; }
  .img-stack { margin-bottom: 3rem; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer__bottom { justify-content: center; text-align: center; }
  .sticky-cta { display: grid; }
  body { padding-bottom: 54px; }
  .back-top { bottom: 70px; }
  .topbar__inner { justify-content: center; }
  .topbar__contacts { gap: 1rem; }
  .topbar__email { display: none; }
}

/* Reduced motion */
@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, [data-stagger] > *, .hero-entrance > * { opacity: 1 !important; transform: none !important; }
}
