:root {
  --green-950: #12271e;
  --green-900: #183527;
  --green-800: #244735;
  --leaf: #7ea13a;
  --moss: #a5bd67;
  --cream: #f7f1e7;
  --sand: #e8d5bd;
  --clay: #b9855c;
  --ink: #1b211d;
  --muted: #6e746c;
  --line: rgba(27, 33, 29, 0.12);
  --shadow: 0 24px 70px rgba(18, 39, 30, 0.18);
  --radius: 8px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 8%, rgba(126, 161, 58, 0.12), transparent 28rem),
    linear-gradient(180deg, #fbf7ef 0%, var(--cream) 48%, #efe1cf 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 88px;
  padding: 0.64rem clamp(1rem, 4vw, 3rem);
  color: var(--cream);
  background: rgba(16, 32, 25, 0.88);
  border-bottom: 1px solid rgba(247, 241, 231, 0.12);
  box-shadow: 0 10px 30px rgba(18, 39, 30, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(188px, 17vw, 248px);
  height: 68px;
  overflow: visible;
}

.brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: 50% 50%;
}

.brand-footer img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 0.42rem;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(247, 241, 231, 0.22);
  border-radius: var(--radius);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.main-nav {
  position: fixed;
  top: 88px;
  right: 1rem;
  left: 1rem;
  display: none;
  padding: 1rem;
  background: var(--green-950);
  border: 1px solid rgba(247, 241, 231, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-header.is-scrolled {
  background: rgba(16, 32, 25, 0.97);
}

.main-nav.is-open {
  display: grid;
}

.main-nav a {
  padding: 0.9rem 0.4rem;
  color: rgba(247, 241, 231, 0.86);
  border-bottom: 1px solid rgba(247, 241, 231, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-contact {
  position: fixed;
  right: 0;
  top: 48%;
  z-index: 25;
  display: grid;
  grid-template-columns: 30px auto;
  gap: 0.1rem 0.55rem;
  align-items: center;
  padding: 0.78rem 0.9rem 0.78rem 0.78rem;
  color: var(--green-950);
  background: var(--sand);
  border: 1px solid rgba(18, 39, 30, 0.16);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: 0 18px 48px rgba(18, 39, 30, 0.24);
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-contact:hover {
  background: #f0ddc2;
  transform: translateY(-50%) translateX(-4px);
}

.floating-contact span {
  grid-column: 2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-contact strong {
  grid-column: 2;
  font-size: 0.9rem;
  line-height: 1;
}

.whatsapp-icon {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  display: block;
  fill: #25d366;
  filter: drop-shadow(0 1px 0 rgba(18, 39, 30, 0.16));
}

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 8.5rem;
  color: var(--cream);
  background: var(--green-950);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.88) contrast(1.05) brightness(0.95);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 25, 19, 0.96), rgba(18, 39, 30, 0.76) 45%, rgba(18, 39, 30, 0.18)),
    linear-gradient(0deg, rgba(12, 25, 19, 0.78), transparent 48%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(12, 25, 19, 0.9));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.15rem;
  font-size: clamp(3.15rem, 10.2vw, 6.15rem);
}

h2 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 7vw, 4.6rem);
}

h3 {
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 640px;
  color: rgba(247, 241, 231, 0.9);
  font-size: clamp(1.04rem, 2.6vw, 1.28rem);
  line-height: 1.65;
}

