:root {
  --ink: #20343b;
  --muted: #63747a;
  --paper: #fffdf9;
  --wash: #f2f7f4;
  --mint: #cfe4dc;
  --blue: #668fa0;
  --coral: #d88f79;
  --gold: #d4ae68;
  --line: rgba(32, 52, 59, 0.13);
  --shadow: 0 22px 60px rgba(47, 72, 77, 0.13);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 12%, rgba(216, 143, 121, .15), transparent 25rem),
    radial-gradient(circle at 92% 5%, rgba(102, 143, 160, .18), transparent 28rem),
    var(--paper);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: #365f70; }
a:hover { color: #244855; }
img { max-width: 100%; }

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

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .75rem;
}
.eyebrow-row .eyebrow { margin: 0; }
.hero-mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid rgba(32, 52, 59, .13);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(47, 72, 77, .12);
}

.nav { display: flex; align-items: center; gap: .25rem; flex-wrap: wrap; }
.nav a {
  padding: .5rem .7rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 10px;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); background: var(--wash); }

.container { width: min(1080px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 2rem)); margin: 0 auto; }

.hero {
  min-height: 620px;
  padding: 5.5rem 0 4rem;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 4rem;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: #477281;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { margin: 0 0 1rem; font-size: clamp(3rem, 7vw, 5.8rem); }
h2 { margin: 0 0 1rem; font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.3rem; }
.hero h1 { font-size: clamp(2.05rem, 4.5vw, 3.65rem); }
.tagline-line { display: block; white-space: nowrap; }
.lede { max-width: 650px; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.3rem); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .7rem 1.1rem;
  color: white;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 14px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { color: white; background: #31505a; }
.button.secondary { color: var(--ink); background: transparent; }
.button.secondary:hover { background: var(--wash); }
.actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.6rem; }

.art-stack { position: relative; min-height: 490px; }
.art-card {
  position: absolute;
  width: 72%;
  overflow: hidden;
  background: white;
  border: 8px solid rgba(255,255,255,.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.art-card img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.art-card:nth-child(1) { top: 0; right: 0; transform: rotate(4deg); }
.art-card:nth-child(2) { top: 125px; left: 0; transform: rotate(-5deg); }
.art-card:nth-child(3) { bottom: 0; right: 5%; width: 62%; transform: rotate(2deg); }

.section { padding: 5rem 0; }
.section.tint { background: rgba(207, 228, 220, .28); border-block: 1px solid var(--line); }
.section-intro { max-width: 680px; margin-bottom: 2rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  padding: 1.5rem;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(47,72,77,.07);
}
.card h3 { margin: .5rem 0; }
.card p { margin: 0; color: var(--muted); }
.icon-dot {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--mint);
  font-size: 1.25rem;
}

.page-hero { padding: 5rem 0 2.5rem; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 4.7rem); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}
.back-link:hover { color: var(--ink); }
.content-card {
  margin-bottom: 4rem;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-card h2 { margin-top: 2.4rem; font-size: 1.75rem; }
.content-card h2:first-child { margin-top: 0; }
.content-card h3 { margin-top: 2rem; }
.content-card li + li { margin-top: .45rem; }
.meta { color: var(--muted); font-size: .92rem; }
.notice { padding: 1rem 1.15rem; background: #fff5df; border-left: 4px solid var(--gold); border-radius: 10px; }

details { padding: 1rem 0; border-bottom: 1px solid var(--line); }
details:first-of-type { border-top: 1px solid var(--line); }
summary { font-weight: 720; cursor: pointer; }
details p { color: var(--muted); }

form { display: grid; gap: 1rem; margin-top: 1.5rem; }
.field { display: grid; gap: .4rem; }
label { font-weight: 680; }
input, select, textarea {
  width: 100%;
  padding: .8rem .9rem;
  color: var(--ink);
  background: white;
  border: 1px solid #a9b6b8;
  border-radius: 12px;
  font: inherit;
}
textarea { min-height: 170px; resize: vertical; }
input:focus, select:focus, textarea:focus, button:focus, a:focus {
  outline: 3px solid rgba(102,143,160,.38);
  outline-offset: 2px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkbox { display: flex; align-items: flex-start; gap: .7rem; }
.checkbox input { width: auto; margin-top: .35rem; }
.form-status { min-height: 1.6rem; color: #7b4c20; font-weight: 650; }

.site-footer { padding: 2.5rem 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }

@media (max-width: 800px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 3.5rem; gap: 2rem; }
  .art-stack { min-height: 430px; }
  .grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .hero { padding-top: 2.5rem; }
  .art-stack { min-height: 340px; }
  .art-card { border-width: 5px; }
  .form-row { grid-template-columns: 1fr; }
}

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