:root {
  --ink: #07140f;
  --forest: #0d2f22;
  --leaf: #178a54;
  --leaf-soft: #2db873;
  --mint: #dff3e8;
  --mist: #eef6f1;
  --fog: #f7fbf8;
  --gold: #f0a202;
  --gold-deep: #d48900;
  --line: rgba(7, 20, 15, 0.1);
  --white: #ffffff;
  --muted: #506057;
  --shadow: 0 28px 70px rgba(7, 20, 15, 0.16);
  --shadow-soft: 0 12px 40px rgba(7, 20, 15, 0.08);
  --max: 1180px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 10px;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--fog);
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font: inherit; background: none; }
::selection { background: rgba(23, 138, 84, .25); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.wrap {
  width: min(100% - 2.2rem, var(--max));
  margin-inline: auto;
}

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding: 0.85rem 0;
  background: rgba(244, 247, 245, 0.94);
  backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid rgba(7, 20, 15, 0.08);
  box-shadow: 0 6px 24px rgba(7, 20, 15, 0.06);
  color: var(--ink);
  transition: padding .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.nav.scrolled {
  padding: .65rem 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 32px rgba(7, 20, 15, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, var(--leaf-soft), var(--forest));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(23, 138, 84, .4);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 60%;
  height: 80%;
  background: rgba(255,255,255,.25);
  transform: rotate(25deg);
}
.nav-links {
  display: flex;
  gap: 1.55rem;
  align-items: center;
  font-weight: 600;
  font-size: .9rem;
}
.nav-links > a:not(.nav-cta) {
  color: var(--ink);
  opacity: .72;
  transition: opacity .25s, color .25s;
  position: relative;
}
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -4px;
  height: 2px;
  background: var(--leaf);
  transition: right .3s;
}
.nav-links > a:not(.nav-cta):hover { opacity: 1; color: var(--leaf); }
.nav-links > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: .72rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  transition: transform .25s, background .25s, box-shadow .25s;
  box-shadow: 0 8px 24px rgba(7,20,15,.2);
}
.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--leaf);
  box-shadow: 0 12px 28px rgba(23,138,84,.35);
}
.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
  border-radius: 2px;
  transition: .25s;
}

