/* ==========================================================================
   PITTI Festék — design system
   Warm, chalky, paint-shop premium. Farrow & Ball / COAT / Little Greene tone.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  /* palette */
  --bg: #F6F2EA;
  --surface: #FBF8F2;
  --surface-sunk: #EFE9DC;
  --ink: #241F1B;
  --ink-soft: #5A524A;
  --brand: #A8432A;
  --brand-deep: #7E2F1C;
  --accent: #2E5A56;
  --accent-deep: #224442;
  --ochre: #C8893B;
  --border: #DAD2C2;
  --success: #4E7A3E;

  /* spacing — 8pt */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px;
  --container: 1200px;
  --prose: 720px;

  /* radius */
  --r-sm: 4px; --r-md: 8px; --r-lg: 14px; --r-xl: 24px; --r-pill: 999px;

  /* shadow (warm-tinted) */
  --shadow-sm: 0 1px 2px rgba(36,31,27,.06);
  --shadow-md: 0 6px 18px rgba(36,31,27,.08);
  --shadow-lg: 0 18px 40px rgba(36,31,27,.10);

  /* type */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --fs-display: clamp(2.5rem, 1.55rem + 4.2vw, 4rem);
  --fs-h2: clamp(1.875rem, 1.28rem + 2.6vw, 2.75rem);
  --fs-h3: clamp(1.375rem, 1.12rem + 1.1vw, 1.75rem);
  --fs-h4: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
  --fs-body: clamp(1rem, 0.965rem + 0.18vw, 1.125rem);
  --fs-small: clamp(0.8125rem, 0.79rem + 0.14vw, 0.875rem);
  --fs-eyebrow: clamp(0.75rem, 0.73rem + 0.1vw, 0.8125rem);

  --header-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; font-optical-sizing: auto; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-md);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s3); }
.section { padding-block: clamp(56px, 7vw, 96px); position: relative; }
.section--sunk { background: var(--surface-sunk); }
.section--paper { background: var(--surface); }
.section-head { max-width: var(--prose); margin-bottom: var(--s5); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-eyebrow); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--brand); margin-bottom: var(--s2);
}
.eyebrow::before { content: ""; width: 22px; height: 8px; border-radius: 2px; background: var(--ochre); }
.section-head--center .eyebrow { justify-content: center; }
.lead { font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem); color: var(--ink-soft); margin-top: var(--s2); }

/* swatch divider strip */
.swatch-rule { display: flex; height: 6px; width: 100%; }
.swatch-rule span { flex: 1; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 12px 24px; border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform .12s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-deep); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--surface); }
.btn--light { background: var(--bg); color: var(--brand-deep); }
.btn--light:hover { background: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn:active { transform: scale(.97); }
.btn--block { width: 100%; }

/* ---- Utility topbar ----------------------------------------------------- */
.topbar { background: var(--surface-sunk); border-bottom: 1px solid var(--border); font-size: var(--fs-small); color: var(--ink-soft); }
.topbar__row { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); padding-block: 8px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item a { color: var(--ink-soft); text-decoration: none; font-weight: 500; }
.topbar__item a:hover { color: var(--brand); }
.topbar svg { width: 15px; height: 15px; color: var(--brand); }
.status-pill { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; padding: 3px 12px; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--border); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-soft); flex: none; }
.status-pill.is-open .status-dot { background: var(--success); box-shadow: 0 0 0 0 rgba(78,122,62,.5); animation: pulse 2.4s infinite; }
.status-pill.is-open { color: var(--success); border-color: rgba(78,122,62,.35); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(78,122,62,.45); } 70% { box-shadow: 0 0 0 8px rgba(78,122,62,0); } 100% { box-shadow: 0 0 0 0 rgba(78,122,62,0); } }
@media (max-width: 760px) { .topbar__item--hide-m { display: none; } }

