
/* ============================================================
   EDITABLE THEME — change these values to re-skin the whole site
   ============================================================ */
:root{
  --navy: #1D3557;
  --navy-light: #2C4A7A;
  --coral: #E8633C;
  --coral-dark: #C94F2C;
  --gold: #F0A93B;
  --sage: #6B9080;
  --cream: #FBF6EC;
  --paper: #FFFDF8;
  --ink: #26313F;
  --ink-soft: #5B6472;
  --line: #E7DFCE;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Work Sans', system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow: 0 6px 16px -10px rgba(29,53,87,0.18);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4{font-family: var(--font-display); margin:0; color: var(--navy); line-height:1.15;}
p{margin:0;}
.wrap{max-width:1180px; margin:0 auto; padding:0 28px;}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-body); font-weight:700; font-size:13px;
  letter-spacing:.06em; text-transform:uppercase; color: var(--coral-dark);
}
.eyebrow::before{content:""; width:18px; height:2px; background:var(--coral); border-radius:2px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius: 999px; font-weight:700; font-size:15.5px;
  font-family:var(--font-body); border:2px solid transparent; cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform:none; }
.btn-coral{ background: var(--coral); color:#fff; box-shadow: 0 8px 20px -8px rgba(232,99,60,.6);}
.btn-coral:hover{ background: var(--coral-dark); }
.btn-outline{ background: transparent; border-color: rgba(255,255,255,.55); color:#fff; }
.btn-outline:hover{ background: rgba(255,255,255,.12); }
.btn-navy{ background: var(--navy); color:#fff; }
.btn-navy:hover{ background: var(--navy-light); }

/* ---------------- Header ---------------- */
header{
  position: sticky; top:0; z-index:50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; padding:16px 28px; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{ width:44px; height:44px; flex-shrink:0; }
.brand-text .name{ font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--navy); }
.brand-text .sub{ font-size:12.5px; color:var(--ink-soft); font-weight:600; letter-spacing:.03em; }
nav.main-nav{ display:flex; align-items:center; gap:30px; }
nav.main-nav a{ font-weight:600; font-size:15px; color:var(--ink); position:relative; padding:4px 0; }
nav.main-nav a::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px;
  background:var(--coral); transition:width .2s ease;
}
nav.main-nav a:hover::after{ width:100%; }
.header-actions{ display:flex; align-items:center; gap:14px; }
.menu-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.menu-toggle span{ display:block; width:24px; height:2.5px; background:var(--navy); margin:5px 0; border-radius:2px; }

/* ---------------- Hero ---------------- */
.hero{
  position:relative; overflow:hidden;
  background: var(--navy);
}
.hero-inner{
  display:grid; grid-template-columns: 1.05fr .95fr; gap:40px; align-items:center;
  padding:60px 28px 72px;
}
.hero h1{ color:#fff; font-size:clamp(34px,4.6vw,54px); font-weight:700; letter-spacing:-0.01em; }
.hero h1 span{ color: var(--gold); }
.hero .tagline{ margin-top:18px; font-size:19px; color:#DCE4F0; font-weight:500; max-width:480px; }
.hero .cta-row{ margin-top:32px; display:flex; gap:16px; flex-wrap:wrap; }
.hero-art{ position:relative; }
.hero-art svg{ width:100%; height:auto; }
.hero-art img{ width:100%; height:auto; border-radius: var(--radius-lg); display:block; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.45); }
.wave-divider{ display:block; width:100%; line-height:0; margin-top:-2px; }
.wave-divider svg{ width:100%; height:70px; display:block; }

/* ---------------- Highlights ---------------- */
.highlights{ padding:52px 28px; background: var(--cream); }
.section-head{ text-align:center; max-width:640px; margin:0 auto 46px; }
.section-head h2{ font-size:clamp(26px,3vw,34px); margin-top:10px; }
.section-head p{ margin-top:12px; color:var(--ink-soft); font-size:16.5px; }
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; max-width:980px; margin:0 auto; }
.hi-card{
  background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:30px 22px; text-align:center; transition: transform .2s ease, box-shadow .2s ease;
}
.hi-card:hover{ box-shadow:none; }
.hi-badge{
  width:64px; height:64px; border-radius:50%; margin:0 auto 18px;
  display:flex; align-items:center; justify-content:center;
}
.hi-badge svg{ width:30px; height:30px; }
.hi-card h3{ font-size:18px; margin-bottom:8px; }
.hi-card p{ font-size:14.5px; color:var(--ink-soft); }

/* ---------------- Events ---------------- */
.events{ padding:52px 28px; background: var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.event-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; max-width:780px; margin:0 auto; }
.event-card{
  border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden;
  background:var(--cream); transition: transform .2s ease, box-shadow .2s ease;
}
.event-card:hover{ box-shadow:none; }
.event-media{ position:relative; height:150px; }
.event-media svg{ width:100%; height:100%; display:block; }
.event-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.event-date{
  position:absolute; top:14px; left:14px; background:#fff; border-radius:12px;
  padding:8px 14px; text-align:center; box-shadow:0 6px 16px -6px rgba(0,0,0,.25);
}
.event-date .mo{ display:block; font-size:11px; font-weight:700; letter-spacing:.05em; color:var(--coral-dark); text-transform:uppercase;}
.event-date .day{ display:block; font-family:var(--font-display); font-size:20px; font-weight:700; color:var(--navy); line-height:1;}
.event-body{ padding:22px; }
.event-body h3{ font-size:18px; margin-bottom:6px; }
.event-body p{ font-size:14.5px; color:var(--ink-soft); margin-bottom:16px; }
.event-link{ font-weight:700; font-size:14.5px; color:var(--navy); display:inline-flex; align-items:center; gap:6px; }
.event-link svg{ width:14px; height:14px; transition: transform .15s ease; }
.event-link:hover svg{ transform: translateX(3px); }

/* ---------------- CTA banner ---------------- */
.cta-banner{
  margin:0; padding:60px 28px; background: var(--coral); text-align:center;
}
.cta-banner h2{ color:#fff; font-size:clamp(24px,3vw,32px); }
.cta-banner p{ color:#FFE4D9; margin-top:10px; font-size:16px; }
.cta-banner .btn-row{ margin-top:26px; display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.cta-banner .btn-navy{ background:var(--navy); }

/* ---------------- Footer ---------------- */
footer{ background: var(--navy); color:#C9D3E2; padding:52px 28px 26px; }
.footer-grid{ display:grid; grid-template-columns:1.5fr 1fr; gap:32px; max-width:860px; margin:0 auto; }
.footer-grid .footer-col:last-child{ grid-column:1; }
.footer-brand .brand-text .name{ color:#fff; }
.footer-brand .brand-text .sub{ color:#93A2BC; }
.footer-brand p{ margin-top:16px; font-size:14.5px; color:#AAB6CB; max-width:280px; }
.footer-col h4{ color:#fff; font-size:15px; margin-bottom:16px; font-family:var(--font-body); font-weight:700;}
.footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14.5px; color:#AAB6CB; }
.footer-col a:hover{ color:#fff; }
.footer-col .contact-line{ display:flex; gap:10px; font-size:14.5px; color:#AAB6CB; align-items:flex-start; }
.footer-col .contact-line svg{ width:16px; height:16px; margin-top:3px; flex-shrink:0; color:var(--gold); }
.footer-bottom{
  max-width:1180px; margin:46px auto 0; padding-top:22px; border-top:1px solid rgba(255,255,255,.12);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size:13.5px; color:#8B99B4;
}
.social-row{ display:flex; gap:12px; }
.social-row a{
  width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
}
.social-row a:hover{ background:var(--coral); }
.social-row svg{ width:16px; height:16px; color:#fff; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; text-align:center; padding-top:52px;}
  .hero .tagline{ margin-left:auto; margin-right:auto; }
  .hero .cta-row{ justify-content:center; }
  .hero-art{ max-width:420px; margin:0 auto; }
  .card-grid{ grid-template-columns:repeat(2,1fr); }
  .event-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 720px){
  nav.main-nav{
    position:absolute; top:100%; left:0; right:0; background:var(--paper);
    flex-direction:column; align-items:flex-start; padding:20px 28px;
    border-bottom:1px solid var(--line); gap:16px; display:none;
  }
  nav.main-nav.open{ display:flex; }
  .menu-toggle{ display:block; }
  .header-actions .btn{ display:none; }
  .card-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
}
