:root {
  --moss: #314135;
  --leaf: #61745d;
  --cream: #f8f1e6;
  --paper: #fffcf6;
  --clay: #b57455;
  --sage: #dfe8dc;
  --muted: #667066;
  --line: #d8d1c5;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--moss); font-family: 'Trebuchet MS', Arial, sans-serif; line-height: 1.62; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
.skip-link { position: absolute; left: 1rem; top: -4rem; background: var(--moss); color: white; padding: .75rem 1rem; z-index: 5; }
.skip-link:focus { top: 1rem; }
.site-header {
  width: min(var(--max), calc(100% - 40px));
  margin: 24px auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.brand { text-decoration: none; display: grid; justify-self: start; }
.brand-logo { width: auto; height: 50px; max-width: min(220px, 65vw); object-fit: contain; object-position: left center; }
.brand small { color: var(--muted); }
.site-nav { display: flex; gap: 22px; flex-wrap: wrap; font-size: .94rem; }
.site-nav a { text-decoration: none; border-bottom: 1px solid transparent; }
.site-nav a:hover, .site-nav a:focus { border-color: var(--clay); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--moss); transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(28px, 7vw, 76px);
  align-items: center;
}
.hero-copy { padding: clamp(18px, 4vw, 42px) 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  text-transform: uppercase;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: 0;
}
h1, h2, p { margin-top: 0; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 500; line-height: 1.08; letter-spacing: 0; overflow-wrap: break-word; }
h1 { font-size: clamp(2.7rem, 5.5vw, 5.2rem); margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4.4vw, 4rem); }
.hero-copy p:not(.eyebrow) { max-width: 580px; color: var(--muted); font-size: 1.07rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { min-height: 48px; padding: 12px 18px; border-radius: 8px; border: 1px solid var(--moss); display: inline-flex; align-items: center; justify-content: center; text-decoration: none; font-weight: 800; }
.button.primary { background: var(--moss); color: white; }
.button.secondary { background: var(--cream); }
.hero-photo { margin: 0; padding: 14px; background: var(--sage); border-radius: 8px; }
.hero-photo img { aspect-ratio: 5 / 4; object-fit: cover; border-radius: 6px; }
.care-note {
  width: min(var(--max), calc(100% - 40px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1px;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.care-note div { background: var(--cream); padding: 20px 24px; display: grid; gap: 6px; }
.care-note span { color: var(--clay); font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.care-note a { overflow-wrap: anywhere; }
.pathways, .prepare, .environment, .location {
  width: min(var(--max), calc(100% - 40px));
  margin: clamp(64px, 9vw, 104px) auto;
}
.section-intro { max-width: 680px; margin-bottom: 26px; }
.pathway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
details { background: var(--cream); border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
summary { cursor: pointer; font-weight: 800; color: var(--moss); }
details p { margin: 16px 0 0; color: var(--muted); }
.environment {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(26px, 6vw, 64px);
  align-items: center;
}
.environment figure, .location figure { margin: 0; background: var(--sage); border-radius: 8px; padding: 12px; }
.environment img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; }
.environment p:last-child { color: var(--muted); }
.prepare { background: var(--moss); color: white; border-radius: 8px; padding: clamp(26px, 5vw, 58px); }
.prepare h2 { color: white; }
.prepare-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prepare-list article { border-top: 1px solid rgba(255,255,255,.35); padding-top: 18px; }
.prepare-list span { color: #e7c5ae; font-weight: 900; }
.prepare-list p { color: #eef4ec; margin: 8px 0 0; }
.location { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: stretch; }
.contact-panel { background: var(--cream); border-radius: 8px; padding: clamp(26px, 5vw, 48px); display: grid; gap: 12px; align-content: center; }
address { font-style: normal; margin: 0 0 8px; }
.contact-panel a { font-weight: 800; overflow-wrap: anywhere; }
.location img { height: 100%; min-height: 360px; object-fit: cover; border-radius: 6px; }
footer { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 0 0 44px; color: var(--muted); }
:focus-visible { outline: 3px solid #4f8cff; outline-offset: 3px; }

@media (max-width: 820px) {
  .site-header, .hero, .care-note, .pathways, .prepare, .environment, .location, footer { width: min(var(--max), calc(100% - 30px)); }
  .site-header { grid-template-columns: 1fr auto; gap: 14px; }
  .menu-toggle { display: flex; justify-self: end; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 9px 0; }
  .hero, .care-note, .environment, .location { grid-template-columns: 1fr; }
  .pathway-grid, .prepare-list { grid-template-columns: 1fr; }
  .hero-photo img { aspect-ratio: 4 / 3; }
  .location img { height: auto; min-height: 0; aspect-ratio: 5 / 4; object-fit: cover; object-position: center; }
}

@media (max-width: 700px) {
  h1 { font-size: clamp(2.05rem, 10.5vw, 2.65rem); max-width: 12ch; }
  h2 { max-width: 12ch; }
  .hero-copy p:not(.eyebrow), .section-intro { max-width: 31ch; }
}

@media (max-width: 480px) {
  .site-nav { gap: 10px 16px; }
  h2 { font-size: clamp(1.9rem, 10vw, 2.65rem); }
  .actions, .button { width: 100%; }
  .care-note div, details, .contact-panel { padding: 20px; }
  .prepare { padding: 24px 20px; }
}
