:root {
  --cream: #fbf7ef;
  --cream-dark: #f3ecdf;
  --green: #315747;
  --green-dark: #203c31;
  --green-soft: #dce8df;
  --gold: #d9a94e;
  --gold-soft: #f4e5bd;
  --terracotta: #b9674c;
  --ink: #29322e;
  --muted: #68736d;
  --white: #ffffff;

  --shadow:
    0 16px 45px rgba(32, 60, 49, 0.11);

  --radius: 26px;
  --radius-small: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}


/* TYPOGRAPHY */

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--green-dark);
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;

  font-size:
    clamp(3rem, 7vw, 6.3rem);

  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;

  font-size:
    clamp(2.2rem, 4.5vw, 4.3rem);

  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 720px;
  color: var(--muted);

  font-size:
    clamp(1.05rem, 2vw, 1.25rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;

  color: var(--green);

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}


/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 14px 22px;

  border: 2px solid transparent;
  border-radius: 999px;

  background: var(--green);
  color: white;

  text-decoration: none;
  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 8px 20px rgba(49, 87, 71, 0.16);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
}

.button.secondary {
  background: transparent;
  border-color: rgba(49, 87, 71, 0.22);
  color: var(--green);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--green-soft);
}

.button.gold {
  background: var(--gold);
  color: var(--green-dark);
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background:
    rgba(251, 247, 239, 0.94);

  border-bottom:
    1px solid rgba(49, 87, 71, 0.08);

  backdrop-filter: blur(16px);
}

.nav {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 82px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--green-dark);

  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 58px;
  height: 58px;

  padding: 4px;

  object-fit: contain;

  background: white;

  border:
    1px solid rgba(49, 87, 71, 0.1);

  border-radius: 50%;
}

nav ul {
  display: flex;
  align-items: center;

  gap: 28px;
  margin: 0;
  padding: 0;

  list-style: none;
}

nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--green);
}

.mobile-toggle {
  display: none;

  width: 46px;
  height: 46px;

  border: 0;
  border-radius: 50%;

  background: var(--green-soft);
  color: var(--green-dark);

  font-size: 1.25rem;

  cursor: pointer;
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;

  padding: 92px 0 80px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 30px;
  right: -160px;

  width: 460px;
  height: 460px;

  border-radius: 50%;

  background: var(--gold-soft);

  opacity: 0.7;

  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns:
    1.15fr 0.85fr;

  align-items: center;

  gap: 64px;
}

.hero .eyebrow {
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;
  margin-top: 30px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;

  gap: 22px;
  margin-top: 28px;

  color: var(--muted);

  font-size: 0.92rem;
  font-weight: 700;
}

.trust-line span::before {
  margin-right: 8px;

  color: var(--terracotta);

  content: "♥";
}

.hero-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 560px;
  padding: 38px;

  border-radius: 44px;

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.75),
      transparent 25%
    ),
    linear-gradient(
      145deg,
      var(--green-soft),
      var(--gold-soft)
    );

  box-shadow: var(--shadow);
}

.photo-placeholder {
  position: relative;
  z-index: 2;

  display: grid;
  place-items: center;

  flex: 1;
  min-height: 330px;

  padding: 35px;

  border:
    2px dashed rgba(49, 87, 71, 0.24);

  border-radius: 30px;

  background:
    rgba(255, 255, 255, 0.65);

  color: var(--green);

  text-align: center;
}

.photo-placeholder strong {
  display: block;
  font-size: 1.15rem;
}

.photo-placeholder small {
  display: block;

  margin-top: 8px;

  color: var(--muted);

  font-weight: 500;
}

.hero-note {
  position: relative;
  z-index: 3;

  margin-top: 24px;
  padding: 18px 20px;

  border-radius: 20px;

  background: white;

  font-weight: 750;

  box-shadow:
    0 10px 30px rgba(49, 87, 71, 0.08);
}


/* GENERAL SECTIONS */

