/* =====================================================================
   The Masterplan Studio  |  site stylesheet
   Warm, editorial, mobile-first without shrinking the desktop experience.
   ===================================================================== */

:root {
  --ink: #1f1a16;
  --ink-soft: #3a322b;
  --brown: #6b5a48;
  --brown-deep: #4f4133;
  --taupe: #8c7761;
  --sand: #d9c9b4;
  --cream: #f6f1ea;
  --cream-2: #efe7dc;
  --white: #ffffff;
  --gold: #c9a15c;
  --gold-deep: #a9823f;
  --muted: #6e655c;
  --line: rgba(31, 26, 22, 0.12);
  --shadow: 0 18px 50px rgba(31, 26, 22, 0.12);
  --shadow-soft: 0 10px 30px rgba(31, 26, 22, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --font-body: "Quicksand", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(72px, 9vw, 120px);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.9rem, 6.6vw, 5.3rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 1.8rem); }
p { margin: 0; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--muted); line-height: 1.7; }

.container { width: min(var(--container), calc(100% - 2 * var(--gutter))); margin: 0 auto; }
.section { padding: var(--section) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.bg-white { background: var(--white); }
.bg-cream2 { background: var(--cream-2); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-ink h2, .bg-ink h3 { color: var(--cream); }
.bg-ink .lede, .bg-ink p { color: rgba(246, 241, 234, 0.78); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.bg-ink .eyebrow { color: var(--gold); }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head p { margin-top: 16px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head-row .section-head { margin-bottom: 0; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; line-height: 1; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 12px 28px rgba(201, 161, 92, 0.35); }
.btn-gold:hover { background: #d6ae69; }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--brown-deep); }
.btn-outline { border-color: var(--line); background: rgba(255, 255, 255, 0.7); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--white); }
.btn-outline-light { border-color: rgba(255, 255, 255, 0.55); color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.18); }
.btn-whatsapp { background: #25d366; color: #0b2b16; box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { background: #3fe07a; }
.btn svg { flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--brown); border-bottom: 1.5px solid transparent; transition: border-color 0.18s; }
.text-link:hover { border-bottom-color: var(--brown); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246, 241, 234, 0.9);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--ink); color: var(--cream); font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: 0.02em;
}
.brand-name { display: block; font-family: var(--font-display); font-size: 1.25rem; line-height: 1; color: var(--ink); }
.brand-name small { display: block; font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); margin-top: 6px; }
.logo { height: 56px; width: auto; display: block; }
.brand { flex: none; }
.header-cta { flex: none; }
.logo-footer { height: 64px; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a { padding: 10px 14px; border-radius: 999px; font-weight: 600; font-size: 0.98rem; color: var(--ink-soft); transition: background-color 0.18s, color 0.18s; }
.site-nav a:hover { background: rgba(31, 26, 22, 0.06); color: var(--ink); }
.site-nav a.active { color: var(--ink); background: rgba(201, 161, 92, 0.22); }
.header-cta { display: inline-flex; align-items: center; gap: 12px; }
.header-cta .btn { min-height: 46px; padding: 0 20px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: var(--white);
  place-items: center; color: var(--ink);
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: min(92svh, 860px); display: flex; align-items: flex-end;
  padding: clamp(140px, 18vw, 220px) 0 clamp(64px, 8vw, 110px);
  color: var(--white); background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(31, 26, 22, 0.18) 0%, rgba(31, 26, 22, 0.35) 45%, rgba(31, 26, 22, 0.86) 100%),
              linear-gradient(90deg, rgba(31, 26, 22, 0.55), rgba(31, 26, 22, 0.05) 60%);
}
.hero-copy { max-width: 780px; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 { color: var(--white); font-size: clamp(3.2rem, 7.6vw, 6.2rem); max-width: 14ch; }
.hero p { margin-top: 22px; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255, 255, 255, 0.86); max-width: 560px; line-height: 1.6; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.22); }
.hero-meta div { display: grid; gap: 4px; }
.hero-meta strong { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; line-height: 1; }
.hero-meta span { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); font-weight: 700; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: clamp(320px, 42vw, 520px); display: flex; align-items: flex-end;
  padding: clamp(120px, 14vw, 160px) 0 clamp(44px, 5vw, 64px); color: var(--white); background: var(--ink);
}
.page-hero .hero-media img { object-position: center 55%; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(31, 26, 22, 0.25), rgba(31, 26, 22, 0.82)); }
.page-hero h1 { color: var(--white); }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero p { margin-top: 18px; max-width: 620px; color: rgba(255, 255, 255, 0.84); font-size: clamp(1.02rem, 1.5vw, 1.2rem); }
.page-hero-plain { background: var(--cream-2); color: var(--ink); min-height: 0; padding: clamp(64px, 8vw, 110px) 0 clamp(44px, 5vw, 64px); }
.page-hero-plain::after { display: none; }
.page-hero-plain h1 { color: var(--ink); }
.page-hero-plain p { color: var(--muted); }
.page-hero-plain .eyebrow { color: var(--taupe); }

