:root {
  --leaf: #3f6b4e;
  --forest: #1f3d2b;
  --moss: #6d8f74;
  --cream: #f6f4ef;
  --ivory: #fbfaf7;
  --sand: #e7e1d6;
  --ink: #1c241e;
  --muted: #5b665e;
  --line: rgba(31, 61, 43, 0.12);
  --shadow: 0 18px 46px rgba(31, 61, 43, 0.1);
  --radius: 22px;
  --header-h: 78px;
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Figtree", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--forest);
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.header.is-scrolled {
  background: rgba(251, 250, 247, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(31, 61, 43, 0.06);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  flex-shrink: 0;
}

.logo__mark {
  width: 36px;
  height: 36px;
}

.logo__text,
.logo--footer {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.logo__text span,
.logo--footer span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--moss);
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  gap: 16px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 0;
}

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

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  margin-left: auto;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  margin: 5px auto;
  transition: 0.3s;
}

body.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}

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

.btn--sm {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.82rem;
}

.btn--lg {
  min-height: 56px;
  padding: 0 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn--full {
  width: 100%;
}

.btn--primary {
  background: var(--leaf);
  color: #fff;
  box-shadow: 0 10px 24px rgba(63, 107, 78, 0.28);
}

.btn--primary:hover {
  background: var(--forest);
}

.btn--light {
  background: #fff;
  color: var(--forest);
}

.btn--outline {
  background: transparent;
  border-color: var(--leaf);
  color: var(--forest);
}

.btn--outline:hover {
  background: var(--leaf);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 36, 30, 0.18) 0%, rgba(31, 61, 43, 0.55) 48%, rgba(31, 61, 43, 0.88) 100%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: end;
  padding: calc(var(--header-h) + 56px) 0 72px;
}

.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 14px;
  font-weight: 700;
}

.hero h1,
.section h2,
.cta-band h2,
.cta-final h2,
.contact h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  max-width: 14ch;
}

.hero__lead {
  margin: 18px 0 28px;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__meta {
  margin-top: 24px;
  letter-spacing: 0.08em;
  color: var(--sand);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero__portrait {
  justify-self: end;
  width: min(360px, 100%);
}

.hero__portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  border: 4px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow);
}

.hero__portrait figcaption {
  margin-top: 10px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.section {
  padding: 96px 0;
}

.section--cream {
  background: var(--cream);
}

.section__head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-bottom: 14px;
}

.section__intro {
  color: var(--muted);
  font-size: 1.04rem;
}

.about__grid,
.fit__grid,
.why,
.location,
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about__media img,
.fit__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
}

.about__copy p,
.fit__copy p,
.why__copy p,
.location__copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.about__note {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest) !important;
  font-style: italic;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card,
.profile,
.feature,
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, border-color 0.3s;
}

.card:hover,
.profile:hover {
  transform: translateY(-6px);
  border-color: var(--leaf);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card__icon {
  width: 44px;
  height: 44px;
  color: var(--leaf);
}

.card h3,
.profile h3,
.feature h3,
.form h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.card p,
.profile p,
.feature p,
.quote p {
  color: var(--muted);
}

.link-arrow {
  margin-top: auto;
  font-weight: 700;
  color: var(--forest);
}

.link-arrow::after {
  content: " →";
  color: var(--leaf);
}

.profiles,
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.message {
  margin-top: 36px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
}

.center {
  text-align: center;
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checks li {
  background: var(--cream);
  border-radius: 16px;
  padding: 16px 16px 16px 44px;
  font-weight: 700;
  position: relative;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--leaf);
  box-shadow: inset 0 0 0 3px #fff;
}

.fit__sub {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest) !important;
}

.cta-band,
.cta-final {
  background: var(--forest);
  color: #fff;
  text-align: center;
  padding: 92px 0;
}

.cta-band h2,
.cta-final h2 {
  max-width: 18ch;
  margin: 0 auto 16px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.cta-band p,
.cta-final p {
  max-width: 46ch;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.86);
}

.handle {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--leaf);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.insta-grid__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 14px;
}

.insta-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.insta-grid__item:hover img {
  transform: scale(1.07);
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.quote span {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 700;
}

.faq {
  max-width: 820px;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px 20px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item p {
  color: var(--muted);
  padding-bottom: 16px;
}

.location__map {
  border-radius: 22px;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line);
}

.location__map iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.form {
  background: var(--cream);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
}

.form__hint {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: -6px;
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
}

.form input,
.form select,
.form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  outline: none;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(63, 107, 78, 0.14);
}

.form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact__list {
  margin: 24px 0 28px;
  display: grid;
  gap: 14px;
}

.contact__label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 700;
}

.footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer a:hover {
  color: #fff;
}

.footer__copy {
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.float-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  min-height: 54px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(63, 107, 78, 0.35);
  z-index: 90;
  font-weight: 700;
  font-size: 0.88rem;
}

.float-cta svg {
  width: 26px;
  height: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.8s ease forwards;
  animation-play-state: paused;
}

.reveal.is-in {
  animation-play-state: running;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero__grid,
  .about__grid,
  .fit__grid,
  .why,
  .location,
  .contact,
  .cards,
  .quotes,
  .features,
  .profiles {
    grid-template-columns: 1fr 1fr;
  }

  .hero__grid,
  .about__grid,
  .fit__grid,
  .why,
  .location,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero__portrait {
    justify-self: start;
  }

  .about__media img,
  .fit__media img {
    height: 420px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .hamburger {
    display: block;
  }

  .header__cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(251, 250, 247, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    margin: 0;
    padding: 18px 24px 26px;
    transition: 0.3s ease;
  }

  body.nav-open .nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1140px, calc(100% - 28px));
  }

  .section {
    padding: 72px 0;
  }

  .cards,
  .profiles,
  .features,
  .quotes,
  .checks,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

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

  .btn {
    width: 100%;
  }

  .header .btn,
  .float-cta {
    width: auto;
  }

  .float-cta span {
    display: none;
  }

  .float-cta {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .card,
  .profile {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