/* ---- Header / nav ------------------------------------------------------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(246,242,234,.86); backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid transparent; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
.header.is-scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); background: rgba(246,242,234,.94); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); height: var(--header-h); transition: height .25s var(--ease); }
.header.is-scrolled .nav { height: 64px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand__mark { width: 40px; height: 40px; flex: none; border-radius: 10px; box-shadow: var(--shadow-sm); }
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; line-height: 1; letter-spacing: -0.01em; white-space: nowrap; }
.brand__desc { display: block; font-family: var(--font-body); font-size: 10.5px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--brand); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 8px 12px; border-radius: var(--r-md); position: relative; transition: color .18s var(--ease), background .18s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); border-radius: 2px; }
.nav__links a:hover { color: var(--brand); }
.nav__links a.is-active { color: var(--brand); }
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: var(--s2); }
.nav__toggle { display: none; }

/* mobile menu */
.menu-btn { display: none; width: 46px; height: 46px; border: 1px solid var(--border); background: var(--surface); border-radius: var(--r-md); cursor: pointer; align-items: center; justify-content: center; color: var(--ink); }
.menu-btn svg { width: 24px; height: 24px; }
.mobile-menu { position: fixed; inset: 0; z-index: 150; background: var(--bg); padding: var(--s4) var(--s3) var(--s6); transform: translateX(100%); transition: transform .32s var(--ease); display: flex; flex-direction: column; overflow-y: auto; }
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s5); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu nav a { font-family: var(--font-head); font-size: 1.55rem; color: var(--ink); text-decoration: none; padding: 12px 4px; border-bottom: 1px solid var(--border); }
.mobile-menu__cta { margin-top: var(--s5); display: grid; gap: var(--s2); }

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(40px, 6vw, 84px); overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -120px; right: -140px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(200,137,59,.16), transparent 65%); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero__copy { max-width: 600px; }
.hero h1 { font-size: var(--fs-display); margin: var(--s2) 0 var(--s3); }
.hero h1 .accent { color: var(--brand); }
.hero__sub { font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem); color: var(--ink-soft); max-width: 52ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; margin-top: var(--s4); font-size: var(--fs-small); color: var(--ink-soft); font-weight: 500; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust .stars { color: var(--ochre); letter-spacing: 1px; }
.hero__micro { margin-top: var(--s3); font-size: var(--fs-small); color: var(--ink-soft); }
.hero__art { position: relative; }
.hero__art img { width: 100%; max-width: 560px; margin-inline: auto; }
.hero__badge { position: absolute; left: -6px; bottom: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.hero__badge b { font-family: var(--font-head); font-size: 1.4rem; display: block; line-height: 1; }
.hero__badge small { font-size: 12px; color: var(--ink-soft); }
.hero__badge .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--accent); color: #fff; display: grid; place-items: center; flex: none; }
.hero__badge .ico svg { width: 21px; height: 21px; }

