:root {
  --bg: #f6f4ee;
  --surface: #fffaf2;
  --text: #1f2320;
  --muted: #57605b;
  --line: #dad5c6;
  --brand: #145b43;
  --brand-soft: #d4eadf;
  --accent: #b95b38;
  --shadow: 0 12px 30px rgba(20, 23, 20, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(185, 91, 56, 0.12), transparent 35%),
    radial-gradient(circle at 92% 20%, rgba(20, 91, 67, 0.12), transparent 40%),
    var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  line-height: 1.15;
}

a {
  color: inherit;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.ambient-shape {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  opacity: 0.45;
}

.shape-a {
  top: -60px;
  left: -40px;
  background: #efc8ac;
}

.shape-b {
  right: -80px;
  bottom: -30px;
  background: #c7e6d8;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(246, 244, 238, 0.74);
  border-bottom: 1px solid rgba(218, 213, 198, 0.7);
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 32px;
  height: 32px;
}

.site-nav {
  display: flex;
  gap: 20px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  padding: 94px 0 52px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.hero-main {
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--brand);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 15ch;
}

.hero-copy {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 18px 0 0;
}

.hero-photo-wrap {
  background: linear-gradient(160deg, #f2ede2, #e8f2ec);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 18px;
  background: #d8d6cf;
}

.photo-caption {
  margin: 12px 2px 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--line);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.btn-primary {
  background: var(--brand);
  color: #f6fff9;
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--surface);
}

.social-proof {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.social-label {
  color: #6a726d;
}

.social-link {
  color: #5a625d;
  text-decoration: none;
  border-bottom: 1px solid rgba(90, 98, 93, 0.35);
  padding-bottom: 1px;
}

.social-link:hover {
  color: var(--brand);
  border-bottom-color: rgba(20, 91, 67, 0.5);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.45fr) minmax(220px, 0.82fr) minmax(300px, 1.25fr);
  grid-template-areas:
    "education certifications amenities"
    "profile profile profile";
  gap: 14px;
  align-items: stretch;
}

.about-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 18px;
  height: 100%;
}

.about-card p,
.about-card li {
  color: var(--muted);
}

.about-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.about-profile {
  grid-area: profile;
}

.about-education {
  grid-area: education;
}

.about-certifications {
  grid-area: certifications;
}

.about-amenities {
  grid-area: amenities;
}

.section {
  padding: 62px 0 26px;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.section-head p {
  margin-top: 8px;
  color: var(--muted);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 2px 0 rgba(20, 22, 20, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.case-card:hover,
.service-grid article:hover,
.timeline-grid article:hover,
.price-card:hover,
.policy-card:hover,
.contact-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(20, 23, 20, 0.12);
  border-color: rgba(20, 91, 67, 0.26);
  background: #fffdf7;
}

.case-card h4 {
  margin: 14px 0 6px;
  font-size: 0.95rem;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand);
}

.case-sub {
  font-weight: 600;
}

.case-card p,
.case-card li {
  color: var(--muted);
}

.case-card ul {
  padding-left: 18px;
  margin: 12px 0;
}

.card-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.card-links a {
  color: var(--brand);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
  border-bottom: 1px solid rgba(20, 91, 67, 0.25);
  padding-bottom: 1px;
}

.card-links a:hover {
  color: var(--accent);
  border-bottom-color: rgba(185, 91, 56, 0.45);
}

.service-grid,
.timeline-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.service-grid article,
.timeline-grid article,
.price-card,
.contact-panel,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.timeline-grid article {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-grid span {
  color: var(--accent);
  font-weight: 600;
}

.price-card {
  position: relative;
}

.featured {
  border-color: #96bdaa;
  transform: translateY(-4px);
}

.price-card:hover .price-tag,
.policy-card:hover h3,
.case-card:hover h3,
.service-grid article:hover h3 {
  color: var(--brand);
}

.price-range {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 14px;
  background: #e6f3ea;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
}

.range-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.range-value {
  white-space: nowrap;
}

.price-tag {
  color: var(--accent);
  font-weight: 600;
  margin-top: 6px;
}

.price-tag a {
  color: inherit;
  text-underline-offset: 2px;
}

.price-tag a:hover {
  opacity: 0.84;
}

.price-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.pricing-note {
  max-width: 78ch;
  margin-top: 14px;
  color: var(--muted);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.policy-card p {
  color: var(--muted);
  margin: 8px 0 0;
}

.contact-panel p {
  color: var(--muted);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.contact-chip {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fffefb;
  cursor: pointer;
  font: inherit;
}

.mobile-sticky-cta {
  display: none;
}

.small-note {
  font-size: 0.92rem;
}

.site-footer {
  padding: 34px 0 44px;
  color: var(--muted);
  font-size: 0.93rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.briefing-dialog {
  border: 0;
  border-radius: 16px;
  padding: 0;
  width: min(620px, 92vw);
  background: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.briefing-dialog::backdrop {
  background: rgba(25, 29, 25, 0.42);
}

.briefing-form {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.briefing-form p {
  margin: 4px 0 2px;
  color: var(--muted);
}

.briefing-form label {
  display: grid;
  gap: 6px;
  font-size: 0.94rem;
  color: var(--muted);
}

.briefing-form input,
.briefing-form select,
.briefing-form textarea {
  border: 1px solid #cbc5b7;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: #fffdf8;
}

.dialog-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
}

@media (max-width: 740px) {
  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 68px;
  }

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

  .social-proof {
    flex-wrap: wrap;
  }

  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "education"
      "certifications"
      "amenities"
      "profile";
  }

  .featured {
    transform: none;
  }

  .case-card:hover,
  .service-grid article:hover,
  .timeline-grid article:hover,
  .price-card:hover,
  .policy-card:hover,
  .contact-panel:hover {
    transform: none;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-links .contact-chip {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    text-decoration: none;
    text-align: center;
    background: var(--brand);
    color: #f6fff9;
    border-radius: 999px;
    padding: 13px 16px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(20, 91, 67, 0.28);
  }

  .site-footer {
    padding-bottom: 88px;
  }
}