/* HERO - content left, image right */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  color: #fff;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 60% at 10% 80%, rgba(23, 138, 84, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 40% 10%, rgba(240, 162, 2, 0.12), transparent 50%),
    linear-gradient(160deg, #06140f 0%, #0a241a 55%, #0d2f22 100%);
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7.5rem clamp(1.4rem, 5vw, 4.5rem) 4rem;
  max-width: none;
  width: min(100%, 36rem);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  justify-self: start;
}
.hero-media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 5rem 1.5rem 3rem;
  min-height: 100svh;
  isolation: isolate;
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-media img {
  width: min(92%, 460px);
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: 55% center;
  border: 6px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 14px rgba(23, 138, 84, 0.18),
    0 0 0 28px rgba(240, 162, 2, 0.08),
    0 28px 70px rgba(0, 0, 0, 0.4);
  animation: heroIn 1.1s .2s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes heroIn {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1); }
}
.hero-media::before {
  content: "";
  position: absolute;
  width: min(78%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 138, 84, 0.45), transparent 68%);
  filter: blur(28px);
  z-index: -1;
  animation: glowPulse 5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes glowPulse {
  from { opacity: 0.55; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1.08); }
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: floatOrb 10s ease-in-out infinite;
}
.hero-orb.a {
  width: 280px; height: 280px;
  background: rgba(23,138,84,.4);
  left: 8%; bottom: 8%;
}
.hero-orb.b {
  width: 200px; height: 200px;
  background: rgba(240,162,2,.22);
  left: 35%; top: 18%;
  animation-delay: -4s;
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-28px); }
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
  animation: rise 1s ease both;
}
.hero-chip i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--leaf-soft);
  box-shadow: 0 0 0 4px rgba(45,184,115,.25);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(45,184,115,0); }
}
.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: .94;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
  animation: rise 1s .08s ease both;
  background: linear-gradient(180deg, #fff 40%, rgba(255,255,255,.72));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
  max-width: 24ch;
  margin-bottom: .9rem;
  color: rgba(255,255,255,.95);
  animation: rise 1s .16s ease both;
}
.hero-lead {
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  color: rgba(255,255,255,.78);
  max-width: 36ch;
  margin-bottom: 1.8rem;
  animation: rise 1s .24s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  animation: rise 1s .32s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1a1200;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 14px 36px rgba(240,162,2,.35);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(240,162,2,.45);
}
.btn-primary:hover::before { transform: translateX(120%); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  padding: 1rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: background .25s, border-color .25s, transform .25s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

/* MARQUEE TRUST */
.marquee {
  background: var(--ink);
  color: #fff;
  padding: 1.1rem 0;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  white-space: nowrap;
  opacity: .88;
}
.marquee-track span::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(240,162,2,.6);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* SECTIONS */
section { padding: 5.5rem 0; position: relative; }
.about,
.services,
.process,
.why,
.area,
.faq,
.cta {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}
.section-head {
  max-width: 40rem;
  margin-bottom: 2.8rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: .75rem;
}
.section-head p { color: var(--muted); font-size: 1.02rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: .75rem;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 2px;
  background: var(--leaf);
  border-radius: 2px;
}

/* ABOUT */
.about {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(23,138,84,.1), transparent 45%),
    linear-gradient(180deg, var(--fog), var(--mint));
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.5rem;
  align-items: center;
}
.about-collage {
  position: relative;
  min-height: 480px;
}
.about-main,
.about-side {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-main {
  position: absolute;
  inset: 0 18% 12% 0;
  z-index: 1;
}
.about-main img,
.about-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-side {
  position: absolute;
  width: 48%;
  aspect-ratio: 3/4;
  right: 0;
  bottom: 0;
  z-index: 2;
  border: 5px solid var(--fog);
  animation: floatSide 7s ease-in-out infinite;
}
@keyframes floatSide {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.about-badge {
  position: absolute;
  left: 8%;
  bottom: 0;
  z-index: 3;
  background: var(--ink);
  color: #fff;
  padding: 1.1rem 1.25rem;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow);
  max-width: 170px;
  line-height: 1.25;
}
.about-badge strong {
  display: block;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin-bottom: .15rem;
}
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.about-copy p { color: var(--muted); margin-bottom: 1rem; }
.about-points {
  display: grid;
  gap: .85rem;
  margin-top: 1.6rem;
}
.about-points li {
  list-style: none;
  display: flex;
  gap: .85rem;
  align-items: center;
  font-weight: 600;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: transform .25s, box-shadow .25s;
}
.about-points li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-soft);
}
.about-points li::before {
  content: "✓";
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--leaf);
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* SERVICES GRID */
.services {
  position: relative;
  background: var(--white);
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  right: -180px; top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,138,84,.08), transparent 70%);
  pointer-events: none;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  min-height: 280px;
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s;
  box-shadow: 0 4px 20px rgba(7,20,15,.06);
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.service:hover img { transform: scale(1.1); }
.service::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,16,11,.05) 0%, rgba(5,16,11,.55) 50%, rgba(5,16,11,.92) 100%);
}
.service-num {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  opacity: .55;
  letter-spacing: .08em;
}
.service-body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.35rem;
}
.service h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: .35rem;
}
.service p {
  font-size: .86rem;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
}

/* PROCESS */
.process {
  background:
    linear-gradient(180deg, var(--mint), var(--fog));
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--leaf), transparent);
  opacity: .35;
}
.step {
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.6rem 1.4rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform .35s, box-shadow .35s;
  position: relative;
}
.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.step-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--leaf-soft), var(--forest));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 14px 30px rgba(23,138,84,.3);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: .45rem;
}
.step p { color: var(--muted); font-size: .92rem; }

/* WHY */
.why {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.why::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  left: -120px; bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,138,84,.35), transparent 70%);
  pointer-events: none;
}
.why .section-head p { color: rgba(255,255,255,.65); }
.why .eyebrow { color: var(--leaf-soft); }
.why .eyebrow::before { background: var(--leaf-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}
.why-item {
  padding: 1.7rem 1.5rem;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .3s, transform .3s, border-color .3s;
}
.why-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(45,184,115,.35);
  transform: translateY(-4px);
}
.why-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  background: linear-gradient(180deg, var(--gold), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: .9rem;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
}
.why-item p { color: rgba(255,255,255,.68); font-size: .95rem; }

/* AREA */
.area {
  background:
    linear-gradient(180deg, var(--fog), var(--mint));
}
.area-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.2rem;
  align-items: stretch;
}
.area-copy {
  padding: 2rem;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(7,20,15,.94), rgba(13,47,34,.9)),
    url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=1000&q=70") center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.area-copy .eyebrow { color: #9be0b8; }
.area-copy .eyebrow::before { background: #9be0b8; }
.area-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: .8rem;
}
.area-copy > p { color: rgba(255,255,255,.75); margin-bottom: 1.4rem; }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.area-list span {
  border: 1px solid rgba(255,255,255,.18);
  padding: .5rem .95rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  transition: background .25s, transform .25s;
}
.area-list span:hover {
  background: rgba(45,184,115,.25);
  transform: translateY(-2px);
}
.address-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.7rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.address-panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: .7rem;
}
.address-panel > p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: .95rem;
}
.address-panel .btn-primary {
  align-self: flex-start;
  margin-bottom: 1.2rem;
  color: #1a1200;
}
.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/11;
  background: #dfece5;
  margin-top: auto;
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0;
}

