:root {
  --ink: #17201c;
  --muted: #68726c;
  --paper: #f7f7f2;
  --paper-deep: #ece9df;
  --surface: #ffffff;
  --moss: #6b7d31;
  --leaf: #8da541;
  --stone: #d7d3c8;
  --clay: #a65f3e;
  --charcoal: #111716;
  --line: rgba(23, 32, 28, 0.14);
  --shadow: 0 24px 70px rgba(17, 23, 22, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 60;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), #d7f28b);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.header-solid {
  color: var(--ink);
  background: rgba(247, 247, 242, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  min-height: 74px;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.brand img {
  width: 148px;
  height: auto;
}

.brand .logo-dark {
  display: none;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand,
.site-header.header-solid .brand {
  filter: none;
}

.site-header.is-scrolled .brand .logo-light,
.site-header.is-open .brand .logo-light,
.site-header.header-solid .brand .logo-light {
  display: none;
}

.site-header.is-scrolled .brand .logo-dark,
.site-header.is-open .brand .logo-dark,
.site-header.header-solid .brand .logo-dark {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 13, 0.82) 0%, rgba(10, 14, 13, 0.46) 42%, rgba(10, 14, 13, 0.22) 100%),
    url("assets/hero-garden.jpeg") center / cover;
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(17, 23, 22, 0), rgba(17, 23, 22, 0.58));
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 168px 0 126px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--moss);
}

.hero h1,
h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.4rem, 11vw, 9.2rem);
  font-weight: 700;
  line-height: 0.9;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 7.4rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.2;
}

p {
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(17, 23, 22, 0.16);
}

.button.primary {
  color: #111716;
  background: var(--leaf);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.button.dark {
  color: #fff;
  background: var(--charcoal);
}

.button.whatsapp {
  color: #102016;
  background: #37d86a;
}

.button.whatsapp:hover,
.button.whatsapp:focus-visible {
  background: #52e27f;
}

.brief .button.primary {
  width: 100%;
  color: #fff;
  background: var(--moss);
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 40px));
  margin: -70px auto 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(17, 23, 22, 0.72);
  backdrop-filter: blur(18px);
}

.hero-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.hero-strip span:last-child {
  border-right: 0;
}

.section-pad {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0;
}

.preview-suite {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.preview-suite h2 {
  font-size: clamp(1.7rem, 3.1vw, 3.1rem);
}

.preview-suite__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.preview-suite__cta {
  width: fit-content;
  margin-top: 24px;
}

.preview-suite__grid a {
  min-height: 86px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, background 180ms ease;
}

.preview-suite__grid a:hover {
  transform: translateY(-3px);
  background: #fff;
}

.intro-grid,
.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.intro-grid--visual {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.9fr);
  align-items: center;
}

.intro-text {
  margin-top: 28px;
}

.intro-text p,
.coverage p,
.process-text p,
.brief-text p,
.preview-page p,
.teaser-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack__main {
  height: 430px;
}

.image-stack__float {
  position: absolute;
  right: -18px;
  bottom: 0;
  width: 48%;
  height: 220px;
  border: 8px solid var(--paper);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(17, 23, 22, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(17, 23, 22, 0.14);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 88px);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.process-list span {
  color: var(--clay);
  font-weight: 900;
}

.process-list p {
  grid-column: 2;
  margin: -6px 0 0;
  color: var(--muted);
}

.showcase {
  position: relative;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 4vw, 54px);
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(141, 165, 65, 0.18), transparent 28%),
    var(--charcoal);
}

.showcase-text {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
}

.showcase-text h2 {
  max-width: 850px;
}

.showcase-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(210px, 28vw));
  gap: 16px;
  margin: 0 auto;
}

.showcase-grid--expanded {
  grid-template-columns: 1.08fr 0.82fr 0.82fr;
  grid-template-rows: repeat(2, minmax(220px, 24vw));
}

.showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.showcase-grid .wide {
  grid-row: span 2;
}

.coverage {
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.coverage-text p {
  margin-top: 24px;
}

.coverage-visual {
  position: relative;
}

.coverage-visual img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.coverage-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(17, 23, 22, 0.72);
  backdrop-filter: blur(14px);
}

