:root {
  color-scheme: light;
  --bg: #f4f3f1;
  --bg-deep: #e8e5e0;
  --surface: #ffffff;
  --surface-soft: #ebe9e5;
  --surface-glass: rgba(255, 255, 255, .86);
  --text: #111113;
  --text-soft: #5f5d5a;
  --text-faint: #817e79;
  --line: rgba(17, 17, 19, .12);
  --line-strong: rgba(17, 17, 19, .23);
  --accent: #b9815f;
  --accent-deep: #8c573b;
  --accent-soft: #ead7c9;
  --dark: #0b0b0c;
  --dark-soft: #181719;
  --white: #fffefa;
  --success: #2b7152;
  --shadow-sm: 0 12px 32px rgba(54, 39, 30, .08);
  --shadow-lg: 0 32px 90px rgba(54, 39, 30, .16);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1240px;
  --header-h: 76px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0c0c0d;
  --bg-deep: #141315;
  --surface: #181719;
  --surface-soft: #211f20;
  --surface-glass: rgba(18, 17, 19, .88);
  --text: #f6f4f1;
  --text-soft: #bdb8b2;
  --text-faint: #8f8983;
  --line: rgba(255, 242, 231, .12);
  --line-strong: rgba(255, 242, 231, .22);
  --accent: #d29a73;
  --accent-deep: #efc09c;
  --accent-soft: #4a3025;
  --dark: #070708;
  --dark-soft: #151416;
  --white: #fffaf3;
  --success: #64b48c;
  --shadow-sm: 0 14px 36px rgba(0, 0, 0, .24);
  --shadow-lg: 0 38px 100px rgba(0, 0, 0, .4);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  max-width: 100%;
  overflow-x: clip;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .25s ease, color .25s ease;
}

body.menu-open, body.lightbox-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
address { font-style: normal; }

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 78%, white);
  outline-offset: 4px;
  border-radius: 8px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { width: 1em; height: 1em; fill: currentColor; }
