:root {
  --bg: #f7f9f0;
  --bg-alt: #edf3e4;
  --surface: rgba(255, 255, 248, 0.92);
  --text: #1c2a20;
  --muted: #647365;
  --primary: #789a65;
  --primary-light: #d9e9c4;
  --primary-dark: #214c34;
  --forest: #123622;
  --moss: #5f7f4d;
  --border: rgba(28, 57, 38, 0.14);
  --shadow: 0 20px 48px rgba(31, 63, 43, 0.12);
  --radius: 8px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    linear-gradient(180deg, rgba(247, 249, 240, 0.95), rgba(237, 243, 228, 0.96) 42%, rgba(250, 248, 238, 0.98)),
    url("assets/images/leaf-shadow-bg.jpg") right top / min(45vw, 36rem) auto no-repeat fixed;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 249, 240, 0.98) 0%, rgba(247, 249, 240, 0.86) 54%, rgba(247, 249, 240, 0.68) 100%),
    linear-gradient(180deg, rgba(217, 233, 196, 0.22), transparent 34%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(33, 76, 52, 0.12);
  background: rgba(247, 249, 240, 0.86);
  backdrop-filter: blur(18px);
}

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

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  color: var(--forest);
  font-family: "Caveat", "Cormorant Garamond", Georgia, serif;
  font-size: 2.05rem;
  font-weight: 600;
  line-height: 1;
}

.brand-subtitle,
.footer-note,
.muted,
.section-note {
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.menu a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  color: #4e604f;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu a:hover {
  color: var(--forest);
  background: rgba(120, 154, 101, 0.16);
}

.site-main { flex: 1; }

.hero {
  padding: clamp(3.2rem, 7vw, 5.6rem) 0 4.6rem;
}

.hero-grid,
.section-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.72fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  min-height: clamp(34rem, 54vw, 42rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
  color: #fffdf4;
  background:
    linear-gradient(90deg, rgba(18, 54, 34, 0.84), rgba(24, 56, 38, 0.53) 58%, rgba(24, 56, 38, 0.18)),
    url("assets/images/cabinet.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(12, 34, 22, 0.45));
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-panel {
  display: grid;
  align-content: space-between;
  gap: 1rem;
}

.hero-panel .info-card {
  padding: 1.35rem;
}

.hero-panel .info-card:first-child {
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(251, 253, 244, 0.9), rgba(217, 233, 196, 0.72)),
    url("assets/images/leaf-shadow-bg.jpg") right top / auto 120% no-repeat;
}

.info-card,
.booking-card,
.contact-card,
.feature-card,
.reason-card,
.service-card,
.practice-card,
.about-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(31, 63, 43, 0.08);
}

.eyebrow,
.info-label,
.practice-meta {
  margin: 0 0 0.75rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero .eyebrow {
  color: var(--primary-light);
}

.hero h1,
.section-heading h2,
.info-card h3,
.contact-card h3,
.booking-card h3,
.feature-card h3,
.reason-card h3,
.service-card h3,
.practice-title,
.reason-title,
.service-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.hero h1 {
  max-width: 10ch;
  color: #fffef6;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  text-wrap: balance;
}

.section-heading h2 {
  max-width: 100%;
  color: var(--forest);
  font-size: clamp(1.35rem, 3vw, 3.35rem);
  text-wrap: balance;
}

.info-card h3 { font-size: 1.85rem; color: var(--forest); }
.feature-card h3 { font-size: clamp(2rem, 4vw, 3.1rem); color: var(--forest); }
.practice-title,
.reason-title,
.service-title { font-size: 1.35rem; color: var(--forest); }

.lead {
  max-width: 42rem;
  margin: 1.3rem 0 0;
  color: rgba(255, 253, 244, 0.9);
  font-size: 1.1rem;
}

.hero-kicker,
.hero-actions,
.badge-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-kicker { margin-top: 1.4rem; }
.hero-actions { margin-top: 2rem; }

.pill,
.info-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(217, 233, 196, 0.22);
  color: var(--primary-light);
  border: 1px solid rgba(217, 233, 196, 0.22);
  font-size: 0.86rem;
  font-weight: 800;
}

.info-pill {
  background: rgba(120, 154, 101, 0.13);
  color: var(--primary-dark);
  border-color: rgba(120, 154, 101, 0.13);
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
  background: linear-gradient(135deg, var(--forest), var(--moss));
  color: #fffef6;
  box-shadow: 0 14px 28px rgba(18, 54, 34, 0.24);
}

