/* ============================================================
   Incoco Style | Ladies Beauty Salon — shared design system
   Palette/type per research/brand-system.md
   ============================================================ */

:root {
  /* Brand tokens */
  --bg: #FFF7F5;
  --surface: #FFFFFF;
  --surface-soft: #FBEEEC;
  --text: #2A2426;
  --muted: #786A6D;
  --primary: #B66A7A;      /* rose */
  --primary-deep: #9C5566;
  --secondary: #2F3A35;    /* forest */
  --secondary-soft: #3C4A43;
  --accent: #D9B56F;       /* gold */
  --accent-deep: #C39E54;
  --border: #EADDE0;
  --photo-dark: #242424;
  --focus: #B66A7A;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 6px;

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Manrope", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(42,36,38,.05), 0 2px 8px rgba(42,36,38,.04);
  --shadow-md: 0 6px 24px rgba(42,36,38,.08), 0 2px 6px rgba(42,36,38,.05);
  --shadow-lg: 0 24px 60px rgba(42,36,38,.16);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.05; letter-spacing: -.01em; color: var(--text); }
h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.serif-accent { font-family: var(--ff-display); font-style: italic; color: var(--primary); font-weight: 500; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); line-height: 1.7; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.stack-sm > * + * { margin-top: .9rem; }
.measure { max-width: 56ch; }
.measure-narrow { max-width: 44ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1rem 1.9rem;
  font-family: var(--ff-body);
  font-weight: 600; font-size: .94rem; letter-spacing: .01em;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--secondary); color: #fff; }
.btn--dark:hover { background: var(--secondary-soft); transform: translateY(-2px); }
.btn--gold { background: var(--accent); color: var(--secondary); }
.btn--gold:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--sm { padding: .7rem 1.25rem; font-size: .85rem; }
.btn--block { width: 100%; }

.text-link { display: inline-flex; align-items: center; gap: .45em; font-weight: 600; font-size: .92rem; color: var(--primary); transition: gap .3s var(--ease); }
.text-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.text-link:hover { gap: .75em; }
.text-link:hover svg { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,247,245,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(255,247,245,.94); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--ff-display); font-weight: 600; font-size: 1.18rem; letter-spacing: .01em; }
.brand-text span { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .9rem; font-weight: 600; color: var(--text);
  position: relative; padding-block: .4rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--primary); transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: .8rem; }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--border); }