/* ---------- Intro split ---------- */
.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.split .lede { font-size: clamp(1.02rem, 1.35vw, 1.15rem); }
.split-stack { display: grid; gap: 18px; }
.intro-quote { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 3.3vw, 2.8rem); line-height: 1.2; color: var(--ink); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stat { padding: 28px 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.stat strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1; color: var(--brown); }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-weight: 600; }

/* ---------- Project grid ---------- */
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 32px); }
.project-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.project-card { display: block; position: relative; }
.project-card-media { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; background: var(--sand); box-shadow: var(--shadow-soft); }
.project-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.project-card:hover .project-card-media img { transform: scale(1.04); }
.project-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(31, 26, 22, 0.35)); opacity: 0; transition: opacity 0.3s; }
.project-card:hover .project-card-media::after { opacity: 1; }
.project-card-body { padding: 18px 4px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.project-card h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
.project-card-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 8px; color: var(--muted); font-size: 0.92rem; font-weight: 600; }
.project-card-meta span + span::before { content: "\00B7"; margin-right: 14px; color: var(--sand); }
.project-card-arrow { flex: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); background: var(--white); transition: background-color 0.2s, color 0.2s, transform 0.2s; }
.project-card:hover .project-card-arrow { background: var(--ink); color: var(--cream); transform: translate(2px, -2px); }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service { padding: 30px 28px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); display: grid; gap: 14px; align-content: start; transition: transform 0.25s, box-shadow 0.25s; }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--cream-2); color: var(--brown); }
.service h3 { font-size: 1.35rem; }
.service p { color: var(--muted); }

/* ---------- Packages ---------- */
.package-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 32px); align-items: stretch; }
.package {
  position: relative; display: grid; grid-template-rows: auto 1fr auto; gap: 0;
  border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.package-head { padding: clamp(26px, 3vw, 36px); background: var(--ink); color: var(--cream); display: grid; gap: 14px; }
.package-head .eyebrow { color: var(--gold); margin-bottom: 0; }
.package-head h3, .package-head h2 { color: var(--white); font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.package-tagline { color: rgba(246, 241, 234, 0.78); }
.package-badge { position: absolute; top: 18px; right: 18px; padding: 8px 14px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.price-single { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-single strong { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: var(--gold); }
.price-single span { color: rgba(246, 241, 234, 0.75); font-weight: 600; }
.price-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.price-tier { padding: 14px 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14); text-align: center; }
.price-tier span { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(246, 241, 234, 0.72); font-weight: 700; }
.price-tier strong { display: block; margin-top: 6px; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 2.2vw, 1.85rem); color: var(--gold); line-height: 1; }
.package-body { padding: clamp(24px, 3vw, 32px); display: grid; gap: 22px; align-content: start; }
.package-group h4 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); margin-bottom: 12px; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.check-list li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; line-height: 1.5; }
.check-list li svg { color: var(--gold-deep); margin-top: 3px; }
.free-list li svg { color: #2f9e5b; }
.package-free { padding: 18px 20px; border-radius: 12px; background: var(--cream); border: 1px dashed var(--sand); }
.package-free h4 { color: var(--brown); }
.package-foot { padding: 0 clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px); display: flex; flex-wrap: wrap; gap: 12px; }
.package-note { margin-top: 28px; padding: 22px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }
.package-note ul { margin: 10px 0 0; padding-left: 20px; display: grid; gap: 6px; }