.coverage-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coverage-note strong {
  display: block;
  line-height: 1.4;
}

.brief {
  padding-top: clamp(76px, 8vw, 116px);
}

.brief-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 0.74fr);
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.brief-form {
  display: grid;
  gap: 16px;
}

.brief-form label,
.brief-form legend {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.brief-form select {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfbf7;
}

.brief-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brief-form legend {
  padding: 0 6px;
}

.brief-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.brief-output {
  grid-column: 1 / -1;
  min-height: 70px;
  padding: 18px 20px;
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  color: var(--ink);
  background: #f4f1e8;
  line-height: 1.6;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 44px 20px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  background: var(--charcoal);
}

.site-footer img {
  width: 138px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 900;
  text-decoration-color: var(--leaf);
  text-underline-offset: 6px;
}

.page-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 160px 0 64px;
  color: #fff;
  background: var(--charcoal);
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 13, 0.86), rgba(10, 14, 13, 0.34)), var(--page-image) center / cover no-repeat;
  transform: scale(1.02);
}

.page-hero__inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.page-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.preview-page {
  background: var(--paper);
}

.teaser-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.teaser-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(17, 23, 22, 0.08);
}

.teaser-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.teaser-card div {
  padding: 20px;
}

.gated-preview {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  min-height: 620px;
  display: grid;
  align-items: start;
  margin: 0 auto clamp(72px, 8vw, 116px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.gated-preview__ghost {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: clamp(22px, 4vw, 46px);
  opacity: 0.45;
  filter: blur(7px);
  user-select: none;
  pointer-events: none;
}

.ghost-line,
.ghost-block,
.ghost-image {
  border-radius: 8px;
  background: linear-gradient(90deg, #e7e3d8, #f5f3ed, #e7e3d8);
}

.ghost-line {
  height: 22px;
  margin-bottom: 14px;
}

.ghost-line.short {
  width: 64%;
}

.ghost-block {
  height: 170px;
}

.ghost-image {
  min-height: 260px;
}

.gated-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(180deg, rgba(247, 247, 242, 0.18), rgba(247, 247, 242, 0.94) 72%);
}

.gated-card {
  width: min(620px, 100%);
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.gated-card p {
  color: var(--muted);
}

.gated-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gated-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible,
body:not(.js-ready) .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .service-grid,
  .teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .intro-grid--visual,
  .coverage,
  .process,
  .brief-panel,
  .preview-suite,
  .gated-preview__ghost {
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .image-stack {
    min-height: 460px;
  }

  .image-stack__main {
    height: 380px;
  }

  .showcase-grid--expanded {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    width: 112px;
    min-height: 58px;
  }

  .brand img {
    width: 112px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 80px 16px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(247, 247, 242, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(10, 14, 13, 0.48) 0%, rgba(10, 14, 13, 0.78) 48%, rgba(10, 14, 13, 0.9) 100%),
      url("assets/hero-garden.jpeg") center / cover;
  }

  .hero-inner {
    width: min(100% - 32px, var(--max));
    padding: 138px 0 104px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 13.4vw, 4.6rem);
  }

  .hero-strip {
    grid-template-columns: 1fr 1fr;
    width: min(100% - 32px, var(--max));
    margin-bottom: 18px;
  }

  .hero-strip span {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-strip span:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-strip span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section-pad,
  .teaser-section,
  .gated-preview {
    width: min(100% - 32px, var(--max));
  }

  .preview-suite__grid,
  .service-grid,
  .teaser-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
  }

  .service-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .showcase-grid,
  .showcase-grid--expanded {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .showcase-grid .wide,
  .showcase-grid img {
    min-height: 260px;
  }

  .page-hero {
    min-height: 68svh;
    padding-top: 130px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .brief-form fieldset {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .gated-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .service-card {
    display: block;
  }

  .process-list li,
  .process-list p {
    grid-column: auto;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .brief-panel,
  .gated-card {
    padding: 22px;
  }

  .image-stack {
    min-height: auto;
  }

  .image-stack__main,
  .image-stack__float {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 1.15 / 1;
    margin-top: 14px;
    border: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
