:root {
  --dt-teal: #4F86A0;
  --dt-blue: #76C4D5;
  --dt-white: #FFFFFF;
  --dt-black: #000000;
  --dt-ink: #1C2B30;
  --dt-muted: #5C7480;
  --dt-bg: #F7FAFB;
  --dt-card-bg: #FFFFFF;
  --dt-border: #E0EAEC;
  --radius: 14px;
  --max-width: 1080px;
  --shadow: 0 4px 18px rgba(31, 61, 71, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--dt-ink);
  background: var(--dt-bg);
  line-height: 1.6;
}

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

a { color: var(--dt-teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--dt-white);
  border-bottom: 1px solid var(--dt-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img { height: 52px; width: auto; }

.brand-name {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dt-ink);
  letter-spacing: 0.2px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--dt-ink);
  font-weight: 600;
  font-size: 1.05rem;
}

.main-nav a:hover { color: var(--dt-teal); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--dt-border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    width: 100%;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0 18px;
  }
  .main-nav a {
    display: block;
    padding: 10px 4px;
    border-bottom: 1px solid var(--dt-border);
  }
  .site-header .wrap { flex-wrap: wrap; }
}

/* Hero */
.hero {
  padding: 84px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin: 0 0 16px;
  color: var(--dt-ink);
}

.hero h1.hero-logo {
  margin: 0 auto 24px;
}
.hero h1.hero-logo img {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--dt-muted);
  max-width: 640px;
  margin: 0 auto 8px;
}

/* Home hero specifically: fills the viewport below the header, big logo,
   tagline sits tight beneath it */
.hero-home {
  min-height: calc(100vh - 81px);
  display: flex;
  align-items: center;
  padding: 32px 0;
}
.hero-home .wrap { width: 100%; }
.hero-home h1.hero-logo {
  margin: 0 auto 8px;
}
.hero-home h1.hero-logo img {
  max-width: 640px;
}
.hero-home p.lead {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dt-ink);
  max-width: 640px;
  margin: 0 auto;
}

/* Hero banner (full-width image, e.g. Own The Day) */
.hero-banner-image {
  max-width: 760px;
  margin: 0 auto 40px;
}
.hero-banner-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Hero split (image + copy side by side, e.g. Coaching / About / Teaching Resources) */
.hero-split { padding: 64px 0; }
.hero-split .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.hero-split h1 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  margin: 0 0 16px;
  color: var(--dt-ink);
}
.hero-split p.lead {
  font-size: 1.15rem;
  color: var(--dt-muted);
  margin: 0 0 22px;
}
.hero-split .hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (min-width: 820px) {
  .hero-split .wrap {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    text-align: left;
  }
  .hero-split .hero-copy { order: 1; }
  .hero-split .hero-image { order: 2; }
  .hero-split p.lead { margin-left: 0; margin-right: 0; }
}

/* Offering cards grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  padding: 16px 0 72px;
}

.offer-card {
  background: var(--dt-card-bg);
  border: 1px solid var(--dt-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(31, 61, 71, 0.14);
}

.offer-card h3 { margin: 0; font-size: 1.25rem; }
.offer-card p { margin: 0; color: var(--dt-muted); flex-grow: 1; }

.offer-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dt-teal);
  background: rgba(79, 134, 160, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--dt-teal);
  color: var(--dt-white);
}
.btn-primary:hover { background: #416f85; text-decoration: none; color: var(--dt-white); box-shadow: 0 8px 20px rgba(79, 134, 160, 0.35); }

.btn-outline {
  background: transparent;
  color: var(--dt-teal);
  border: 2px solid var(--dt-teal);
}
.btn-outline:hover { background: rgba(79,134,160,0.08); text-decoration: none; }

/* Generic section */
.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--dt-white);
  border-top: 1px solid var(--dt-border);
  border-bottom: 1px solid var(--dt-border);
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 10px;
}

.section .subtitle {
  color: var(--dt-muted);
  margin: 0 0 32px;
  max-width: 640px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.testimonial {
  background: var(--dt-bg);
  border: 1px solid var(--dt-border);
  border-radius: var(--radius);
  padding: 22px;
}

.testimonial p.quote {
  font-style: italic;
  margin: 0 0 12px;
  color: var(--dt-ink);
}

.testimonial .name {
  font-weight: 700;
  color: var(--dt-teal);
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.price-card {
  background: var(--dt-white);
  border: 1px solid var(--dt-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(31, 61, 71, 0.14);
}

.price-card.featured { border: 2px solid var(--dt-teal); }

.price-card .amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dt-teal);
  margin: 10px 0 4px;
}

.price-card .amount span { font-size: 1rem; color: var(--dt-muted); font-weight: 600; }

.price-card ul {
  text-align: left;
  padding-left: 1.1em;
  color: var(--dt-muted);
  margin: 18px 0;
}

/* Lists with check marks */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--dt-ink);
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--dt-teal);
  font-weight: 700;
}

/* Outbound link card (Own The Day, Safement) */
.outbound-card {
  background: var(--dt-white);
  border: 1px solid var(--dt-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.outbound-card img.sub-logo { height: 64px; margin: 0 auto 18px; }

/* Own The Day accent styling (used sparingly, scoped to its card/page only) */
.otd-accent {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--dt-blue);
}

/* Footer */
.site-footer {
  background: var(--dt-ink);
  color: #C9D8DC;
  padding: 40px 0 28px;
  margin-top: 40px;
}

.site-footer a { color: #C9D8DC; }
.site-footer a:hover { color: var(--dt-white); }

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-note {
  font-size: 0.82rem;
  color: #93A6AB;
}

/* Forms */
.enquiry-note {
  background: var(--dt-bg);
  border: 1px dashed var(--dt-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 26px;
}

.mailerlite-embed-mount {
  margin-top: 10px;
}
