/* =========================================================================
   WISELOOP CONSULTING — Editorial Magazine Stylesheet (v2)
   Aesthetic: Cream paper × deep ink × claret accent. FT Weekend × NYT Mag.
   ========================================================================= */

/* -------- 1. Tokens -------- */
:root {
  /* Color — cooler gray-driven palette for a fresher look */
  --paper:       #F5F6F8;   /* cool ivory / light gray */
  --paper-2:     #EBEFF3;   /* soft section alternate */
  --paper-3:     #E5E9EE;   /* subtle card / contact tone */
  --ink:         #1D2329;   /* charcoal ink */
  --ink-2:       #3E484F;
  --rule:        #2F353C;
  --smoke:       #6B7681;   /* cooler neutral gray */
  --whisper:     #D8DEE4;   /* light cool rules */
  --whisper-2:   #CBD4DC;
  --claret:      #7A1E24;   /* deep claret accent */
  --claret-deep: #4F1014;
  --claret-soft: #B43F44;

  /* Type — Lora (warm humanist serif, easier on the eyes) + Inter (best UI sans) */
  --serif: 'Lora', 'Georgia', 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* -------- 2. Reset & base -------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, figure { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; padding: 0; }
ul { list-style: none; padding: 0; margin: 0; }
blockquote { margin: 0; }

::selection { background: var(--claret); color: var(--paper); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* -------- 3. Typography primitives -------- */

/* Section meta — small editorial label up top */
.section-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
}
.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .02em;
  color: var(--claret);
  text-transform: none;
}
.section-label {
  position: relative;
  top: -1px;
}

/* Display titles */
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -.018em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--claret);
}

.section-deck {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: var(--smoke);
  max-width: 60ch;
  margin: 0 0 0;
}

.section-head { margin-bottom: clamp(56px, 7vw, 90px); max-width: 880px; }

/* -------- 4. Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 17px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: 0;
  text-align: center;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s, transform .35s var(--ease);
  border: 1px solid var(--ink);
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn-primary:hover {
  background: var(--claret);
  border-color: var(--claret);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-full { width: 100%; padding: 12px 17px; font-size: 15px; }

/* -------- 5. Header -------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--whisper);
  box-shadow: 0 12px 28px rgba(20, 24, 34, 0.06);
  transition: background .35s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  padding: 12px 0;
  box-shadow: 0 8px 20px rgba(18, 22, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  line-height: 1;
}
.brand-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .04em;
}
.brand-rule {
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--ink);
}
.brand-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink);
  position: relative;
  transition: color .25s;
}
.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 1px;
  background: var(--claret);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--claret); }
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper) !important;
  transition: background .25s, color .25s, border-color .25s;
}
.nav-cta:hover {
  background: var(--claret);
  border-color: var(--claret);
  color: var(--paper) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--paper);
  border-top: 1px solid var(--whisper);
}
.mobile-menu a {
  padding: 18px var(--gutter);
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  border-bottom: 1px solid var(--whisper);
}
.mobile-menu a:last-child {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 0;
  font-style: italic;
}

/* -------- 6. Hero — asymmetric editorial -------- */
.hero {
  padding: 84px 0 18px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 18%),
              linear-gradient(120deg, #222e3d 0%, #4a5a73 42%, #dfe7ef 100%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-bottom: 72px;
}

.hero-text {
  padding-bottom: 0;
  color: #f7fafc;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 32px;
}

.hero-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 22px 20px;
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(10, 14, 24, 0.16);
}

.hero-pill strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f7fafc;
}

.hero-pill span {
  color: rgba(247,250,252,0.8);
  font-size: 0.98rem;
  line-height: 1.8;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.35rem, 4.6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 28px;
  color: #f7fafc;
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: #f5d4c8;
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.4vw, 1.26rem);
  line-height: 1.75;
  color: rgba(247,250,252,0.88);
  max-width: 44ch;
  margin: 0;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 520px;
}
.hero-cta .btn {
  width: auto;
  padding: 12px 19px;
  font-size: 1rem;
}
.cta-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--smoke);
  margin: 0;
  max-width: 36rem;
}

/* Hero figure — Buket portrait */
.hero-figure {
  margin: 0;
  position: relative;
  max-width: 560px;
}
.hero-figure::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(122,24,24,0.14), rgba(250,250,248,0));
  z-index: -1;
}
.hero-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  filter: contrast(1.02) saturate(.97);
  box-shadow: 0 36px 72px rgba(18, 16, 14, 0.12);
}
.hero-figure figcaption {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.figcaption-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: #f7fafc;
}
.figcaption-role {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(247,250,252,0.78);
}