/* ---- Stat band ---------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); }
.stat { text-align: center; padding: var(--s3) var(--s2); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.stat b { font-family: var(--font-head); font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem); color: var(--brand); line-height: 1; display: block; }
.stat span { display: block; margin-top: 8px; font-size: var(--fs-small); color: var(--ink-soft); font-weight: 500; }
.stats-note { text-align: center; max-width: var(--prose); margin: var(--s4) auto 0; color: var(--ink-soft); }

/* ---- Színkeverés feature ------------------------------------------------ */
.mix { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%); color: #F4EFE6; }
.mix .eyebrow { color: var(--ochre); }
.mix .eyebrow::before { background: var(--ochre); }
.mix h2 { color: #FBF8F2; }
.mix__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.mix__art { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.14); }
.mix__lead { color: rgba(244,239,230,.86); margin-top: var(--s2); }
.mix__chips { display: flex; flex-wrap: wrap; gap: 10px; margin: var(--s3) 0; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: var(--r-pill); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); font-size: var(--fs-small); font-weight: 600; }
.chip::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--ochre); }
.steps { display: grid; gap: var(--s2); margin: var(--s4) 0; counter-reset: step; }
.step { display: flex; gap: var(--s2); align-items: flex-start; }
.step__num { counter-increment: step; flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--ochre); color: var(--ink); font-family: var(--font-head); font-weight: 600; display: grid; place-items: center; }
.step__num::before { content: counter(step); }
.step b { display: block; color: #FBF8F2; }
.step p { color: rgba(244,239,230,.82); font-size: var(--fs-small); margin-top: 2px; }

/* ---- Bento product grid ------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); grid-auto-rows: 1fr; }
.tile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s3); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); position: relative; overflow: hidden; }
.tile__ico { width: 46px; height: 46px; border-radius: 11px; background: var(--surface-sunk); color: var(--brand); display: grid; place-items: center; flex: none; }
.tile__ico svg { width: 24px; height: 24px; }
.tile h3 { font-size: 1.2rem; }
.tile p { font-size: var(--fs-small); color: var(--ink-soft); }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile--feature { grid-column: span 2; grid-row: span 2; padding: 0; }
.tile--feature .tile__media { width: 100%; height: 100%; min-height: 220px; overflow: hidden; }
.tile--feature .tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tile--feature:hover .tile__media img { transform: scale(1.04); }
.tile--feature .tile__body { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s3); background: linear-gradient(0deg, rgba(36,31,27,.82) 0%, rgba(36,31,27,.45) 55%, transparent 100%); color: #fff; }
.tile--feature .tile__body h3 { color: #fff; font-size: 1.5rem; }
.tile--feature .tile__body p { color: rgba(255,255,255,.85); }
.tile--link { cursor: pointer; }
.tile--link a { text-decoration: none; color: inherit; }
.tile--accent { background: var(--accent); color: #FBF8F2; border-color: var(--accent-deep); }
.tile--accent .tile__ico { background: rgba(255,255,255,.15); color: #fff; }
.tile--accent h3, .tile--accent p { color: #FBF8F2; }
.tile--accent .tile__more { margin-top: auto; font-weight: 600; font-size: var(--fs-small); display: inline-flex; align-items: center; gap: 6px; color: var(--ochre); }
.bento-foot { margin-top: var(--s4); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s2); background: var(--surface-sunk); border-radius: var(--r-lg); padding: var(--s3) var(--s4); }
.bento-foot p { font-weight: 500; }

/* ---- Brand marquee ------------------------------------------------------ */
.brands { background: var(--surface); }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); margin-top: var(--s4); }
.marquee__track { display: flex; gap: var(--s5); width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.1rem, 1rem + 0.6vw, 1.5rem); color: var(--ink-soft); white-space: nowrap; letter-spacing: 0.01em; opacity: .72; transition: opacity .2s var(--ease), color .2s var(--ease); }
.marquee__item:hover { opacity: 1; color: var(--brand); }
@keyframes marquee { to { transform: translateX(-50%); } }
.brand-grid { display: none; flex-wrap: wrap; gap: var(--s2) var(--s4); justify-content: center; margin-top: var(--s4); }
.brand-grid span { font-family: var(--font-head); font-weight: 600; color: var(--ink-soft); }

/* ---- Use-case cards ----------------------------------------------------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.ucard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s4); box-shadow: var(--shadow-sm); }
.ucard .tile__ico { margin-bottom: var(--s2); }
.ucard h3 { font-size: 1.3rem; margin-bottom: 8px; }
.ucard p { color: var(--ink-soft); font-size: var(--fs-small); }

/* ---- Testimonials ------------------------------------------------------- */
.reviews-head { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: var(--s5); }
.reviews-head .stars { color: var(--ochre); font-size: 1.4rem; letter-spacing: 2px; }
.reviews-head b { font-family: var(--font-head); font-size: 1.3rem; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s4); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--s2); }
.quote .stars { color: var(--ochre); letter-spacing: 1px; }
.quote p { font-size: 1.05rem; line-height: 1.55; }
.quote cite { font-style: normal; font-weight: 600; font-size: var(--fs-small); color: var(--ink-soft); margin-top: auto; }
.quote cite::before { content: "— "; }
.reviews-link { text-align: center; margin-top: var(--s4); }

/* ---- Why us ------------------------------------------------------------- */
.why { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4) var(--s5); }
.why__item { display: flex; gap: var(--s3); }
.why__num { font-family: var(--font-head); font-size: 1.6rem; color: var(--brand); font-weight: 600; flex: none; width: 30px; }
.why__item h3 { font-size: 1.25rem; margin-bottom: 6px; }
.why__item p { color: var(--ink-soft); font-size: var(--fs-small); }
.why-cta { margin-top: var(--s5); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s3); text-align: center; background: var(--surface-sunk); border-radius: var(--r-lg); padding: var(--s4); }