/* Package teaser on home */
.teaser-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.teaser { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 26px 28px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); transition: transform 0.25s, box-shadow 0.25s; }
.teaser:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.teaser h3 { font-size: 1.4rem; }
.teaser p { color: var(--muted); margin-top: 6px; }
.teaser strong { font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; color: var(--brown); white-space: nowrap; }
.teaser small { display: block; font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { padding: 30px 28px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); position: relative; }
.step span { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: var(--gold); font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 18px; }
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonial-wall { columns: 3; column-gap: 18px; }
.testimonial { break-inside: avoid; margin-bottom: 18px; padding: 30px 28px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); display: grid; gap: 18px; align-content: start; }
.google-tag { display: inline-block; margin-left: 8px; padding: 3px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); color: rgba(246, 241, 234, 0.8); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; vertical-align: middle; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.testimonial blockquote { margin: 0; font-size: 1.05rem; line-height: 1.65; color: rgba(246, 241, 234, 0.9); }
.testimonial cite { font-style: normal; font-weight: 700; color: var(--cream); }
.testimonial cite small { display: block; font-weight: 600; color: rgba(246, 241, 234, 0.6); margin-top: 2px; }
.placeholder-tag { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(201, 161, 92, 0.2); color: var(--gold); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Trust / brands ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.trust { padding: 26px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); display: grid; gap: 10px; }
.trust svg { color: var(--brown); }
.trust h3 { font-size: 1.2rem; }
.trust p { color: var(--muted); font-size: 0.98rem; }
.brand-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.brand-strip span { padding: 12px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-weight: 700; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 860px; }
.faq details { border-radius: var(--radius-sm); background: var(--white); border: 1px solid var(--line); padding: 0 24px; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 700; font-size: 1.08rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--brown); flex: none; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 22px; color: var(--muted); }

/* ---------- Contact band / forms ---------- */
.contact-band { background: var(--ink); color: var(--cream); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 90px); align-items: start; }
.contact-methods { display: grid; gap: 14px; margin-top: 30px; }
.contact-methods a, .contact-methods div { display: flex; align-items: center; gap: 14px; color: var(--cream); font-weight: 600; }
.contact-methods svg { flex: none; color: var(--gold); }
.contact-methods a:hover { color: var(--gold); }
.form { display: grid; gap: 16px; padding: clamp(22px, 3vw, 32px); border-radius: var(--radius); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); }
.form-light { background: var(--white); border-color: var(--line); color: var(--ink); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 8px; font-weight: 700; font-size: 0.92rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.08); color: var(--cream); font-weight: 500;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(246, 241, 234, 0.5); }
.form-light .field input, .form-light .field select, .form-light .field textarea { border-color: var(--line); background: var(--cream); color: var(--ink); }
.form-light .field input::placeholder, .form-light .field textarea::placeholder { color: rgba(31, 26, 22, 0.42); }
.field select option { color: var(--ink); }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.form-hint { font-size: 0.9rem; color: rgba(246, 241, 234, 0.65); }
.form-light .form-hint { color: var(--muted); }
.form-status { padding: 14px 16px; border-radius: 10px; background: rgba(201, 161, 92, 0.18); color: var(--cream); font-weight: 600; }
.form-light .form-status { background: var(--cream-2); color: var(--ink); }

/* ---------- Contact page ---------- */
.contact-page-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); gap: clamp(24px, 3vw, 40px); align-items: start; }
.info-stack { display: grid; gap: 14px; }
.info-card { padding: 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); display: grid; gap: 8px; }
.info-card svg { color: var(--brown); }
.info-card span { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); }
.info-card strong { font-size: 1.12rem; line-height: 1.4; }
.info-card p { color: var(--muted); }
.info-card .btn { justify-self: start; margin-top: 6px; }
.map-wrap { margin-top: clamp(32px, 4vw, 52px); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); background: var(--sand); }
.map-wrap iframe { display: block; width: 100%; height: clamp(320px, 40vw, 460px); border: 0; }