.nav-toggle svg { width: 22px; height: 22px; }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 1.2rem var(--gutter) 2rem;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.mobile-menu-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--border); }
.mobile-menu-close svg { width: 22px; height: 22px; }
.mobile-links { display: flex; flex-direction: column; margin-top: 1.5rem; }
.mobile-links a {
  font-family: var(--ff-display); font-size: 2rem; font-weight: 600;
  padding: .55rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-links a span { font-family: var(--ff-body); font-size: .8rem; color: var(--muted); font-weight: 600; }
.mobile-menu-cta { margin-top: auto; display: grid; gap: .7rem; padding-top: 2rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 33ch; }
.hero h1 { margin-top: 1.1rem; }
.hero h1 em { font-style: italic; color: var(--primary); }
.hero .lead { margin-top: 1.4rem; max-width: 42ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-trust { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--border); flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-media .img-main {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-media .img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .img-inset {
  position: absolute; bottom: -28px; left: -28px; width: 42%;
  aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden;
  border: 5px solid var(--bg); box-shadow: var(--shadow-md);
}
.hero-media .img-inset img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; top: 22px; right: -10px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: .55rem 1rem; display: flex; align-items: center; gap: .5rem;
  box-shadow: var(--shadow-md); font-size: .82rem; font-weight: 700;
}

/* stars */
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 16px; height: 16px; }
.rating-line { display: flex; align-items: center; gap: .55rem; font-size: .9rem; }
.rating-line b { font-weight: 700; }
.rating-line .muted { color: var(--muted); font-weight: 500; }

/* ============================================================
   MARQUEE / strip
   ============================================================ */
.strip { background: var(--secondary); color: #fff; padding-block: 1.1rem; overflow: hidden; }
.strip-track { display: flex; gap: 3.5rem; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.strip-track span { font-family: var(--ff-display); font-size: 1.25rem; font-style: italic; display: inline-flex; align-items: center; gap: 3.5rem; color: rgba(255,255,255,.92); }
.strip-track span::after { content: "✦"; color: var(--accent); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head { max-width: 60ch; }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin-top: .9rem; }
.sec-head p { margin-top: 1rem; }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-img { aspect-ratio: 4/5; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.4rem; }
.card-num { font-size: .72rem; font-weight: 700; letter-spacing: .2em; color: var(--accent-deep); }
.card-body p { font-size: .92rem; color: var(--muted); margin-top: .5rem; flex: 1; }
.card-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.tag { font-size: .72rem; font-weight: 600; color: var(--muted); background: var(--surface-soft); border: 1px solid var(--border); padding: .28rem .65rem; border-radius: 999px; }
.card-link { margin-top: 1.1rem; }

/* ============================================================
   SPLIT / feature
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/6; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { margin-top: .9rem; }
.split-copy p { margin-top: 1.1rem; }

/* feature list */
.feature-list { display: grid; gap: 1.2rem; margin-top: 1.8rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 999px; background: var(--surface-soft); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.feature-ico svg { width: 21px; height: 21px; }
.feature-item h4 { font-family: var(--ff-body); font-size: 1rem; font-weight: 700; }
.feature-item p { margin-top: .2rem; font-size: .9rem; color: var(--muted); }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat b { font-family: var(--ff-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; color: var(--primary); display: block; line-height: 1; }
.stat span { font-size: .82rem; color: var(--muted); letter-spacing: .04em; margin-top: .5rem; display: block; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-masonry { columns: 4 220px; column-gap: 14px; }
.gallery-masonry .g-item { break-inside: avoid; margin-bottom: 14px; border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: zoom-in; background: var(--surface-soft); }
.gallery-masonry .g-item img { width: 100%; height: auto; transition: transform .7s var(--ease), filter .5s var(--ease); display: block; }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(36,36,36,.5)); opacity: 0; transition: opacity .4s var(--ease); }
.g-item:hover img { transform: scale(1.05); }
.g-item:hover::after { opacity: 1; }
.g-cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-size: .8rem; font-weight: 600; opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.g-item:hover .g-cap { opacity: 1; transform: translateY(0); }

/* filter chips */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { font-size: .85rem; font-weight: 600; padding: .55rem 1.1rem; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--muted); transition: all .3s var(--ease); }
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--secondary); color: #fff; border-color: var(--secondary); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(28,24,25,.94); display: none; align-items: center; justify-content: center; padding: 4vw; backdrop-filter: blur(6px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.lb-btn { position: absolute; width: 52px; height: 52px; border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.lb-btn:hover { background: rgba(255,255,255,.22); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 4vw; right: 4vw; }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 4vw; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .85rem; letter-spacing: .1em; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem;
}
.review p { font-family: var(--ff-display); font-size: 1.35rem; line-height: 1.35; color: var(--text); font-style: italic; }
.review-meta { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.review-ava { width: 40px; height: 40px; border-radius: 999px; background: var(--surface-soft); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: .95rem; }
.review-meta b { font-size: .9rem; }
.review-meta span { font-size: .78rem; color: var(--muted); display: block; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--secondary); color: #fff; padding: clamp(40px, 6vw, 80px); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 85% 10%, rgba(217,181,111,.22), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band h2 em { font-style: italic; color: var(--accent); }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 1rem; max-width: 50ch; }
.cta-band .hero-cta { margin-top: 2rem; }

/* ============================================================
   LOCATION
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 4vw, 56px); align-items: stretch; }
.loc-info { display: flex; flex-direction: column; gap: 1.4rem; }
.loc-row { display: flex; gap: 1rem; align-items: flex-start; }
.loc-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--surface-soft); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.loc-ico svg { width: 22px; height: 22px; }
.loc-row h4 { font-family: var(--ff-body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.loc-row p, .loc-row a { font-size: 1.05rem; margin-top: .25rem; }
.loc-row a:hover { color: var(--primary); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); min-height: 340px; position: relative; box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 340px; filter: grayscale(.2) contrast(1.02); }
.map-note { position: absolute; top: 12px; left: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: .35rem .8rem; font-size: .72rem; font-weight: 600; color: var(--muted); box-shadow: var(--shadow-sm); z-index: 2; }

/* ============================================================
   FORM
   ============================================================ */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.field label { font-size: .82rem; font-weight: 700; letter-spacing: .02em; }
.field label .req { color: var(--primary); }
.field input, .field textarea, .field select {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: .85rem 1rem; font-size: .95rem; transition: border-color .25s, box-shadow .25s;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(182,106,122,.15); }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #c0413f; box-shadow: 0 0 0 3px rgba(192,65,63,.12); }
.field .err { font-size: .78rem; color: #c0413f; display: none; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.radio-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill span { display: inline-flex; padding: .6rem 1.1rem; border-radius: 999px; border: 1px solid var(--border); background: var(--bg); font-size: .88rem; font-weight: 600; color: var(--muted); transition: all .25s; }
.radio-pill input:checked + span { background: var(--primary); color: #fff; border-color: var(--primary); }
.radio-pill input:focus-visible + span { outline: 2px solid var(--focus); outline-offset: 2px; }

.form-success { display: none; text-align: center; padding: 2rem 0; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 999px; background: var(--surface-soft); border: 1px solid var(--border); color: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; }
.form-success .check svg { width: 30px; height: 30px; }

/* note callout */
.note { background: var(--surface-soft); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 1rem 1.2rem; font-size: .88rem; color: var(--muted); }
.note strong { color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--secondary); color: rgba(255,255,255,.78); padding-top: clamp(56px, 7vw, 90px); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand img { height: 52px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { margin-top: 1.1rem; font-size: .9rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--ff-body); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; font-size: .92rem; color: rgba(255,255,255,.74); padding-block: .32rem; transition: color .25s; }
.footer-col a:hover { color: #fff; }
.social-row { display: flex; gap: .7rem; margin-top: .4rem; }
.social-row a { width: 42px; height: 42px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .3s; }
.social-row a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.social-row svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   MOBILE BOTTOM ACTION BAR
   ============================================================ */
.action-bar { display: none; }

/* ============================================================
   reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 3 200px; }
}
@media (max-width: 920px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; margin-top: 1rem; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media { max-width: 520px; }
  .loc-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  body { font-size: 16px; padding-bottom: 72px; }
  .cards { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2 140px; column-gap: 10px; }
  .gallery-masonry .g-item { margin-bottom: 10px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-trust { gap: 1rem; }
  .hero-media .img-inset { width: 38%; left: -14px; bottom: -18px; }

  .action-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: rgba(255,247,245,.96); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
  }
  .action-bar a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: .55rem 0; font-size: .68rem; font-weight: 700; color: var(--text); }
  .action-bar a svg { width: 20px; height: 20px; color: var(--primary); }
  .action-bar a + a { border-left: 1px solid var(--border); }
  .action-bar a.primary { background: var(--primary); color: #fff; }
  .action-bar a.primary svg { color: #fff; }
}
@media (max-width: 380px) {
  .stats { grid-template-columns: 1fr 1fr; }
}
