/* ============================================================
   MAYA INTERIO — Design System
   Palette: charcoal ink + warm brand gold + ivory
   ============================================================ */
:root {
  --ink: #16130e;
  --ink-2: #241f17;
  --ink-3: #35302a;
  --gold: #e0a24a;
  --gold-deep: #c4862e;
  --gold-soft: #f3dcb6;
  --ivory: #faf6ef;
  --ivory-2: #f3ecdf;
  --white: #ffffff;
  --muted: #7d766b;
  --line: rgba(22, 19, 14, 0.1);
  --line-light: rgba(250, 246, 239, 0.14);
  --shadow-lg: 0 30px 60px -20px rgba(22, 19, 14, 0.25);
  --shadow-sm: 0 10px 30px -12px rgba(22, 19, 14, 0.18);
  --radius: 18px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1200px, 92%); margin: 0 auto; }

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

/* ---------- Typography ---------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 34px; height: 2px; background: var(--gold); }

.lead { font-size: 1.14rem; color: var(--muted); max-width: 60ch; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 14px 0 16px; }
.gold-i { font-style: italic; color: var(--gold-deep); }

section { padding: 96px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 999px; border: none;
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
}
.btn svg { transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 12px 28px -10px rgba(224, 162, 74, 0.55); }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: var(--ivory); }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--ivory); border: 1.5px solid rgba(250,246,239,0.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink); color: rgba(250,246,239,0.85);
  font-size: 0.84rem; padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a:hover { color: var(--gold); }
.topbar-links { display: flex; gap: 22px; align-items: center; }
.topbar svg { vertical-align: -2px; margin-right: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px -12px rgba(22,19,14,0.15); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; border-radius: 50%; }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; letter-spacing: 0.01em; }
.brand-name small { display: block; font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep); }

.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.98rem; position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; gap: 14px; align-items: center; }

.nav-toggle { display: none; background: none; border: none; width: 44px; height: 44px; position: relative; z-index: 1001; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 6px auto; transition: 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: var(--ivory); padding: 120px 0 140px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(15,12,8,0.88) 5%, rgba(15,12,8,0.55) 55%, rgba(15,12,8,0.25));
}
.hero-content { max-width: 780px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { margin: 20px 0 24px; color: var(--white); }
.hero p { font-size: 1.18rem; color: rgba(250,246,239,0.88); max-width: 56ch; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 48px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-light); border-radius: 999px;
  padding: 8px 18px; font-size: 0.88rem; color: rgba(250,246,239,0.85);
  background: rgba(250,246,239,0.06); backdrop-filter: blur(6px);
}
.hero-badge svg { color: var(--gold); }

/* Stats strip */
.stats-strip {
  position: relative; margin-top: -70px; z-index: 5;
}
.stats-grid {
  background: var(--ink); color: var(--ivory);
  border-radius: var(--radius);
  display: grid; grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.stat {
  padding: 38px 24px; text-align: center;
  border-right: 1px solid var(--line-light);
}
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.stat .num span { font-size: 1.6rem; }
.stat p { font-size: 0.92rem; color: rgba(250,246,239,0.75); margin-top: 4px; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--gold); color: var(--ink);
  padding: 16px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 48px; animation: marquee 28s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; font-style: italic;
  display: inline-flex; align-items: center; gap: 48px;
}
.marquee-track span::after { content: "✦"; font-style: normal; font-size: 0.85rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About preview ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.about-imgs { position: relative; }
.about-imgs .img-main { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/4.6; object-fit: cover; width: 100%; }
.about-imgs .img-float {
  position: absolute; right: -8%; bottom: -60px; width: 52%;
  border-radius: var(--radius); border: 6px solid var(--ivory);
  box-shadow: var(--shadow-lg); aspect-ratio: 1/1; object-fit: cover;
}
.about-imgs .exp-chip {
  position: absolute; top: 26px; left: -22px;
  background: var(--gold); color: var(--ink); border-radius: 14px;
  padding: 16px 22px; box-shadow: var(--shadow-sm); text-align: center;
}
.exp-chip .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; line-height: 1; }
.exp-chip p { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.about-copy h2 { margin: 14px 0 20px; }
.about-copy .lead { margin-bottom: 26px; }
.about-points { display: grid; gap: 16px; margin-bottom: 34px; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; }
.about-points svg { flex: none; color: var(--gold-deep); margin-top: 4px; }

/* ---------- Services ---------- */
.section-dark { background: var(--ink); color: var(--ivory); }
.section-dark .lead { color: rgba(250,246,239,0.7); }
.section-dark .eyebrow { color: var(--gold); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/4.8; display: flex; align-items: flex-end;
  isolation: isolate;
}
.service-card img { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.service-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(15,12,8,0.92) 8%, rgba(15,12,8,0.32) 48%, rgba(15,12,8,0.05));
  transition: background 0.4s;
}
.service-card:hover img { transform: scale(1.07); }
.service-body { position: relative; z-index: 1; padding: 28px; width: 100%; }
.service-body .s-num { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 1rem; }
.service-body h3 { color: var(--white); margin: 6px 0 8px; }
.service-body p { font-size: 0.94rem; color: rgba(250,246,239,0.78); max-height: 0; opacity: 0; overflow: hidden; transition: 0.5s var(--ease); }
.service-card:hover .service-body p { max-height: 120px; opacity: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  color: var(--gold); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.04em;
}

