/* ============================================================
   [YOUR NAME] — Life · Purpose · Leadership Coaching
   GO FORWARD. FLOURISH.
   Design tokens: warm ivory, parchment, stone, espresso, charcoal,
   olive, burgundy accent. Editorial serif display + clean sans body.
   ============================================================ */

:root {
  --ivory: #F7F3EA;
  --parchment: #EFE7D8;
  --stone: #DDD3BF;
  --espresso: #4A3728;
  --charcoal: #24211E;
  --olive: #6B7353;
  --burgundy: #6B2A34;

  --serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', serif;
  --sans: 'Helvetica Neue', Arial, sans-serif;

  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

.section { padding: 72px 0; }
.section.tight { padding: 40px 0; }
.section.hero { padding: 96px 0 72px; }

.bg-ivory { background: var(--ivory); }
.bg-parchment { background: var(--parchment); }
.bg-espresso { background: var(--espresso); color: var(--parchment); }
.bg-burgundy { background: var(--burgundy); color: var(--ivory); }
.bg-charcoal { background: var(--charcoal); color: var(--parchment); }

.center { text-align: center; }

/* Typography */
h1, h2, h3, .serif { font-family: var(--serif); font-weight: normal; margin: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.2; }
h3 { font-size: 1.25rem; line-height: 1.3; }
p { margin: 0 0 1rem; }
.lede { font-size: 1.15rem; color: var(--espresso); max-width: 640px; }
.max-2 { max-width: 640px; }
.max-3 { max-width: 780px; }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
  font-weight: 600;
}
.bg-espresso .eyebrow, .bg-charcoal .eyebrow { color: var(--stone); }

.italic { font-style: italic; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: .92rem;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity .2s ease;
  font-family: var(--sans);
}
.btn:hover { opacity: .85; }
.btn-primary { background: var(--burgundy); color: var(--ivory); }
.btn-secondary { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost { background: transparent; color: var(--ivory); border-color: var(--ivory); }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

/* Header / nav */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ivory);
  border-bottom: 1px solid var(--stone);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}
.brand { text-decoration: none; }
.brand .name { font-family: var(--serif); font-size: 1.15rem; color: var(--charcoal); }
.brand .tag { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--olive); }

nav.primary { display: flex; gap: 26px; font-size: .92rem; }
nav.primary a { text-decoration: none; color: var(--espresso); }
nav.primary a.active, nav.primary a:hover { color: var(--burgundy); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--charcoal); }

@media (max-width: 900px) {
  nav.primary { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--ivory); padding: 16px 24px; border-bottom: 1px solid var(--stone); }
  nav.primary.open { display: flex; }
  .nav-toggle { display: block; }
  header.site .wrap { position: relative; flex-wrap: wrap; }
}

/* Grid helpers */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: 1.2fr repeat(3, 1fr) 1fr; }
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}
@media (min-width: 861px) and (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}

/* Cards */
.card {
  background: var(--ivory);
  border: 1px solid var(--stone);
  padding: 28px;
}
.card.on-parchment { background: var(--ivory); }
.card h3 { margin-bottom: 4px; }
.card .format { font-size: .85rem; color: var(--olive); margin-bottom: 12px; }
.card .price { font-family: var(--serif); font-size: 1.9rem; color: var(--burgundy); margin-bottom: 2px; }
.card .plan { font-size: .78rem; color: var(--olive); margin-bottom: 14px; }
.card ul { list-style: none; margin: 0 0 20px; padding: 0; font-size: .92rem; }
.card ul li { padding-left: 1.1em; position: relative; margin-bottom: 6px; color: var(--charcoal); }
.card ul li::before { content: "—"; position: absolute; left: 0; color: var(--olive); }
.card .for-who { font-size: .92rem; color: var(--espresso); margin-bottom: 14px; }

.tile {
  display: block;
  text-decoration: none;
  padding: 28px;
  border: 1px solid var(--stone);
  background: var(--ivory);
  color: inherit;
  transition: opacity .2s ease;
}
.tile:hover { opacity: .8; }
.tile h3 { color: var(--charcoal); }
.tile p { color: var(--olive); font-size: .9rem; margin: 4px 0 0; }