/* ---------- Project detail ---------- */
.project-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.project-hero-grid .btn-row { margin-top: 26px; }
.project-cover { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; background: var(--sand); }
.project-cover img { width: 100%; height: 100%; object-fit: cover; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.fact { padding: 20px 22px; border-radius: var(--radius-sm); background: var(--white); border: 1px solid var(--line); display: grid; gap: 6px; }
.fact span { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); }
.fact strong { font-size: 1.05rem; line-height: 1.4; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 8px 12px; border-radius: 999px; background: var(--cream-2); border: 1px solid var(--line); font-size: 0.88rem; font-weight: 700; color: var(--brown-deep); }
.story-grid { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: clamp(28px, 6vw, 80px); }
.story-grid .eyebrow { margin-bottom: 12px; }
.story-block + .story-block { margin-top: 26px; }
.story-copy { display: grid; gap: 18px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(150px, 20vw, 270px); grid-auto-flow: dense; gap: 12px; }
.gallery figure { margin: 0; position: relative; border-radius: 12px; overflow: hidden; background: var(--sand); }
.gallery figure.portrait { grid-row: span 2; }
.gallery button { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1); }
.gallery button:hover img, .gallery button:focus-visible img { transform: scale(1.04); }
.gallery-more { text-align: center; margin-top: 28px; }
.project-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.project-nav a { display: grid; gap: 6px; padding: 24px 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); transition: transform 0.2s, box-shadow 0.2s; }
.project-nav a:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.project-nav a span { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); }
.project-nav a strong { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; }
.project-nav a.next { text-align: right; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: clamp(16px, 4vw, 48px); background: rgba(20, 16, 13, 0.94); }
.lightbox-figure { width: min(1200px, 100%); max-height: 88svh; margin: 0; display: grid; gap: 14px; }
.lightbox-figure img { width: 100%; max-height: 78svh; object-fit: contain; border-radius: 12px; background: rgba(255, 255, 255, 0.04); }
.lightbox-figure figcaption { display: flex; justify-content: space-between; gap: 16px; color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.lightbox-close, .lightbox-nav { position: absolute; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 50%; background: rgba(255, 255, 255, 0.1); color: #fff; display: grid; place-items: center; width: 50px; height: 50px; transition: background-color 0.2s; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-close { top: 18px; right: 18px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

/* ---------- About ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value { padding: 30px 28px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); display: grid; gap: 12px; align-content: start; }
.value svg { color: var(--gold-deep); }
.value h3 { font-size: 1.35rem; }
.value p { color: var(--muted); }
.image-band { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 21 / 9; background: var(--sand); }
.image-band img { width: 100%; height: 100%; object-fit: cover; }
.showroom { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); align-items: center; padding: clamp(26px, 4vw, 44px); border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.showroom h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.showroom p { color: var(--muted); margin-top: 12px; }

/* ---------- Policy pages ---------- */
.policy { max-width: 820px; }
.policy-section + .policy-section { margin-top: clamp(28px, 4vw, 44px); }
.policy-section h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: 14px; }
.policy-section p { color: var(--ink-soft); line-height: 1.75; }
.policy-section p + p { margin-top: 12px; }
.policy-meta { margin-top: 40px; color: var(--muted); font-size: 0.92rem; }
.footer-bottom a { display: inline; margin: 0; text-decoration: underline; }

/* ---------- Quick quote ---------- */
.qq-backdrop { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; padding: 20px; background: rgba(31, 26, 22, 0.6); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); animation: fade 0.2s ease both; overflow-y: auto; }
.qq { position: relative; width: min(720px, 100%); max-height: calc(100svh - 40px); overflow-y: auto; border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow); animation: rise 0.3s ease both; }
.qq-head { padding: clamp(24px, 4vw, 36px) clamp(22px, 4vw, 36px) 18px; }
.qq-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.qq-head p { margin-top: 10px; color: var(--muted); }
.qq-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 20px; }
.qq-progress span { height: 5px; border-radius: 999px; background: rgba(31, 26, 22, 0.12); }
.qq-progress span.on { background: var(--gold); }
.qq-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.9); display: grid; place-items: center; z-index: 1; }
.qq-form { padding: 0 clamp(22px, 4vw, 36px) clamp(22px, 4vw, 36px); display: grid; gap: 18px; }
.qq-step { border: 0; padding: 0; margin: 0; display: grid; gap: 12px; }
.qq-step legend { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; line-height: 1.2; margin-bottom: 8px; padding: 0; }
.qq-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); margin-top: 6px; }
.qq-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.qq-chip { position: relative; }
.qq-chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.qq-chip span { display: inline-flex; align-items: center; min-height: 46px; padding: 0 18px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white); font-weight: 600; cursor: pointer; transition: border-color 0.15s, background-color 0.15s, color 0.15s; }
.qq-chip input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.qq-chip input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.qq-form .field input, .qq-form .field textarea { border-color: var(--line); background: var(--white); color: var(--ink); }
.qq-form .field input::placeholder, .qq-form .field textarea::placeholder { color: rgba(31, 26, 22, 0.42); }
.qq-form .form-hint { color: var(--muted); }
.qq-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; padding-top: 6px; border-top: 1px solid var(--line); }
.qq-error { margin: 0; color: #a33b30; font-weight: 600; }
.qq-band { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr); gap: clamp(24px, 4vw, 48px); align-items: center; }
.qq-band h2 { color: var(--cream); margin-top: 4px; }
.qq-band .lede { margin-top: 14px; }
.qq-band-cta { display: grid; gap: 12px; justify-items: start; }
.qq-band-cta span { color: rgba(246, 241, 234, 0.7); font-size: 0.95rem; }
.footer-tagline { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--ink); margin-top: 14px; }
.footer-grid .footer-tagline + p { margin-top: 8px; }
@media (max-width: 900px) { .qq-band { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .qq-backdrop { padding: 12px; align-items: end; } .qq { max-height: calc(100svh - 24px); } .qq-actions .btn { flex: 1; } .header-cta .btn-gold { display: none; } }

/* ---------- Popup ---------- */
.popup-backdrop { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 24px; background: rgba(31, 26, 22, 0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); animation: fade 0.25s ease both; }
.popup { position: relative; width: min(820px, 100%); display: grid; grid-template-columns: minmax(240px, 0.9fr) 1fr; overflow: hidden; border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow); animation: rise 0.3s ease both; }
.popup-image { min-height: 340px; background: var(--sand); }
.popup-image img { width: 100%; height: 100%; object-fit: cover; }
.popup-copy { padding: clamp(28px, 4vw, 44px); display: grid; align-content: center; gap: 14px; }
.popup-copy h2 { font-size: clamp(2rem, 4vw, 3rem); }
.popup-copy p { color: var(--muted); font-size: 1.08rem; }
.popup-copy .btn { justify-self: start; margin-top: 8px; }
.popup-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.9); display: grid; place-items: center; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }

