:root {
  --ocean: #0b4f7c;
  --ocean-2: #1b8fc4;
  --sunset: #f26a2e;
  --sun: #ffb347;
  --palm: #2e9e4f;
  --pink: #d6246e;
  --sand: #fff8ef;
  --sand-2: #fdebd6;
  --ink: #1d2b36;
  --muted: #4a5a66;
  --card: #ffffff;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(11, 79, 124, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: "Atkinson Hyperlegible", system-ui, sans-serif;
  font-size: 1.2rem;           /* larger base size for older readers */
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.15; margin: 0 0 .5em; color: var(--ocean); }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.4rem; font-weight: 600; }
p { margin: 0 0 1em; }
a { color: var(--ocean); }
a:focus-visible, button:focus-visible { outline: 4px solid var(--sun); outline-offset: 3px; }
img { max-width: 100%; height: auto; }

.wrap { width: min(1160px, 100% - 32px); margin-inline: auto; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: #fff; padding: .6em 1em; border-radius: 8px; }

.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: .95rem; color: var(--pink); margin-bottom: .6em; }
.small { font-size: 1rem; }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  background: var(--sunset); color: #fff;
  padding: .85em 1.5em; border-radius: 999px; font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(242, 106, 46, .35);
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: #d9541b; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ocean); border: 3px solid var(--ocean); box-shadow: none; }
.btn-ghost:hover { background: var(--ocean); color: #fff; }
.btn-small { padding: .55em 1.1em; font-size: 1rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 248, 239, .96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--sand-2); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: "Fraunces", serif; font-weight: 800; font-size: 1.45rem; color: var(--ocean); }
.brand-sub { font-size: .95rem; color: var(--palm); font-weight: 700; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a:not(.btn) { text-decoration: none; font-weight: 700; color: var(--ink); }
.nav a:not(.btn):hover { color: var(--sunset); }
.menu-btn { display: none; font: inherit; font-weight: 700; background: var(--ocean); color: #fff; border: 0; border-radius: 12px; padding: .5em 1em; cursor: pointer; }

@media (max-width: 880px) {
  .menu-btn { display: block; }
  .nav { display: none; position: absolute; top: 80px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--sand); border-bottom: 3px solid var(--sunset); padding: 8px 16px 20px; }
  .nav.open { display: flex; }
  .nav a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid var(--sand-2); }
  .nav .btn { margin-top: 14px; text-align: center; }
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 179, 71, .55), transparent 45%),
    linear-gradient(160deg, #fff3e3 0%, #ffe0cc 45%, #ffd3e2 100%);
  padding: 64px 0 120px;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.lead { font-family: "Fraunces", serif; font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 600; color: var(--pink); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.2em; }
.hero-art img { width: 100%; max-width: 360px; display: block; margin-inline: auto; filter: drop-shadow(0 20px 40px rgba(11, 79, 124, .25)); }
.wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 90px; fill: var(--sand); }
@media (max-width: 800px) {
  .hero { padding: 40px 0 100px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 180px; }
}

/* Sections */
.section { padding: 80px 0; }
.section-intro { max-width: 60ch; color: var(--muted); }
.section-tint { background: linear-gradient(180deg, #e8f4fb, #d8ecf7); }
.section-sunset { background: linear-gradient(120deg, var(--ocean) 0%, #6b2c7a 55%, var(--pink) 100%); color: #fff; }
.section-sunset h2 { color: #fff; text-align: center; margin-bottom: 1.2em; }

.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

.card { background: var(--card); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.card-accent { background: var(--palm); color: #fff; }
.card-accent h3, .card-accent a { color: #fff; }
.card-glass { background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .3); box-shadow: none; }
.card-glass h3 { color: var(--sun); }
.mission { border-top: 8px solid var(--sunset); }
.quote { font-family: "Fraunces", serif; font-size: 1.35rem; color: var(--ocean); }
.link { font-weight: 700; }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.pillar { background: #fff; border-radius: var(--radius); padding: 24px; }
.pillar p { margin: 0; color: var(--muted); font-size: 1.1rem; }
.dot { display: block; width: 40px; height: 8px; border-radius: 99px; margin-bottom: 14px; }
.dot-blue { background: var(--ocean-2); } .dot-orange { background: var(--sunset); } .dot-green { background: var(--palm); } .dot-pink { background: var(--pink); }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; margin-top: 28px; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.program { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border-bottom: 6px solid var(--sun); transition: transform .2s ease; }
.program:nth-child(4n+2) { border-color: var(--palm); }
.program:nth-child(4n+3) { border-color: var(--pink); }
.program:nth-child(4n+4) { border-color: var(--ocean-2); }
.program:hover { transform: translateY(-4px); }
.program p { margin: 0; color: var(--muted); font-size: 1.1rem; }
.icon { font-size: 2.2rem; line-height: 1; margin-bottom: 12px; }

/* Placeholder markers for the owner to review */
.confirm { display: inline-block; background: #fff3a8; color: #6a4b00; border: 2px dashed #d4a000; border-radius: 8px; padding: 2px 8px; font-size: .9rem; font-weight: 700; margin-top: 4px; }

/* Contact */
.contact { margin: 0; }
.contact div { padding: 16px 0; border-bottom: 1px solid var(--sand-2); }
.contact dt { font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; }
.contact dd { margin: 4px 0 0; font-size: 1.2rem; }
.contact dd a { font-weight: 700; }
.social { display: flex; gap: 18px; }
.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; }
.map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* Footer */
.site-footer { background: var(--ocean); color: #d9ecf7; padding: 40px 0; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: var(--sun); }
.site-footer p { margin: 0; }
