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

:root {
  --zest-teal:      #76d8e2;   /* primary brand teal */
  --zest-teal-dark: #3aabb7;   /* darker teal for hover / accents */
  --zest-teal-deep: #1d6e77;   /* deep teal for text on light bg */
  --zest-teal-bg:   #edfbfc;   /* very light teal tint for page bg */
  --zest-teal-mid:  #b5ecf1;   /* soft mid teal for borders/pills */
  --zest-white:     #ffffff;
  --zest-dark:      #0d3d42;   /* near-black with teal undertone */
  --zest-mid:       #2e7d86;   /* mid tone for body text */
}

body {
  font-family: 'Droid Serif W01 Regular', serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
}

.page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

a { color: #1d6e77; text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav {
  background: #fff;
  border-bottom: 2px solid #eee;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-brand img { height: 160px; width: auto; }

.nav-brand-text { font-size: 1.5rem; font-weight: bold; letter-spacing: 0.05em; color: #222; }
.nav-brand-sub { font-size: 1rem; color: #777; letter-spacing: 0.08em; }

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #000;
}

.nav-links-left {
  display: flex;
  flex-wrap: wrap;
}

.nav-links-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 0.5rem;
  font-size: 0.82rem;
  color: #444;
}

.nav-links-right a {
  color: #444;
  padding: 0;
  border-bottom: none !important;
  letter-spacing: 0.03em;
}

.nav-links-right a:hover {
  color: #1d6e77;
  text-decoration: underline;
}

.nav-facebook {
  font-weight: bold;
  font-size: 1rem !important;
  color: #444 !important;
  text-transform: lowercase;
  border-bottom: none !important;
}

.nav-links a {
  display: block;
  padding: 1.25rem 1rem;
  font-size: 0.85rem;
  color: #444;
  letter-spacing: 0.05em;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: #1d6e77;
  border-bottom-color: #1d6e77;
  text-decoration: none;
}

.nav-cta {
  background: #1d6e77;
  color: #fff !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 4px;
  border: none !important;
  font-size: 0.82rem !important;
  align-self: center;
}
.nav-cta:hover { background: var(--zest-teal-deep); }

/* CTA button */
.btn-primary {
  background: var(--zest-teal);
  color: var(--zest-dark);
  font-weight: 600;
  border-radius: 999px;
  padding: 13px 32px;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--zest-teal-dark); transform: translateY(-1px); }

