/* ==========================================================================
   MCR Smart Decorators & Building Services
   Palette: forest green, warm cream, brass. Headings Fraunces, body Figtree.
   ========================================================================== */

:root {
  --bg: #f6f1e7;
  --surface: #fffdf8;
  --surface-2: #efe8d9;
  --ink: #1d231f;
  --ink-soft: #4b544e;
  --line: #ddd3c0;
  --green: #173d2f;
  --green-2: #245a45;
  --brass: #a8742c;
  --brass-bright: #d6aa60;
  --on-green: #f6f1e7;
  --scrim: rgba(12, 26, 20, .62);
  --shadow: 0 1px 2px rgba(29, 35, 31, .06), 0 8px 28px rgba(29, 35, 31, .08);
  --radius: 14px;
  --radius-sm: 8px;
  --wrap: 1180px;
  --head: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0f1814;
    --surface: #15221c;
    --surface-2: #1b2b23;
    --ink: #ece6d8;
    --ink-soft: #b3b9ae;
    --line: #2b3d33;
    --green: #173d2f;
    --green-2: #2d6b52;
    --brass: #d6aa60;
    --brass-bright: #e4be7c;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 28px rgba(0, 0, 0, .35);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0f1814;
  --surface: #15221c;
  --surface-2: #1b2b23;
  --ink: #ece6d8;
  --ink-soft: #b3b9ae;
  --line: #2b3d33;
  --green-2: #2d6b52;
  --brass: #d6aa60;
  --brass-bright: #e4be7c;
  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1.0625rem/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 50, "opsz" 72;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
:focus-visible { outline: 3px solid var(--brass-bright); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--green); color: var(--on-green); padding: 10px 16px; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tint { background: var(--surface-2); }
.section--green { background: var(--green); color: var(--on-green); }
.section--green .eyebrow { color: var(--brass-bright); }
.section--green .lead { color: rgba(246, 241, 231, .82); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 .8rem/1 var(--body); letter-spacing: .14em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 62ch; }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border-radius: 999px; border: 2px solid transparent;
  font: 600 1rem/1 var(--body); text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--brass { background: var(--brass-bright); color: #1d231f; }
.btn--brass:hover { background: #e4be7c; }
.btn--green { background: var(--green); color: var(--on-green); }
.btn--green:hover { background: var(--green-2); }
.btn--ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn--ghost:hover { background: rgba(255, 255, 255, .08); }
.btn--whatsapp { background: #1f9d55; color: #fff; }
.btn--whatsapp:hover { background: #1a8a4a; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.reassure { margin-top: 18px; font-size: .95rem; opacity: .9; }
.reassure span + span::before { content: "·"; margin: 0 .55em; opacity: .7; }

.text-link {
  font-weight: 600; color: var(--green-2); text-decoration: none;
  border-bottom: 2px solid var(--brass-bright); padding-bottom: 1px;
}
.text-link:hover { color: var(--brass); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .text-link { color: var(--brass-bright); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font: 700 1.3rem/1 var(--head); letter-spacing: -.01em; }
.brand-sub { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 5px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; font-weight: 500; padding: 10px 12px; border-radius: 8px; color: var(--ink); white-space: nowrap;
}
.btn { white-space: nowrap; }
@media (max-width: 1199px) { .header-phone { display: none; } .nav a { padding: 10px 9px; } }
.nav a:hover { background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--brass); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone { font-weight: 700; text-decoration: none; white-space: nowrap; }
.header-cta .btn { min-height: 44px; padding: 0 18px; }

.menu-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface); color: var(--ink); cursor: pointer; align-items: center; justify-content: center;
}
.menu-toggle svg { width: 24px; height: 24px; }

.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0, 0, 0, .45); z-index: 150;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); z-index: 160;
  background: var(--surface); padding: 20px 20px 32px; overflow-y: auto;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.2, .8, .2, 1);
  display: flex; flex-direction: column; gap: 6px;
}
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.drawer a.drawer-link {
  text-decoration: none; font: 600 1.25rem/1.2 var(--head); padding: 14px 8px; border-bottom: 1px solid var(--line);
}
.drawer a.drawer-link[aria-current="page"] { color: var(--brass); }
.drawer .btn { margin-top: 12px; }
body.menu-open { overflow: hidden; }
body.menu-open .drawer { transform: none; }
body.menu-open .drawer-backdrop { opacity: 1; visibility: visible; }

