:root {
  --cream: #fff8ef;
  --paper: #ffffff;
  --ink: #24342d;
  --muted: #68776f;
  --sage: #79a887;
  --sage-dark: #35624a;
  --coral: #f0785f;
  --sun: #f8c95e;
  --sky: #a6d7e7;
  --line: rgba(36, 52, 45, 0.14);
  --shadow: 0 22px 70px rgba(36, 52, 45, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
}

body::selection {
  background: var(--sun);
  color: var(--ink);
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 239, 0.92);
  box-shadow: 0 12px 30px rgba(36, 52, 45, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: auto;
  height: clamp(72px, 6.8vw, 88px);
  border-radius: 50%;
  background: #fff8ef;
  filter: drop-shadow(0 10px 18px rgba(36, 52, 45, 0.12));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 35px rgba(36, 52, 45, 0.08);
  backdrop-filter: blur(16px);
}

.site-nav a {
  padding: 0.66rem 0.9rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus {
  background: rgba(121, 168, 135, 0.16);
}

.site-nav .nav-action {
  background: var(--ink);
  color: white;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--paper);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(36, 52, 45, 0.12);
}

.hero {
  position: relative;
  min-height: 680px;
  height: 88vh;
  max-height: 780px;
  display: grid;
  align-items: center;
  padding: 7.3rem clamp(1.2rem, 5vw, 5rem) 3rem;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.95) 0%, rgba(255, 248, 239, 0.82) 38%, rgba(255, 248, 239, 0.22) 72%),
    linear-gradient(180deg, rgba(255, 248, 239, 0.3), rgba(255, 248, 239, 0.62));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 870px;
  margin-bottom: 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.4vw, 5.9rem);
  line-height: 0.96;
  font-weight: 700;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-copy {
  max-width: 610px;
  color: #42534b;
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 0.55rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(36, 52, 45, 0.1);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button.primary {
  background: var(--sage-dark);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-color: rgba(36, 52, 45, 0.16);
  backdrop-filter: blur(12px);
}

.hero-card {
  position: absolute;
  right: clamp(1rem, 4vw, 5rem);
  bottom: 2rem;
  width: min(360px, calc(100% - 2rem));
  z-index: 1;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card span {
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin: 0.25rem 0 0.3rem;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.hero-card p {
  margin: 0;
  font-size: 0.94rem;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.intro-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  gap: 0.75rem;
  padding: 1rem;
  background: #fffaf4;
  color: var(--ink);
  font-weight: 900;
}

.intro-item svg {
  color: var(--coral);
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1.2rem, 5vw, 5rem);
}

.about-grid,
.section-heading,
.care-grid,
.timeline,
.visit-card,
.contact-section,
.site-footer {
  max-width: 1180px;
  margin-inline: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about p {
  max-width: 680px;
}

.quote-panel {
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  border-top: 6px solid var(--sun);
}

.quote-panel svg {
  color: var(--coral);
  width: 34px;
  height: 34px;
}

blockquote {
  margin: 1rem 0;
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.18;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.care {
  background: #eff8f1;
}

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

.section-heading h2 {
  max-width: 820px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.care-card {
  min-height: 280px;
  padding: 1.4rem;
  border: 1px solid rgba(53, 98, 74, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.care-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  color: var(--sage-dark);
}

.care-card p {
  font-size: 0.95rem;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 680px;
  background: var(--paper);
}

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

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem);
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 800;
}

.check-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 0.12rem;
  color: var(--coral);
}

.day-section {
  background: #fff4e4;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.timeline-item {
  min-height: 255px;
  padding: 1.5rem;
  background: #fffaf2;
}

.timeline-item span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 2.5rem;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-weight: 900;
}

.gallery-band {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.gallery-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 52, 45, 0.05), rgba(36, 52, 45, 0.62));
}

.gallery-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 2.4rem));
  margin: 0 0 clamp(1.2rem, 5vw, 5rem) clamp(1.2rem, 5vw, 5rem);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.gallery-copy h2 {
  margin-bottom: 0.7rem;
}

.gallery-copy p:last-child {
  margin-bottom: 0;
}

.visit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.visit-card h2,
.visit-card p,
.visit-card .section-kicker {
  color: white;
}

.visit-card p {
  max-width: 660px;
  opacity: 0.82;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 5rem) clamp(4.5rem, 8vw, 7.5rem);
}

.reviews-copy h2 {
  margin-bottom: 0.8rem;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.reviews-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
  color: var(--sun);
}

.stars svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.reviews-panel strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.35rem;
}

.reviews-panel iframe {
  width: 100%;
  height: 280px;
  margin-top: 1rem;
  border: 0;
  border-radius: var(--radius);
  background: #f4efe7;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 2rem;
  padding: 0 clamp(1.2rem, 5vw, 5rem) clamp(4.5rem, 8vw, 7.5rem);
}

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

.contact-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  row-gap: 0.15rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-tile svg {
  grid-row: span 2;
  color: var(--coral);
}

.contact-tile span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-tile strong {
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem clamp(1.2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.footer-brand img {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff8ef;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  color: var(--muted);
  font-weight: 800;
}

.footer-links a {
  white-space: nowrap;
}

.devectus-credit {
  color: var(--sage-dark);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
    padding: 0.65rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .hero {
    min-height: 760px;
    height: auto;
    max-height: none;
    align-items: start;
  }

  .hero-content {
    margin-top: 3rem;
  }

  .hero-card {
    display: none;
  }

  .intro-band,
  .care-grid,
  .timeline,
  .reviews-section,
  .contact-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .feature-split {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 420px;
  }

  .contact-section {
    padding-top: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    height: 64px;
  }

  .hero {
    min-height: 740px;
    padding-inline: 1rem;
    padding-top: 7rem;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .visit-actions,
  .review-actions,
  .visit-card {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .intro-band,
  .care-grid,
  .timeline,
  .reviews-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-item {
    justify-content: flex-start;
    min-height: 82px;
  }

  .section,
  .feature-copy {
    padding-inline: 1rem;
  }

  .gallery-band {
    min-height: 580px;
  }

  .gallery-copy {
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
  }

  .contact-section {
    padding-inline: 1rem;
  }

  .reviews-section {
    padding-inline: 1rem;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 76px;
    height: 76px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
  }
}
