:root {
  --brand: #123e27;
  --brand-dark: #0d2e1d;
  --brand-soft: #eaf2ed;
  --brand-soft-2: #f4f8f5;
  --white: #ffffff;
  --text: #15211a;
  --muted: #5a675f;
  --line: rgba(18, 62, 39, 0.12);
  --line-strong: rgba(18, 62, 39, 0.22);
  --shadow-sm: 0 10px 24px rgba(18, 62, 39, 0.06);
  --shadow: 0 20px 50px rgba(18, 62, 39, 0.08);
  --shadow-lg: 0 26px 70px rgba(18, 62, 39, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-body: "Inter", sans-serif;
  --font-display: "Racing Sans One", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #f7faf8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  border: 0;
  background: none;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 98px;
  padding: 14px 0;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  flex: 0 0 auto;
  padding: 6px 0;
}

.brand-logo {
  width: auto;
  max-width: min(360px, 38vw);
  max-height: 60px;
  object-fit: contain;
  transform: translateY(2px);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  color: #2a392f;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.38rem;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  box-shadow: var(--shadow-sm);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand);
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.3rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--brand);
  color: var(--white);
  border: 1px solid var(--brand);
  box-shadow: 0 12px 30px rgba(18, 62, 39, 0.16);
}

.btn-solid:hover,
.btn-solid:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(18, 62, 39, 0.2);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(18, 62, 39, 0.05);
}

.btn-light {
  background: var(--white);
  color: var(--brand);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: #f7faf8;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

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

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--brand);
}

.hero-text {
  margin: 0 0 1.75rem;
  max-width: 60ch;
  font-size: 1.06rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: #314036;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  display: flex;
}

.media-placeholder {
  width: 100%;
  min-height: 430px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(18, 62, 39, 0.07), rgba(18, 62, 39, 0.02)),
    var(--white);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.media-placeholder::before,
.media-placeholder::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  background: rgba(18, 62, 39, 0.06);
  filter: blur(10px);
  z-index: -1;
}

.media-placeholder::before {
  width: 240px;
  height: 240px;
  top: -2rem;
  right: -2rem;
}

.media-placeholder::after {
  width: 180px;
  height: 180px;
  bottom: -1rem;
  left: -1rem;
}

.media-placeholder span {
  color: var(--muted);
  font-weight: 600;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--brand);
}

.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Cards / General */
.card-grid,
.services-grid,
.pricing-grid,
.addons-grid,
.process-grid,
.gallery-grid,
.contact-grid {
  gap: 1.25rem;
}

.info-card,
.price-card,
.addon-card,
.step-card,
.contact-form,
.gallery-placeholder {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.info-card,
.addon-card,
.step-card {
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.info-card h3,
.addon-card h3,
.step-card h3,
.price-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  color: var(--brand);
  letter-spacing: 0.01em;
  line-height: 1;
}

.info-card p,
.addon-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  min-height: 210px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

/* Pricing */
.pricing-section {
  background: linear-gradient(180deg, transparent, rgba(18, 62, 39, 0.03));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.price-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.price-card,
.addon-card {
  background: linear-gradient(180deg, var(--brand), #174b2f);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.price-card h3,
.price-card .price-label,
.price-card .price,
.price-card .feature-list li,
.addon-card h3,
.addon-card p,
.addon-card strong {
  color: var(--white);
}

.price-card .feature-list li::before {
  background: currentColor;
}

.price-card-top {
  margin-bottom: 1.25rem;
}

.price-label {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-card h3 {
  font-size: 2rem;
  margin-bottom: 0.65rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--brand);
}

.feature-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #2f3d34;
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.9;
}

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.addon-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.addon-card strong {
  margin-top: auto;
  padding-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--white);
}

/* Process */
.process-section {
  background: var(--brand-soft-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.step-card {
  min-height: 220px;
  position: relative;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

/* Gallery */
.gallery-section {
  background: linear-gradient(180deg, transparent, rgba(18, 62, 39, 0.025));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-placeholder {
  min-height: 260px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(18, 62, 39, 0.06), rgba(18, 62, 39, 0.02)),
    var(--white);
}

.gallery-placeholder span {
  color: var(--muted);
  font-weight: 600;
}

/* Contact */
.contact-section {
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-copy {
  padding-right: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-list a,
.contact-list span {
  color: #2d3a31;
  font-weight: 600;
}

.contact-form {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.field label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcfb;
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(18, 62, 39, 0.35);
  box-shadow: 0 0 0 4px rgba(18, 62, 39, 0.08);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-feedback {
  margin: 0.85rem 0 0;
  color: var(--brand);
  font-weight: 600;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap p,
.footer-wrap a {
  margin: 0;
  color: #3b4a40;
  font-weight: 600;
}

/* Reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .services-grid,
  .process-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-visual {
    order: -1;
  }

  .contact-copy {
    padding-right: 0;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    min-height: 82px;
    padding: 10px 0;
    gap: 1rem;
  }

  .brand-logo {
    max-width: min(280px, 52vw);
    max-height: 48px;
    transform: translateY(1px);
  }

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

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open {
    display: flex;
  }

  /* fallback if your JS toggles .is-open on .site-nav instead */
  .site-nav.is-open {
    display: flex;
  }

  .site-nav {
    display: grid;
    gap: 0.3rem;
  }

  .site-nav a {
    padding: 0.6rem 0;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta.btn {
    width: 100%;
  }

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

  .hero {
    padding: 4rem 0 3rem;
  }

  .media-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .section-title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .services-grid,
  .addons-grid,
  .process-grid,
  .gallery-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    max-width: 220px;
    max-height: 42px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
    align-items: stretch;
  }

  .media-placeholder {
    min-height: 260px;
    border-radius: 24px;
  }

  .info-card,
  .addon-card,
  .step-card,
  .contact-form,
  .price-card {
    padding: 1.2rem;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
    text-align: center;
  }
}