@media (max-width: 999px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-inner { min-height: 68px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; isolation: isolate;
  min-height: min(88vh, 820px); display: flex; align-items: flex-end;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 22, 17, .15) 0%, rgba(10, 22, 17, .35) 40%, rgba(10, 22, 17, .88) 100%),
    linear-gradient(90deg, rgba(10, 22, 17, .55) 0%, rgba(10, 22, 17, 0) 70%);
}
.hero-inner { padding: 120px 0 clamp(40px, 7vw, 80px); }
.hero h1 { max-width: 15ch; color: #fff; }
.hero .lead { color: rgba(255, 255, 255, .88); max-width: 56ch; }
.hero .eyebrow { color: var(--brass-bright); display: flex; }
.rating-chip {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 16px 8px 10px; border-radius: 999px; text-decoration: none; color: #fff;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.rating-chip b { font: 700 1.1rem/1 var(--head); background: var(--brass-bright); color: #1d231f; padding: 6px 10px; border-radius: 999px; }
.rating-chip small { font-size: .9rem; }

.page-hero { background: var(--green); color: var(--on-green); padding: clamp(56px, 9vw, 110px) 0 clamp(44px, 7vw, 80px); position: relative; overflow: hidden; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { color: rgba(246, 241, 231, .84); }
.page-hero .eyebrow { color: var(--brass-bright); }
.page-hero--image { isolation: isolate; }
.page-hero--image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero--image::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(15, 40, 30, .94) 0%, rgba(15, 40, 30, .8) 45%, rgba(15, 40, 30, .45) 100%); }

/* ---------- Proof bar ---------- */
.proof { background: var(--surface); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 26px 20px; border-left: 1px solid var(--line); }
.proof-item:first-child { border-left: 0; }
.proof-item strong { display: block; font: 700 clamp(1.6rem, 3vw, 2.2rem)/1 var(--head); color: var(--green-2); }
.proof-item span { font-size: .92rem; color: var(--ink-soft); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .proof-item strong { color: var(--brass-bright); } }
@media (max-width: 760px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(3) { border-left: 0; }
  .proof-item:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- Before / after ---------- */
.ba-grid { display: grid; gap: 28px; }
.ba-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--line); }
.ba-pair figure { margin: 0; position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--surface-2); }
.ba-pair img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .5s ease; }
.ba-pair figure:hover img { transform: scale(1.03); }
.ba-tag {
  position: absolute; left: 12px; top: 12px; z-index: 1;
  font: 700 .72rem/1 var(--body); letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 10px; border-radius: 999px; background: rgba(15, 24, 20, .78); color: #fff;
}
.ba-tag--after { background: var(--brass-bright); color: #1d231f; }
.ba-caption { padding: 18px 22px 22px; }
.ba-caption h3 { margin-bottom: 6px; }
.ba-caption p { margin: 0; color: var(--ink-soft); }
.ba-feature { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .ba-feature { grid-template-columns: 1fr; } }
@media (min-width: 900px) { .ba-grid--two { grid-template-columns: 1fr 1fr; } }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.service-card {
  position: relative; display: flex; flex-direction: column; background: var(--surface);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  text-decoration: none; color: inherit; transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(0, 0, 0, .06), 0 16px 40px rgba(0, 0, 0, .12); }
.service-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.service-card .body { padding: 18px 20px 22px; }
.service-card h3 { margin-bottom: 6px; }
.service-card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.service-card .more { margin-top: 12px; font-weight: 600; color: var(--brass); font-size: .95rem; }
.service-card--lead { grid-column: span 2; }
.service-card--lead img { aspect-ratio: 16 / 9; }
@media (max-width: 620px) { .service-card--lead { grid-column: auto; } .service-card--lead img { aspect-ratio: 4 / 3; } }
.flag {
  position: absolute; top: 14px; left: 14px; background: var(--brass-bright); color: #1d231f;
  font: 700 .72rem/1 var(--body); letter-spacing: .1em; text-transform: uppercase; padding: 7px 10px; border-radius: 999px;
}

/* ---------- Split / feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.split--flip > :first-child { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split-media .inset {
  position: absolute; right: -18px; bottom: -22px; width: 42%; aspect-ratio: 1; object-fit: cover;
  border: 6px solid var(--bg); border-radius: var(--radius); box-shadow: var(--shadow);
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--flip > :first-child { order: 0; }
  .split-media .inset { right: 10px; }
}

.ticks { list-style: none; padding: 0; margin: 0 0 1.4em; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 34px; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6f1e7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.ticks strong { display: block; }

/* ---------- Craft notes (why it lasts) ---------- */
.notes { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; counter-reset: note; }
.note {
  background: var(--surface); border-radius: var(--radius); padding: 26px 24px; border-top: 4px solid var(--brass-bright);
  box-shadow: var(--shadow);
}
.section--green .note { background: rgba(255, 255, 255, .06); box-shadow: none; }
.note h3 { font-size: 1.2rem; }
.note p { margin: 0; color: var(--ink-soft); }
.section--green .note p { color: rgba(246, 241, 231, .8); }

/* ---------- Process ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
.steps li { counter-increment: step; position: relative; padding-top: 56px; }
.steps li::before {
  content: counter(step, decimal-leading-zero); position: absolute; top: 0; left: 0;
  font: 600 2.2rem/1 var(--head); color: var(--brass);
}
.steps li::after { content: ""; position: absolute; top: 18px; left: 58px; right: 8px; height: 1px; background: var(--line); }
.steps li:last-child::after { display: none; }
.steps h3 { font-size: 1.12rem; }
.steps p { color: var(--ink-soft); font-size: .97rem; margin: 0; }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr 1fr; gap: 28px; } .steps li::after { display: none; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; }
.review {
  margin: 0; background: var(--surface); border-radius: var(--radius); padding: 26px 24px 22px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.review .score { font: 700 .85rem/1 var(--body); color: var(--green-2); letter-spacing: .04em; margin-bottom: 14px; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .review .score { color: var(--brass-bright); } }
.review blockquote { margin: 0 0 16px; font: 500 1.12rem/1.5 var(--head); flex: 1; }
.review blockquote::before { content: "\201C"; font-size: 2.6rem; line-height: 0; vertical-align: -.42em; color: var(--brass-bright); margin-right: 2px; }
.review figcaption { font-size: .9rem; color: var(--ink-soft); }
.review figcaption b { color: var(--ink); }
.reviews-foot { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; }
.score-big { display: flex; align-items: baseline; gap: 10px; }
.score-big strong { font: 700 3rem/1 var(--head); color: var(--green-2); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .score-big strong { color: var(--brass-bright); } }

/* ---------- Areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.areas li { padding: 9px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-weight: 500; font-size: .96rem; }
.section--green .areas li { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .16); }
.areas li.home { background: var(--brass-bright); color: #1d231f; border-color: transparent; font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green); color: var(--on-green); border-radius: calc(var(--radius) * 1.4); padding: clamp(32px, 6vw, 64px); display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border: 36px solid rgba(214, 170, 96, .14); border-radius: 50%; }
.cta-band h2 { color: var(--on-green); }
.cta-band p { color: rgba(246, 241, 231, .84); margin: 0; }
.cta-band .btn-row { justify-content: flex-end; position: relative; z-index: 1; }
@media (max-width: 820px) { .cta-band { grid-template-columns: 1fr; } .cta-band .btn-row { justify-content: flex-start; } }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter {
  border: 1px solid var(--line); background: var(--surface); color: var(--ink); cursor: pointer;
  padding: 10px 18px; border-radius: 999px; font: 600 .95rem/1 var(--body);
}
.filter[aria-pressed="true"] { background: var(--green); color: var(--on-green); border-color: var(--green); }
.masonry { columns: 3 280px; column-gap: 16px; }
.masonry figure { margin: 0 0 16px; break-inside: avoid; position: relative; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); }
.masonry figure[hidden] { display: none; }
.masonry img { width: 100%; cursor: zoom-in; transition: transform .5s ease, opacity .3s ease; }
.masonry figure:hover img { transform: scale(1.03); }
.masonry figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px; color: #fff; font-size: .9rem; font-weight: 500;
  background: linear-gradient(transparent, rgba(0, 0, 0, .72)); pointer-events: none;
}
.photo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.photo-row img { aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius-sm); cursor: zoom-in; width: 100%; }
@media (max-width: 760px) { .photo-row { grid-template-columns: 1fr 1fr; } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(8, 14, 11, .94);
  display: none; align-items: center; justify-content: center; padding: 56px 16px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; }
.lightbox figure { margin: 0; max-width: min(1200px, 100%); max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lightbox figcaption { color: #e9e4d8; text-align: center; font-size: .95rem; }
.lb-btn {
  position: absolute; width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .12); color: #fff; display: grid; place-items: center;
}
.lb-btn:hover { background: rgba(255, 255, 255, .22); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 14px; right: 14px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lb-prev, .lb-next { top: auto; bottom: 14px; transform: none; } }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; color: inherit; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; font: 600 1.15rem/1.35 var(--head);
}
.faq-q .icon { width: 30px; height: 30px; flex: none; border-radius: 50%; border: 1.5px solid var(--line); position: relative; transition: transform .25s ease, background-color .2s; }
.faq-q .icon::before, .faq-q .icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: currentColor; transform: translate(-50%, -50%); }
.faq-q .icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s ease; }
.faq-q[aria-expanded="true"] .icon { background: var(--brass-bright); border-color: var(--brass-bright); color: #1d231f; }
.faq-q[aria-expanded="true"] .icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-a > div { overflow: hidden; }
.faq-a p { color: var(--ink-soft); padding: 0 4px; }
.faq-a p:last-child { padding-bottom: 22px; margin: 0; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ---------- Options (refit vs refresh) ---------- */
.options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.option { background: var(--surface); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.option--main { border: 2px solid var(--brass-bright); }
.option .kicker { font: 700 .75rem/1 var(--body); letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px; display: block; }
@media (max-width: 760px) { .options { grid-template-columns: 1fr; } }

.design-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.design-grid figure { margin: 0; background: var(--surface); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); }
.design-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; cursor: zoom-in; background: #fff; }
.design-grid img.contain { object-fit: contain; }
.design-grid figcaption { padding: 12px 16px; font-size: .92rem; color: var(--ink-soft); }
@media (max-width: 620px) { .design-grid { grid-template-columns: 1fr; } }

/* ---------- Service detail blocks ---------- */
.svc { scroll-margin-top: 96px; }
.svc + .svc { border-top: 1px solid var(--line); }
.svc-photos { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; }
.svc-photos img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); cursor: zoom-in; }
.svc-photos img:first-child { grid-row: span 2; aspect-ratio: 3 / 4; }
.svc-photos img:not(:first-child) { aspect-ratio: 4 / 3; }
.jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.jump a { text-decoration: none; padding: 9px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .28); font-weight: 500; font-size: .94rem; }
.jump a:hover { background: rgba(255, 255, 255, .1); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex; gap: 16px; align-items: center; text-decoration: none; background: var(--surface);
  border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.contact-card .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--green); color: var(--on-green); flex: none; }
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card .ic--wa { background: #1f9d55; }
.contact-card small { display: block; color: var(--ink-soft); font-size: .88rem; }
.contact-card b { font-size: 1.12rem; }

.form { background: var(--surface); border-radius: var(--radius); padding: clamp(22px, 4vw, 38px); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 600; font-size: .95rem; }
.field label .opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--bg); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 14px; min-height: 50px; width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(214, 170, 96, .3); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field .err { color: #c0392b; font-size: .88rem; display: none; }
.field.invalid .err { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 14px; padding: 14px 16px; border-radius: 10px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(31, 157, 85, .12); border: 1px solid rgba(31, 157, 85, .4); }
.form-status.bad { background: rgba(192, 57, 43, .1); border: 1px solid rgba(192, 57, 43, .4); }
.form-note { font-size: .88rem; color: var(--ink-soft); margin-top: 12px; }

/* ---------- Prose (privacy) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin-top: 1.6em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }

/* ---------- Footer ---------- */
.site-footer { background: #0e1a15; color: #cfd3c9; padding: 64px 0 28px; font-size: .96rem; }
.site-footer a { color: #ece6d8; text-decoration: none; }
.site-footer a:hover { color: var(--brass-bright); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-grid h4 { font: 600 .8rem/1 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--brass-bright); margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #9da79c; }
.footer-brand p { margin-top: 16px; max-width: 36ch; }
.footer-legal { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; color: #9da79c; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Mobile action bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 999px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
  }
  .mobile-bar .btn { min-height: 50px; padding: 0 12px; }
  body { padding-bottom: 76px; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- 404 ---------- */
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.notfound .big { font: 700 clamp(5rem, 16vw, 9rem)/1 var(--head); color: var(--brass); }
