:root {
  --forest-deep: #163229;
  --forest-mid: #27473a;
  --forest-soft: #5f7f6f;
  --sage: #a8bca9;
  --mist: #edf3ea;
  --sun: #efe3c2;
  --bark: #4f392d;
  --card: rgba(245, 248, 242, 0.88);
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 60px rgba(12, 28, 23, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #132019;

  background: linear-gradient(180deg, rgba(239, 243, 234, 0.7), rgba(218, 228, 216, 0.95)), #dbe7da;
}

.menu a:hover{
  color: #BF5700;
  padding: 5px;
  border-radius: 10px;
  background-color: whitesmoke;
}

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

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

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  padding: 1.5rem clamp(1.25rem, 3vw, 3rem) 4rem;
  color: white;
  background:
    linear-gradient(135deg, rgba(10, 26, 22, 0.78), rgba(22, 50, 41, 0.52)),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.topbar {
  display: flex;

  padding-top: 0px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand strong,
.hero h1,
.section h2 {
  font-family: "Cormorant Garamond", serif;
}

.brand strong {
  display: block;
  font-size: 1.5rem;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(239, 227, 194, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font: inherit;
}

.hero-content {
  display: grid;

  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 400px);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
  padding-top: 4.5rem;
}

.hero-copy {
  max-width: 46rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 700;
  color: #d6e6d5;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.94;
  max-width: 12ch;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  z-index: 1000;
  padding: 0 32px;
  opacity: 80%;
  background: #bf5700;
}

.intro,
.content-panel p,
.overlay-panel p,
.contact-card p {
  font-size: 1.08rem;
  line-height: 1.75;
}

.intro {
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

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

.button-primary {
  background: var(--sun);
  color: #1f281f;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-ternary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
}

.highlights li {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card,
.service-card,
.feature-card,
.testimonial,
.contact-card,
.overlay-panel {
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.5rem;
  border-radius: 1.75rem;
  background: rgba(245, 248, 242, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.card-label {
  margin: 0 0 1rem;
  color: #dce8d9;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.care-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.care-note {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: -2rem auto 0;
  width: min(1100px, calc(100% - 2rem));
  position: relative;
  z-index: 2;
}

.stats-band article {
  padding: 1.4rem;
  border-radius: 1.5rem;
  background: rgba(247, 250, 244, 0.92);
  box-shadow: 0 16px 36px rgba(21, 39, 29, 0.1);
}

.stats-band strong {
  display: block;
  color: var(--forest-deep);
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 3vw, 3rem);
}

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

.section-heading .eyebrow,
.content-panel .eyebrow,
.contact-card .eyebrow {
  color: var(--forest-soft);
}

.section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--forest-deep);
}

.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card,
.feature-card,
.testimonial {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: var(--card);
  border: 1px solid rgba(22, 50, 41, 0.08);
}

.service-card h3,
.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--forest-mid);
}

.service-card p,
.feature-card p,
.testimonial {
  line-height: 1.7;
}

.scenic-break {
  min-height: 32rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(15, 33, 25, 0.1), rgba(15, 33, 25, 0.62)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
}

.overlay-panel {
  max-width: 32rem;
  padding: 2rem;
  border-radius: 1.75rem;
  background: rgba(240, 245, 237, 0.82);
}

.overlay-panel .eyebrow {
  color: var(--forest-mid);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

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

.testimonial {
  margin: 0;
  font-size: 1.08rem;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  color: var(--forest-mid);
}

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

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(231, 239, 228, 0.95)),
    url("https://images.unsplash.com/photo-1511497584788-876760111969?auto=format&fit=crop&w=1400&q=80") center/cover;
  background-blend-mode: screen;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--forest-mid);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(39, 71, 58, 0.14);
  background: rgba(255, 255, 255, 0.8);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.menu-toggle:focus,
.button:focus {
  outline: 2px solid var(--forest-soft);
  outline-offset: 2px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 960px) {
  .hero-content,
  .split-layout,
  .contact-card,
  .service-grid,
  .testimonial-grid,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .scenic-break {
    justify-content: center;
    background-attachment: scroll;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
  }

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

  .menu {
    position: absolute;
    top: 5.5rem;
    right: 1.25rem;
    left: 1.25rem;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(18, 41, 33, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero h1 {
    max-width: 14ch;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-inline: 1rem;
  }

  .section {
    padding-inline: 1rem;
  }

  .hero-card,
  .service-card,
  .feature-card,
  .testimonial,
  .contact-card,
  .overlay-panel,
  .stats-band article {
    border-radius: 1.25rem;
  }

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

  .button {
    width: 100%;
  }
}