.hero .button,
.info-band .button {
  background: #fffef6;
  color: var(--forest);
  box-shadow: none;
}

.button-outline {
  color: var(--forest);
  border-color: rgba(33, 76, 52, 0.24);
  background: rgba(255, 255, 248, 0.68);
}

.hero .button-outline {
  color: #fffef6;
  border-color: rgba(255, 255, 248, 0.42);
  background: rgba(255, 255, 248, 0.1);
}

.button:hover,
.button-outline:hover {
  transform: translateY(-1px);
}

.section-block {
  padding: 0 0 4.8rem;
}

.section-block:nth-of-type(even) {
  padding-top: 4.8rem;
  background: linear-gradient(180deg, rgba(237, 243, 228, 0.78), rgba(247, 249, 240, 0));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.55rem;
}

.section-heading p {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
}

.section-grid.two,
.feature-grid,
.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-grid.three,
.reasons-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.15fr);
}

.contact-card,
.booking-card,
.feature-card,
.reason-card,
.service-card,
.practice-card,
.about-card {
  padding: 1.5rem;
}

.feature-card,
.about-card:first-child {
  background: linear-gradient(135deg, rgba(255, 255, 248, 0.94), rgba(237, 243, 228, 0.9));
}

.reason-card,
.service-card,
.practice-card {
  position: relative;
  overflow: hidden;
}

.reason-card::before,
.service-card::before,
.practice-card::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 0.18rem;
  margin-bottom: 1.05rem;
  border-radius: 999px;
  background: var(--primary);
}

.feature-list,
.bullet-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.counter-grid {
  display: grid;
  gap: 0.75rem;
}

.counter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: rgba(120, 154, 101, 0.12);
}

.counter-item span:last-child {
  color: var(--primary-dark);
  font-weight: 800;
}

.reason-card p,
.service-card p,
.practice-card p {
  color: var(--muted);
}

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.price-line span {
  color: var(--primary-dark);
  font-weight: 800;
  white-space: nowrap;
}

.portrait-frame {
  min-height: 100%;
  display: grid;
  align-content: end;
  padding: 1.25rem;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 54, 34, 0.08), rgba(18, 54, 34, 0.36)),
    url("assets/images/leaf-shadow-bg.jpg") center / cover no-repeat;
  color: #f8f3eb;
  overflow: hidden;
}

.portrait-placeholder {
  position: relative;
  min-height: 24rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  background: var(--forest);
}

.portrait-image {
  display: block;
  width: 100%;
  min-height: 24rem;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.info-band {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: var(--radius);
  color: #fffef6;
  background:
    linear-gradient(135deg, rgba(18, 54, 34, 0.94), rgba(33, 76, 52, 0.86)),
    url("assets/images/leaf-shadow-bg.jpg") right center / auto 140% no-repeat;
}

.info-band .eyebrow,
.info-band h2 {
  color: #fffef6;
}

.info-band .band-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.info-band .contact-card,
.info-band .booking-card,
.info-band .cabinet-card {
  background: rgba(255, 255, 248, 0.94);
  color: var(--text);
}

.cabinet-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(31, 63, 43, 0.08);
}

.cabinet-card img {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 18rem;
  object-fit: cover;
}

.cabinet-card figcaption {
  padding: 0.75rem 1rem;
  color: var(--forest);
  font-weight: 800;
}

.booking-card {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.booking-card p,
.contact-card p {
  margin: 0 0 0.8rem;
}

.booking-card .button {
  width: fit-content;
}

.site-footer {
  padding: 1.8rem 0 2.4rem;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(237, 243, 228, 0.96), rgba(248, 246, 236, 0.9)),
    url("assets/images/leaf-shadow-bg.jpg") right center / auto 170% no-repeat;
}

.footer-note {
  font-size: 0.95rem;
}

.footer-links {
  margin-top: 0.65rem;
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 960px) {
  .hero-grid,
  .section-grid.two,
  .section-grid.three,
  .feature-grid,
  .about-grid,
  .reasons-grid,
  .pricing-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    min-height: 31rem;
  }

  .portrait-placeholder {
    min-height: 18rem;
  }
}

@media (min-width: 520px) {
  .section-heading h2 {
    white-space: nowrap;
    text-wrap: nowrap;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.2rem;
  }

  .hero-copy,
  .info-band {
    padding: 1.35rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 13vw, 3.4rem);
  }

  .section-block,
  .section-block:nth-of-type(even) {
    padding-bottom: 3.5rem;
  }

  .section-block:nth-of-type(even) {
    padding-top: 3.5rem;
  }

  .price-line,
  .counter-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}