section {
  padding: 94px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading .eyebrow {
  margin-bottom: 12px;
}


/* SERVICES */

.services {
  background: white;
}

.service-grid {
  display: grid;
  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.service-card {
  padding: 30px;

  border:
    1px solid rgba(49, 87, 71, 0.07);

  border-radius: var(--radius);

  background: var(--cream);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  place-items: center;

  width: 50px;
  height: 50px;

  margin-bottom: 22px;

  border-radius: 16px;

  background: var(--gold-soft);

  font-size: 1.45rem;
}

.price {
  display: inline-block;

  margin-top: 12px;

  color: var(--green);

  font-weight: 900;
}

.price-note {
  margin-top: 30px;
  padding: 22px 25px;

  border-radius: var(--radius-small);

  background: var(--green-soft);
  color: var(--green-dark);
}


/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns:
    0.9fr 1.1fr;

  align-items: center;

  gap: 70px;
}

.family-card {
  display: flex;
  align-items: flex-end;

  min-height: 500px;
  padding: 34px;

  border-radius: 38px;

  background:
    linear-gradient(
      145deg,
      var(--gold-soft),
      #f7d9cb
    );

  box-shadow: var(--shadow);
}

.family-inner {
  width: 100%;
  padding: 24px;

  border-radius: 24px;

  background:
    rgba(255, 255, 255, 0.86);
}

.family-inner p {
  margin: 6px 0 0;
  color: var(--muted);
}

.checks {
  display: grid;

  gap: 18px;
  margin-top: 30px;
}

.check {
  display: grid;
  grid-template-columns:
    36px 1fr;

  gap: 14px;
}

.check > span {
  display: grid;
  place-items: center;

  width: 36px;
  height: 36px;

  border-radius: 50%;

  background: var(--green-soft);
  color: var(--green);

  font-weight: 900;
}


/* PROCESS */

.steps {
  background: var(--green-dark);
  color: white;
}

.steps h2,
.steps h3,
.steps .eyebrow {
  color: white;
}

.steps .lead {
  color:
    rgba(255, 255, 255, 0.72);
}

.steps-grid {
  display: grid;
  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
  margin-top: 44px;
}

.step {
  padding: 30px;

  border:
    1px solid rgba(255, 255, 255, 0.1);

  border-radius: var(--radius);

  background:
    rgba(255, 255, 255, 0.08);
}

.step-number {
  margin-bottom: 22px;

  color: var(--gold);

  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.step p {
  color:
    rgba(255, 255, 255, 0.72);
}


/* TREATS */

.treat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 50px;
}

.treat-visual {
  display: grid;
  place-items: center;

  min-height: 430px;
  padding: 34px;

  border-radius: 38px;

  background:
    linear-gradient(
      145deg,
      rgba(217, 169, 78, 0.25),
      rgba(185, 103, 76, 0.19)
    );
}

.treat-badge {
  display: grid;
  place-items: center;

  width: 250px;
  height: 250px;

  padding: 32px;

  border-radius: 50%;

  background: white;
  color: var(--green-dark);

  text-align: center;

  box-shadow: var(--shadow);
}

.treat-badge span {
  display: block;

  margin-bottom: 10px;

  font-size: 3.5rem;
}


/* SERVICE AREA */

.area-card {
  display: grid;
  grid-template-columns:
    1fr auto;

  align-items: center;

  gap: 30px;
  padding: 50px;

  border-radius: 36px;

  background: var(--green-soft);
}

.area-card p {
  max-width: 700px;
  margin-bottom: 0;
}


/* CONTACT */

.contact {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns:
    1.15fr 0.85fr;

  align-items: start;

  gap: 40px;
}

.contact-form {
  padding: 36px;

  border-radius: var(--radius);

  background: var(--cream);

  box-shadow:
    0 12px 38px rgba(49, 87, 71, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns:
    1fr 1fr;

  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;

  margin-bottom: 7px;

  color: var(--green-dark);

  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;

  padding: 14px 15px;

  border:
    1px solid rgba(49, 87, 71, 0.2);

  border-radius: 12px;

  outline: none;

  background: white;
  color: var(--ink);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);

  box-shadow:
    0 0 0 3px
    rgba(49, 87, 71, 0.11);
}

.field textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
}

.form-note {
  margin: 16px 0 0;

  color: var(--muted);

  text-align: center;
  font-size: 0.9rem;
}

.form-note a {
  color: var(--green);
  font-weight: 800;
}

.website-field {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;

  clip: rect(1px, 1px, 1px, 1px) !important;
}

.form-message {
  margin-bottom: 30px;
  padding: 18px 20px;

  border-radius: 14px;

  font-weight: 750;
}

.form-message.success {
  background: #dff2e5;
  color: #19472b;
}

.form-message.error {
  background: #f8dfdb;
  color: #762d22;
}

.contact-sidebar {
  display: grid;
  gap: 20px;
}

.contact-card,
.portal-card {
  padding: 32px;

  border-radius: var(--radius);
}

.contact-card {
  background: var(--cream);
}

.portal-card {
  background: var(--gold-soft);
}

.contact-method {
  display: flex;
  align-items: center;

  gap: 16px;
  padding: 18px 0;

  border-bottom:
    1px solid rgba(49, 87, 71, 0.1);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-icon {
  display: grid;
  place-items: center;

  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  border-radius: 50%;

  background: var(--green-soft);
}

.contact-method strong,
.contact-method a,
.contact-method span {
  display: block;
}

.contact-method a {
  color: var(--green);

  text-decoration: none;
  font-weight: 800;
}


/* FOOTER */

footer {
  padding: 48px 0;

  background: #152a22;
  color:
    rgba(255, 255, 255, 0.72);
}

footer strong {
  color: white;
}

footer p {
  margin: 5px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns:
    1fr auto;

  align-items: center;

  gap: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;

  gap: 20px;
}

.footer-links a {
  color: white;

  text-decoration: none;
  font-weight: 700;
}


/* MOBILE */

@media (max-width: 900px) {

  .hero-grid,
  .about-grid,
  .treat-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  nav ul {
    display: none;

    position: absolute;
    top: 82px;
    right: 0;
    left: 0;

    flex-direction: column;
    align-items: stretch;

    padding: 22px;

    border-radius: 20px;

    background: white;

    box-shadow: var(--shadow);
  }

  nav ul.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .desktop-cta {
    display: none;
  }

}


@media (max-width: 640px) {

  .container {
    width:
      min(100% - 26px, 1160px);
  }

  section {
    padding: 70px 0;
  }

  h1 {
    font-size:
      clamp(2.8rem, 16vw, 4.4rem);
  }

  .service-grid,
  .steps-grid,
  .form-row,
  .area-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .family-card {
    min-height: 400px;
    border-radius: 28px;
  }

  .area-card {
    padding: 32px;
  }

  .hero-actions .button,
  .area-card .button {
    width: 100%;
  }

  .contact-form {
    padding: 24px;
  }

}