.btn-outline {
  border: 2px solid var(--zest-dark);
  color: var(--zest-dark);
  font-weight: 600;
  border-radius: 999px;
  padding: 11px 30px;
  display: inline-block;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.btn-outline:hover { background: rgba(13,61,66,0.08); }
.hero-bg .btn-outline { border-color: white; color: white; }
.hero-bg .btn-outline:hover { background: var(--zest-teal-bg); }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--zest-teal) 0%, var(--zest-teal-mid) 50%);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}
.hero h1 { font-size: 3rem; letter-spacing: 0.1em; margin-bottom: 0.5rem; color: #000;}
.hero p { font-size: 1.2rem; color: #ddd; margin-bottom: 2rem; letter-spacing: 0.15em; }
.hero .btn { background: var(--zest-teal-dark); color: #fff; padding: 0.8rem 2rem; border-radius: 4px; font-size: 1rem; display: inline-block; }
.hero .btn:hover { background: var(--zest-teal-deep); text-decoration: none; }

/* SECTIONS */
.section { padding: 4rem 2rem; max-width: 900px; margin: 0 auto; }
.section-wide { padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }

h2 { font-size: 1.6rem; color: #222; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; color: var(--zest-teal-dark); margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 2rem;
  max-width: 100%;
  padding: 0 2rem;
}
.card {
  border: 1px solid var(--zest-teal-mid);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--zest-teal-bg);
}
.card h3 { color: var(--zest-teal-dark); font-size: 1.5rem; }
.card p { font-size: 1.25rem; }
.card .tag { font-size: 0.975rem; color: #888; font-style: italic; margin-bottom: 0.5rem; }

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* PRICE TABLE */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.price-card {
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.price-card h3 { color: var(--zest-teal-dark); font-size: 1rem; margin-bottom: 0.25rem; }
.price-card .price { font-size: 1.8rem; font-weight: bold; color: #222; margin: 0.5rem 0; }
.price-card ul { text-align: left; list-style: disc inside; font-size: 0.88rem; color: #555; }
.price-card li { margin-bottom: 0.25rem; }
.price-card .casual { background: #f9f9f9; border-top: 1px solid #eee; margin-top: 1rem; padding-top: 1rem; }

/* HIGHLIGHT BOX */
.highlight {
  background: var(--zest-teal-bg);
  border-left: 4px solid var(--zest-teal-dark);
  padding: 1.5rem 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}
.highlight h2 { color: var(--zest-teal-dark); }

/* CONTACT */
.contact-info { display: flex; flex-direction: column; gap: 0.5rem; font-size: 1rem; margin-top: 1rem; }
.contact-info a { color: var(--zest-teal-dark); }

/* FOOTER */
footer {
  background: #222;
  color: #bbb;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.85rem;
}
footer a { color: var(--zest-teal); }

/* LIST FEATURES */
.features { list-style: none; padding: 0; }
.features li { padding: 0.4rem 0; padding-left: 1.5rem; position: relative; }
.features li::before { content: "✓"; color: var(--zest-teal-dark); position: absolute; left: 0; font-weight: bold; }

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #444;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px) {
  /* Show hamburger, hide desktop CTA */
  .hamburger { display: flex; }
  .nav-top-row .btn-primary { display: none; }

  /* Shrink logo a little on mobile */
  .nav-brand img { height: 80px; }
  .nav-brand-text { font-size: 1.1rem; }
  .nav-brand-sub { font-size: 0.8rem; }

  /* Collapse nav links */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid #eee;
    padding-bottom: 0.5rem;
  }

  .nav-links.open { display: flex; }

  .nav-links-left,
  .nav-links-right {
    display: flex;
    flex-direction: column;
  }

  .nav-links-left a,
  .nav-links-right a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid #f0f0f0 !important;
    border-bottom-color: #f0f0f0 !important; /* override the teal active indicator */
    font-size: 0.9rem;
  }

  /* Re-apply active indicator for left links only */
  .nav-links-left a.active {
    color: #1d6e77;
    border-left: 3px solid #1d6e77;
    padding-left: calc(0.5rem - 3px);
  }

  /* Right-side contact links get a slightly muted style */
  .nav-links-right {
    gap: 0;
    padding-right: 0;
    padding-top: 0.25rem;
  }

  .nav-links-right a {
    font-size: 0.82rem;
    color: #666;
  }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .nav-top-row { flex-wrap: nowrap; }
  .nav-links a { padding: 0.75rem 0.5rem; }
}

/* ACCORDION */
.accordion-container {
  display: flex;
  height: clamp(200px, 50vw, 600px);
  overflow: hidden;
}

.accordion-item {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* INTRO TWO-COLUMN SECTION */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 3rem;
  align-items: start;
}

.intro-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.4rem;
  letter-spacing: 0.1em;
  color:black;
  margin-bottom: 0.25rem;
  text-align: center;
}

.intro-tagline {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: #777;
  margin-bottom: 1.5rem;
  text-align: center;
}

.intro-name {
  font-size: 2.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.1rem;
  text-align: center;
}

.intro-role {
  font-size: 1.9rem;
  color: #777;
  margin-bottom: 2rem;
  text-align: center;
}

.intro-cta {
  display: inline-block;
  margin-top: 2rem;
  background: var(--zest-teal-dark);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  transition: background 0.2s;
}

.intro-cta:hover {
  background: var(--zest-teal-deep);
  text-decoration: none;
  color: #fff;
}

.intro-body {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intro-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.intro-list li::before {
  content: "✓";
  color: var(--zest-teal-dark);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.intro-image {
  position: sticky;
  top: 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.intro-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .intro-section {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
  .intro-image {
    position: static;
    order: -1;
  }
}

/* ABOUT SECTION */
.about-section h2 {
  font-size: 3rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
}

.about-section p {
  margin-bottom: 1.7em;
}

.about-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-bg {
  position: relative;
  background: #f9f9f9;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.about-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/home/background.avif') center center / cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

.classes-bg {
  position: relative;
  background: #f9f9f9;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.classes-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/classes/background.avif') center center / cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
  color:black;
}

.classes-lesson {
  color:black;
}

/* ENQUIRE FORM SECTION */
.enquire-section {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  background-color: var(--zest-teal-bg);
  background-image:
    radial-gradient(ellipse at 10% 20%, rgba(58,143,143,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(58,143,143,0.06) 0%, transparent 50%);
}

.enquire-card {
  background: #f7fbfb;
  border: 1px solid var(--zest-teal-mid);
  border-radius: 4px;
  max-width: 580px;
  width: 100%;
  padding: 56px 52px;
  box-shadow: 0 4px 40px rgba(14,36,36,0.08), 0 1px 4px rgba(0,0,0,0.04);
  animation: enquireFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes enquireFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.enquire-header { margin-bottom: 36px; }

.enquire-eyebrow {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--zest-teal-deep);
  margin-bottom: 10px;
}

.enquire-title {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.15;
  color: #141e1e;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.enquire-title em {
  font-style: italic;
  color: var(--zest-teal-deep);
}

.enquire-tagline {
  font-size: 13.5px;
  font-weight: 300;
  color: #5e7878;
  line-height: 1.65;
  margin-bottom: 20px;
}

.enquire-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 14px 16px;
  background: rgba(58,143,143,0.07);
  border-left: 2px solid var(--zest-teal-dark);
  border-radius: 0 2px 2px 0;
}

.enquire-contact-strip a {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--zest-teal-deep);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.enquire-contact-strip a:hover { color: var(--zest-teal-dark); }

.enquire-divider {
  height: 1px;
  background: var(--zest-teal-mid);
  margin: 32px 0;
}

.enquire-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.enquire-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.enquire-field.enquire-full { grid-column: 1 / -1; }

.enquire-field label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5e7878;
}

.enquire-field input,
.enquire-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #141e1e;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--zest-teal-mid);
  padding: 8px 0;
  width: 100%;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.enquire-field input::placeholder,
.enquire-field textarea::placeholder {
  color: #c4b8b0;
  font-weight: 300;
}

.enquire-field input:focus,
.enquire-field textarea:focus {
  border-color: var(--zest-teal-dark);
}

.enquire-field textarea {
  resize: none;
  height: 110px;
  line-height: 1.7;
}

.enquire-submit-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.enquire-note {
  font-size: 11px;
  color: #5e7878;
  font-weight: 300;
  flex: 1;
  margin-bottom: 0;
}

.enquire-submit-row button[type="submit"] {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--zest-teal-dark);
  border: none;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  white-space: nowrap;
}

.enquire-submit-row button[type="submit"]:hover {
  background: var(--zest-teal-deep);
  transform: translateY(-1px);
}

.enquire-submit-row button[type="submit"]:active {
  transform: translateY(0);
}

.enquire-success {
  display: none;
  text-align: center;
  padding: 32px 0 8px;
}

.enquire-check {
  font-size: 32px;
  margin-bottom: 12px;
}

.enquire-success p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--zest-teal-deep);
  margin-bottom: 0;
}

@media (max-width: 500px) {
  .enquire-card { padding: 36px 28px; }
  .enquire-title { font-size: 28px; }
  .enquire-form-grid { grid-template-columns: 1fr; }
  .enquire-submit-row { flex-direction: column; align-items: flex-end; }
  .enquire-note { display: none; }
}