/* ---------- Footer ---------- */
.site-footer { padding: clamp(48px, 6vw, 72px) 0 32px; background: var(--cream-2); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); margin-bottom: 14px; }
.footer-grid a, .footer-grid span { display: block; color: var(--ink-soft); margin: 8px 0; }
.footer-grid a:hover { color: var(--brown); }
.footer-grid .brand { display: inline-flex; margin: 0; }
.footer-grid .brand-name { margin: 0; }
.footer-grid p { color: var(--muted); max-width: 380px; margin-top: 14px; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 0.9rem; }

/* ---------- Floating + sticky CTAs ---------- */
.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px; min-height: 54px; padding: 0 20px 0 16px; border-radius: 999px;
  background: #25d366; color: #0b2b16; font-weight: 800; box-shadow: 0 16px 36px rgba(37, 211, 102, 0.35);
}
.mobile-cta { display: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* =====================================================================
   Responsive. Desktop sizes above are untouched; these only stack.
   ===================================================================== */
@media (max-width: 1080px) {
  .service-grid, .values { grid-template-columns: repeat(2, 1fr); }
  .testimonial-wall { columns: 2; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .project-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 4px;
    padding: 14px var(--gutter) 22px; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .site-nav:not(.open) { display: none; }
  .site-nav a { padding: 14px 16px; font-size: 1.05rem; }
  .header-cta .btn-outline { display: none; }
  .split, .contact-grid, .contact-page-grid, .project-hero-grid, .story-grid, .showroom, .teaser-grid, .package-grid { grid-template-columns: 1fr; }
  .stats, .process { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .section-head-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .header-inner { min-height: 72px; }
  .logo { height: 44px; }
  .header-cta .btn { min-height: 42px; padding: 0 16px; font-size: 0.9rem; }
  .hero { min-height: 0; padding: 120px 0 120px; }
  .hero-meta { gap: 18px; }
  .project-grid, .project-grid.cols-3, .service-grid, .values, .trust-grid, .facts, .footer-grid, .form-grid, .project-nav, .price-tiers { grid-template-columns: 1fr; }
  .testimonial-wall { columns: 1; }
  .price-tier { display: flex; justify-content: space-between; align-items: center; text-align: left; }
  .price-tier strong { margin-top: 0; }
  .teaser { grid-template-columns: 1fr; }
  .gallery { gap: 8px; grid-auto-rows: 140px; }
  .popup { grid-template-columns: 1fr; max-width: 440px; }
  .popup-image { min-height: 200px; max-height: 220px; }
  .popup-copy .btn { justify-self: stretch; }
  .floating-whatsapp { display: none; }
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; padding: 10px; border-radius: 16px;
    background: rgba(31, 26, 22, 0.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: var(--shadow);
  }
  .mobile-cta .btn { min-height: 48px; padding: 0 12px; font-size: 0.95rem; }
  body { padding-bottom: 84px; }
  .lightbox-nav { top: auto; bottom: 18px; transform: none; }
  .lightbox-figure figcaption { padding: 0 60px; font-size: 0.9rem; }
  .btn-row .btn { width: 100%; }
  .form-actions .btn { width: 100%; }
}


/* ---------- Kitchen & 2 Bathrooms package + campaign landing page ---------- */
.package.featured { grid-column: 1 / -1; }
.package.featured .package-body { grid-template-columns: repeat(3, 1fr); }
.package.featured .package-free { grid-column: 1 / -1; }
.group-badge { display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: 0.68rem; letter-spacing: 0.08em; vertical-align: middle; }
.teaser.wide { grid-column: 1 / -1; background: var(--ink); color: var(--cream); border-color: transparent; }
.teaser.wide h3 { color: var(--cream); }
.teaser.wide p { color: rgba(246, 241, 234, 0.78); }
.teaser.wide strong { color: var(--gold); }
.teaser.wide small { color: rgba(246, 241, 234, 0.7); }
.teaser-tag { display: inline-block; margin-left: 8px; padding: 3px 9px; border-radius: 999px; background: var(--gold); color: var(--ink); font-family: var(--font-body); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; vertical-align: middle; }
.lp-header .header-inner { min-height: 76px; }
.lp-hero .hero-copy { max-width: 820px; }
.lp-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); max-width: 16ch; }
.price-hero { display: inline-flex; align-items: baseline; gap: 12px; margin-top: 18px; }
.price-hero strong { font-family: var(--font-display); font-weight: 600; font-size: clamp(3rem, 6vw, 4.8rem); color: var(--gold); line-height: 1; }
.price-hero span { color: rgba(255, 255, 255, 0.82); font-weight: 600; }
.inclusions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; counter-reset: part; }
.inclusion { padding: 26px 26px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.inclusion h3 { font-size: 1.45rem; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.inclusion h3::before { counter-increment: part; content: counter(part, decimal-leading-zero); flex: none; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--gold); font-family: var(--font-body); font-size: 0.85rem; font-weight: 800; }
.inclusion ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.inclusion li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; color: var(--ink-soft); line-height: 1.5; }
.inclusion li svg { color: var(--gold-deep); margin-top: 3px; }
.free-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.free-item { padding: 26px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); display: grid; gap: 8px; align-content: start; }
.free-item svg { color: var(--gold); }
.free-item strong { font-family: var(--font-display); font-weight: 600; font-size: 1.55rem; color: var(--cream); line-height: 1.15; }
.free-item span { color: rgba(246, 241, 234, 0.75); }
.lp-photos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.lp-photos img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.lp-secondary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.lp-footer { padding: 34px 0; background: var(--cream-2); border-top: 1px solid var(--line); }
.lp-footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; color: var(--muted); font-size: 0.92rem; }
.lp-footer a { text-decoration: underline; }
.lp-footer .logo { height: 44px; }
@media (max-width: 1080px) { .package.featured .package-body { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .inclusions, .free-band, .lp-secondary { grid-template-columns: 1fr; } .lp-photos { grid-template-columns: repeat(3, 1fr); } .package.featured .package-body { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .lp-photos { grid-template-columns: repeat(2, 1fr); } .lp-header .header-cta .btn-gold { display: inline-flex; } .lp-header .header-cta .btn-whatsapp { display: none; } }