.pill {
  display: inline-block;
  font-size: .85rem;
  padding: 8px 16px;
  margin: 0 8px 8px 0;
  background: var(--ivory);
  border: 1px solid var(--stone);
}

/* Method letters */
.method-letters { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; margin-bottom: 20px; }
.method-letters span, .rhythm span {
  font-family: var(--serif);
  color: var(--espresso);
}
.method-block { display: flex; gap: 16px; margin-bottom: 28px; }
.method-block .letter { font-family: var(--serif); font-size: 1.9rem; color: var(--burgundy); width: 40px; line-height: 1; }
.method-block .q { font-size: .88rem; font-style: italic; color: var(--olive); margin-top: 6px; }

.rhythm { display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline; gap: 18px; }
.rhythm .sep { color: var(--stone); }

/* Table */
table.pricing { width: 100%; border-collapse: collapse; font-size: .92rem; }
table.pricing th, table.pricing td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--stone); }
table.pricing th { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--olive); }
table.pricing td.price { color: var(--burgundy); }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--stone); padding: 18px 0; }
.faq-item button {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--serif); font-size: 1.1rem; color: var(--charcoal); padding: 0;
}
.faq-item .sign { color: var(--burgundy); font-size: 1.3rem; line-height: 1; }
.faq-item .answer { display: none; font-size: .92rem; color: var(--espresso); margin-top: 12px; line-height: 1.6; }
.faq-item.open .answer { display: block; }

/* Forms */
form .field { display: block; font-size: .88rem; margin-bottom: 18px; color: var(--charcoal); }
form .field span.label { display: block; margin-bottom: 6px; }
form input[type=text], form input[type=email], form input[type=tel], form select, form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: .92rem;
  font-family: var(--sans);
  background: var(--ivory);
  border: 1px solid var(--stone);
}
form textarea { resize: vertical; }
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--espresso); margin-bottom: 22px; }
.checkbox-field input { margin-top: 4px; }
.checkbox-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; font-size: .9rem; }
@media (max-width: 700px) { .checkbox-list { grid-template-columns: 1fr; } }
.checkbox-list label { display: flex; gap: 8px; align-items: center; }
fieldset { border: none; padding: 0; margin: 0 0 18px; }
legend { font-size: .88rem; margin-bottom: 8px; padding: 0; }
.confirm-box { padding: 32px; background: var(--parchment); border: 1px solid var(--stone); }

/* Footer */
footer.site { padding: 56px 0; }
footer.site .grid-5 { font-size: .6875rem; }
footer.site .col a { display: block; text-decoration: none; margin-bottom: 8px; color: var(--parchment); }
footer.site .col a:hover { text-decoration: underline; }
footer.site .fine { font-size: .4675rem; color: var(--stone); line-height: 1.6; }
footer.site .brandline { font-family: var(--serif); font-size: .7875rem; margin-bottom: 4px; }
footer.site .tagline { font-family: var(--serif); font-style: italic; color: var(--parchment); margin-top: 8px; }

.divider { height: 1px; background: var(--stone); margin: 40px 0; border: none; }

/* ============================================================
   VISUAL DESIGN LAYER — texture, imagery placeholders, editorial
   layout treatments. Added so the site reads as a designed premium
   practice rather than a bare content template.
   ============================================================ */

/* Subtle warm texture behind ivory/parchment sections — a faint
   dot-grid, evoking paper/linen rather than a flat digital fill. */
