/* =====================================================
   SAGET — styles.css
   Commercial palette. Fraunces + Instrument Sans.
   ===================================================== */

:root {
  /* Core palette */
  --ink:          #0f172a;
  --slate:        #1e293b;
  --body:         #334155;
  --muted:        #64748b;
  --subtle:       #94a3b8;
  --line:         #e2e8f0;
  --surface:      #f1f5f9;
  --bg:           #f8fafc;
  --white:        #ffffff;

  /* Brand accents */
  --sage:         #2d6a4f;
  --sage-dark:    #1b4332;
  --sage-pale:    #ecf5f1;
  --action:       #0f766e;
  --action-dark:  #0a5955;
  --action-pale:  #f0fdfa;
  --ember:        #b45309;   /* E in wordmark */

  /* Shadows */
  --shadow-sm:    0 1px 2px rgba(15,23,42,0.05), 0 2px 8px rgba(15,23,42,0.04);
  --shadow-md:    0 4px 14px rgba(15,23,42,0.08), 0 1px 4px rgba(15,23,42,0.05);
  --shadow-lg:    0 12px 40px rgba(15,23,42,0.1), 0 2px 8px rgba(15,23,42,0.05);

  /* Shape */
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --radius-xl:    24px;

  /* Layout */
  --max-width:    1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--body);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }


/* ── LAYOUT ─────────────────────────────────────── */

.container {
  width: min(var(--max-width), calc(100% - 2.8rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 15px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.55rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.section-body {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}


/* ── BUTTONS ─────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.16s ease;
  white-space: nowrap;
}

.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-primary {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  outline: none;
}

.btn-action {
  background: var(--action);
  color: var(--white);
  border-color: var(--action);
}
.btn-action:hover, .btn-action:focus-visible {
  background: var(--action-dark);
  border-color: var(--action-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,118,110,0.2);
  outline: none;
}

.btn-outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--line);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--white);
  border-color: var(--subtle);
  transform: translateY(-1px);
  outline: none;
}

.btn-sage {
  background: var(--sage-pale);
  color: var(--sage-dark);
  border-color: rgba(45,106,79,0.22);
}
.btn-sage:hover, .btn-sage:focus-visible {
  background: #d8eee4;
  border-color: rgba(45,106,79,0.38);
  transform: translateY(-1px);
  outline: none;
}


/* ── HEADER ──────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,250,252,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(var(--max-width), calc(100% - 2.8rem));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
}

.wordmark .e-mark { color: var(--ember); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  background: var(--surface);
  color: var(--slate);
  outline: none;
}

.main-nav .nav-cta {
  background: var(--action);
  color: var(--white) !important;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-left: 0.5rem;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  background: var(--action-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 0;
}

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

.mobile-nav a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--body);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.mobile-nav a:hover { color: var(--action); }

.mobile-nav .nav-cta {
  margin-top: 1.5rem;
  background: var(--action);
  color: var(--white) !important;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  border: none;
  border-bottom: none !important;
}

.mobile-nav .nav-cta:hover { background: var(--action-dark); color: var(--white); }

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.65rem;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--muted);
}


/* ── HERO ────────────────────────────────────────── */

.hero {
  padding: 6rem 0 5.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  width: min(var(--max-width), calc(100% - 2.8rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--action);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.05s;
}

.hero-eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--action);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.3rem;
  opacity: 0;
  animation: fadeUp 0.65s ease forwards 0.15s;
}

.hero-title em {
  font-style: italic;
  color: var(--sage);
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.65s ease forwards 0.18s;
}

.rotating-word-wrapper {
  display: inline-block;
  position: relative;
  min-width: 8ch;
  text-align: left;
}

.rotating-word {
  display: inline-block;
  position: absolute;
  left: 0;
  opacity: 0;
  color: var(--action);
  font-weight: 700;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.rotating-word.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.72;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.65s ease forwards 0.25s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.65s ease forwards 0.35s;
}


/* ── HERO OUTCOME CARD ───────────────────────── */

.hero-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-md);
}

.hero-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--action);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-card-label::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--action);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--action);
  margin-top: 0.1rem;
}

.hero-card-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}


/* ── SKILLS SECTION ──────────────────────────────── */

.skills-section {
  background: var(--bg);
}

.skills-header {
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.skill-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s, transform 0.18s;
}

.skill-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.skill-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--action-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--action);
}

.skill-icon svg { width: 17px; height: 17px; }

.skill-text {
  padding-top: 0.3rem;
}

.skill-text strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.18rem;
}

.skill-text span {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}


/* ── SERVICE TIERS ───────────────────────────────── */

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

.tiers-header {
  margin-bottom: 2.5rem;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.tier-card {
  position: relative;
  padding: 1.75rem;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.tier-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tier-card.featured {
  background: var(--white);
  border-color: var(--action);
  box-shadow: 0 0 0 1px var(--action), var(--shadow-md);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: fit-content;
}

.tier-badge.popular {
  background: rgba(15,118,110,0.1);
  color: var(--action);
}

.tier-badge.standard {
  background: var(--surface);
  color: var(--muted);
}

.tier-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.tier-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.35rem;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.8rem 1rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.tier-price-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
}

.tier-price-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.tier-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}


/* ── CREDIBILITY STRIP ───────────────────────────── */

.credibility-strip {
  padding: 1.4rem 0;
  background: var(--sage-pale);
  border-top: 1px solid rgba(45,106,79,0.14);
  border-bottom: 1px solid rgba(45,106,79,0.14);
}

