:root {
  --white: #ffffff;
  --bg-soft: #f6f8f4;
  --ink: #12150f;
  --body: #4d564d;
  --muted: #656e66;
  --line: #e5e9e1;
  --line-strong: #d5dbd0;

  --green: #4d9c2f;
  --green-dark: #3b7a22;
  --green-darker: #2f6119;
  --green-tint: #eef6e8;
  --green-line: #cbe3ba;

  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(18, 30, 16, .05);
  --shadow: 0 2px 4px rgba(18, 30, 16, .04), 0 14px 30px rgba(18, 30, 16, .07);
  --shadow-lg: 0 4px 8px rgba(18, 30, 16, .05), 0 26px 50px rgba(18, 30, 16, .11);
  --maxw: 1160px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { color: var(--ink); line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

h1 { font-family: "Anton", Impact, sans-serif; font-size: clamp(2.5rem, 6vw, 4.3rem); letter-spacing: .005em; text-transform: uppercase; }
h2 { font-family: "Anton", Impact, sans-serif; font-size: clamp(1.85rem, 3.8vw, 2.7rem); letter-spacing: .01em; text-transform: uppercase; }
h3 { font-size: 1.14rem; font-weight: 700; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-dark); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 12px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 6px; }

/* ---------- Logo ---------- */
.logo {
  display: block; flex: none; border-radius: 50%; overflow: hidden;
  background: #0b0d0b; box-shadow: 0 0 0 1px rgba(18, 30, 16, .08);
}
.logo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .95);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(18, 30, 16, .06);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }

.brand { display: flex; align-items: center; gap: .75rem; }
.brand-mark { width: 50px; height: 50px; }
.brand-text strong {
  display: block; font-family: "Anton", Impact, sans-serif; font-size: 1.04rem;
  letter-spacing: .05em; line-height: 1.15; color: var(--ink);
}
.brand-text small { display: block; font-size: .61rem; letter-spacing: .22em; color: var(--muted); text-transform: uppercase; }
.dot { color: var(--green); }

.nav { display: flex; align-items: center; gap: 1.85rem; }
.nav > a:not(.btn) {
  font-size: .93rem; font-weight: 500; color: var(--body); position: relative; padding: .25rem 0;
  transition: color .2s var(--ease);
}
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--green); border-radius: 2px; transition: width .28s var(--ease);
}
.nav > a:not(.btn):hover { color: var(--ink); }
.nav > a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none; width: 46px; height: 42px; border: 1px solid var(--line-strong); border-radius: 12px;
  background: var(--white); cursor: pointer; padding: 11px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: .97rem;
  padding: .85rem 1.55rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.btn-primary { background: var(--green-dark); color: #fff; box-shadow: 0 8px 20px rgba(59, 122, 34, .24); }
.btn-primary:hover { background: var(--green-darker); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(59, 122, 34, .3); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: var(--white); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }
.btn-lg { padding: 1.02rem 2.1rem; font-size: 1.02rem; }
.btn-sm { padding: .6rem 1.2rem; font-size: .88rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3.2rem, 8vw, 6.5rem) 0 clamp(3.5rem, 8vw, 6rem); overflow: hidden; }
.hero-glow {
  position: absolute; inset: -25% -10% auto -10%; height: 120%;
  background:
    radial-gradient(46% 44% at 76% 26%, rgba(77, 156, 47, .13), transparent 66%),
    radial-gradient(40% 38% at 8% 4%, rgba(77, 156, 47, .07), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.eyebrow {
  font-size: .73rem; letter-spacing: .22em; text-transform: uppercase; color: var(--green-dark);
  font-weight: 700; margin-bottom: 1rem;
}
.accent { color: var(--green); }
.lede { font-size: clamp(1.02rem, 1.5vw, 1.15rem); color: var(--body); max-width: 46ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.8rem 0 1.6rem; }

.hero-points { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; padding: 0; margin: 0; }
.hero-points li { font-size: .91rem; color: var(--body); display: flex; align-items: center; gap: .55rem; }
.hero-points li::before {
  content: "\2713"; display: grid; place-items: center; width: 21px; height: 21px; flex: none;
  border-radius: 50%; background: var(--green-tint); color: var(--green-dark); font-size: .7rem; font-weight: 700;
}

.hero-badge { display: grid; place-items: center; }
.badge-ring { position: relative; width: min(100%, 400px); aspect-ratio: 1; display: grid; place-items: center; }
.badge-ring::before {
  content: ""; position: absolute; inset: 2%; border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 156, 47, .22), rgba(77, 156, 47, 0) 68%);
  filter: blur(26px);
}
.badge-ring::after {
  content: ""; position: absolute; inset: -3%; border-radius: 50%;
  border: 1px solid var(--green-line); opacity: .7;
  animation: pulse 6s var(--ease) infinite;
}
.logo-hero {
  position: relative; width: 100%; height: 100%;
  box-shadow: 0 24px 50px rgba(18, 30, 16, .22), 0 0 0 1px rgba(18, 30, 16, .06);
  animation: float 7s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .7; } 50% { transform: scale(1.045); opacity: .25; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Sections ---------- */
.section { padding: clamp(3.4rem, 7.5vw, 6rem) 0; position: relative; }
.section-alt { background: var(--bg-soft); border-block: 1px solid var(--line); }
.section-head { max-width: 680px; margin: 0 auto clamp(2.2rem, 4vw, 3rem); text-align: center; }
.section-sub { color: var(--muted); margin: 0; }

.grid { display: grid; gap: 1.35rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.85rem 1.65rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--green-line); box-shadow: var(--shadow); }
.card p { color: var(--muted); margin: 0; font-size: .96rem; }

.icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--green-tint); color: var(--green-dark);
}
.icon svg { width: 26px; height: 26px; }

.card-cta {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  background: var(--green-tint); border-color: var(--green-line);
}
.card-cta p { color: var(--body); margin-bottom: 1.3rem; }

.feature {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.3rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); border-color: var(--green-line); box-shadow: var(--shadow); }
.feature h3 { margin-bottom: .25rem; font-size: 1.01rem; }
.feature p { margin: 0; color: var(--muted); font-size: .92rem; }
.tick {
  flex: none; width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center;
  background: var(--green-tint); color: var(--green-dark);
}
.tick svg { width: 17px; height: 17px; }

/* ---------- Pricing ---------- */
.pricing-grid { align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--green-line); }
.price-card.featured { border-color: var(--green-line); box-shadow: var(--shadow); }
.ribbon {
  position: absolute; top: 1.5rem; right: 1.5rem; font-size: .67rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--green-dark); background: var(--green-tint); border: 1px solid var(--green-line);
  padding: .32rem .72rem; border-radius: 999px;
}
.price-head h3 { font-family: "Anton", Impact, sans-serif; font-size: 1.55rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: .3rem; }
.price-head p { color: var(--muted); font-size: .93rem; }

.price-list { list-style: none; padding: 0; margin: 1.2rem 0 1rem; border-top: 1px solid var(--line); }
.price-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .95rem 0; border-bottom: 1px solid var(--line);
}
.price-list span { color: var(--body); font-size: .97rem; }
.price-list strong { font-family: "Anton", Impact, sans-serif; font-size: 1.35rem; color: var(--ink); letter-spacing: .02em; white-space: nowrap; }
.price-list .addon span { color: var(--muted); }
.price-list .addon strong { color: var(--green-dark); font-size: 1.15rem; }