/* ---- Contact ------------------------------------------------------------ */
.contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s4); align-items: stretch; }
.contact__card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s4); box-shadow: var(--shadow-sm); }
.contact__row { display: flex; gap: 14px; padding: var(--s2) 0; border-bottom: 1px solid var(--border); }
.contact__row:last-of-type { border-bottom: 0; }
.contact__row .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--surface-sunk); color: var(--brand); display: grid; place-items: center; flex: none; }
.contact__row .ico svg { width: 20px; height: 20px; }
.contact__row b { display: block; font-size: var(--fs-small); color: var(--ink-soft); font-weight: 600; }
.contact__row a, .contact__row span { font-size: 1.05rem; color: var(--ink); text-decoration: none; font-weight: 500; }
.contact__row a:hover { color: var(--brand); }
.hours { margin-top: var(--s2); }
.hours li { display: flex; justify-content: space-between; padding: 9px 12px; border-radius: var(--r-sm); font-size: var(--fs-small); }
.hours li.today { background: var(--surface-sunk); font-weight: 600; }
.hours li .day { color: var(--ink-soft); }
.contact__actions { display: grid; gap: var(--s2); margin-top: var(--s3); }
.map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); min-height: 420px; position: relative; background: var(--surface-sunk); }
.map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.map__facade { position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer; background: var(--surface-sunk); text-align: center; padding: var(--s3); }
.map__facade .pin { width: 56px; height: 56px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; margin: 0 auto var(--s2); box-shadow: var(--shadow-md); }
.map__facade .pin svg { width: 28px; height: 28px; }
.map__facade b { font-family: var(--font-head); font-size: 1.2rem; }
.map__facade span { display: block; color: var(--ink-soft); font-size: var(--fs-small); margin-top: 4px; }

/* ---- FAQ ---------------------------------------------------------------- */
.faq { max-width: var(--prose); margin-inline: auto; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); margin-bottom: var(--s2); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); padding: var(--s3); cursor: pointer; font-family: var(--font-head); font-weight: 500; font-size: 1.15rem; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 26px; height: 26px; flex: none; position: relative; transition: transform .25s var(--ease); }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; }
.faq summary .plus::before { left: 4px; right: 4px; top: 11.5px; height: 3px; }
.faq summary .plus::after { top: 4px; bottom: 4px; left: 11.5px; width: 3px; transition: transform .25s var(--ease); }
.faq details[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq details[open] summary { color: var(--brand); }
.faq__body { padding: 0 var(--s3) var(--s3); color: var(--ink-soft); }

/* ---- Final CTA ---------------------------------------------------------- */
.final-cta { background: var(--brand-deep); color: #FBF8F2; text-align: center; }
.final-cta h2 { color: #fff; max-width: 18ch; margin: 0 auto var(--s2); }
.final-cta p { color: rgba(251,248,242,.82); margin-bottom: var(--s4); }
.final-cta__btns { display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: center; }

/* ---- Footer ------------------------------------------------------------- */
.footer { background: var(--accent-deep); color: rgba(246,242,234,.82); padding-block: var(--s6) var(--s4); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s4); }
.footer h4 { font-family: var(--font-body); font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.1em; color: rgba(246,242,234,.55); margin-bottom: var(--s2); font-weight: 600; }
.footer a { color: rgba(246,242,234,.82); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__brand .brand__name { color: #fff; font-size: 1.4rem; }
.footer__brand .brand__desc { color: var(--ochre); }
.footer__brand p { margin-top: var(--s2); font-size: var(--fs-small); }
.footer ul li { margin-bottom: 9px; font-size: var(--fs-small); }
.footer__bar { border-top: 1px solid rgba(246,242,234,.16); margin-top: var(--s5); padding-top: var(--s3); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s2); font-size: var(--fs-small); }
.footer__bar a { display: inline-flex; align-items: center; gap: 6px; }

/* ---- Sticky mobile bar -------------------------------------------------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(251,248,242,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--border); box-shadow: 0 -6px 20px rgba(36,31,27,.08); transform: translateY(110%); transition: transform .3s var(--ease); }
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar .btn { flex: 1; min-height: 48px; }

/* ---- Reveal animation --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 460px; margin-inline: auto; }
  .mix__grid { grid-template-columns: 1fr; }
  .mix__art { order: -1; max-width: 480px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--feature { grid-column: span 2; grid-row: auto; }
  .tile--feature .tile__media { min-height: 240px; }
  .cards-3, .quotes { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__actions .btn--ghost { display: none; }
  .menu-btn { display: flex; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .mobile-bar { display: flex; }
  body.has-mobile-bar { padding-bottom: 76px; }
  .hero__badge { left: 0; }
}
@media (max-width: 480px) {
  .bento { grid-template-columns: 1fr; }
  .tile--feature { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .topbar__row { justify-content: center; }
  .brand__desc { display: none; }
  .brand__name { font-size: 1.18rem; }
}

/* ---- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; flex-wrap: wrap; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { width: auto; justify-content: center; }
}