.bg-ivory, .bg-parchment {
  background-image: radial-gradient(circle, rgba(74,55,40,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* Editorial rule — a short accent line used above eyebrows/headlines
   in key moments, instead of relying on color alone for hierarchy. */
.rule {
  width: 46px;
  height: 2px;
  background: var(--burgundy);
  margin-bottom: 22px;
}
.rule.center { margin-left: auto; margin-right: auto; }
.bg-espresso .rule, .bg-charcoal .rule, .bg-burgundy .rule { background: var(--stone); }

/* Image / portrait placeholders — soft gradient blocks with a
   centered caption, standing in for real photography per the
   brief's photography direction until real images are supplied. */
.img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--stone) 0%, var(--parchment) 55%, var(--olive) 150%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.img-frame.wide { aspect-ratio: 16 / 9; }
.img-frame.square { aspect-ratio: 1 / 1; }
.img-frame .cap {
  width: 100%;
  padding: 14px 16px;
  background: rgba(36,33,30,0.55);
  color: var(--ivory);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Hero split layout — headline column + image column, used on Home
   and About for an editorial, less template-y first impression. */
.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split .img-frame { order: -1; max-width: 420px; margin: 0 auto 8px; }
}

/* Gentle entrance motion — restrained, not decorative gimmickry */
.reveal { animation: reveal-in .6s ease both; }
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* DDG page accent — same palette family, warmed slightly toward
   burgundy/rose to give the community page its own identity within
   the shared system, per the brief's "more explicitly women-centered
   visual identity" allowance. */
.bg-ddg {
  background: linear-gradient(180deg, var(--parchment) 0%, #F1E4E2 100%);
}
.ddg-accent { color: var(--burgundy); }
.card.ddg-card { border-color: #D9BFC0; }

/* Coaching vs. Consulting track accents — same palette family, used
   to let a visitor instantly tell which path a card/section belongs
   to without adding new colors to the system. */
.track-coaching { color: var(--burgundy); }
.track-consulting { color: var(--olive); }
.card.track-coaching-card { border-top: 3px solid var(--burgundy); }
.card.track-consulting-card { border-top: 3px solid var(--olive); }
.path-card { padding: 40px 32px; border: 1px solid var(--stone); background: var(--ivory); }
.path-card.coaching { border-top: 4px solid var(--burgundy); }
.path-card.consulting { border-top: 4px solid var(--olive); }
.path-card.creative { border-top: 4px solid #6B5A3E; }
.path-card.services { border-top: 4px solid #4A5A5E; }
.path-card ul { list-style: none; padding: 0; margin: 16px 0 24px; font-size: .92rem; }
.path-card ul li { padding-left: 1.1em; position: relative; margin-bottom: 6px; color: var(--charcoal); }
.path-card ul li::before { content: "—"; position: absolute; left: 0; color: var(--olive); }

.flow-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; align-items: center; }
.flow-steps .step { font-family: var(--serif); font-size: 1.05rem; padding: 10px 16px; border: 1px solid var(--stone); }
.flow-steps .step.coaching { border-color: var(--burgundy); color: var(--burgundy); }
.flow-steps .step.consulting { border-color: var(--olive); color: var(--olive); }
.flow-steps .arrow { color: var(--stone); }

/* ============================================================
   ALLEC COLLECTIVE — umbrella-brand additions: dropdown nav,
   five-division color coding, and the "one home, clear doors"
   card system used on Our Collective / homepage lower section.
   ============================================================ */

.has-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--ivory);
  border: 1px solid var(--stone);
  padding: 10px 0;
  z-index: 60;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: .9rem;
  text-decoration: none;
  color: var(--espresso);
}
.dropdown-menu a:hover { color: var(--burgundy); background: var(--parchment); }
.nav-caret { font-size: .65rem; margin-left: 4px; }

@media (max-width: 900px) {
  .dropdown-menu { position: static; display: block; border: none; padding-left: 14px; }
  .has-dropdown .dropdown-menu { display: none; }
  .has-dropdown.open .dropdown-menu { display: block; }
}

/* Division accents — Coaching (burgundy) and Consulting (olive)
   already exist. These three extend the same system for the
   secondary divisions, used sparingly per the brief. */
.track-creative { color: #6B5A3E; }
.track-services { color: #4A5A5E; }
.track-hospitality { color: #7A4A4A; }
.card.track-creative-card { border-top: 3px solid #6B5A3E; }
.card.track-services-card { border-top: 3px solid #4A5A5E; }
.card.track-hospitality-card { border-top: 3px solid #7A4A4A; }

.division-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 32px 26px;
  background: var(--ivory);
  border: 1px solid var(--stone);
  transition: opacity .2s ease;
}
.division-card:hover { opacity: .85; }
.division-card .for { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--olive); margin-bottom: 8px; }

.soft-link { font-size: .92rem; text-decoration: underline; color: var(--espresso); }

/* Work-With-Us dynamic selector */
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 900px) { .choice-grid { grid-template-columns: repeat(2, 1fr); } }
.choice-btn {
  padding: 20px 14px;
  background: var(--ivory);
  border: 1px solid var(--stone);
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
}
.choice-btn.active { border-color: var(--burgundy); }
.choice-btn .t { font-family: var(--serif); font-size: 1rem; color: var(--charcoal); display: block; margin-bottom: 4px; }
.choice-btn .s { font-size: .82rem; color: var(--olive); }
.wwuu-panel { display: none; margin-top: 30px; }
.wwuu-panel.active { display: block; }

/* ============================================================
   EDITORIAL HOMEPAGE SYSTEM — big-statement hero, hover-reveal
   pathway index, horizontal "things we're building" strip,
   asymmetric division index, restrained scroll-reveal motion.
   ============================================================ */

.reveal-up { transition: opacity .7s ease, transform .7s ease; }
html.js .reveal-up { opacity: 0; transform: translateY(18px); }
html.js .reveal-up.in-view { opacity: 1; transform: translateY(0); }

.big-hero { padding: 64px 0 40px; }
.big-hero h1 {
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  max-width: 1000px;
}
.big-hero .kicker { font-size: .95rem; letter-spacing: .05em; color: var(--olive); margin-top: 20px; }
.hero-portrait-wrap { position: relative; margin-top: 8px; }
.hero-portrait-wrap .img-frame { aspect-ratio: 3/4; max-width: 420px; }

.pathway-index { border-top: 1px solid var(--charcoal); }
.pathway-row {
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--stone);
  padding: 22px 0;
  position: relative;
}
.pathway-row .pr-top { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; }
.pathway-row .pr-title { font-family: var(--serif); font-size: clamp(1.5rem, 4vw, 2.4rem); color: var(--charcoal); transition: color .2s ease; }
.pathway-row .pr-sub { font-size: .82rem; color: var(--olive); white-space: nowrap; flex-shrink: 0; }
.pathway-row .pr-desc {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .35s ease, opacity .3s ease, margin-top .35s ease;
  font-size: .95rem; color: var(--espresso); max-width: 620px;
}
.pathway-row:hover .pr-desc, .pathway-row:focus-within .pr-desc, .pathway-row.touch-open .pr-desc {
  max-height: 100px; opacity: 1; margin-top: 12px;
}
.pathway-row:hover .pr-title, .pathway-row.touch-open .pr-title { color: var(--burgundy); }

.build-strip { display: flex; gap: 18px; overflow-x: auto; padding: 8px 0 20px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.build-strip::-webkit-scrollbar { height: 6px; }
.build-strip::-webkit-scrollbar-thumb { background: var(--stone); }
.build-card { flex: 0 0 auto; width: 320px; scroll-snap-align: start; text-decoration: none; color: inherit; }
.build-card img { width: 100%; height: 380px; object-fit: cover; display: block; }
.build-card .bc-meta { padding-top: 12px; }
.build-card .bc-cat { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--olive); }
.build-card .bc-title { font-family: var(--serif); font-size: 1.2rem; margin-top: 4px; color: var(--charcoal); }
.build-card .bc-line { font-size: .88rem; color: var(--espresso); margin-top: 4px; }

.arch-index { display: flex; flex-direction: column; }
.arch-row { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--stone); align-items: baseline; }
.arch-row:first-child { border-top: 1px solid var(--charcoal); }
.arch-row .arch-num { font-family: var(--serif); font-size: 1rem; color: var(--stone); }
.arch-row .arch-name { font-family: var(--serif); font-size: clamp(1.4rem, 3.4vw, 2rem); }
.arch-row .arch-for { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.arch-row .arch-caps { font-size: .85rem; color: var(--espresso); margin-top: 6px; }
.arch-row:nth-child(2) { padding-left: 0; }
.arch-row:nth-child(3) { margin-left: 6%; }
.arch-row:nth-child(4) { margin-left: 3%; }
.arch-row:nth-child(5) { margin-left: 9%; }
@media (max-width: 700px) { .arch-row:nth-child(2), .arch-row:nth-child(3), .arch-row:nth-child(4), .arch-row:nth-child(5) { margin-left: 0; } }

/* Merged "Start where you are / One Collective" directory —
   editorial index combining visitor self-identification with the
   brand architecture, so the four divisions appear exactly once. */
.directory-list { border-top: 1px solid var(--charcoal); }
.directory-row {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 34px 0;
  border-bottom: 1px solid var(--stone);
  position: relative;
  transition: padding-left .25s ease;
}
.directory-row:hover { padding-left: 14px; }
.directory-row .dr-num { font-family: var(--serif); font-size: .85rem; color: var(--stone); letter-spacing: .05em; }
.directory-row .dr-need {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4.6vw, 2.7rem);
  color: var(--charcoal);
  margin-top: 6px;
  transition: color .2s ease;
}
.directory-row:hover .dr-need { color: var(--burgundy); }
.directory-row.track-consulting:hover .dr-need { color: var(--olive); }
.directory-row.track-creative:hover .dr-need { color: #6B5A3E; }
.directory-row.track-services:hover .dr-need { color: #4A5A5E; }
.directory-row .dr-answer-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px; margin-top: 12px; }
.directory-row .dr-answer { font-family: var(--serif); font-size: 1.15rem; font-weight: normal; }
.directory-row .dr-for { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--olive); }
.directory-row .dr-caps { font-size: .85rem; color: var(--espresso); margin-top: 6px; }
.directory-row .dr-cta { font-size: .85rem; margin-top: 10px; display: inline-block; text-decoration: underline; }

.founder-story { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .founder-story { grid-template-columns: 1fr; } }
.founder-quote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.25; }

/* ============================================================
   ALLEC CO. CREATIVE — scoped brand system per official brand
   guidelines: Crimson Red as the signature accent, with Quiet Sky
   Blue + Spotlight Gold as sparing secondary accents. Background
   stays light and warm, consistent with the rest of Allec
   Collective — "editorial daylight," not a dark production studio.
   Visual richness comes from photography, scale, and composition,
   not from a black page. Applied only within .creative-brand.
   ============================================================ */

.creative-brand {
  --cc-red: #8C1E06;
  --cc-ink: #221B17;
  --cc-cream: #F7F1E6;
  --cc-panel: #FBF7EF;
  --cc-line: #E4D9C6;
  --cc-blue: #3772FF;
  --cc-gold: #B8860B;
  background: var(--cc-cream);
  color: var(--cc-ink);
}
.creative-brand .section { background: transparent; background-image: none; }
.creative-brand .cc-hero { padding: 90px 0 60px; }
.creative-brand .cc-logo { height: 46px; margin-bottom: 28px; }
.creative-brand h1, .creative-brand h2, .creative-brand h3 { font-family: 'Plus Jakarta Sans', var(--sans); font-weight: 800; letter-spacing: -0.01em; color: var(--cc-ink); }
.creative-brand p, .creative-brand span, .creative-brand div { font-family: 'Plus Jakarta Sans', var(--sans); }
.creative-brand .cc-eyebrow { color: var(--cc-red); text-transform: uppercase; letter-spacing: .22em; font-size: .75rem; font-weight: 700; margin-bottom: 14px; }
.creative-brand .cc-lede { color: rgba(34,27,23,.75); font-size: 1.1rem; max-width: 640px; }
.creative-brand .btn-primary { background: var(--cc-red); color: var(--cc-cream); border-radius: 2px; }
.creative-brand .btn-secondary { border-color: var(--cc-ink); color: var(--cc-ink); }
.creative-brand .cc-panel { background: var(--cc-panel); border: 1px solid var(--cc-line); padding: 28px; }
.creative-brand .cc-flow { display: flex; flex-wrap: wrap; gap: 10px; }
.creative-brand .cc-flow span.step { border-color: var(--cc-red); color: var(--cc-red); font-family: 'Plus Jakarta Sans', var(--sans); font-weight: 700; }
.creative-brand .cc-flow .arrow { color: var(--cc-line); }
.creative-brand .pill { background: var(--cc-panel); border-color: var(--cc-line); color: var(--cc-ink); }
.creative-brand .soft-link { color: var(--cc-red); }
.creative-brand a.soft-link:hover { color: var(--cc-ink); }
.creative-brand .cc-card { background: var(--cc-panel); border: 1px solid var(--cc-line); overflow: hidden; }
.creative-brand .cc-card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.creative-brand .cc-card .cc-card-body { padding: 20px; }
.creative-brand .cc-card .cc-tag { color: var(--cc-red); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.creative-brand .cc-card h3 { font-size: 1.05rem; margin-top: 4px; }
.creative-brand .cc-card p { color: rgba(34,27,23,.72); font-size: .88rem; margin-top: 8px; }
.creative-brand .cc-accent-gold { color: var(--cc-gold); }
.creative-brand .cc-accent-blue { color: var(--cc-blue); }
.creative-brand .cc-divider { height: 1px; background: var(--cc-line); margin: 0; }
.creative-brand form input, .creative-brand form select, .creative-brand form textarea {
  background: var(--cc-panel); border: 1px solid var(--cc-line); color: var(--cc-ink);
}
.creative-brand form .field span.label { color: rgba(34,27,23,.7); }
.creative-brand .confirm-box { background: var(--cc-panel); border: 1px solid var(--cc-line); }

/* A single, deliberate moment of darkness — one full-bleed cinematic
   panel (not the whole page) where photography carries the drama. */
.creative-brand .cc-cinematic { background: var(--cc-ink); color: var(--cc-cream); padding: 70px 0; }
.creative-brand .cc-cinematic .cc-eyebrow { color: var(--cc-gold); }
.creative-brand .cc-cinematic p { color: rgba(247,241,230,.82); }

/* Encounter Method — connected horizontal timeline instead of
   five disconnected icon cards. A single top rule threads through
   all five steps to make the progression immediately visible. */
.creative-brand .cc-timeline {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  margin-top: 28px;
  padding-top: 20px;
}
.creative-brand .cc-tl-step {
  flex: 1 1 0;
  min-width: 160px;
  position: relative;
  padding-top: 18px;
  border-top: 2px solid var(--cc-line);
}
.creative-brand .cc-tl-step::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cc-red);
}
.creative-brand .cc-tl-num { font-size: .72rem; color: var(--cc-red); letter-spacing: .1em; margin-bottom: 6px; }
.creative-brand .cc-tl-title { font-family: 'Plus Jakarta Sans', var(--sans); font-weight: 800; font-size: 1.05rem; margin-bottom: 8px; }
.creative-brand .cc-tl-desc { font-size: .85rem; color: rgba(34,27,23,.72); line-height: 1.5; }
@media (max-width: 760px) {
  .creative-brand .cc-timeline { flex-direction: column; overflow-x: visible; }
  .creative-brand .cc-tl-step { border-top: none; border-left: 2px solid var(--cc-line); padding-top: 0; padding-left: 18px; padding-bottom: 22px; }
  .creative-brand .cc-tl-step::before { top: -2px; left: -5px; }
}


/* Booking-flow stepper (Coaching / Consulting initial sessions) */
.booking-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-bottom: 26px; }
@media (max-width: 760px) { .booking-steps { grid-template-columns: repeat(2, 1fr); } }
.booking-steps .bstep { padding: 10px 12px; background: var(--parchment); border: 1px solid var(--stone); font-size: .78rem; }
.booking-steps .bstep .n { font-family: var(--serif); font-size: 1.1rem; display: block; color: var(--burgundy); }
.payment-note { font-size: .85rem; color: var(--olive); padding: 12px 0; border-top: 1px dashed var(--stone); margin-top: 6px; }