.fineprint { color: var(--muted); font-size: .82rem; font-style: italic; margin-bottom: 1.5rem; }
.price-card .btn { margin-top: auto; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 840px; margin-inline: auto;
}
.shot { margin: 0; }
.shot-img {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #eceee9;
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.shot:hover .shot-img { transform: translateY(-4px); border-color: var(--green-line); box-shadow: var(--shadow); }
.shot-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.shot:hover .shot-img img { transform: scale(1.045); }
.shot figcaption { color: var(--muted); font-size: .9rem; padding: .9rem .2rem 0; text-align: center; }
.shot figcaption strong { color: var(--ink); font-weight: 600; }
.gallery-foot { text-align: center; margin: 2rem 0 0; color: var(--muted); font-size: .94rem; }
.gallery-foot a { color: var(--green-dark); font-weight: 600; border-bottom: 1px solid var(--green-line); }
.gallery-foot a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: .75rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item[open], .faq-item:hover { border-color: var(--green-line); box-shadow: var(--shadow); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem; cursor: pointer; font-weight: 600; font-size: 1.01rem; color: var(--ink);
  list-style: none; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 10px; height: 10px; margin-right: .3rem;
  border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: rotate(45deg) translate(-2px, -2px); transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.faq-item[open] summary { color: var(--green-dark); }
.faq-body { padding: 0 1.4rem 1.35rem; animation: faqOpen .32s var(--ease); }
.faq-body p { margin: 0; color: var(--body); font-size: .96rem; }

@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Areas ---------- */
.areas-panel {
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: center;
  background: var(--green-tint); border: 1px solid var(--green-line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.9rem);
}
.areas-panel h2 { margin-bottom: .6rem; }
.areas-panel .section-sub { color: var(--body); }
.areas-panel strong { color: var(--ink); }
.area-chips { list-style: none; display: flex; flex-wrap: wrap; gap: .7rem; padding: 0; margin: 0; justify-content: flex-end; }
.area-chips li {
  border: 1px solid var(--green-line); background: var(--white);
  color: var(--green-dark); padding: .58rem 1.15rem; border-radius: 999px; font-weight: 600; font-size: .92rem;
  box-shadow: var(--shadow-sm);
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: clamp(3.4rem, 7.5vw, 5.5rem) 0; text-align: center;
  background: var(--bg-soft); border-top: 1px solid var(--line);
}
.cta-inner { max-width: 620px; }
.cta-mark { width: 92px; height: 92px; margin: 0 auto 1.4rem; box-shadow: 0 16px 36px rgba(18, 30, 16, .18); }
.cta-inner p { color: var(--body); margin-bottom: 1.8rem; }

/* ---------- 404 ---------- */
.error-page {
  position: relative; overflow: hidden;
  min-height: min(72vh, 720px); display: grid; place-items: center;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}
.error-inner { position: relative; z-index: 1; max-width: 620px; text-align: center; }
.error-code {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(6rem, 20vw, 12rem); line-height: .85; letter-spacing: .02em; margin: 0 0 .15em;
  background: linear-gradient(180deg, var(--green) 15%, var(--green-darker));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: errorIn .5s var(--ease) both;
}
.error-inner h1 { font-size: clamp(1.8rem, 5vw, 2.9rem); margin-bottom: .45em; animation: errorIn .5s var(--ease) .07s both; }
.error-inner .lede { margin-inline: auto; animation: errorIn .5s var(--ease) .14s both; }
.error-inner .hero-actions { justify-content: center; animation: errorIn .5s var(--ease) .21s both; }
.error-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  margin-top: 1.6rem; animation: errorIn .5s var(--ease) .28s both;
}
.error-links a {
  font-size: .89rem; font-weight: 500; color: var(--body);
  border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1rem; background: var(--white);
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.error-links a:hover { border-color: var(--green-line); color: var(--green-dark); transform: translateY(-2px); }

@keyframes errorIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--white); border-top: 1px solid var(--line); padding: 2.6rem 0 1.6rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-mark { width: 46px; height: 46px; }
.footer-brand strong { display: block; font-size: .97rem; color: var(--ink); }
.footer-brand span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-nav a { font-size: .92rem; color: var(--muted); transition: color .2s var(--ease); }
.footer-nav a:hover { color: var(--green-dark); }
.footer-base { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.footer-base p { margin: 0; font-size: .84rem; color: var(--muted); }

/* ---------- Scroll reveal ---------- */
/* Offsets live in custom properties so hover transforms on cards still win. */
.reveal {
  opacity: 0;
  transform: translate3d(var(--rx, 0), var(--ry, 18px), 0) scale(var(--rs, 1));
  filter: blur(2px);
  transition: opacity .26s var(--ease), transform .26s var(--ease), filter .26s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-left { --rx: -24px; --ry: 0px; }
.reveal-right { --rx: 24px; --ry: 0px; }
.reveal-zoom { --ry: 0px; --rs: .97; filter: blur(3px); }
.reveal.visible { opacity: 1; --rx: 0px; --ry: 0px; --rs: 1; filter: none; }

.shot .shot-img img { transform: scale(1.04); }
.shot.visible .shot-img img { transform: scale(1); }
.shot.visible:hover .shot-img img { transform: scale(1.05); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-badge { order: 1; }
  .badge-ring { width: min(70%, 310px); }
  .lede { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .areas-panel { grid-template-columns: 1fr; text-align: center; }
  .area-chips { justify-content: center; }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 78px 0 auto; flex-direction: column; align-items: stretch; gap: .3rem;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(18, 30, 16, .1);
    padding: 1rem 1.25rem 1.6rem;
    transform: translateY(-14px); opacity: 0; visibility: hidden;
    transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
    max-height: calc(100dvh - 78px); overflow-y: auto;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav > a:not(.btn) { padding: .85rem .2rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-cta { margin-top: .9rem; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 380px; }
  .btn-lg { width: 100%; }
  .hero-actions { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
