:root {
  --ink: #243126;
  --muted: #667267;
  --cream: #f7f4ec;
  --paper: #fffdf8;
  --sage: #dfe8d8;
  --sage-strong: #5e7559;
  --plum: #70506d;
  --line: #dedfd8;
  --shadow: 0 18px 50px rgba(36,49,38,.10);
  --radius: 24px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }

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

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,253,248,.92);
  border-bottom: 1px solid rgba(222,223,216,.8);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { text-decoration: none; font-weight: 800; letter-spacing: .16em; font-size: .93rem; color: var(--ink); }
.brand .brand-accent { color: var(--plum); }

.nav-links { display: flex; gap: 1.1rem; flex-wrap: wrap; align-items: center; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: .95rem; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }

.hero { padding: clamp(3.5rem, 8vw, 7rem) 0 4rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: clamp(2rem, 5vw, 4.75rem); align-items: center; }
.eyebrow { color: var(--plum); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; margin: 0 0 .8rem; }
h1, h2, h3 {
    line-height: 1.13;
    margin-top: 0;
}

h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -.045em;
    margin-bottom: 1.15rem;
}

.hero-brand {
    font-size: clamp(2.8rem, 4.2vw, 4.8rem);
    white-space: nowrap;
}

.hero-brand .brand-main {
    color: var(--ink);
}

.hero-brand .accent {
    color: var(--plum);
}

h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.025em; }
h3 { font-size: 1.15rem; }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); max-width: 680px; color: #435044; }
.quote { margin-top: 2rem; padding-left: 1.2rem; border-left: 3px solid var(--sage-strong); font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; color: #4d594e; }
.quote small { display: block; margin-top: .4rem; font-family: inherit; color: var(--muted); font-size: .86rem; }
.hero-photo-wrap { position: relative; padding: clamp(.55rem, 1.5vw, 1rem); }
.hero-photo-wrap::before {
  content: ""; position: absolute; inset: 7% -5% -5% 10%; border-radius: 38px; background: var(--sage); z-index: -1; transform: rotate(2deg);
}
.hero-photo {
  width: 100%; height: auto; max-height: 650px; object-fit: contain; object-position: center;
  border-radius: 30px; box-shadow: var(--shadow); background: var(--cream);
}


section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-soft { background: var(--cream); }
.section-head { max-width: 760px; margin-bottom: 2.4rem; }
.section-head p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); }
.card .num { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: var(--sage-strong); font-weight: 800; margin-bottom: 1rem; }
.card strong { color: var(--plum); }

.statement { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.statement p { font-size: 1.12rem; margin-top: 0; }
.pill { display: inline-flex; align-items: center; gap: .5rem; background: var(--sage); color: #354433; padding: .55rem .9rem; border-radius: 999px; font-weight: 700; font-size: .88rem; }

.future { text-align: center; background: linear-gradient(180deg, var(--paper), var(--cream)); }
.future-inner { max-width: 760px; margin: auto; }
.contact-box { margin-top: 2rem; padding: 2rem; background: var(--ink); color: #f7f4ec; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-box a { color: white; font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 4px; overflow-wrap: anywhere; }

.legal { padding: 4rem 0 6rem; }
.legal article { max-width: 820px; }
.legal h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }
.legal h2 { font-size: 1.45rem; margin-top: 2.4rem; }
.legal h3 { margin-top: 1.8rem; }
.legal p, .legal li { color: #445045; }
.legal ul { padding-left: 1.25rem; }
.notice { margin: 1.5rem 0; padding: 1rem 1.1rem; border-left: 3px solid var(--plum); background: #f7f1f6; }

.site-footer { border-top: 1px solid var(--line); padding: 2rem 0; color: var(--muted); font-size: .9rem; }
.footer-row { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links a { text-underline-offset: 3px; }

@media (max-width: 820px) {
  .hero-grid, .statement { grid-template-columns: 1fr; }
  .hero-photo-wrap { max-width: 620px; margin-inline: auto; }
  .hero-photo { width: 100%; height: auto; max-height: none; }
  .cards { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; padding: .9rem 0; flex-direction: column; }
  .nav-links { gap: .8rem 1rem; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 1.35rem), var(--max)); }
  .hero { padding-top: 2.8rem; }
  h1 { font-size: clamp(2.8rem, 18vw, 4.7rem); }
  .contact-box { padding: 1.5rem; }
}

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