:root {
  --green-950: #10251f;
  --green-900: #17362d;
  --green-800: #21463b;
  --green-100: #e7eee8;
  --cream: #faf8f1;
  --paper: #fffdf8;
  --sand: #f3ecde;
  --gold: #c9a678;
  --text: #17251f;
  --muted: #64716a;
  --line: rgba(23, 54, 45, 0.16);
  --shadow: 0 22px 70px rgba(16, 37, 31, 0.12);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(var(--container), calc(100% - 36px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 100; background: var(--green-950); color: #fff; padding: 10px 14px; border-radius: var(--radius-sm); }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 248, 241, 0.92);
  backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(23,54,45,.10);
}
.navbar {
  min-height: 72px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; justify-self: start; width: 58px; height: 58px; overflow: visible; }
.brand img { width: 58px; height: 58px; object-fit: contain; object-position: center; display: block; }
.nav-links { display: flex; justify-self: center; gap: 28px; align-items: center; color: rgba(23,37,31,.68); font-size: 0.94rem; }
.nav-links a { position: relative; padding: 24px 0 23px; line-height: 1; transition: color .18s ease; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 17px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .18s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--green-950); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-panel {
  position: absolute;
  left: 50%;
  top: calc(100% - 4px);
  width: min(760px, calc(100vw - 32px));
  transform: translateX(-50%) translateY(10px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(23,54,45,.12);
  border-radius: 22px;
  background: rgba(255,253,248,.98);
  box-shadow: 0 22px 55px rgba(23,37,31,.16);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 60;
}
.nav-dropdown-panel a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 12px;
  border-radius: 14px;
  color: var(--green-950);
  background: transparent;
  line-height: 1.25;
  font-size: .91rem;
}
.nav-dropdown-panel a::after { display: none; }
.nav-dropdown-panel a:hover, .nav-dropdown-panel a:focus-visible { background: rgba(197,168,106,.14); color: var(--green-950); }
.nav-dropdown:hover .nav-dropdown-panel, .nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-actions { display: flex; justify-self: end; align-items: center; gap: 10px; flex-wrap: wrap; }
.nav-cta, .nav-call { min-height: 42px; padding: 10px 16px; box-shadow: none; }
.nav-call { background: var(--paper); color: var(--green-950); border-color: var(--line); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: var(--green-950);
  color: #fff;
  font-weight: 750;
  box-shadow: 0 12px 32px rgba(16, 37, 31, 0.2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(16, 37, 31, 0.24); }
.btn.secondary { background: transparent; color: var(--green-950); border-color: var(--line); box-shadow: none; }
.btn.light { background: var(--paper); color: var(--green-950); box-shadow: none; }

.section { padding: 64px 0; }
.section-header { margin-bottom: 28px; }
.section-header h2 { margin: 0; }

.hero { position: relative; overflow: hidden; padding: 44px 0 58px; min-height: calc(100vh - 72px); display: grid; align-items: center; }
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -210px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,120,.26), rgba(231,238,232,0) 66%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr); gap: clamp(56px, 6vw, 86px); align-items: center; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -0.035em; color: var(--green-950); }
h1 { margin: 0 0 24px; font-size: clamp(42px, 6vw, 74px); line-height: 0.98; }
h2 { margin: 0 0 16px; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; }
h3 { margin: 0 0 10px; color: var(--green-950); font-size: 1.08rem; line-height: 1.2; }
p { margin: 0; color: var(--muted); }
.lead { max-width: 660px; font-size: 1.22rem; color: #3b5750; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.cta-actions, .form-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn.call { background: var(--paper); color: var(--green-950); border-color: var(--line); box-shadow: none; }
.service-cta .cta-actions { margin-top: 4px; }
.service-cta .btn.call { border-color: rgba(255,255,255,.5); }
.hero-logo-panel { display: flex; justify-content: flex-end; align-items: center; min-height: clamp(600px, 54vw, 700px); }
.hero-logo-panel img { width: min(560px, 100%); height: clamp(600px, 54vw, 700px); display: block; border-radius: 18px; border: 1px solid var(--line); box-shadow: 0 28px 84px rgba(16, 37, 31, 0.18); background: var(--sand); object-fit: cover; object-position: center top; }

.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.offer-card {
  position: relative;
  isolation: isolate;
  min-height: 220px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,253,248,.98), rgba(243,236,222,.9));
  box-shadow: 0 10px 26px rgba(16,37,31,.06);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.offer-card::before {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(201,166,120,.15);
  transition: transform .28s ease;
  z-index: -1;
}
.offer-card:hover, .offer-card:focus-within { transform: translateY(-8px) scale(1.035); z-index: 5; border-color: rgba(201,166,120,.7); background: var(--paper); box-shadow: var(--shadow); }
.offer-card:hover::before, .offer-card:focus-within::before { transform: scale(1.5); }
.offer-card-link { position: absolute; inset: 0; border: 0; background: transparent; cursor: pointer; color: transparent; z-index: 2; }
.offer-number { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--green-100); display: grid; place-items: center; margin-bottom: 16px; color: var(--green-950); font-weight: 800; transition: background .2s ease, color .2s ease; }
.offer-card:hover .offer-number, .offer-card:focus-within .offer-number { background: var(--gold); color: #fff; }
.offer-summary { font-size: .95rem; color: var(--muted); }
.offer-details { margin-top: 0; max-height: 0; opacity: 0; overflow: hidden; transform: translateY(8px); transition: max-height .38s ease, opacity .24s ease, transform .24s ease, margin-top .24s ease; }
.offer-details p { font-size: .9rem; line-height: 1.48; color: #425f58; margin: 0 0 10px; }
.offer-card:hover .offer-details, .offer-card:focus-within .offer-details { margin-top: 14px; max-height: 620px; opacity: 1; transform: translateY(0); }

.feature-band { background: var(--green-950); color: #fff; border-radius: 18px; padding: 44px; display: grid; grid-template-columns: 1fr .85fr; gap: 34px; align-items: center; box-shadow: var(--shadow); }
.feature-band h2 { color: #fff; }
.feature-band p { color: rgba(255,255,255,.78); }

.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; counter-reset: step; }
.step { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,248,.8); counter-increment: step; }
.step::before { content: counter(step); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; margin-bottom: 14px; background: var(--gold); color: #fff; font-weight: 800; }

.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: stretch; }
.portrait { min-height: 440px; overflow: hidden; border-radius: 18px; border: 1px solid var(--line); background: var(--paper); }
.portrait img { width: 100%; height: 100%; min-height: 440px; display: block; object-fit: cover; object-position: center top; }
.content-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }

.contact-panel { padding: 36px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }
.contact-list { margin-top: 20px; display: grid; gap: 10px; color: var(--muted); }
.form { display: grid; gap: 12px; }
.form-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
input, textarea, select { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--text); }
textarea { min-height: 128px; resize: vertical; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.checkbox input { width: auto; margin-top: 4px; }

.site-footer { margin-top: 42px; padding: 46px 0; background: var(--paper); color: var(--muted); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 30px; align-items: start; }
.footer-brand-mark { width: 86px; display: block; margin-bottom: 16px; padding: 0; background: transparent; box-shadow: none; overflow: visible; }
.footer-logo { width: 86px; height: auto; display: block; }
.site-footer h2, .site-footer h3 { color: var(--green-950); font-family: inherit; letter-spacing: 0; font-size: 1rem; margin: 0 0 12px; }
.site-footer p, .site-footer li { color: var(--muted); font-size: .94rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: var(--green-950); text-decoration: underline; text-decoration-color: rgba(23,54,45,.24); text-underline-offset: 3px; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .88rem; color: var(--muted); }

.legal-page { padding: 70px 0; }
.legal-card { max-width: 900px; padding: 36px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow); }
.legal-card h1 { font-size: clamp(34px, 5vw, 58px); }
.legal-card h2 { margin-top: 34px; font-size: 1.55rem; }
.legal-card p, .legal-card li { color: #4e615a; }
.legal-card ul { padding-left: 22px; }

.eyebrow { margin: 0 0 16px; color: var(--green-800); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: .78rem; }

.service-title-main,
.service-title-sub {
  display: block;
}
.service-title-main {
  font-size: inherit;
  line-height: inherit;
}
.service-title-sub {
  margin-top: 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  font-weight: 650;
  color: #3b5750;
}

.service-hero { padding: 66px 0 48px; background: linear-gradient(160deg, var(--cream), var(--sand)); border-bottom: 1px solid var(--line); }
.service-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr); gap: clamp(28px, 5vw, 66px); align-items: center; }
.service-aside, .service-side-card, .faq-card { border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: 0 16px 48px rgba(16,37,31,.08); }
.service-aside { padding: 28px; }
.service-aside h2, .service-side-card h2 { font-family: inherit; letter-spacing: 0; font-size: 1.1rem; margin-bottom: 14px; }
.service-aside ul, .service-side-card ul { margin: 0; padding-left: 20px; color: #4e615a; display: grid; gap: 10px; }
.service-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 34px; align-items: start; }
.service-main { display: grid; gap: 18px; }
.service-main h2 { margin-top: 18px; }
.service-main p { color: #425f58; font-size: 1.02rem; }
.service-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 8px 0 12px; }
.service-points div { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,248,.78); }
.service-points p { font-size: .95rem; }
.service-side-card { position: sticky; top: 96px; padding: 24px; display: grid; gap: 20px; }
.faq-card { padding: 34px; }
.faq-list { display: grid; gap: 10px; margin-top: 18px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(250,248,241,.68); padding: 16px 18px; }
.faq-list summary { cursor: pointer; color: var(--green-950); font-weight: 800; }
.faq-list p { margin-top: 12px; color: #4e615a; }
.service-cta { border-radius: 18px; padding: 42px; background: var(--green-950); color: #fff; display: grid; gap: 14px; align-items: center; justify-items: start; box-shadow: var(--shadow); }
.service-cta h2 { color: #fff; margin: 0; }
.service-cta p { color: rgba(255,255,255,.78); max-width: 760px; }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid, .feature-band, .about, .contact-grid, .service-hero-grid, .service-layout { grid-template-columns: 1fr; }
  .service-side-card { position: static; }
  .hero-logo-panel { min-height: clamp(520px, 78vw, 680px); justify-content: center; }
  .hero-logo-panel img { width: min(620px, 100%); height: clamp(520px, 78vw, 680px); }
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps, .footer-grid { grid-template-columns: 1fr 1fr; }
  .navbar { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--container)); }
  .navbar { min-height: 64px; grid-template-columns: 1fr; justify-items: center; }
  .brand { justify-self: center; }
  .nav-cta { display: none; }
  .hero { padding: 40px 0 44px; }
  .hero-logo-panel { min-height: 430px; }
  .hero-logo-panel img { width: min(360px, 100%); height: 430px; }
  .offer-grid, .steps, .footer-grid, .form-row, .service-points { grid-template-columns: 1fr; }
  .service-hero { padding: 42px 0 32px; }
  .service-cta, .faq-card { padding: 24px; }
  .offer-card:hover, .offer-card:focus-within { transform: none; }
  .offer-details { margin-top: 14px; max-height: 760px; opacity: 1; transform: none; }
  .feature-band, .contact-panel, .content-card, .legal-card { padding: 24px; }
}