.button svg, .location-link svg, .eyebrow svg, .trust-row svg, .service-links svg, .contact-card svg, .gallery-disclaimer svg { flex: 0 0 auto; }
#i-arrow path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 96px 0; }
.section-tight { padding: 44px 0 72px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow svg { width: 15px; height: 15px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 630;
  line-height: 1.02;
  letter-spacing: -.045em;
}
h1 { margin-bottom: 24px; font-size: clamp(2.75rem, 5.1vw, 5.25rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.15rem, 3.7vw, 3.9rem); }
h3 { margin-bottom: 12px; font-size: 1.35rem; }
p { color: var(--text-soft); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.55; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-weight: 720;
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.button:active { transform: translateY(0); }
.button svg { width: 19px; height: 19px; }
.button-small { min-height: 44px; padding-inline: 18px; font-size: .88rem; }
.button-large { min-height: 62px; padding: 13px 24px; border-radius: 18px; }
.button-large span { display: grid; gap: 2px; text-align: left; }
.button-large small { color: inherit; font-size: .72rem; font-weight: 500; opacity: .72; }
.button-primary,
.button-whatsapp {
  background: #25d366;
  color: #062b16;
  box-shadow: 0 14px 38px rgba(37, 211, 102, .22);
}
.button-primary:hover,
.button-whatsapp:hover { background: #20c45f; }
.desktop-whatsapp { background: #25d366; color: #062b16; box-shadow: 0 10px 28px rgba(37, 211, 102, .18); }
.desktop-whatsapp:hover { background: #20c45f; }
.button-light { background: var(--white); color: #211713; }
.button-outline { background: transparent; border-color: var(--line-strong); color: var(--text); box-shadow: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(10,10,11,.9);
  color: white;
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: rgba(255,255,255,.14); box-shadow: 0 12px 36px rgba(0,0,0,.24); }
.header-inner { display: flex; align-items: center; min-height: var(--header-h); gap: 24px; }
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 214px;
  padding: 5px 9px;
  border-radius: 11px;
  background: #fffaf4;
}
.brand img { width: 100%; height: auto; }
html[data-theme="dark"] .brand,
html[data-theme="dark"] .footer-brand > a { background: #fffaf4; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.2vw, 31px); margin-left: auto; }
.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.66);
  font-size: .88rem;
  font-weight: 650;
  white-space: nowrap;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .2s ease, transform .2s ease;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: white; }
.desktop-nav a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 9px; margin-left: 10px; }
.theme-toggle, .menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: white;
  cursor: pointer;
}
.theme-toggle { position: relative; font-size: 1.15rem; }
.theme-icon.moon { display: none; }
html[data-theme="dark"] .theme-icon.sun { display: none; }
html[data-theme="dark"] .theme-icon.moon { display: block; }
.menu-toggle { display: none; padding: 0; }
.menu-toggle span { display: block; width: 18px; height: 1.5px; margin: 2px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  z-index: 99;
  top: var(--header-h);
  right: 16px;
  left: 16px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: #111113;
  box-shadow: var(--shadow-lg);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: block; padding: 14px 16px; border-radius: 12px; color: rgba(255,255,255,.7); font-weight: 700; }
.mobile-menu a:hover, .mobile-menu a[aria-current="page"] { background: rgba(255,255,255,.08); color: white; }

.hero { position: relative; min-height: calc(100svh - var(--header-h)); overflow: hidden; background: #09090a; color: white; isolation: isolate; }
.hero-media { position: absolute; z-index: -3; inset: 0 0 0 40%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; filter: saturate(.82) contrast(1.04); }
.hero-overlay { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, #080809 0%, rgba(8,8,9,.97) 33%, rgba(8,8,9,.68) 61%, rgba(8,8,9,.18) 100%), linear-gradient(0deg, rgba(5,5,6,.46), transparent 48%); }
.hero-stage { position: relative; display: flex; min-height: calc(100svh - var(--header-h)); align-items: center; padding: clamp(72px, 9vh, 118px) 0 108px; }
.hero-copy { position: relative; z-index: 2; max-width: 770px; }
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; color: rgba(255,255,255,.63); font-size: .78rem; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.hero-kicker span { width: 34px; height: 1px; background: var(--accent); }
.hero-slogan { margin-bottom: 14px; color: #e0b28f; font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 650; letter-spacing: -.01em; }
.hero h1 { max-width: 760px; margin-bottom: 26px; color: white; font-size: clamp(3.15rem, 6vw, 6.4rem); line-height: .94; }
.hero-lead { max-width: 650px; margin-bottom: 33px; color: rgba(255,255,255,.72); font-size: clamp(1.06rem, 1.55vw, 1.28rem); line-height: 1.6; }
.hero-ctas { display: flex; align-items: stretch; gap: 12px; margin-bottom: 38px; }
.hero-ctas .button { min-width: 264px; }
.hero-call { display: flex; min-height: 62px; align-items: center; gap: 12px; padding: 9px 20px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(255,255,255,.07); color: white; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); transition: transform .2s ease, background-color .2s ease; }
.hero-call:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }
.hero-call > svg { width: 21px; height: 21px; color: #e1b08e; }
.hero-call > span { display: grid; line-height: 1.25; }
.hero-call small { color: rgba(255,255,255,.5); font-size: .7rem; }
.hero-call strong { font-size: .94rem; white-space: nowrap; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 28px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.58); font-size: .77rem; }
.hero-facts span, .hero-facts a { display: flex; align-items: baseline; gap: 6px; }
.hero-facts strong { color: white; font-size: .88rem; }
.hero-facts a:hover { color: white; }
.scroll-cue { position: absolute; right: 0; bottom: 38px; display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.58); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.scroll-cue svg { width: 18px; height: 18px; transform: rotate(90deg); }
.scroll-cue:hover { color: white; }
.icon-disc { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); }
.icon-disc svg { width: 19px; height: 19px; }
.contact-card small { color: var(--text-faint); font-size: .72rem; font-weight: 650; }

.section-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading > p:last-child { max-width: 610px; margin-inline: auto; }
.section-heading.compact { margin-bottom: 30px; }
.section-heading.compact h2 { margin-bottom: 0; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.section.results { padding-bottom: 52px; background: var(--bg); }
.results-intro { display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.46fr); align-items: end; gap: 40px; margin-bottom: 42px; }
.results-intro h2 { max-width: 850px; margin: 0; }
.results-intro > p { margin: 0 0 8px; font-size: .96rem; }
.results-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.result-card { padding: 18px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow-sm); }
.result-card-head { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; padding: 8px 4px 17px; }
.result-card-head > span { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--accent); font-size: .66rem; font-weight: 800; }
.result-card-head h3 { margin: 0 0 5px; font-size: 1.2rem; letter-spacing: -.025em; }
.result-card-head p { margin: 0; font-size: .79rem; }
.result-pair { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
.result-pair .gallery-item { aspect-ratio: .72; border-radius: 18px; }
.result-pair .gallery-item img { object-position: 50% 49%; }
.quick-services { padding: 72px 0; background: var(--dark); color: white; }
.quick-services-inner { display: grid; grid-template-columns: minmax(240px,.55fr) minmax(0,1.45fr); align-items: center; gap: clamp(36px,6vw,90px); }
.quick-services h2 { margin: 0; color: white; font-size: clamp(2rem,3.4vw,3.45rem); }
.quick-services .eyebrow { color: #d9a27d; }
.quick-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.15); }
.quick-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; min-height: 84px; padding: 18px 10px; border-bottom: 1px solid rgba(255,255,255,.15); color: white; transition: color .2s ease, padding-left .2s ease; }
.quick-card:nth-child(odd) { padding-right: 24px; }
.quick-card:nth-child(even) { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.15); }
.quick-card:hover { padding-left: 16px; color: #e1b08e; }
.quick-card:nth-child(even):hover { padding-left: 30px; }
.quick-card > span { color: rgba(255,255,255,.38); font-size: .67rem; font-weight: 800; letter-spacing: .08em; }
.quick-card strong { font-size: .92rem; line-height: 1.35; }
.quick-card svg { width: 19px; height: 19px; color: rgba(255,255,255,.55); }

.about { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--surface-soft) 58%, transparent), transparent); }
.about-grid { display: grid; grid-template-columns: minmax(300px, .84fr) minmax(0, 1fr); align-items: center; gap: clamp(45px, 8vw, 110px); }
.about-visual { position: relative; justify-self: center; width: min(100%, 470px); }
.about-visual::before { position: absolute; z-index: -1; inset: -18px 22px 22px -18px; border: 1px solid var(--accent); border-radius: var(--radius-lg); content: ""; opacity: .45; }
.about-visual img { width: 100%; aspect-ratio: .84; object-fit: cover; object-position: 50% 48%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-stamp { position: absolute; right: -24px; bottom: -24px; display: grid; width: 88px; height: 88px; place-content: center; border: 6px solid var(--bg); border-radius: 50%; background: var(--accent); color: #fff; text-align: center; line-height: 1; }
.about-stamp strong { font-family: Georgia, serif; font-size: 1.3rem; }
.about-stamp span { font-size: .65rem; letter-spacing: .15em; }
.about-copy > p:not(.eyebrow) { max-width: 670px; }
.fact-list { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--line); }
.fact-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.fact-list > div > span { color: var(--accent); font-size: .72rem; font-weight: 800; }
.fact-list p { display: grid; gap: 2px; margin: 0; font-size: .86rem; }
.fact-list strong { color: var(--text); font-size: .98rem; }

.process { position: relative; overflow: clip; }
.process::before { position: absolute; z-index: -1; top: 0; left: 50%; width: min(90vw, 1100px); height: 100%; border-radius: 50%; background: radial-gradient(ellipse, color-mix(in srgb, var(--accent-soft) 44%, transparent), transparent 70%); content: ""; transform: translateX(-50%); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-grid li { position: relative; min-height: 230px; padding: 28px 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-glass); }
.process-grid li::after { position: absolute; right: -26px; bottom: -54px; width: 120px; height: 120px; border: 1px solid var(--line); border-radius: 50%; content: ""; }
.process-grid li > span { display: grid; width: 38px; height: 38px; margin-bottom: 30px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--accent); font-size: .7rem; font-weight: 800; }
.process-grid h3 { font-size: 1.3rem; }
.process-grid p { margin: 0; font-size: .89rem; line-height: 1.55; }