/* Hero marquee */
.hero-marquee {
  overflow: hidden;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  width: max-content;
}
.marquee-track .dot {
  color: var(--claret);
  font-style: normal;
  font-size: 16px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------- 7. Sections base -------- */
.section {
  padding: clamp(48px, 6vw, 78px) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--whisper); }

/* -------- 8. About — manifesto -------- */
.about {
  background: radial-gradient(circle at top right, rgba(29,35,41,0.03), transparent 18%),
              linear-gradient(240deg, rgba(29,35,41,0.06) 0%, rgba(29,35,41,0.015) 42%, var(--paper) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.about-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.95rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.014em;
  margin: 0;
  color: var(--ink);
}
.about-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--claret);
}

.about-prose {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.about-prose p { margin: 0 0 1.4em; }

/* Drop cap on first paragraph */
.dropcap::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 5.4em;
  font-weight: 500;
  line-height: .85;
  color: var(--claret);
  margin: 6px 12px 0 0;
  padding: 0;
}

/* Pull quote */
.pull-quote {
  margin: 32px 0 0;
  padding: 28px 0 4px;
  border-top: 1px solid var(--ink);
}
.pull-quote p {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.3;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0;
}
.pull-quote em {
  color: var(--claret);
  font-style: italic;
  font-weight: 500;
}

/* -------- 9. Process / Method -------- */
.process {
  background: radial-gradient(circle at top left, rgba(29,35,41,0.03), transparent 18%),
              linear-gradient(120deg, rgba(29,35,41,0.06) 0%, rgba(29,35,41,0.015) 42%, var(--paper-2) 100%);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 16px;
}
.method-step {
  background: var(--paper);
  border: 1px solid var(--whisper);
  padding: 28px;
  display: grid;
  gap: 24px;
  min-height: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.method-step:hover {
  transform: translateY(-3px);
  border-color: var(--claret);
  box-shadow: 0 18px 32px rgba(24, 20, 16, 0.08);
}

.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--claret);
  margin: 0;
}
.step-body { padding-top: 0; }
.step-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.1vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -.014em;
  margin: 0 0 12px;
  color: var(--ink);
}
.step-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.step-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
}
.step-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--claret);
  font-size: 1.3rem;
  line-height: 1;
}

/* -------- 10. Programs -------- */
.programs {
  background: radial-gradient(circle at top right, rgba(29,35,41,0.03), transparent 18%),
              linear-gradient(240deg, rgba(29,35,41,0.06) 0%, rgba(29,35,41,0.015) 42%, var(--paper) 100%);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 40px;
}

.program {
  border: 1px solid var(--whisper);
  padding: 30px;
  background: var(--paper);
  display: grid;
  gap: 22px;
  min-height: 100%;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.program:hover {
  transform: translateY(-3px);
  border-color: var(--claret);
  box-shadow: 0 24px 48px rgba(15, 15, 15, 0.08);
}

.program-side {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.program-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.85rem;
  letter-spacing: -.01em;
  color: var(--claret);
  margin: 0;
}
.program-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.program-body { max-width: none; }
.program-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -.014em;
  margin: 0 0 14px;
  color: var(--ink);
}
.program-for {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--smoke);
  margin: 0 0 18px;
}
.program-for em { color: var(--ink-2); }
.program-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 28px;
}

.program-deliverables {
  background: var(--paper-2);
  border-left: 2px solid var(--claret);
  padding: 22px 26px;
  margin-bottom: 28px;
}
.program-deliverables h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--claret-deep);
  margin: 0 0 14px;
}
.program-deliverables ul { font-size: 14.5px; line-height: 1.55; }
.program-deliverables li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--ink-2);
}
.program-deliverables li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 6px;
  color: var(--claret);
  font-weight: 600;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .25s, border-color .25s, gap .25s;
}
.program-link span { transition: transform .3s var(--ease); }
.program-link:hover {
  color: var(--claret);
  border-color: var(--claret);
}
.program-link:hover span { transform: translateX(4px); }

/* -------- 11. Services — bookable consultations -------- */
.services {
  background: radial-gradient(circle at top left, rgba(29,35,41,0.03), transparent 18%),
              linear-gradient(120deg, rgba(29,35,41,0.06) 0%, rgba(29,35,41,0.015) 42%, var(--paper-2) 100%);
}

