:root {
  --ink: #12343b;
  --muted: #557076;
  --teal: #0f766e;
  --teal-dark: #0b5f59;
  --blue: #2f80ed;
  --gold: #f2b84b;
  --cream: #fff9ef;
  --sea: #e7f7f5;
  --lavender: #f1efff;
  --line: rgba(18, 52, 59, 0.12);
  --shadow: 0 22px 60px rgba(15, 118, 110, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(47, 128, 237, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(242, 184, 75, 0.18), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #fbfffe 45%, var(--cream) 100%);
  line-height: 1.6;
}
a { color: var(--teal-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo { width: 2.3rem; height: 2.3rem; }
.nav { display: flex; gap: 1rem; font-size: .95rem; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 650; }
.nav a:hover { color: var(--teal-dark); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(19rem, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem) 3rem;
}
.hero-copy { max-width: 44rem; }
.hero-copy > * { animation: rise-in .72s both; }
.hero-copy > :nth-child(1) { animation-delay: .05s; }
.hero-copy > :nth-child(2) { animation-delay: .12s; }
.hero-copy > :nth-child(3) { animation-delay: .2s; }
.hero-copy > :nth-child(4) { animation-delay: .28s; }
.hero-copy > :nth-child(5) { animation-delay: .36s; }
.eyebrow {
  margin: 0 0 .6rem;
  color: var(--teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: .78rem;
}
h1, h2, h3 { line-height: 1.1; margin: 0; letter-spacing: -0.04em; }
h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); max-width: 11ch; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; }
.lead {
  margin: 1.3rem 0 1.6rem;
  font-size: clamp(1.06rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 42rem;
}
.actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .92rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--teal); color: #fff; box-shadow: 0 14px 30px rgba(15, 118, 110, 0.25); }
.button.secondary { background: #fff; color: var(--teal-dark); border-color: var(--line); }
.small-note { color: var(--muted); font-size: .92rem; max-width: 38rem; }
.hero-art {
  border-radius: 2.2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.75);
  background: var(--sea);
}
.hero-art { animation: art-arrival 1s .16s both; }
.hero-art img { display: block; width: 100%; height: 100%; min-height: 19rem; object-fit: cover; animation: drift 9s ease-in-out 1.2s infinite alternate; }

.section { padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem); }
.section:not(.mission) { animation: rise-in .7s both; animation-timeline: view(); animation-range: entry 8% cover 28%; }
.section-intro { max-width: 52rem; margin-bottom: 1.5rem; }
.mission { max-width: 72rem; margin: 0 auto; }
.mission p:not(.eyebrow) { font-size: 1.25rem; color: var(--muted); }
.cards { display: grid; gap: 1rem; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .contact-card, .notice, .split {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  box-shadow: 0 18px 50px rgba(18,52,59,.08);
}
.card { padding: 1.5rem; }
.card p { color: var(--muted); margin-bottom: 0; }
.card-icon {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--teal-dark);
  background: var(--sea);
  border: 1px solid rgba(15,118,110,.12);
  border-radius: 999px;
  padding: .2rem .58rem;
  font-weight: 900;
  font-size: .8rem;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(18rem, 1.1fr);
  gap: 2rem;
  align-items: start;
  margin: 0 clamp(1rem, 5vw, 5rem);
  padding: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, rgba(231,247,245,.94), rgba(255,249,239,.92));
}
.split p { color: var(--muted); }
.highlight {
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  font-weight: 750;
  color: var(--ink) !important;
}
.service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.service-list span {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: .85rem .95rem;
  font-weight: 700;
  color: #284d53;
}
.notice {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.1fr);
  gap: 2rem;
  margin: 0 clamp(1rem, 5vw, 5rem);
  padding: clamp(2rem, 5vw, 3rem);
}
.notice p { color: var(--muted); }
.contact { display: flex; justify-content: center; }
.contact-card { width: min(100%, 56rem); padding: clamp(2rem, 5vw, 3rem); text-align: center; }
.contact-card .actions { justify-content: center; }
.contact-card p { color: var(--muted); }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}
.small-brand .logo { width: 1.9rem; height: 1.9rem; }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(1.2rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes art-arrival {
  from { opacity: 0; transform: scale(.96) translateY(1rem); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes drift {
  from { transform: scale(1); }
  to { transform: scale(1.035) translate3d(-.35%, -.45%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 880px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { flex-wrap: wrap; }
  .hero, .split, .notice { grid-template-columns: 1fr; }
  h1 { max-width: 100%; }
  .cards.three { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .actions .button { width: 100%; }
  .hero-art img { min-height: 14rem; }
}