.credibility-inner {
  width: min(var(--max-width), calc(100% - 2.8rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.credibility-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.credibility-text {
  font-size: 0.87rem;
  color: var(--sage-dark);
  line-height: 1.6;
}

.credibility-text a {
  color: var(--sage);
  font-weight: 600;
  text-decoration: none;
}

.credibility-text a:hover { text-decoration: underline; }


/* ── ENQUIRY SECTION & FORM ──────────────────────── */

.enquiry-section {
  background: var(--bg);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: start;
}

.enquiry-copy h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.enquiry-copy p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.enquiry-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.enquiry-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.step-dot {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--action-pale);
  border: 1.5px solid rgba(15,118,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--action);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.enquiry-step p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.enquiry-step p strong {
  display: block;
  color: var(--body);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.form-card-sub {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  font-size: 0.9rem;
  transition: border-color 0.16s, box-shadow 0.16s;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--action);
  box-shadow: 0 0 0 3px rgba(15,118,110,0.1);
  background: var(--white);
}

.form-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.82rem;
  color: var(--subtle);
  margin-top: 0.9rem;
}

.form-note a {
  color: var(--muted);
  text-decoration: underline;
}


/* ── PAGE HERO (inner pages) ─────────────────────── */

.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 4.5rem 0 3.5rem;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.page-eyebrow::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

.page-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.06rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 580px;
}


/* ── SERVICE SUB-NAV ──────────────────────────────── */

.service-subnav {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: rgba(248,250,252,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.subnav-inner {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.subnav-link {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.75rem 1rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.subnav-link:hover,
.subnav-link.active {
  color: var(--ink);
  border-bottom-color: var(--action);
}

.subnav-link.subnav-cta {
  margin-left: auto;
  background: var(--action);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.45rem 1rem;
  font-weight: 600;
  font-size: 0.8rem;
}

.subnav-link.subnav-cta:hover {
  background: var(--action-dark);
}

@media (max-width: 860px) {
  .service-subnav { top: 68px; }
  .subnav-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .subnav-link { font-size: 0.78rem; padding: 0.65rem 0.75rem; }
}

/* ── SERVICES PAGE ───────────────────────────────── */

.services-section {
  background: var(--bg);
}

.services-intro {
  max-width: 600px;
  margin-bottom: 3rem;
}

.services-intro p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.workshop-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.workshop-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--action));
}

.workshop-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.workshop-card.full-width {
  grid-column: 1 / -1;
}

.workshop-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
  display: block;
}

.workshop-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.workshop-outcome {
  font-size: 0.91rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--body);
}

.workshop-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--body);
  padding: 0.62rem 0.9rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
}

.workshop-price span {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.12rem;
  color: var(--ink);
}

.workshop-topics {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.workshop-topics-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.workshop-topics ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.workshop-topics li {
  font-size: 0.86rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.workshop-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

/* Consulting cards */

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

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.consulting-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.consulting-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.consulting-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.consulting-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.consulting-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  flex: 1;
}

.consulting-deliverables li {
  font-size: 0.86rem;
  color: var(--body);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.consulting-deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--action);
}

.consulting-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--body);
  padding: 0.6rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-top: auto;
}

.consulting-price span {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  color: var(--ink);
}


/* ── ABOUT PAGE ──────────────────────────────────── */

.about-section {
  background: var(--bg);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.founder-card:hover { box-shadow: var(--shadow-md); }

.founder-initials {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--slate);
  flex-shrink: 0;
}

.founder-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.founder-role {
  font-size: 0.82rem;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.founder-bio {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.founder-contact {
  font-size: 0.82rem;
  color: var(--action);
  text-decoration: none;
  font-weight: 500;
}

.founder-contact:hover { text-decoration: underline; }

.sage-connection {
  background: var(--sage-pale);
  border: 1px solid rgba(45,106,79,0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 3.5rem;
}

.sage-connection h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

.sage-connection p {
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.75;
  max-width: 640px;
}

.sage-connection a {
  color: var(--sage);
  font-weight: 600;
  text-decoration: none;
}

.sage-connection a:hover { text-decoration: underline; }


/* ── FOOTER ──────────────────────────────────────── */

.site-footer {
  background: var(--slate);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.6fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer-wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.55rem;
}

.footer-wordmark .e-mark { color: var(--ember); }

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

.footer-bottom a {
  color: rgba(255,255,255,0.32);
  text-decoration: none;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.55); }


/* ── ANIMATIONS ──────────────────────────────────── */

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

.fade-up { opacity: 0; animation: fadeUp 0.65s ease forwards; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }


/* ── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 1024px) {
  .consulting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .tier-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .consulting-grid { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: 1fr; }

  .workshop-card.full-width { grid-column: auto; }

  .hero { padding: 4.5rem 0 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 2rem); }
  .header-inner { width: calc(100% - 2rem); }
  .credibility-inner { width: calc(100% - 2rem); }

  .hero { padding: 3.8rem 0 3.5rem; }
  .hero-grid { gap: 2rem; }
  .section { padding: 3.5rem 0; }
  .page-hero { padding: 3.2rem 0 2.6rem; }

  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero-title { font-size: clamp(2.4rem, 13vw, 3.4rem); }
  .page-title { font-size: clamp(2.2rem, 11vw, 3rem); }

  .form-card { padding: 1.5rem; }
  .founder-card { flex-direction: column; gap: 1rem; }
}
