:root {
  --green-950: #063c20;
  --green-900: #07532a;
  --green-800: #0a6730;
  --green-700: #0f7f38;
  --green-600: #159943;
  --green-500: #1db94b;
  --green-100: #dff6e6;
  --green-50: #f2fbf5;
  --yellow: #f2ce31;
  --ink: #17221b;
  --muted: #5e6b63;
  --line: #dfe9e2;
  --cream: #fbfcf8;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(7, 83, 42, .12);
  --shadow-soft: 0 12px 35px rgba(10, 54, 29, .09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -70px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--green-950);
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(9, 83, 42, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(5, 54, 28, .08); background: rgba(255,255,255,.96); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; min-width: 0; }
.brand img { width: 56px; height: 56px; object-fit: contain; border-radius: 50%; }
.brand span { display: grid; line-height: 1.08; }
.brand strong { font-size: 1rem; letter-spacing: -.02em; }
.brand small { margin-top: 5px; color: var(--green-700); font-size: .76rem; text-transform: uppercase; letter-spacing: .16em; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; color: #314039; font-weight: 650; font-size: .93rem; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--green-600); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--green-50); cursor: pointer; padding: 11px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 999px; background: var(--green-900); transition: transform .2s ease, opacity .2s ease; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--green-700);
  border-radius: 999px;
  background: var(--green-700);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 127, 56, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-800); box-shadow: 0 16px 28px rgba(15, 127, 56, .25); }