.services { background: var(--dark); color: var(--white); }
.services-stack { border-top: 1px solid rgba(255,255,255,.14); }
.service-row { position: relative; display: grid; grid-template-columns: 72px minmax(0, 1fr) 120px; gap: 30px; align-items: center; min-height: 280px; padding: 44px 14px; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.14); }
.service-row h2 { color: var(--white); font-size: clamp(2.1rem, 4vw, 4.2rem); }
.service-row p { max-width: 750px; color: rgba(255,255,255,.64); }
.service-row .eyebrow { color: #e0aa84; }
.service-index { align-self: start; padding-top: 12px; color: rgba(255,255,255,.4); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.service-content { position: relative; z-index: 2; }
.service-links { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 24px; }
.service-links a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; color: #fff; font-size: .86rem; font-weight: 750; }
.service-links a:last-child { color: #ddb093; }
.service-links a:hover { text-decoration: underline; text-underline-offset: 5px; }
.service-links svg { width: 18px; height: 18px; }
.service-mark { justify-self: end; color: rgba(255,255,255,.05); font-family: Georgia, serif; font-size: 9rem; line-height: 1; }

.why-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr); gap: clamp(42px, 8vw, 110px); align-items: start; }
.why-heading { position: sticky; top: calc(var(--header-h) + 40px); }
.why-heading h2 { font-size: clamp(2.35rem, 4vw, 4rem); }
.why-panel { border-top: 1px solid var(--line); }
.why-panel > div { display: grid; grid-template-columns: 54px minmax(180px, .62fr) 1fr; gap: 18px; align-items: start; padding: 27px 0; border-bottom: 1px solid var(--line); }
.why-panel span { color: var(--accent); font-size: .72rem; font-weight: 800; }
.why-panel h3 { margin: 0; font-family: inherit; font-size: 1rem; font-weight: 760; letter-spacing: -.01em; line-height: 1.4; }
.why-panel p { margin: 0; font-size: .9rem; line-height: 1.55; }

.gallery { background: color-mix(in srgb, var(--surface-soft) 48%, var(--bg)); }
.section.gallery-followup { padding-top: 0; background: var(--bg); }
.gallery-heading { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 30px; text-align: left; }
.gallery-heading .eyebrow { justify-content: flex-start; }
.gallery-heading h2 { margin: 0; }
.gallery-heading > p { flex: 0 0 auto; margin: 0 0 10px; }
.gallery-item { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius-md); background: var(--surface-soft); cursor: zoom-in; box-shadow: var(--shadow-sm); }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.45)); content: ""; opacity: .8; pointer-events: none; transition: opacity .25s ease; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.025); }
.image-label { position: absolute; z-index: 2; bottom: 15px; left: 15px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; background: rgba(18,13,10,.56); color: white; font-size: .7rem; font-weight: 750; letter-spacing: .04em; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.work-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.work-card { min-width: 0; padding: 13px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-sm); }
.work-card-head { display: grid; grid-template-columns: 32px minmax(0, 1fr); min-height: 62px; align-items: center; gap: 10px; padding: 2px 4px 11px; }
.work-card-head > span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--accent); font-size: .75rem; font-weight: 800; }
.work-card-head h3 { margin: 0; font-size: 1rem; line-height: 1.25; letter-spacing: -.02em; }
.work-card .gallery-item { aspect-ratio: .82; border-radius: 17px; }
.work-card .gallery-item img { object-position: center 48%; }
.gallery-disclaimer { display: grid; grid-template-columns: 38px 1fr; gap: 15px; margin-top: 20px; padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.gallery-disclaimer svg { width: 23px; height: 23px; margin-top: 3px; color: var(--accent); }
.gallery-disclaimer p { margin: 0; font-size: .84rem; line-height: 1.6; }
.gallery-disclaimer strong { color: var(--text); }

.cta-band { padding: 72px 0; background: var(--accent-deep); color: white; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner > div { max-width: 760px; }
.cta-inner h2 { margin: 0; color: white; font-size: clamp(2.15rem, 3.8vw, 3.85rem); }
.cta-inner .eyebrow { color: rgba(255,255,255,.67); }
.cta-inner .button { flex: 0 0 auto; }

.faq-grid { display: grid; grid-template-columns: minmax(260px, .68fr) minmax(0, 1.2fr); align-items: start; gap: clamp(45px, 8vw, 112px); }
.faq-intro { position: sticky; top: calc(var(--header-h) + 40px); }
.faq-intro h2 { font-size: clamp(2.35rem, 4vw, 4rem); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; padding: 17px 2px; color: var(--text); font-weight: 720; line-height: 1.4; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 24px; height: 24px; flex: 0 0 auto; border: 1px solid var(--line-strong); border-radius: 50%; }
.accordion summary span::before, .accordion summary span::after { position: absolute; top: 50%; left: 50%; width: 9px; height: 1px; background: currentColor; content: ""; transform: translate(-50%, -50%); transition: transform .2s ease; }
.accordion summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.accordion details p { max-width: 700px; padding: 0 40px 24px 2px; margin: 0; font-size: .93rem; }

.contact { background: linear-gradient(180deg, var(--bg), var(--bg-deep)); }
.contact-heading { max-width: 850px; }
.contact-grid { display: grid; grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr); gap: 18px; align-items: stretch; }
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.contact-card { position: relative; display: flex; min-height: 142px; align-items: flex-end; gap: 12px; padding: 20px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s ease; }
a.contact-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.contact-card.featured { border-color: rgba(6,43,22,.14); background: #25d366; color: #062b16; }
.contact-card.featured .icon-disc { background: rgba(6,43,22,.12); color: #062b16; }
.contact-card.featured small { color: rgba(6,43,22,.66); }
.contact-card > span:nth-child(2) { display: grid; min-width: 0; gap: 3px; line-height: 1.3; }
.contact-card strong { overflow-wrap: anywhere; font-size: .93rem; }
.contact-card .card-arrow { position: absolute; top: 18px; right: 18px; width: 20px; height: 20px; color: var(--text-faint); }
.contact-card.featured .card-arrow { color: #062b16; }
.map-card { display: grid; grid-template-rows: minmax(330px, 1fr) auto; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.map-frame { min-height: 330px; background: var(--surface-soft); }
.map-frame iframe { width: 100%; height: 100%; min-height: 330px; border: 0; }
.map-info { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 20px 22px; }
.map-info > div { display: grid; gap: 4px; }
.map-info small { color: var(--text-faint); font-size: .7rem; font-weight: 750; text-transform: uppercase; letter-spacing: .1em; }
.map-info address { max-width: 520px; color: var(--text); font-size: .87rem; font-weight: 650; line-height: 1.45; }

.site-footer { padding: 72px 0 28px; background: var(--dark); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; padding-bottom: 52px; }
.footer-brand > a { display: inline-flex; width: 238px; margin-bottom: 18px; border-radius: 11px; background: #fffaf4; padding: 6px 9px; }
.footer-brand p { max-width: 300px; }
.footer-grid h2 { margin-bottom: 18px; color: var(--white); font-family: inherit; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a, .footer-grid p { display: block; margin: 0 0 10px; color: rgba(255,255,255,.62); font-size: .84rem; line-height: 1.55; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,.48); font-size: .76rem; }

.mobile-contact-bar { display: none; }

.lightbox { position: fixed; z-index: 999; inset: 0; display: grid; place-items: center; padding: 50px 24px 24px; }
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(8, 6, 5, .9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.lightbox figure { position: relative; z-index: 2; display: grid; grid-template-rows: minmax(0, 1fr) auto; max-width: min(92vw, 1100px); max-height: calc(100vh - 80px); margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: #120e0c; box-shadow: 0 40px 120px rgba(0,0,0,.6); }
.lightbox figure img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.lightbox figcaption { padding: 12px 16px; color: rgba(255,255,255,.78); font-size: .82rem; text-align: center; }
.lightbox-close { position: fixed; z-index: 3; top: max(14px, env(safe-area-inset-top)); right: 18px; display: grid; width: 44px; height: 44px; place-items: center; padding: 0 0 4px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(20,15,12,.72); color: white; font-size: 2rem; line-height: 1; cursor: pointer; }

.reveal-ready [data-reveal] { opacity: 1; transform: none; }
.reveal-ready [data-reveal].is-visible { animation: reveal-in .6s cubic-bezier(.2,.7,.2,1) both; }
@keyframes reveal-in {
  from { opacity: 1; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* Service detail pages */
.subpage-main { min-height: 70vh; }
.subpage-hero { position: relative; padding: 86px 0 68px; overflow: clip; }
.subpage-hero .container { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr); align-items: center; gap: 70px; }
.subpage-hero h1 { max-width: 820px; }
.subpage-hero .lead { max-width: 690px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: var(--text-faint); font-size: .78rem; }
.breadcrumb a:hover { color: var(--accent); }
.subpage-art { position: relative; display: grid; aspect-ratio: 1; place-items: center; border: 1px solid var(--line); border-radius: 50% 50% var(--radius-lg) var(--radius-lg); background: var(--dark); color: var(--white); box-shadow: var(--shadow-lg); }
.subpage-art::before, .subpage-art::after { position: absolute; width: 70%; height: 35%; border-top: 1px solid var(--accent); border-radius: 50%; content: ""; transform: rotate(-18deg); }
.subpage-art::after { width: 52%; height: 28%; transform: rotate(24deg); opacity: .5; }
.subpage-art span { position: relative; z-index: 2; font-family: Georgia, serif; font-size: clamp(5rem, 11vw, 9rem); }
.subpage-content { padding: 80px 0 100px; background: color-mix(in srgb, var(--surface-soft) 48%, transparent); }
.subpage-grid { display: grid; grid-template-columns: minmax(250px, .62fr) minmax(0, 1.2fr); gap: 80px; align-items: start; }
.subpage-aside { position: sticky; top: calc(var(--header-h) + 28px); padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.subpage-aside h2 { font-family: inherit; font-size: 1rem; font-weight: 750; letter-spacing: 0; }
.subpage-aside a { display: flex; align-items: center; justify-content: space-between; min-height: 46px; border-top: 1px solid var(--line); color: var(--text-soft); font-size: .85rem; font-weight: 650; }
.subpage-aside a:hover, .subpage-aside a[aria-current="page"] { color: var(--accent); }
.subpage-copy h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.subpage-copy section + section { margin-top: 54px; padding-top: 50px; border-top: 1px solid var(--line); }
.subpage-copy ul { display: grid; gap: 12px; padding-left: 22px; color: var(--text-soft); }
.subpage-note { margin-top: 28px; padding: 18px 20px; border-left: 3px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--surface); color: var(--text-soft); font-size: .88rem; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 15px; }
  .desktop-whatsapp { display: none; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li { min-height: 205px; }
  .service-row { grid-template-columns: 58px minmax(0, 1fr) 90px; }
  .service-mark { font-size: 7rem; }
  .footer-grid { grid-template-columns: 1.25fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .section { padding: 76px 0; }
  .desktop-nav { display: none; }
  .header-inner { min-height: var(--header-h); }
  .brand { width: 205px; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: inline-block; }
  .hero-media { inset: 0; }
  .hero-media img { object-position: 61% 45%; opacity: .78; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,7,8,.97) 0%, rgba(7,7,8,.88) 50%, rgba(7,7,8,.48) 100%), linear-gradient(0deg, rgba(5,5,6,.62), transparent 55%); }
  .hero-copy { max-width: 700px; }
  .results-intro { grid-template-columns: 1fr; gap: 16px; }
  .results-grid { grid-template-columns: 1fr; }
  .work-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-services-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr); gap: 45px; }
  .why-grid, .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .why-heading, .faq-intro { position: static; max-width: 690px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-card { min-height: 500px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .subpage-hero .container { grid-template-columns: 1fr .48fr; gap: 35px; }
  .subpage-grid { grid-template-columns: 220px 1fr; gap: 45px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .section-tight { padding: 32px 0 58px; }
  h1 { font-size: clamp(2.55rem, 12.3vw, 4rem); }
  h2 { font-size: clamp(2rem, 9.3vw, 3rem); }
  .header-inner { gap: 10px; }
  .brand { width: min(52vw, 188px); }
  .header-actions { gap: 6px; }
  .theme-toggle, .menu-toggle { width: 42px; height: 42px; }
  .hero-stage { min-height: calc(100svh - var(--header-h)); padding: 58px 0 88px; align-items: flex-end; }
  .hero-media img { object-position: 64% 44%; opacity: .67; }
  .hero-overlay { background: linear-gradient(180deg, rgba(6,6,7,.47) 0%, rgba(6,6,7,.62) 36%, rgba(6,6,7,.96) 84%, #060607 100%); }
  .hero-kicker { margin-bottom: 18px; font-size: .69rem; letter-spacing: .1em; }
  .hero-slogan { margin-bottom: 10px; font-size: 1rem; }
  .hero h1 { margin-bottom: 20px; font-size: clamp(2.55rem, 12.3vw, 4.15rem); line-height: .96; }
  .hero-lead { margin-bottom: 26px; font-size: 1.01rem; }
  .hero-ctas { align-items: stretch; }
  .hero-facts { gap: 9px 18px; }
  .scroll-cue { display: none; }
  .results { padding-top: 62px; }
  .results-intro { margin-bottom: 28px; }
  .result-card { padding: 14px; border-radius: 22px; }
  .result-pair { gap: 7px; }
  .result-pair .gallery-item { border-radius: 14px; }
  .quick-services { padding: 62px 0; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-card { min-height: 92px; grid-template-columns: auto 1fr; }
  .quick-card svg { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 54px; }
  .about-visual { width: min(92%, 480px); }
  .about-copy { order: -1; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 0; }
  .process-grid li > span { margin-bottom: 20px; }
  .service-row { grid-template-columns: 34px 1fr; gap: 12px; min-height: 0; padding: 38px 0; }
  .service-mark { display: none; }
  .service-row h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .service-links { gap: 8px 18px; }
  .why-panel > div { grid-template-columns: 36px 1fr; }
  .why-panel p { grid-column: 2; }
  .gallery-heading { display: block; }
  .gallery-heading > p { margin-top: 15px; }
  .gallery-disclaimer { grid-template-columns: 1fr; }
  .cta-inner { display: grid; }
  .cta-inner .button { justify-self: start; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .map-info { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .subpage-hero { padding-top: 52px; }
  .subpage-hero .container, .subpage-grid { grid-template-columns: 1fr; }
  .subpage-art { width: min(78vw, 360px); justify-self: center; }
  .subpage-aside { position: static; }
}

@media (max-width: 640px) {
  body { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: max(9px, env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 66px;
    padding: 7px;
    border: 1px solid var(--line-strong);
    border-radius: 22px;
    background: var(--surface-glass);
    box-shadow: 0 14px 42px rgba(30, 20, 15, .22);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    backdrop-filter: blur(20px) saturate(150%);
  }
  .mobile-contact-bar a { display: grid; min-width: 0; min-height: 50px; place-items: center; align-content: center; gap: 3px; border-radius: 15px; color: var(--text-soft); font-size: .64rem; font-weight: 750; line-height: 1; }
  .mobile-contact-bar a:hover { background: var(--surface-soft); color: var(--accent); }
  .mobile-contact-bar a:nth-child(2) { background: rgba(37, 211, 102, .13); color: #08723d; }
  html[data-theme="dark"] .mobile-contact-bar a:nth-child(2) { color: #64e99c; }
  .mobile-contact-bar svg { width: 19px; height: 19px; }
  .site-footer { padding-bottom: 32px; }
}

@media (max-width: 560px) {
  .hero-ctas { display: grid; }
  .hero-ctas .button, .hero-call { width: 100%; }
  .hero-call { justify-content: center; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { min-height: 72px; grid-template-columns: 30px 1fr auto; }
  .quick-card svg { display: block; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card { min-height: 100px; align-items: center; }
  .map-card { min-height: 450px; }
  .map-frame, .map-frame iframe { min-height: 290px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 24px); }
  .brand { width: 160px; }
  .theme-toggle, .menu-toggle { width: 40px; height: 40px; }
  .hero-stage { padding-top: 44px; }
  .eyebrow { letter-spacing: .1em; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.25rem); }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-facts a { grid-column: 1 / -1; }
  .result-card { padding: 11px; }
  .result-card-head { grid-template-columns: 32px 1fr; padding-inline: 2px; }
  .result-card-head h3 { font-size: 1.05rem; }
  .result-card-head p { font-size: .72rem; }
  .result-pair { gap: 5px; }
  .work-gallery { gap: 9px; }
  .work-card { padding: 9px; border-radius: 18px; }
  .work-card-head { grid-template-columns: 27px minmax(0, 1fr); min-height: 58px; gap: 7px; padding: 0 2px 8px; }
  .work-card-head > span { width: 25px; height: 25px; }
  .work-card-head h3 { font-size: .875rem; line-height: 1.2; }
  .work-card .gallery-item { border-radius: 13px; }
  .about-stamp { right: -10px; }
  .image-label { bottom: 10px; left: 10px; }
  .mobile-contact-bar { right: 6px; left: 6px; }
  .mobile-contact-bar a { font-size: .59rem; }
}

@media (max-width: 350px) {
  .work-gallery { grid-template-columns: 1fr; }
  .work-card-head h3 { font-size: .94rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .mobile-contact-bar, .theme-toggle, .menu-toggle, .lightbox { display: none !important; }
  body { padding: 0; background: white; color: black; }
  .section { padding: 32px 0; }
}