/* ---------- Portfolio / gallery ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  border: 1.5px solid var(--line); background: transparent; color: var(--ink-3);
  padding: 10px 24px; border-radius: 999px; font-weight: 500; font-size: 0.94rem;
  transition: 0.3s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-btn.active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.g-item {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3.1;
  transition: opacity 0.4s, transform 0.4s;
}
.g-item.hide { display: none; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.g-item:hover img { transform: scale(1.08); }
.g-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  background: linear-gradient(to top, rgba(15,12,8,0.82), transparent 55%);
  opacity: 0; transition: opacity 0.4s; padding: 22px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay h4 { color: var(--white); font-family: var(--font-display); font-size: 1.15rem; }
.g-overlay p { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1200; background: rgba(15,12,8,0.94);
  display: none; align-items: center; justify-content: center; padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lb-close {
  position: absolute; top: 24px; right: 28px; background: none; border: none;
  color: var(--ivory); font-size: 2.2rem; line-height: 1;
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(250,246,239,0.12); border: none; color: var(--ivory);
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.4rem; transition: 0.3s;
}
.lb-nav:hover { background: var(--gold); color: var(--ink); }
.lb-prev { left: 24px; } .lb-next { right: 24px; }
.lb-caption { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(250,246,239,0.85); font-size: 0.95rem; letter-spacing: 0.06em; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.process-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 28px; position: relative; transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-sm); }
.process-card::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-style: italic; font-size: 2.6rem;
  color: var(--gold); opacity: 0.85; display: block; margin-bottom: 14px; line-height: 1;
}
.process-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.process-card p { font-size: 0.95rem; color: var(--muted); }

/* ---------- Why choose ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.why-list { display: grid; gap: 10px; margin-top: 34px; }
.why-item {
  display: flex; gap: 20px; padding: 22px; border-radius: 14px;
  transition: background 0.3s;
}
.why-item:hover { background: rgba(224,162,74,0.09); }
.why-icon {
  flex: none; width: 56px; height: 56px; border-radius: 14px;
  background: var(--gold); color: var(--ink);
  display: grid; place-items: center;
}
.why-item h3 { font-size: 1.15rem; margin-bottom: 4px; }
.why-item p { font-size: 0.95rem; color: var(--muted); }
.why-img { position: relative; }
.why-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.testi-slide { display: none; animation: fadeUp 0.6s var(--ease); }
.testi-slide.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.testi-quote { font-family: var(--font-display); font-size: clamp(1.25rem, 2.4vw, 1.7rem); font-style: italic; line-height: 1.5; color: var(--ivory); }
.testi-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 6px; margin: 26px 0 10px; }
.testi-name { font-weight: 600; color: var(--white); }
.testi-loc { font-size: 0.88rem; color: rgba(250,246,239,0.6); }
.testi-dots { display: flex; gap: 10px; justify-content: center; margin-top: 34px; }
.testi-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(250,246,239,0.3); transition: 0.3s; }
.testi-dots button.active { background: var(--gold); width: 28px; border-radius: 999px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: var(--ivory); text-align: center; padding: 110px 0; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(15,12,8,0.82); }
.cta-band h2 { color: var(--white); max-width: 20ch; margin: 16px auto 18px; }
.cta-band p { color: rgba(250,246,239,0.82); max-width: 55ch; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
.contact-cards { display: grid; gap: 16px; margin-top: 34px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.contact-card .c-icon {
  flex: none; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(224,162,74,0.16); color: var(--gold-deep); display: grid; place-items: center;
}
.contact-card h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
.contact-card p, .contact-card a { font-size: 0.96rem; color: var(--muted); }
.contact-card a:hover { color: var(--gold-deep); }

.contact-form {
  background: var(--ink); color: var(--ivory); border-radius: var(--radius);
  padding: 44px; box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 6px; }
.contact-form > p { color: rgba(250,246,239,0.65); font-size: 0.95rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  border: 1px solid var(--line-light); background: rgba(250,246,239,0.06);
  color: var(--ivory); font-family: inherit; font-size: 0.98rem;
  transition: border 0.3s;
}
.field select option { color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: rgba(250,246,239,0.5); margin-top: 14px; }
.form-status { margin-top: 14px; font-weight: 500; font-size: 0.95rem; }
.form-status.ok { color: #7fd6a2; }
.form-status.err { color: #f0908f; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 70px; }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: 130px 0 100px; color: var(--ivory); overflow: hidden;
}
.page-hero .ph-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(15,12,8,0.9), rgba(15,12,8,0.55)); }
.page-hero h1 { color: var(--white); margin: 14px 0 12px; }
.page-hero p { color: rgba(250,246,239,0.85); max-width: 62ch; font-size: 1.1rem; }
.crumbs { font-size: 0.88rem; color: rgba(250,246,239,0.65); margin-top: 22px; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--gold); }

/* ---------- Service detail rows ---------- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--line); }
.svc-row:last-child { border-bottom: none; }
.svc-row img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.svc-row.flip .svc-media { order: 2; }
.svc-row h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 12px 0 16px; }
.svc-row .lead { font-size: 1.04rem; margin-bottom: 22px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.svc-tags span {
  font-size: 0.85rem; font-weight: 500; padding: 7px 16px; border-radius: 999px;
  background: rgba(224,162,74,0.14); color: var(--gold-deep); border: 1px solid rgba(224,162,74,0.3);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; text-align: left;
  padding: 22px 26px; font-size: 1.05rem; font-weight: 600; color: var(--ink);
}
.faq-q::after { content: "+"; font-size: 1.6rem; color: var(--gold-deep); transition: transform 0.3s; flex: none; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 0.98rem; }

/* ---------- Values / mission cards ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-sm); }
.value-card .v-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--gold); color: var(--ink); display: grid; place-items: center; margin-bottom: 20px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { font-size: 0.95rem; color: var(--muted); }

/* ---------- Areas we serve ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.areas span {
  font-size: 0.9rem; padding: 9px 20px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-3); background: var(--white);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(250,246,239,0.75); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.site-footer h4 { color: var(--white); font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 20px; }
.site-footer .brand { margin-bottom: 18px; }
.site-footer .brand-name { color: var(--white); }
.footer-about p { font-size: 0.95rem; max-width: 34ch; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.96rem; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; align-items: flex-start; }
.footer-contact svg { flex: none; color: var(--gold); margin-top: 4px; }
.footer-contact a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-light);
  display: grid; place-items: center; transition: 0.3s;
}
.socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-3px); }
.credit-link { color: rgba(250, 246, 239, 0.55); transition: color 0.3s; }
.credit-link strong { color: rgba(224, 162, 74, 0.85); font-weight: 600; }
.credit-link:hover { color: var(--ivory); }
.credit-link:hover strong { color: var(--gold); }
.review-strip { border-top: 1px solid var(--line-light); padding: 18px 0; text-align: center; }
.review-strip a { color: var(--gold); font-weight: 600; font-size: 1rem; transition: 0.3s; }
.review-strip a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid var(--line-light); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(250,246,239,0.5);
}

/* ---------- Floating buttons ---------- */
.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 950;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s var(--ease);
  animation: waPulse 2.6s infinite;
}
.float-wa:hover { transform: scale(1.1); }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45), 0 12px 30px -8px rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0), 0 12px 30px -8px rgba(37,211,102,0.6); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 12px 30px -8px rgba(37,211,102,0.6); }
}
.float-call {
  position: fixed; right: 22px; bottom: 94px; z-index: 950;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--ink); display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(224,162,74,0.6);
  transition: transform 0.3s var(--ease);
}
.float-call:hover { transform: scale(1.1); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line-light); }
  .about-grid, .why-grid, .contact-grid, .svc-row { grid-template-columns: 1fr; gap: 48px; }
  .svc-row.flip .svc-media { order: 0; }
  .about-imgs .img-float { bottom: -30px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .topbar-links { display: none; }
  .topbar .container { justify-content: center; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0; background: var(--ivory);
    flex-direction: column; justify-content: center; gap: 30px;
    transform: translateX(100%); transition: transform 0.45s var(--ease); z-index: 1000;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.3rem; }
  .nav-cta .btn { display: none; }
  .hero { min-height: 84vh; padding: 90px 0 130px; }
  .services-grid, .gallery-grid, .process-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-imgs .exp-chip { left: 10px; }
}

@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}