.service-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink);
  border-radius: 0;
}

.service {
  background: var(--paper);
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--whisper);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .25s var(--ease);
}
.service:last-child { border-right: 0; }
.service:hover { background: var(--paper-3); }

.service-featured {
  background: var(--ink);
  color: var(--paper);
  border-right-color: var(--ink);
}
.service-featured:hover { background: var(--claret-deep); }
.service-featured .service-num { color: var(--claret-soft); border-color: var(--claret-soft); }
.service-featured .meta-label { color: rgba(247, 242, 232, .55); }
.service-featured .meta-value { color: var(--paper); }
.service-featured .meta-fee-free { color: var(--claret-soft); }
.service-featured .service-desc { color: rgba(247, 242, 232, .85); }
.service-featured .service-cta { color: var(--paper); border-color: var(--paper); }
.service-featured .service-cta:hover { color: var(--claret-soft); border-color: var(--claret-soft); }

.service-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--claret-deep);
  display: inline-block;
  border-bottom: 1px solid var(--claret-deep);
  padding-bottom: 4px;
  margin-bottom: 22px;
}
.service-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -.012em;
  margin: 0 0 22px;
}

.service-meta {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  margin-bottom: 22px;
  opacity: 1;
}
.service-meta > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.meta-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--smoke);
}
.meta-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.meta-fee-free { color: var(--claret); }

.service-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 28px;
  flex: 1;
}

.service-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .25s, border-color .25s;
}
.service-cta:hover { color: var(--claret); border-color: var(--claret); }

.packages {
  background: radial-gradient(circle at top right, rgba(29,35,41,0.03), transparent 18%),
              linear-gradient(240deg, rgba(29,35,41,0.06) 0%, rgba(29,35,41,0.015) 42%, var(--paper) 100%);
}

/* -------- 12. Founder -------- */
.founder {
  background: radial-gradient(circle at top left, rgba(29,35,41,0.03), transparent 18%),
              linear-gradient(120deg, rgba(29,35,41,0.06) 0%, rgba(29,35,41,0.015) 42%, var(--paper) 100%);
}
.founder-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.founder-text { padding-top: 4px; }

.founder-panel {
  background: var(--paper-2);
  border: 1px solid var(--whisper);
  padding: 32px;
  display: grid;
  gap: 26px;
  position: sticky;
  top: 120px;
  align-self: start;
}

.founder-panel .expertise-heading {
  margin-top: 0;
}

.founder-panel .expertise {
  padding: 0;
  margin: 0;
}

.founder-panel .expertise li {
  border-bottom: 1px solid var(--whisper);
  padding: 10px 0 10px 32px;
}

.founder-panel .credential {
  padding: 16px 0 16px 0;
  border-bottom: 1px solid var(--whisper);
}
.founder-panel .credential:last-child { border-bottom: 0; }

.founder-headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.95rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.018em;
  margin: 0 0 28px;
  color: var(--ink);
}
.founder-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--claret);
}

.founder-lead {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 22px;
}

.founder-text p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 1.3em;
}
.founder-text strong { font-weight: 600; color: var(--ink); }

.expertise-heading {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--claret-deep);
  margin: 36px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
}
.expertise li {
  position: relative;
  padding: 12px 0 12px 32px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  border-bottom: 1px solid var(--whisper);
  font-family: var(--serif);
  font-weight: 400;
}
.expertise li:last-child { border-bottom: 0; }
.expertise li::before {
  content: counter(li-counter, lower-roman) ".";
  counter-increment: li-counter;
  position: absolute;
  left: 0; top: 12px;
  color: var(--claret);
  font-style: italic;
  font-weight: 500;
  width: 24px;
}
.expertise { counter-reset: li-counter; }

.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.credential {
  padding: 18px 18px 18px 0;
  border-right: 1px solid var(--whisper);
}
.credential:last-child { border-right: 0; padding-right: 0; }
.cred-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--claret-deep);
  margin-bottom: 6px;
}
.cred-value {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.35;
  font-weight: 500;
  color: var(--ink);
}

/* -------- 13. Contact / Booking -------- */
.contact {
  background: radial-gradient(circle at top right, rgba(29,35,41,0.03), transparent 18%),
              linear-gradient(240deg, rgba(29,35,41,0.06) 0%, rgba(29,35,41,0.015) 42%, var(--paper-3) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-intro { padding-top: 4px; }

.contact-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.018em;
  margin: 0 0 22px;
  color: var(--ink);
}
.contact-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--claret);
}
.nowrap { white-space: nowrap; }

