:root {
  --ink: #153c38;
  --ink-soft: #41605b;
  --cream: #f6f2e8;
  --paper: #fffdf7;
  --sage: #b9cbb9;
  --sage-light: #dce7d8;
  --terracotta: #d97757;
  --sand: #e9d9bd;
  --line: rgba(21, 60, 56, .16);
  --shadow: 0 24px 70px rgba(21, 60, 56, .11);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .8rem 1rem; background: var(--ink); color: #fff; }
.skip-link:focus { top: 1rem; }

.site-header {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 108px;
  padding: 1.5rem clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: clamp(.6rem, 2vw, 2rem);
}
.brand { display: block; min-width: 0; text-decoration: none; }
/* Purpose-built transparent lockup at its native 720:190 proportion. */
.brand-logo { display: block; width: min(100%, 355px); height: auto; aspect-ratio: 72 / 19; object-fit: contain; }
.language-nav { display: flex; gap: .2rem; padding: .25rem; border: 1px solid var(--line); border-radius: 999px; }
.language-button { border: 0; border-radius: 999px; padding: .55rem .72rem; color: var(--ink-soft); background: transparent; cursor: pointer; font: 700 .72rem/1 inherit; letter-spacing: .08em; }
.language-button:hover, .language-button:focus-visible { background: var(--sage-light); outline: none; }
.language-button.is-active { color: #fff; background: var(--ink); }

.hero { max-width: 1400px; margin: 0 auto; padding: 3rem clamp(1.25rem, 5vw, 5rem) 6rem; min-height: 690px; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); align-items: center; gap: clamp(2rem, 6vw, 7rem); overflow: hidden; }
.hero > *, .hero-copy { min-width: 0; }
.eyebrow { margin: 0 0 1.2rem; font-size: .75rem; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.045em; line-height: 1.03; }
h1 { max-width: 780px; font-size: clamp(3.4rem, 7vw, 7.3rem); }
h2 { font-size: clamp(2.3rem, 4.2vw, 4.4rem); }
.intro { max-width: 620px; margin: 2rem 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.hero-actions { margin-top: 2.4rem; display: flex; align-items: center; flex-wrap: wrap; gap: 1.3rem 2rem; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: .8rem 1.4rem; border-radius: 999px; text-decoration: none; font-weight: 700; }
.button-primary { color: #fff; background: var(--ink); box-shadow: 0 10px 25px rgba(21,60,56,.2); }
.button-primary:hover { background: #22534d; transform: translateY(-1px); }
.text-link { font-weight: 700; text-underline-offset: .35rem; }
.text-link span { display: inline-block; margin-left: .35rem; }
.language-list { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: .7rem; }
.language-list span { padding: .35rem .7rem; border: 1px solid var(--line); border-radius: 999px; font-size: .76rem; letter-spacing: .05em; }

.hero-art { position: relative; min-height: 590px; border-radius: 48% 48% 4rem 4rem; overflow: hidden; background: linear-gradient(#dce8e3 0 56%, #ead9bb 56%); box-shadow: var(--shadow); }
.sun { position: absolute; z-index: 1; top: 75px; right: 70px; width: 104px; height: 104px; border-radius: 50%; background: #f3c881; box-shadow: 0 0 0 25px rgba(243,200,129,.15); }
.landscape { position: absolute; z-index: 2; inset: auto -6% -2% -6%; width: 112%; height: auto; }
.hill-back { fill: #adc3ae; }
.hill-front { fill: #789b7d; }
.house { fill: #fffaf0; }
.roof { fill: none; stroke: #b65f46; stroke-width: 22; stroke-linecap: round; stroke-linejoin: round; }
.door { fill: #9f5e4b; }
.window { fill: #bdd8d5; stroke: var(--ink); stroke-width: 4; }
.cross { fill: var(--terracotta); }
.tree-trunk { fill: #785343; }
.tree { fill: #315f51; }
.path { fill: #e9d5b2; }

.care-section { padding: 7rem clamp(1.25rem, 6vw, 7rem); background: var(--paper); }
.section-heading { max-width: 800px; }
.section-heading > p:last-child { max-width: 620px; color: var(--ink-soft); font-size: 1.1rem; }
.care-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.care-card { min-height: 270px; padding: 2rem; border: 1px solid var(--line); border-radius: 1.5rem; background: #fff; }
.care-card:nth-child(2) { background: var(--sage-light); }
.care-card:nth-child(3) { background: #f3e7d3; }
.card-number { font-family: Georgia, serif; color: var(--terracotta); }
.care-card h3 { margin: 4rem 0 .8rem; font-family: Georgia, serif; font-size: 1.7rem; font-weight: 500; }
.care-card p { margin: 0; color: var(--ink-soft); }

.availability { margin: 0; padding: 6rem clamp(1.25rem, 6vw, 7rem); display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: end; color: #fff; background: var(--ink); }
.availability .eyebrow { color: #efb79f; }
.availability > p { max-width: 460px; margin: 0 0 .5rem; color: #d4e2df; font-size: 1.1rem; }
.site-footer { padding: 2.5rem clamp(1.25rem, 6vw, 7rem); display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; align-items: center; font-size: .85rem; }
.footer-brand { font-family: Georgia, serif; font-size: 1.1rem; }
.site-footer p { margin: 0; }
.legal { color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero { width: 100%; grid-template-columns: minmax(0, 1fr); padding-top: 2rem; }
  .hero-art { min-height: 500px; }
  .care-grid { grid-template-columns: 1fr; }
  .care-card { min-height: 220px; }
  .care-card h3 { margin-top: 2.5rem; }
  .availability { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer { grid-template-columns: 1fr; gap: .5rem; }
}

@media (max-width: 560px) {
  .site-header { min-height: 82px; padding: .9rem 1rem; column-gap: .55rem; }
  .brand-logo { width: 100%; }
  .language-nav { gap: .1rem; padding: .18rem; }
  .language-button { padding: .46rem .48rem; font-size: .67rem; }
  .hero { min-height: auto; padding-bottom: 4rem; }
  h1 { font-size: clamp(3rem, 14vw, 4.2rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-art { min-height: 390px; border-radius: 45% 45% 2rem 2rem; }
  .sun { width: 72px; height: 72px; top: 55px; right: 42px; }
  .care-section, .availability { padding-block: 4.5rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .button, .language-button { transition: background .2s ease, color .2s ease, transform .2s ease; }
}