/* FAQ */
.faq {
  background: var(--white);
}
.faq-list { display: grid; gap: .9rem; max-width: 780px; }
.faq-item {
  background: var(--fog);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open],
.faq-item:hover {
  border-color: rgba(23,138,84,.35);
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.35rem;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--leaf);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.faq-item[open] summary::after {
  content: "-";
  background: var(--leaf);
  color: #fff;
  transform: rotate(180deg);
}
.faq-item p {
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
}

/* CTA */
.cta {
  padding: 5.5rem 0;
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5,16,11,.92), rgba(13,47,34,.78));
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.04em;
  margin-bottom: .8rem;
}
.cta p {
  color: rgba(255,255,255,.8);
  max-width: 34rem;
  margin: 0 auto 1.7rem;
  font-size: 1.05rem;
}

/* FOOTER */
footer {
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(23, 138, 84, 0.18), transparent 55%),
    #04100b;
  color: rgba(255,255,255,.7);
  padding: 3.4rem 0 1.8rem;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.15fr;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}
footer .brand { color: #fff; margin-bottom: .85rem; }
footer .brand-blurb {
  max-width: 34ch;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  transition: background .25s, border-color .25s, transform .25s, color .25s;
}
.footer-social a:hover {
  background: rgba(23, 138, 84, .35);
  border-color: rgba(45, 184, 115, .45);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
footer h4 {
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: .55rem;
}
footer h4 svg {
  width: 18px;
  height: 18px;
  fill: var(--leaf-soft);
  flex-shrink: 0;
}
footer ul { list-style: none; display: grid; gap: .65rem; }
footer a { transition: color .2s; }
footer a:hover { color: var(--leaf-soft); }
.footer-services li a,
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  line-height: 1.45;
}
.footer-icon {
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  flex-shrink: 0;
  fill: var(--leaf-soft);
  opacity: .9;
}
.footer-contact a {
  color: rgba(255,255,255,.85);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  opacity: .8;
  align-items: center;
}
.footer-bottom-meta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.footer-bottom-meta svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}
.footer-credit {
  color: rgba(255,255,255,.65);
}
.footer-credit a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(45, 184, 115, .45);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.footer-credit a:hover {
  color: var(--leaf-soft);
  border-color: var(--leaf-soft);
}

/* FLOAT CTA */
.float-cta {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(7,20,15,.25);
  transition: transform .25s, box-shadow .25s;
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
}
.float-btn.call {
  background: linear-gradient(145deg, var(--leaf-soft), var(--forest));
}
.float-btn svg { width: 22px; height: 22px; fill: currentColor; }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal.in { opacity: 1; transform: none; }

/* MOBILE */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    order: 1;
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding: 7rem 1.4rem 2.5rem;
    justify-self: stretch;
  }
  .hero-media {
    order: 2;
    min-height: auto;
    padding: 0.5rem 1.4rem 3.2rem;
  }
  .hero-media img {
    width: min(78%, 300px);
  }
  .hero-media::before {
    width: min(70%, 280px);
    background: radial-gradient(circle, rgba(23, 138, 84, 0.45), transparent 68%);
    filter: blur(28px);
  }
  .hero-orb.b { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service { min-height: 260px; }
  .about-grid, .area-grid, .why-grid, .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-collage { min-height: 380px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + .5rem);
    right: 1.1rem;
    left: 1.1rem;
    background: rgba(247,251,248,.97);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.1rem;
    box-shadow: var(--shadow);
    align-items: stretch;
    gap: .9rem;
  }
  .nav-links.open .nav-cta { text-align: center; }
  .menu-btn { display: inline-flex; }
  .service-grid { grid-template-columns: 1fr; }
  .service { min-height: 240px; }
  .hero-content { padding: 6.5rem 1.2rem 2.2rem; }
  .hero-media { padding: 0.2rem 1.2rem 2.8rem; }
  .hero-media img { width: min(72%, 260px); }
  .hero-brand { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  section { padding: 3.8rem 0; }
  .about-collage { min-height: 340px; }
  .about-main { inset: 0 12% 18% 0; }
  .about-badge { left: 4%; max-width: 140px; padding: .9rem 1rem; }
  .about-badge strong { font-size: 1.4rem; }
  .float-cta { right: .9rem; bottom: .9rem; }
}