.hero-filter {
  max-width: 620px;
  margin-top: 0.9rem;
  color: rgba(247, 241, 231, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.86rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--green-950);
  background: linear-gradient(180deg, #f1ddc0, var(--sand));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.button-secondary {
  color: var(--cream);
  border-color: rgba(247, 241, 231, 0.32);
  background: rgba(247, 241, 231, 0.06);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 760px;
  margin-top: 1.25rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.5rem 0.72rem;
  color: rgba(247, 241, 231, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(247, 241, 231, 0.2);
  border-radius: var(--radius);
  background: rgba(12, 25, 19, 0.42);
  backdrop-filter: blur(10px);
}

.split,
.contact-grid,
.method-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
}

.intro {
  background: #fffaf2;
}

.intro-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.intro-copy p {
  max-width: 620px;
}

.intro-filter {
  margin-top: 1.25rem;
  padding-left: 1rem;
  color: var(--green-900);
  font-weight: 700;
  border-left: 3px solid var(--leaf);
}

.intro-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius);
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: 48% 55%;
  filter: saturate(0.9) contrast(1.03) brightness(0.98);
}

.intro-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 39, 30, 0.76));
}

.intro-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  color: var(--cream);
}

.intro-photo strong,
.intro-photo span {
  display: block;
}

.intro-photo strong {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.intro-photo span {
  color: rgba(247, 241, 231, 0.78);
  line-height: 1.55;
}

.intro p,
.about-copy p,
.contact p,
.method-copy p {
  font-size: 1.04rem;
}

.section-heading {
  margin-bottom: 2rem;
}

.service-feature-list {
  display: grid;
  gap: 1rem;
}

.service-feature {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 18px 44px rgba(18, 39, 30, 0.08);
}

.service-feature-media {
  min-height: 240px;
  background: var(--green-900);
}

.service-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(0.98);
}

.service-feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(1.35rem, 4vw, 2.6rem);
}

.service-feature-copy span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--leaf);
  font-weight: 800;
}

.service-feature-copy h3 {
  max-width: 500px;
  margin-bottom: 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-tags small {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.42rem 0.62rem;
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(18, 39, 30, 0.12);
  border-radius: var(--radius);
  background: rgba(232, 213, 189, 0.4);
}

.method {
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(18, 39, 30, 0.96), rgba(18, 39, 30, 0.92)),
    repeating-linear-gradient(90deg, rgba(247, 241, 231, 0.07) 0 1px, transparent 1px 96px);
}

.method p {
  color: rgba(247, 241, 231, 0.74);
}

.method-statement {
  margin-top: 1.25rem;
  padding: 1rem;
  color: rgba(247, 241, 231, 0.86);
  border: 1px solid rgba(247, 241, 231, 0.14);
  border-radius: var(--radius);
  background: rgba(247, 241, 231, 0.05);
}

.method-steps {
  display: grid;
  gap: 0.75rem;
}

.method-media {
  display: grid;
  gap: 1rem;
}

.method-media video {
  width: 100%;
  min-height: 280px;
  max-height: 420px;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(0.96);
  border: 1px solid rgba(247, 241, 231, 0.14);
  border-radius: var(--radius);
  background: var(--green-900);
}

.method-steps div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  min-height: 96px;
  padding: 1rem;
  border: 1px solid rgba(247, 241, 231, 0.14);
  border-radius: var(--radius);
  background: rgba(247, 241, 231, 0.04);
}

.method-steps strong {
  color: var(--moss);
}

.method-steps em {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--cream);
  font-style: normal;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-800);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(0.98);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent, rgba(18, 39, 30, 0.68)),
    radial-gradient(circle at 30% 20%, rgba(247, 241, 231, 0.34), transparent 10rem);
}

.gallery-item figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.about {
  background: #fffaf2;
}

.about-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 4rem);
  text-align: center;
}

.about-grid h2,
.about-grid .eyebrow,
.about-copy {
  margin-left: auto;
  margin-right: auto;
}

.about-copy {
  max-width: 720px;
}

.contact {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.78), rgba(247, 241, 231, 0.98)),
    var(--cream);
}

.contact-criteria {
  display: grid;
  gap: 0.65rem;
  max-width: 560px;
  margin-top: 1.5rem;
}

.contact-criteria span {
  position: relative;
  padding-left: 1.05rem;
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
}

.contact-criteria span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--leaf);
}

.founders-photo {
  position: relative;
  width: min(100%, 640px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-900);
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}