.button-small { min-height: 44px; padding: 0 18px; font-size: .88rem; box-shadow: none; }
.button-ghost { background: transparent; color: var(--green-900); box-shadow: none; border-color: var(--line); }
.button-ghost:hover { background: #fff; border-color: var(--green-600); }
.button-light { background: #fff; color: var(--green-900); border-color: #fff; box-shadow: none; }
.button-light:hover { background: var(--yellow); border-color: var(--yellow); }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 78px;
  background:
    radial-gradient(circle at 75% 20%, rgba(29,185,75,.13), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f5fbf6 100%);
}
.hero::before { content: ""; position: absolute; left: 0; bottom: 0; width: 42%; height: 1px; background: linear-gradient(90deg, transparent, var(--green-500)); }
.hero-orb { position: absolute; border-radius: 50%; border: 1px solid rgba(15,127,56,.15); pointer-events: none; }
.hero-orb-one { width: 520px; height: 520px; right: -210px; top: -150px; }
.hero-orb-two { width: 310px; height: 310px; left: -190px; bottom: 0; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
.eyebrow { margin: 0 0 15px; display: flex; align-items: center; gap: 10px; color: var(--green-700); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .18em; }
.eyebrow span { width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: #c9f6d7; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.04em; }
h1 { margin-bottom: 24px; font-size: clamp(2.85rem, 6vw, 5.55rem); max-width: 790px; }
h2 { margin-bottom: 18px; font-size: clamp(2.15rem, 4.4vw, 4.15rem); }
h3 { font-size: 1.55rem; }
.hero-lead { max-width: 650px; margin-bottom: 30px; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.26rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.credential { margin-top: 38px; display: flex; align-items: center; gap: 13px; }
.credential-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--green-100); color: var(--green-800); font-weight: 900; }
.credential div { display: grid; }
.credential span { color: var(--muted); font-size: .91rem; }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.logo-stage { position: relative; width: min(100%, 510px); aspect-ratio: 1; display: grid; place-items: center; }
.logo-stage::before, .logo-stage::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(15,127,56,.16); }
.logo-stage::before { inset: 4%; }
.logo-stage::after { inset: -8%; border-style: dashed; animation: spin 28s linear infinite; }
.logo-stage img { position: relative; z-index: 2; width: 88%; height: 88%; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 26px 45px rgba(2,70,26,.14)); }
.logo-glow { position: absolute; inset: 20%; border-radius: 50%; background: rgba(242,206,49,.38); filter: blur(35px); }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.9); border-radius: 17px; background: rgba(255,255,255,.91); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.floating-card span:last-child { display: grid; }
.floating-card small { color: var(--muted); font-size: .7rem; }
.floating-card strong { font-size: .92rem; }
.mini-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--green-100); color: var(--green-800); }
.card-one { left: -30px; top: 30%; }
.card-two { right: -10px; bottom: 17%; }
.quick-strip { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); overflow: hidden; }
.quick-strip div { min-height: 96px; display: flex; align-items: center; gap: 15px; padding: 24px 30px; }
.quick-strip div + div { border-left: 1px solid var(--line); }
.quick-strip span { color: var(--green-600); font-size: .74rem; font-weight: 900; }
.quick-strip strong { font-size: 1rem; }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 510px; margin-bottom: 7px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -80px; bottom: -90px; border-radius: 50%; background: var(--green-100); transition: transform .25s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::after { transform: scale(1.35); }
.service-card.featured { background: var(--green-900); color: #fff; border-color: var(--green-900); }
.service-card.featured::after { background: rgba(255,255,255,.08); }
.service-number { margin-bottom: 28px; color: var(--green-600); font-size: .75rem; font-weight: 900; letter-spacing: .16em; }
.featured .service-number { color: #a6efba; }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 38px; border-radius: 18px; background: var(--green-100); color: var(--green-800); font-size: 1.35rem; }
.featured .service-icon { background: rgba(255,255,255,.12); color: #fff; }
.service-card h3 { margin-bottom: 14px; }
.service-card p { color: var(--muted); }
.featured p { color: rgba(255,255,255,.73); }
.service-card a { position: relative; z-index: 2; margin-top: auto; color: var(--green-800); font-weight: 850; }
.featured a { color: #fff; }
.service-card a span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(5px); }

.focus { color: #fff; background: var(--green-950); }
.focus-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 80px; align-items: center; }
.focus-copy h2 { max-width: 700px; }
.focus-copy > p:not(.eyebrow) { max-width: 580px; margin-bottom: 30px; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.conditions { padding: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-xl); background: rgba(255,255,255,.06); }
.conditions-label { margin-bottom: 22px; color: #c9f6d7; font-weight: 800; }
.condition-list { display: grid; }
.condition-list div { display: flex; align-items: center; gap: 17px; min-height: 74px; border-top: 1px solid rgba(255,255,255,.12); }
.condition-list span { color: #7be59a; font-size: .72rem; font-weight: 900; }
.condition-list strong { font-size: 1.17rem; }

.professional { background: #fff; }
.professional-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: center; }
.professional-visual { min-height: 460px; display: grid; place-items: center; border-radius: var(--radius-xl); background: linear-gradient(145deg, var(--green-100), #f8fff9); overflow: hidden; }
.measure-circle { position: relative; width: 310px; aspect-ratio: 1; border-radius: 50%; background: var(--green-700); box-shadow: 0 25px 70px rgba(15,127,56,.24); }
.measure-circle svg { position: absolute; inset: 24%; width: 52%; height: 52%; color: #fff; stroke-width: 1.2; }
.measure-circle .measure-line { position: absolute; left: 16%; right: 16%; height: 13px; border-radius: 999px; background: var(--yellow); box-shadow: inset 0 -2px 0 rgba(0,0,0,.1); transform: rotate(-12deg); }
.measure-line::after { content: ""; position: absolute; inset: 2px 8px; background: repeating-linear-gradient(90deg, rgba(16,33,20,.7) 0 1px, transparent 1px 12px); }
.measure-line.line-a { top: 34%; }
.measure-line.line-b { top: 49%; transform: rotate(8deg); }
.measure-line.line-c { top: 64%; transform: rotate(-6deg); }
.professional-role { color: var(--green-700); font-weight: 800; }
.big-copy { max-width: 700px; font-size: clamp(1.35rem, 2.8vw, 2.15rem); line-height: 1.35; letter-spacing: -.025em; }
.phone-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 32px; }
.phone-pair a { display: grid; padding: 19px 21px; border: 1px solid var(--line); border-radius: 17px; transition: border-color .2s ease, background .2s ease; }
.phone-pair a:hover { border-color: var(--green-600); background: var(--green-50); }
.phone-pair small { color: var(--muted); }
.phone-pair strong { font-size: 1.12rem; }

.schedule { padding-top: 0; background: #fff; }
.schedule-card { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; padding: 48px; border-radius: var(--radius-xl); background: var(--green-50); border: 1px solid #d5edda; }
.schedule-title h2 { margin-bottom: 0; }
.schedule-times { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.schedule-times > div { display: grid; align-content: center; padding: 25px; border-radius: var(--radius-lg); background: #fff; }
.schedule-times span { margin-bottom: 8px; color: var(--green-700); font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.schedule-times strong { font-size: 1rem; }
.schedule-special { border: 1px solid rgba(242,206,49,.65); box-shadow: inset 0 4px 0 var(--yellow); }

.gallery { background: #f5f8f3; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 24px; align-items: start; }
.image-card { margin: 0; padding: 13px; border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-soft); }
.image-open { position: relative; width: 100%; display: block; padding: 0; border: 0; border-radius: calc(var(--radius-xl) - 10px); overflow: hidden; background: #edf5ef; cursor: zoom-in; }
.image-open img { width: 100%; height: auto; object-fit: contain; transition: transform .35s ease; }
.image-open:hover img { transform: scale(1.015); }
.zoom-hint { position: absolute; right: 14px; bottom: 14px; padding: 8px 12px; border-radius: 999px; background: rgba(5,50,24,.86); color: #fff; font-size: .75rem; font-weight: 800; backdrop-filter: blur(8px); }
.image-card figcaption { display: flex; align-items: center; gap: 14px; padding: 17px 9px 6px; }
.image-card figcaption > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--green-100); color: var(--green-800); font-size: .73rem; font-weight: 900; }
.image-card figcaption div { display: grid; }
.image-card figcaption small { color: var(--muted); }

.contact { background: #f5f8f3; padding-top: 0; }
.contact-card { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; padding: 62px; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--green-900), var(--green-700)); color: #fff; overflow: hidden; }
.contact-card::after { content: ""; position: absolute; width: 330px; height: 330px; right: -170px; top: -180px; border-radius: 50%; border: 65px solid rgba(255,255,255,.06); }
.contact-copy { position: relative; z-index: 1; }
.contact-copy h2 { max-width: 650px; }
.contact-copy > p:last-child { color: rgba(255,255,255,.75); }
.contact-actions { position: relative; z-index: 1; display: grid; gap: 12px; }
.contact-phone { display: flex; align-items: center; gap: 15px; min-height: 84px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(255,255,255,.09); transition: background .2s ease, transform .2s ease; }
.contact-phone:hover { background: #fff; color: var(--green-900); transform: translateX(4px); }
.contact-phone > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 15px; background: var(--yellow); color: var(--green-950); font-size: 1.25rem; }
.contact-phone div { display: grid; }
.contact-phone small { opacity: .7; }
.contact-phone strong { font-size: 1.2rem; }

.site-footer { padding: 72px 0 26px; background: #071a10; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 60px; padding-bottom: 45px; }
.footer-brand { display: inline-flex; align-items: center; gap: 13px; align-self: start; }
.footer-brand img { width: 70px; height: 70px; object-fit: contain; border-radius: 50%; background: #fff; }
.footer-brand span, .footer-services, .footer-contact { display: grid; align-content: start; gap: 8px; }
.footer-brand span { gap: 2px; }
.footer-brand small, .footer-services span, .footer-contact span, .footer-contact a { color: rgba(255,255,255,.65); }
.footer-services strong, .footer-contact strong { margin-bottom: 8px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: .86rem; }
.footer-bottom a:hover { color: #fff; }

.mobile-call { display: none; }
.image-modal { width: min(94vw, 1100px); max-height: 92vh; padding: 18px; border: 0; border-radius: 24px; background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.image-modal::backdrop { background: rgba(0,20,8,.77); backdrop-filter: blur(8px); }
.image-modal img { max-width: 100%; max-height: calc(92vh - 36px); margin: auto; object-fit: contain; border-radius: 14px; }
.modal-close { position: absolute; z-index: 2; right: 26px; top: 26px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(4,32,15,.82); color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer; }

.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay-small { transition-delay: .08s; }
.reveal-delay { transition-delay: .14s; }
.reveal-delay-large { transition-delay: .22s; }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .header-cta { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; z-index: 1001; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 22px; padding: 100px 30px; background: rgba(255,255,255,.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { font-size: 1.35rem; }
  .hero-grid, .focus-grid, .professional-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .credential { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { min-height: 470px; }
  .logo-stage { width: 430px; }
  .card-one { left: 5%; }
  .card-two { right: 5%; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 330px; }
  .professional-grid { gap: 42px; }
  .professional-copy { text-align: center; }
  .professional-copy .eyebrow { justify-content: center; }
  .big-copy { margin-inline: auto; }
  .schedule-card { grid-template-columns: 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-card { gap: 35px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 74px 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 47px; height: 47px; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .66rem; }
  .hero { padding-top: 52px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-visual { min-height: 390px; margin-top: 12px; }
  .logo-stage { width: 300px; }
  .floating-card { padding: 10px 12px; border-radius: 14px; }
  .floating-card .mini-icon { width: 32px; height: 32px; }
  .floating-card strong { font-size: .78rem; }
  .card-one { left: 0; top: 29%; }
  .card-two { right: 0; bottom: 14%; }
  .quick-strip { grid-template-columns: 1fr; margin-top: 40px; }
  .quick-strip div { min-height: 72px; padding: 18px 22px; }
  .quick-strip div + div { border-left: 0; border-top: 1px solid var(--line); }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading > p { margin-top: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 350px; padding: 28px; }
  .focus-grid { gap: 40px; }
  .conditions { padding: 24px; }
  .professional-visual { min-height: 350px; }
  .measure-circle { width: 235px; }
  .phone-pair { grid-template-columns: 1fr; }
  .schedule-card { padding: 30px 22px; }
  .schedule-times { grid-template-columns: 1fr; }
  .image-card { padding: 9px; border-radius: 22px; }
  .contact-card { padding: 38px 24px; border-radius: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .mobile-call { position: fixed; z-index: 950; right: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; min-height: 52px; padding: 0 18px; border-radius: 999px; background: var(--yellow); color: var(--green-950); box-shadow: 0 15px 40px rgba(0,0,0,.22); font-weight: 900; }
  .mobile-call svg { width: 20px; height: 20px; }
  .image-modal { padding: 9px; border-radius: 18px; }
  .modal-close { right: 14px; top: 14px; }
}

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