:root {
  --green-950: #032b20;
  --green-900: #063a2a;
  --green-800: #0a4a35;
  --green-700: #0d6042;
  --green-600: #177552;
  --gold-500: #f6bd05;
  --gold-400: #ffd147;
  --cream: #fffaf0;
  --paper: #ffffff;
  --ink: #10231d;
  --muted: #5d6f68;
  --line: rgba(9, 75, 52, 0.14);
  --shadow-sm: 0 12px 30px rgba(3, 43, 32, 0.09);
  --shadow-lg: 0 30px 80px rgba(3, 43, 32, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
i.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 1.05rem;
  line-height: 1;
}
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .78rem;
}
.section-kicker::before { content: ""; width: 30px; height: 3px; border-radius: 999px; background: var(--gold-500); }
.section-heading { max-width: 720px; margin: 14px 0 44px; }
.section-heading h2, .page-hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  line-height: .99;
  letter-spacing: -.055em;
  color: var(--green-950);
}
.section-heading p { margin: 20px 0 0; color: var(--muted); font-size: 1.08rem; max-width: 640px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 750;
  font-size: .88rem;
  backdrop-filter: blur(14px);
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 6px rgba(246,189,5,.16); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-500); color: var(--green-950); box-shadow: 0 12px 30px rgba(246,189,5,.28); }
.btn-primary:hover { background: var(--gold-400); box-shadow: 0 16px 36px rgba(246,189,5,.34); }
.btn-dark { background: var(--green-950); color: #fff; box-shadow: 0 12px 30px rgba(3,43,32,.2); }
.btn-outline { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.05); }
.btn-outline-dark { border-color: var(--line); color: var(--green-900); background: #fff; }
.btn-sm { min-height: 43px; padding-inline: 17px; font-size: .92rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-700); font-weight: 850; }
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }

.skip-link { position: fixed; top: -100px; left: 16px; z-index: 9999; background: #fff; padding: 12px 18px; border-radius: 0 0 10px 10px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 0; }
.topbar { background: var(--green-950); color: rgba(255,255,255,.84); font-size: .88rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: #fff; font-weight: 800; }
.topbar-note { display: flex; align-items: center; gap: 8px; }
.topbar-note .icon { color: var(--gold-500); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(3,43,32,.08);
  backdrop-filter: blur(18px);
}
.navbar { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 210px; }
.brand img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; box-shadow: 0 7px 20px rgba(3,43,32,.14); }
.brand-name { display: grid; line-height: 1.03; }
.brand-name strong { color: var(--green-900); font-size: 1.05rem; letter-spacing: .04em; }
.brand-name span { color: var(--muted); font-size: .75rem; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { position: relative; font-weight: 750; color: #3d5149; font-size: .95rem; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 3px; border-radius: 999px; background: var(--gold-500); transition: right .22s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--green-900); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--green-900); align-items: center; justify-content: center; }
.mobile-panel { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 15%, rgba(246,189,5,.17), transparent 27%),
    linear-gradient(118deg, var(--green-950) 0%, #075238 55%, #0a6b48 100%);
  color: #fff;
  min-height: 720px;
}
.hero::before { content: ""; position: absolute; inset: auto -10% -190px -10%; height: 300px; background: #fff; border-radius: 50% 50% 0 0 / 50% 50% 0 0; z-index: -1; transform: rotate(-2deg); }
.hero::after { content: ""; position: absolute; width: 530px; height: 530px; border-radius: 50%; right: -160px; top: -170px; border: 95px solid rgba(255,255,255,.055); z-index: -1; }
.hero-inner { min-height: 720px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding: 72px 0 130px; }
.hero-copy h1 { margin: 26px 0 22px; font-size: clamp(3.3rem, 7vw, 6.6rem); line-height: .88; letter-spacing: -.07em; max-width: 780px; }
.hero-copy h1 span { color: var(--gold-500); }
.hero-copy p { margin: 0 0 30px; color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-assurance { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: rgba(255,255,255,.8); font-size: .91rem; }
.hero-assurance span { display: flex; align-items: center; gap: 7px; }
.hero-assurance .icon { color: var(--gold-500); }
.hero-visual { position: relative; min-height: 520px; }
.hero-photo {
  position: absolute;
  inset: 10px 0 0 40px;
  border-radius: 40px 40px 100px 40px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.28);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,43,32,.3), transparent 45%); }
.hero-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: var(--green-950);
  box-shadow: var(--shadow-lg);
  font-weight: 850;
}
.hero-badge .icon-wrap { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: var(--gold-500); }
.hero-badge.one { left: -5px; top: 75px; }
.hero-badge.two { right: -18px; bottom: 80px; }
.hero-ring { position: absolute; width: 160px; height: 160px; border: 32px solid var(--gold-500); border-radius: 50%; right: -35px; top: -20px; opacity: .95; }

.service-strip { margin-top: -72px; position: relative; z-index: 10; }
.service-strip-inner { display: grid; grid-template-columns: repeat(4,1fr); background: #fff; border-radius: 28px; box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid rgba(3,43,32,.08); }
.strip-item { padding: 26px 24px; display: flex; align-items: center; gap: 15px; border-right: 1px solid var(--line); }
.strip-item:last-child { border-right: 0; }
.strip-icon { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 15px; background: rgba(246,189,5,.15); color: var(--green-800); }
.strip-item strong { display: block; color: var(--green-950); }
.strip-item span { color: var(--muted); font-size: .86rem; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(3,43,32,.055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(246,189,5,.55); }
.service-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -75px; bottom: -75px; border-radius: 50%; background: rgba(246,189,5,.12); }
.card-icon { width: 62px; height: 62px; border-radius: 19px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, var(--green-700), var(--green-950)); box-shadow: 0 15px 28px rgba(3,43,32,.2); }
.card-icon .icon { width: 29px; height: 29px; font-size: 1.65rem; }
.service-card h3 { margin: 25px 0 10px; color: var(--green-950); font-size: 1.28rem; line-height: 1.2; }
.service-card p { color: var(--muted); font-size: .95rem; margin: 0 0 22px; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 9px; color: #40544c; font-size: .9rem; }
.service-card li { display: flex; align-items: flex-start; gap: 8px; }
.service-card li .icon { width: 17px; height: 17px; margin-top: 3px; color: var(--green-600); font-size: .83rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.visual-stack { position: relative; min-height: 560px; }
.visual-main { position: absolute; inset: 0 70px 70px 0; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow-lg); }
.visual-main img { width: 100%; height: 100%; object-fit: cover; }
.visual-card { position: absolute; right: 0; bottom: 0; width: 285px; padding: 25px; border-radius: 24px; background: var(--green-950); color: #fff; box-shadow: var(--shadow-lg); }
.visual-card strong { display: block; color: var(--gold-500); font-size: 1.1rem; margin-bottom: 6px; }
.visual-card p { margin: 0; color: rgba(255,255,255,.76); font-size: .93rem; }
.feature-list { display: grid; gap: 18px; margin: 30px 0; }
.feature-item { display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: start; }
.feature-item .mini-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: rgba(246,189,5,.16); color: var(--green-800); }
.feature-item h4 { margin: 2px 0 5px; color: var(--green-950); }
.feature-item p { margin: 0; color: var(--muted); font-size: .93rem; }

.dark-section { background: var(--green-950); color: #fff; overflow: hidden; }
.dark-section::before { content: ""; position: absolute; width: 400px; height: 400px; border: 70px solid rgba(246,189,5,.06); border-radius: 50%; left: -180px; top: -180px; }
.dark-section .section-heading h2 { color: #fff; }
.dark-section .section-heading p { color: rgba(255,255,255,.68); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: steps; }
.process-card { position: relative; padding: 27px; border-radius: 24px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); backdrop-filter: blur(10px); }
.process-card::before { counter-increment: steps; content: "0" counter(steps); display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--gold-500); color: var(--green-950); font-weight: 900; }
.process-card h3 { margin: 22px 0 8px; }
.process-card p { margin: 0; color: rgba(255,255,255,.68); font-size: .92rem; }

.quote-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; padding: 54px; border-radius: 34px; background: linear-gradient(145deg, #fffaf0, #fff); border: 1px solid rgba(246,189,5,.36); box-shadow: var(--shadow-sm); }
.quote-copy h2 { margin: 10px 0 15px; font-size: clamp(2.2rem,4vw,3.8rem); line-height: 1; letter-spacing: -.05em; color: var(--green-950); }
.quote-copy p { color: var(--muted); }
.quote-note { display: flex; align-items: flex-start; gap: 11px; margin-top: 24px; color: var(--green-800); font-weight: 750; font-size: .92rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .83rem; font-weight: 850; color: var(--green-900); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(3,43,32,.15);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 105px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(23,117,82,.1); }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.form-status { min-height: 24px; margin: 10px 0 0; color: var(--green-700); font-size: .9rem; font-weight: 700; }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { padding: 30px; border-radius: 24px; background: var(--cream); border: 1px solid rgba(246,189,5,.22); }
.value-card .icon { width: 31px; height: 31px; color: var(--green-700); font-size: 1.75rem; }
.value-card h3 { margin: 18px 0 8px; color: var(--green-950); }
.value-card p { margin: 0; color: var(--muted); }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 17px; overflow: hidden; background: #fff; }
.faq-question { width: 100%; border: 0; background: transparent; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 19px 21px; color: var(--green-950); font-weight: 850; text-align: left; }
.faq-plus { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: rgba(246,189,5,.18); flex: 0 0 auto; transition: transform .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 21px 20px; color: var(--muted); }
.faq-item.open .faq-answer { max-height: 240px; }
.faq-item.open .faq-plus { transform: rotate(45deg); }

.cta-band { padding: 70px 0; background: var(--gold-500); color: var(--green-950); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 360px; height: 360px; border: 65px solid rgba(255,255,255,.18); border-radius: 50%; right: -90px; top: -150px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; }
.cta-inner h2 { margin: 0; font-size: clamp(2.2rem,5vw,4.2rem); line-height: .98; letter-spacing: -.055em; max-width: 750px; }
.cta-inner p { margin: 12px 0 0; font-weight: 700; opacity: .78; }

.page-hero { position: relative; overflow: hidden; background: linear-gradient(125deg, var(--green-950), var(--green-700)); color: #fff; padding: 105px 0 115px; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(246,189,5,.19), transparent 28%); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; max-width: 900px; margin-top: 20px; }
.page-hero p { max-width: 670px; color: rgba(255,255,255,.75); font-size: 1.1rem; margin: 22px 0 0; }
.breadcrumbs { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.68); font-size: .9rem; }
.breadcrumbs a { color: #fff; font-weight: 800; }

.service-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.service-detail { padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.service-detail-top { display: flex; align-items: center; gap: 18px; }
.service-detail h2 { margin: 0; color: var(--green-950); font-size: 1.6rem; }
.service-detail p { color: var(--muted); }
.service-detail ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; list-style: none; padding: 0; margin: 25px 0; }
.service-detail li { display: flex; gap: 8px; font-size: .92rem; color: #40544c; }
.service-detail li .icon { width: 17px; height: 17px; color: var(--green-600); margin-top: 3px; font-size: .83rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 130px; gap: 18px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 24px; background: var(--green-950); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.055); }
.gallery-item::after { content: attr(data-label); position: absolute; left: 16px; bottom: 14px; padding: 7px 10px; border-radius: 999px; background: rgba(3,43,32,.82); color: #fff; font-size: .8rem; font-weight: 800; backdrop-filter: blur(8px); }
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 4; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 3; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 3; }
.gallery-poster { object-fit: contain !important; background: var(--cream); }
.lightbox { position: fixed; inset: 0; z-index: 3000; display: none; place-items: center; padding: 30px; background: rgba(0,20,14,.9); backdrop-filter: blur(10px); }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 20px; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.lightbox-close { position: fixed; right: 24px; top: 24px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.contact-card { padding: 32px; border-radius: 28px; background: var(--green-950); color: #fff; position: sticky; top: 120px; }
.contact-card h2 { margin: 0 0 10px; font-size: 2rem; }
.contact-card > p { color: rgba(255,255,255,.7); }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-method:first-of-type { margin-top: 26px; }
.contact-method .mini-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: var(--green-950); background: var(--gold-500); }
.contact-method strong { display: block; }
.contact-method span { color: rgba(255,255,255,.7); font-size: .9rem; }
.contact-form-wrap { padding: 36px; border-radius: 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact-form-wrap h2 { margin: 0 0 8px; color: var(--green-950); }
.contact-form-wrap > p { margin: 0 0 28px; color: var(--muted); }

.about-story { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.about-poster { position: relative; max-width: 500px; margin: auto; }
.about-poster img { border-radius: 32px; box-shadow: var(--shadow-lg); }
.about-poster::before { content: ""; position: absolute; inset: -20px 20px 20px -20px; border: 3px solid var(--gold-500); border-radius: 32px; z-index: -1; }
.promise-box { margin-top: 28px; padding: 22px; border-left: 5px solid var(--gold-500); background: var(--cream); border-radius: 0 18px 18px 0; color: var(--green-900); font-weight: 780; }

.site-footer { background: #021d16; color: rgba(255,255,255,.72); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .75fr .8fr 1fr; gap: 50px; padding-bottom: 55px; }
.footer-brand .brand-name strong { color: #fff; }
.footer-brand .brand-name span { color: rgba(255,255,255,.55); }
.footer-brand p { max-width: 380px; margin: 20px 0; }
.footer-title { color: #fff; margin: 0 0 17px; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--gold-500); }
.footer-contact { display: grid; gap: 13px; }
.footer-contact a { display: flex; gap: 10px; align-items: center; }
.footer-contact .icon { color: var(--gold-500); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: .86rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 20px; }
.footer-bottom a { color: #fff; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 1200; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 16px 34px rgba(0,0,0,.25); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float .icon { width: 29px; height: 29px; font-size: 1.8rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .nav-links { gap: 18px; }
  .nav-actions .btn { display: none; }
  .hero-inner { gap: 35px; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .service-strip-inner { grid-template-columns: repeat(2,1fr); }
  .strip-item:nth-child(2) { border-right: 0; }
  .strip-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: span 3; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .topbar-note:last-child { display: none; }
  .navbar { min-height: 74px; }
  .brand img { width: 52px; height: 52px; }
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-panel { display: grid; position: fixed; inset: 112px 0 auto; padding: 22px 20px 28px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform .3s ease; z-index: 999; }
  .mobile-panel.open { transform: translateY(0); }
  .mobile-panel a { padding: 13px 2px; border-bottom: 1px solid var(--line); font-weight: 800; color: var(--green-900); }
  .mobile-panel .btn { margin-top: 17px; }
  .hero { min-height: auto; }
  .hero::before { display: none; }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; padding: 70px 0 92px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 15vw, 5.4rem); }
  .hero-visual { min-height: 500px; }
  .hero-photo { inset: 20px 10px 0 10px; }
  .hero-badge.one { left: 0; }
  .hero-badge.two { right: 0; }
  .service-strip { margin-top: -32px; }
  .split, .quote-panel, .faq-grid, .contact-grid, .about-story { grid-template-columns: 1fr; gap: 48px; }
  .visual-stack { min-height: 520px; }
  .quote-panel { padding: 32px; }
  .faq-grid { gap: 30px; }
  .contact-card { position: static; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 110px; }
  .gallery-item:nth-child(n) { grid-column: span 6; grid-row: span 3; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 12; grid-row: span 4; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .topbar-inner { justify-content: center; }
  .topbar-note:first-child { font-size: .8rem; }
  .brand { min-width: 0; }
  .brand-name span { display: none; }
  .hero-actions .btn { width: 100%; }
  .hero-assurance { display: grid; gap: 9px; }
  .hero-visual { min-height: 420px; }
  .hero-photo { border-radius: 28px 28px 64px 28px; }
  .hero-badge { font-size: .79rem; padding: 10px 12px; }
  .hero-badge .icon-wrap { width: 34px; height: 34px; }
  .hero-badge.one { top: 38px; }
  .hero-badge.two { bottom: 25px; }
  .hero-ring { width: 110px; height: 110px; border-width: 23px; }
  .service-strip-inner, .cards, .process-grid, .value-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip-item:nth-child(3) { border-bottom: 1px solid var(--line); }
  .strip-item:last-child { border-bottom: 0; }
  .visual-stack { min-height: 440px; }
  .visual-main { inset: 0 25px 55px 0; }
  .visual-card { width: 260px; padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .quote-panel, .contact-form-wrap { padding: 24px; border-radius: 22px; }
  .service-detail { padding: 25px; }
  .service-detail ul { grid-template-columns: 1fr; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; }
  .whatsapp-float { right: 15px; bottom: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