.founders-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.9) contrast(1.02) brightness(0.98);
}

.founders-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.9rem 1rem;
  color: var(--cream);
  background: rgba(18, 39, 30, 0.78);
  border: 1px solid rgba(247, 241, 231, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 22px 58px rgba(18, 39, 30, 0.14);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--green-950);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(27, 33, 29, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.94);
  color: var(--ink);
  padding: 0.88rem 0.95rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(126, 161, 58, 0.34);
  border-color: rgba(126, 161, 58, 0.72);
}

textarea {
  resize: vertical;
}

.full,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.site-footer {
  padding: clamp(2.6rem, 5.5vw, 4.4rem) 0;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(18, 39, 30, 0.98), rgba(14, 30, 23, 1)),
    var(--green-950);
  border-top: 1px solid rgba(247, 241, 231, 0.12);
}

.footer-inner {
  display: grid;
  gap: 1.45rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.footer-brand-block {
  display: grid;
  justify-items: center;
  width: 100%;
  margin-bottom: 0.35rem;
}

.brand-footer {
  color: var(--cream);
  width: clamp(230px, 27vw, 340px);
  height: auto;
  max-height: none;
  min-width: 0;
  display: block;
  overflow: visible;
}

.brand-footer img {
  width: 100%;
  height: auto;
  max-height: 220px;
  display: block;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  color: rgba(247, 241, 231, 0.72);
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.72rem 1rem;
  width: min(100%, 720px);
  padding-top: 1.05rem;
  border-top: 1px solid rgba(247, 241, 231, 0.1);
}

.footer-nav a {
  color: rgba(247, 241, 231, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--cream);
}

@media (max-width: 719px) {
  .site-header {
    min-height: 78px;
    padding: 0.5rem 0.85rem;
  }

  .brand {
    width: 166px;
    height: 60px;
  }

  .main-nav {
    top: 78px;
  }

  .hero {
    min-height: 94svh;
    padding-top: 6.6rem;
  }

  .hero-bg img {
    object-position: 58% 50%;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(12, 25, 19, 0.94), rgba(18, 39, 30, 0.78)),
      linear-gradient(0deg, rgba(12, 25, 19, 0.84), transparent 54%);
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-filter {
    font-size: 0.96rem;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    min-height: 34px;
    justify-content: center;
    text-align: center;
  }

  .floating-contact {
    right: 1rem;
    bottom: 1rem;
    top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.82rem 1rem;
    border: 1px solid rgba(18, 39, 30, 0.16);
    border-radius: 999px;
    transform: none;
    writing-mode: horizontal-tb;
  }

  .floating-contact:hover {
    transform: translateY(-2px);
  }

  .floating-contact span,
  .floating-contact strong {
    font-size: 0.86rem;
  }

  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }

  .intro-photo,
  .intro-photo img {
    min-height: 300px;
  }

  .service-feature-media,
  .service-feature-media img,
  .gallery-item {
    min-height: 260px;
  }

  .founders-photo {
    width: min(100%, 520px);
    aspect-ratio: 4 / 4.6;
  }

  .founders-photo img {
    object-position: 50% 18%;
  }

  .footer-inner,
  .footer-brand-block,
  .footer-nav {
    justify-items: center;
    text-align: center;
  }

  .brand-footer {
    width: min(280px, 76vw);
    height: auto;
  }

  .brand-footer img {
    max-height: 180px;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.25rem;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .main-nav a {
    padding: 0;
    border: 0;
    font-size: 0.92rem;
  }

  .split,
  .contact-grid,
  .method-grid,
  .intro-grid,
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .service-feature {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 420px;
  }

  .service-feature:nth-child(even) .service-feature-media {
    order: 2;
  }

  .service-feature-media,
  .service-feature-media img {
    min-height: 420px;
  }

  .method-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    align-items: center;
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
  }

  .gallery-item:first-child {
    min-height: 460px;
  }

}