.contact-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 48ch;
  margin: 0 0 38px;
}

.contact-direct {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}
.contact-or {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--claret-deep);
  margin: 0 0 18px;
}
.contact-direct a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--whisper);
  transition: color .25s, padding .25s;
}
.contact-direct a:last-child { border-bottom: 0; }
.contact-rule {
  flex: 1;
  height: 1px;
  background: var(--whisper);
  margin: 0 6px;
}
.contact-direct a:hover { color: var(--claret); padding-left: 6px; }

/* Form */
.booking-form {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: clamp(28px, 3.4vw, 44px);
}
.form-row { display: grid; gap: 18px; margin-bottom: 18px; }
.form-row.two { grid-template-columns: 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--claret-deep);
}
.optional {
  text-transform: none;
  letter-spacing: .02em;
  color: var(--smoke);
  font-weight: 400;
  font-size: 11.5px;
  font-family: var(--serif);
  font-style: italic;
}

.field input,
.field textarea,
.field select {
  font: inherit;
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  font-size: 15.5px;
  font-family: var(--serif);
  transition: border-color .25s, padding .15s;
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--smoke);
  font-style: italic;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--claret);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--serif);
  border: 1px solid var(--ink);
  padding: 14px;
}
.field textarea:focus { border-color: var(--claret); }

.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
  cursor: pointer;
}
.select-wrap select option {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}
.select-wrap svg {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-25%);
  width: 16px; height: 16px;
  color: var(--ink);
  pointer-events: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--smoke);
  text-align: center;
  margin: 18px 0 0;
  line-height: 1.5;
}

.form-success {
  margin-top: 22px;
  padding: 22px 26px;
  background: var(--paper-2);
  border-left: 2px solid var(--claret);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.55;
}
.form-success strong {
  display: block;
  color: var(--claret);
  margin-bottom: 4px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  font-style: italic;
}

/* -------- 14. Footer -------- */
.site-footer {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--ink);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  padding-top: 80px;
  padding-bottom: 56px;
}

.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--smoke);
  line-height: 1.5;
  margin: 22px 0 0;
  max-width: 28ch;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--claret-deep);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-2);
  transition: color .25s;
}
.footer-col a:hover { color: var(--claret); }

.footer-base {
  border-top: 1px solid var(--whisper);
  padding: 22px 0;
}
.footer-base-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-base p {
  margin: 0;
  font-size: 12.5px;
  color: var(--smoke);
}
.footer-legal a {
  color: var(--ink-2);
  font-family: var(--serif);
  font-style: italic;
}
.footer-legal a:hover { color: var(--claret); }
.footer-legal span { margin: 0 10px; color: var(--whisper); }

/* -------- 15. Reveal animations -------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none !important; transform: translateX(0) !important; }
}

/* -------- 16. Responsive -------- */
@media (max-width: 1080px) {
  .program { grid-template-columns: 160px 1fr; gap: 36px; padding: 44px 0; }
  .method-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-figure { max-width: 480px; }
  .hero-figure img { aspect-ratio: 4 / 5; }

  .about-grid { grid-template-columns: 1fr; }

  .hero-highlights { grid-template-columns: 1fr; }

  .service-table { grid-template-columns: 1fr; }
  .service { border-right: 0; border-bottom: 1px solid var(--whisper); }
  .service:last-child { border-bottom: 0; }

  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-figure { position: static; max-width: 380px; }

  .contact-grid { grid-template-columns: 1fr; }

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

@media (max-width: 720px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu.open { display: flex; }

  .hero { padding: 110px 0 0; }
  .hero-grid { padding-bottom: 40px; }
  .marquee-track { font-size: 18px; gap: 24px; }

  .method-step { grid-template-columns: 1fr; gap: 12px; padding: 30px 0; }
  .step-num { font-size: 2.2rem; }

  .program { grid-template-columns: 1fr; gap: 18px; padding: 40px 0; }
  .program-side { position: static; }

  .method-grid { grid-template-columns: 1fr; }

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

  .credentials { grid-template-columns: 1fr; }
  .credential { border-right: 0; border-bottom: 1px solid var(--whisper); padding: 14px 0; }
  .credential:last-child { border-bottom: 0; }

  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-base-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .kicker { gap: 10px; font-size: 11px; }
  .kicker-rule { width: 22px; }
  .dropcap::first-letter { font-size: 4.4em; }
}
