:root {
  --cream: #FFF8EF;
  --cream-dark: #FBEFDD;
  --ink: #2E2A26;
  --ink-soft: #5B564F;
  --coral: #F0724C;
  --coral-dark: #D65B38;
  --teal: #2E9E93;
  --teal-dark: #22766D;
  --yellow: #F5B942;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(46, 42, 38, 0.10);
  --font-head: 'Quicksand', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--coral-dark);
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }
h2.center { text-align: center; margin-bottom: 48px; font-size: clamp(1.8rem, 3vw, 2.4rem); }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(240, 114, 76, 0.35);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-call {
  background: var(--teal);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.92rem;
  white-space: nowrap;
}
.btn-call:hover { background: var(--teal-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(46,42,38,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.logo-mark { font-size: 1.7rem; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--coral-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46,42,38,0.55) 0%, rgba(46,42,38,0.45) 40%, rgba(20,60,55,0.75) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 90px;
}
.hero .eyebrow {
  color: var(--yellow);
  font-weight: 800;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  max-width: 800px;
}
.hero-sub {
  margin-top: 20px;
  font-size: 1.2rem;
  max-width: 560px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Strip */
.strip {
  background: var(--teal);
  color: var(--white);
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 24px;
}
.strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.strip-item strong { font-family: var(--font-head); font-size: 1.02rem; }
.strip-item span { font-size: 0.85rem; opacity: 0.9; }

/* About */
.about { padding: 96px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 18px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.05rem; }
.link-arrow {
  color: var(--coral-dark);
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}
.link-arrow:hover { text-decoration: underline; }

/* Programmes */
.programmes { padding: 96px 0; background: var(--cream-dark); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  text-align: center;
}
.card-icon { font-size: 2.4rem; margin-bottom: 14px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* Why */
.why { padding: 96px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature { text-align: center; padding: 0 8px; }
.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}
.feature h4 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: 0.93rem; }

/* Gallery */
.gallery { padding: 96px 0; background: var(--cream-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 520px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-large { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Contact */
.contact { padding: 96px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.contact-info p { color: var(--ink-soft); margin-bottom: 24px; font-size: 1.05rem; }
.contact-list { list-style: none; margin-bottom: 32px; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(46,42,38,0.08);
}
.contact-list a { color: var(--ink); text-decoration: none; }
.contact-list a:hover { color: var(--coral-dark); }
.ci-icon { font-size: 1.2rem; }
.contact-map {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 48px 0;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-inner p { font-size: 0.9rem; margin-top: 6px; }
.footer-copy { opacity: 0.6; margin-top: 14px; }

/* Responsive */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-media img { aspect-ratio: 16/10; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 220px); height: auto; }
  .gallery-large { grid-row: auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }
  .strip-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr; }
}
