/* =========================================================================
   Denisa Ticusan — Coaching  ·  Design system v4
   Per the "Refined visual direction" brief: warm ivory foundation, deep ink
   text, generous neutral space. One solid coral action colour. Plum used
   sparingly as a brand accent. Vivid colour lives inside the imagery, not
   in the interface — no blurred halos, colour glows or floating circles.
   No build step, no external requests.
   ========================================================================= */

:root {
  /* --- Interface palette (from the client brief) --- */
  --ivory: #FBF6F1;         /* warm ivory foundation */
  --ink: #30242A;           /* deep ink text */
  --coral: #E76F51;         /* coral, decorative use only */
  --plum: #5B3A78;          /* deep plum brand accent */
  --teal: #2E9D90;          /* teal detail */

  /* Deepened coral for anything carrying text: #E76F51 only reaches 3.1:1
     against white, which fails WCAG AA. This tone keeps the same hue while
     clearing 4.5:1 both as a button fill and as link text on ivory. */
  --coral-deep: #B84A2A;
  --coral-darker: #9C3D21;  /* hover */

  /* Neutrals + quiet tints derived from the five brand colours */
  --ink-soft: #5C4B52;
  --muted: #7A6A70;
  --line: #E9DFD7;
  --white: #FFFFFF;
  --ivory-warm: #F6EDE5;    /* section tint, warm */
  --ivory-plum: #F2EDF5;    /* section tint, cool */
  --coral-tint: #FBEDE8;
  --plum-tint: #EFE9F3;
  --teal-tint: #E4F1EF;
  --plum-deep: #33204A;     /* footer */
  --plum-deeper: #241634;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px; --wrap-narrow: 720px;
  --measure: 66ch;          /* shorter text measure, for easy reading */
  --radius: 18px; --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(48, 36, 42, .05);
  --shadow: 0 18px 44px -26px rgba(48, 36, 42, .28);
  --shadow-lg: 0 34px 70px -38px rgba(48, 36, 42, .34);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* , *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration:.001ms!important; animation-iteration-count:1!important; transition-duration:.001ms!important; } }
body {
  margin: 0; font-family: var(--sans); color: var(--ink); background: var(--ivory);
  line-height: 1.7; font-size: 1.06rem; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral-deep); text-decoration-color: rgba(184, 74, 42, .38); text-underline-offset: 3px; }
a:hover { color: var(--coral-darker); }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.14; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.012em; }
p { margin: 0 0 1.15em; }
ul { margin: 0 0 1.15em; padding-left: 0; }
:focus-visible { outline: 3px solid var(--coral-deep); outline-offset: 3px; border-radius: 5px; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.center { text-align: center; }

.skip-link { position: absolute; left: 1rem; top: -3.5rem; z-index: 200; background: var(--plum); color: #fff; padding: .7rem 1.1rem; border-radius: 10px; transition: top .2s var(--ease); text-decoration: none; }
.skip-link:focus { top: 1rem; color: #fff; }

/* ---------- Eyebrow / headings ----------
   Flat colour: the brief rules out gradient text on important headings. */
.eyebrow { display: block; font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; margin: 0 0 1.2rem; color: var(--plum); }
.section-head { max-width: 660px; margin-bottom: 3rem; }
.center .section-head { margin-inline: auto; }
h1 { font-size: clamp(2.4rem, 5.4vw, 3.85rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
h3 { font-size: clamp(1.22rem, 2.1vw, 1.46rem); }
.lead { font-size: clamp(1.12rem, 1.6vw, 1.3rem); color: var(--ink-soft); line-height: 1.6; }
.accent-word { font-style: italic; color: var(--coral-deep); }
/* Shorter measures wherever a column is pure prose */
.section-head p, .prose p, .prose li, .split > div:not(.split__media) p { max-width: var(--measure); }
.center .section-head p { margin-inline: auto; }

/* ---------- Buttons: one solid coral action, consistent everywhere ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; font-family: var(--sans); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 1rem 1.7rem; border-radius: 999px; border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.btn--coral, .btn--primary { background: var(--coral-deep); color: #fff; }
.btn--coral:hover, .btn--primary:hover { background: var(--coral-darker); color: #fff; }
.btn--purple { background: var(--plum); color: #fff; }
.btn--purple:hover { background: #4A2E63; color: #fff; }
.btn--ghost { background: transparent; color: var(--plum); border-color: #D5C7E0; }
.btn--ghost:hover { background: var(--plum-tint); color: var(--plum); border-color: var(--plum); }
.btn--light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--light:hover { background: rgba(255,255,255,.14); color: #fff; }
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.center .btn-row { justify-content: center; }
.textlink { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; text-decoration: none; color: var(--coral-deep); }
.textlink .arr { transition: transform .2s var(--ease); }
.textlink:hover .arr { transform: translateX(3px); }
.textlink:hover { color: var(--coral-darker); }

/* =========================================================================
   Logo + Header
   ========================================================================= */
.logo, .brand { display: inline-flex; align-items: center; gap: .68rem; text-decoration: none; }
.logo-mark { height: 46px; width: auto; flex: none; display: block; }
.site-footer .logo-mark { height: 42px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.28rem; color: var(--ink); letter-spacing: -.01em; }
.brand__tag { font-size: .63rem; letter-spacing: .19em; text-transform: uppercase; font-weight: 700; color: var(--plum); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,246,241,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 80px; }
.nav__links { display: flex; align-items: center; gap: 1.7rem; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-family: var(--sans); font-size: .96rem; font-weight: 500; color: var(--ink-soft); text-decoration: none; position: relative; padding: .35rem 0; }
.nav__links a:hover { color: var(--coral-deep); }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: var(--coral); border-radius: 2px; }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__menu > .btn { display: none; }
.lang { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--white); font-size: .76rem; font-weight: 700; }
.lang a { padding: .38rem .66rem; text-decoration: none; color: var(--muted); }
.lang a[aria-current="true"] { background: var(--plum); color: #fff; }
.nav__toggle { display: none; }
.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); cursor: pointer; padding: 0; position: relative; }
.burger span, .burger span::before, .burger span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transform: translate(-50%,-50%); transition: .25s var(--ease); }
.burger span::before { transform: translate(-50%,-7px); } .burger span::after { transform: translate(-50%,5px); }
@media (max-width: 920px) {
  .burger { display: block; }
  .nav__menu { position: fixed; inset: 80px 0 auto 0; background: var(--ivory); border-bottom: 1px solid var(--line); padding: 1.2rem 1.25rem 1.9rem; display: none; flex-direction: column; gap: 1rem; box-shadow: var(--shadow); }
  .nav__toggle:checked ~ .nav__menu { display: flex; }
  .nav__links { flex-direction: column; align-items: flex-start; gap: .2rem; width: 100%; }
  .nav__links a { display: block; width: 100%; padding: .75rem 0; border-bottom: 1px solid var(--line); font-size: 1.06rem; }
  .nav__menu > .btn { display: inline-flex; width: 100%; }
  .nav__toggle:checked + .burger span { background: transparent; }
  .nav__toggle:checked + .burger span::before { transform: translate(-50%,0) rotate(45deg); }
  .nav__toggle:checked + .burger span::after { transform: translate(-50%,0) rotate(-45deg); }
  .header-cta { display: none; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 8vw, 6.5rem); }
.hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.hero__content { max-width: 560px; }
.hero h1 { margin-bottom: .42em; }
.hero .lead { margin-bottom: 1.2em; }
.hero__note { margin-top: 1.8rem; font-size: .92rem; color: var(--muted); display: flex; align-items: center; gap: .55rem; }
.hero__note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex: none; }

.hero__media { position: relative; display: flex; justify-content: center; }
.figure { position: relative; width: 100%; max-width: 430px; }
/* Clean 4:5 rectangle by default. The arch is reserved for the homepage hero
   (.figure--arch), per the brief's "image shapes" rule. */
.figure__img { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.figure--arch .figure__img { border-radius: 220px 220px var(--radius) var(--radius) / 260px 260px var(--radius) var(--radius); }
.figure__img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.figure__badge { position: absolute; z-index: 2; bottom: 1.2rem; left: 50%; transform: translateX(-50%); background: var(--white); border-radius: 999px; padding: .58rem 1.05rem; box-shadow: var(--shadow); display: inline-flex; align-items: center; gap: .55rem; white-space: nowrap; font-size: .82rem; font-weight: 600; color: var(--ink); }
.figure__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex: none; }
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } .hero__media { order: -1; } .figure { max-width: 340px; } }

/* Credibility strip — short, scannable proof next to the story */
.credibility { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; list-style: none; margin: 0; padding: 1.4rem 0 0; border-top: 1px solid var(--line); }
.credibility li { display: flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.credibility li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex: none; }

/* =========================================================================
   Split (text + media)
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.split--narrow-media { grid-template-columns: 1.12fr .88fr; }
.split__text { align-self: center; }
.split__media { position: relative; display: flex; justify-content: center; }
.split--reverse .split__media { order: -1; }
/* Clean rectangular / 4:5 crops everywhere outside the hero */
.media-frame { position: relative; width: 100%; max-width: 460px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img { width: 100%; display: block; }
.media-frame--portrait img { aspect-ratio: 4/5; object-fit: cover; }
.media-frame--wide img { aspect-ratio: 3/2; object-fit: cover; }
.media-frame--full { max-width: none; }
@media (max-width: 880px) { .split, .split--narrow-media { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } .media-frame { max-width: 420px; } }

/* Wide image band — for the expressive symbolic images */
.image-band { width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.image-band img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }
@media (max-width: 640px) { .image-band img { aspect-ratio: 3/2; } }

/* =========================================================================
   Cards / grids
   ========================================================================= */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; box-shadow: var(--shadow-sm); transition: border-color .25s var(--ease), box-shadow .25s var(--ease); height: 100%; overflow: hidden; }
.card:hover { border-color: #DCCFC5; box-shadow: var(--shadow); }
.card h3 { margin-bottom: .5rem; } .card p:last-child { margin-bottom: 0; }

/* The four coaching areas — equal visual weight, 2x2 on desktop */
.service-card { padding: 0; display: flex; flex-direction: column; }
.service-card__media { border-bottom: 1px solid var(--line); }
.service-card__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.service-card__body { padding: 1.7rem 1.8rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { margin-bottom: .55rem; }
.service-card .textlink { margin-top: auto; padding-top: 1rem; }

/* Outcome blocks — restrained, no animated blobs */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3.5vw, 2.4rem); }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; max-width: 430px; margin-inline: auto; } }
.feature { text-align: center; padding: 2.2rem 1.6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.feature__icon { width: 64px; height: 64px; margin: 0 auto 1.4rem; display: grid; place-items: center; border-radius: 50%; color: var(--plum); background: var(--plum-tint); }
.feature:nth-child(3n+2) .feature__icon { color: var(--coral-deep); background: var(--coral-tint); }
.feature:nth-child(3n+3) .feature__icon { color: #1F6F66; background: var(--teal-tint); }
.feature__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 1.34rem; margin-bottom: .6rem; }
.feature p { color: var(--ink-soft); margin: 0; }

/* Value / foundation blocks */
.pillars { display: grid; gap: 1.5rem; }
.pillars.grid-4 { grid-template-columns: repeat(4, 1fr); }
.pillars.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 940px) { .pillars.grid-4 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px) { .pillars.grid-4, .pillars.grid-3 { grid-template-columns: 1fr; } }
.pillar { position: relative; padding: 1.9rem 1.7rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 100%; }
.pillar h3 { position: relative; font-size: 1.2rem; margin-bottom: .5rem; }
.pillar h3::before { content: ""; display: block; width: 34px; height: 3px; border-radius: 3px; margin-bottom: 1rem; background: var(--coral); }
.pillars > .pillar:nth-child(4n+2) h3::before { background: var(--plum); }
.pillars > .pillar:nth-child(4n+3) h3::before { background: var(--teal); }
.pillars > .pillar:nth-child(4n+4) h3::before { background: var(--ink-soft); }
.pillar p { position: relative; margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* Statement block */
.statement { position: relative; background: var(--ivory-warm); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2rem, 4.5vw, 3.2rem); }
.statement .lead, .statement__lead { font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 2.4vw, 1.8rem); line-height: 1.42; color: var(--ink); margin-bottom: 1.1rem; }
.statement p:last-child { margin-bottom: 0; }

/* Section tints — flat and quiet, so the colour lives in the photographs */
.tint { background: var(--ivory-warm); }
.tint-lav { background: var(--ivory-plum); }
.tint-warm { background: var(--coral-tint); }
.band-soft { background: var(--ivory-warm); }

/* Steps */
.steps { display: grid; gap: 1.5rem; }
.steps.grid-3 { grid-template-columns: repeat(3, 1fr); }
.steps.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .steps.grid-3 { grid-template-columns: 1fr; } .steps.grid-4 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px) { .steps.grid-4 { grid-template-columns: 1fr; } }
.step { position: relative; padding: 2rem 1.7rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step__n { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; font-family: var(--serif); font-weight: 700; font-size: 1.3rem; color: #fff; margin-bottom: 1rem; background: var(--plum); }
.steps > .step:nth-child(4n+2) .step__n { background: var(--coral-deep); }
.steps > .step:nth-child(4n+3) .step__n { background: #1F6F66; }
.steps > .step:nth-child(4n+4) .step__n { background: var(--ink-soft); }
.step h3 { font-size: 1.18rem; } .step p:last-child { margin-bottom: 0; }

/* Checklist */
.checklist { list-style: none; padding: 0; display: grid; gap: 1rem; }
.checklist li { position: relative; padding-left: 2.2rem; max-width: var(--measure); }
.checklist li::before { content: ""; position: absolute; left: 0; top: .18rem; width: 1.4rem; height: 1.4rem; border-radius: 50%;
  background: var(--coral-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B84A2A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/.85rem no-repeat; }
.checklist.two { grid-template-columns: 1fr 1fr; gap: 1rem 2.4rem; }
@media (max-width: 640px) { .checklist.two { grid-template-columns: 1fr; } }

/* Belief / quote band — the one place plum is used as a full surface */
.band-purple { background: var(--plum-deep); color: rgba(255,255,255,.86); }
.band-purple h2, .band-purple h3 { color: #fff; } .band-purple p { color: rgba(255,255,255,.86); }
.band-purple .eyebrow { color: #D9C7E8; }
.band-purple .lead { color: #fff; }
.band-purple .checklist li::before { background-color: rgba(255,255,255,.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.pull-quote { font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.2rem); line-height: 1.34; font-style: italic; color: #fff; margin: 0 auto; max-width: 780px; }
.pull-quote::before { content: "\201C"; } .pull-quote::after { content: "\201D"; }

/* Is / is-not comparison icons */
.isnot-ic { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 1rem; }
.isnot-ic svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.isnot-ic--yes { background: #1F6F66; }
.isnot-ic--no { background: var(--coral-deep); }

/* Callout */
.callout { border-left: 3px solid var(--coral); background: var(--coral-tint); padding: 1.2rem 1.4rem; border-radius: 0 var(--radius) var(--radius) 0; }
.callout strong { color: var(--coral-darker); }

/* FAQ */
.faq { display: grid; gap: .8rem; }
.faq.two { grid-template-columns: 1fr 1fr; gap: .8rem 1.5rem; align-items: start; }
@media (max-width: 760px) { .faq.two { grid-template-columns: 1fr; } }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.4rem; box-shadow: var(--shadow-sm); transition: border-color .25s var(--ease); }
.faq details[open] { border-color: #DCCFC5; }
.faq summary { cursor: pointer; list-style: none; padding: 1.2rem 2.4rem 1.2rem 0; position: relative; font-family: var(--serif); font-size: 1.14rem; font-weight: 600; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 0; top: 1.35rem; width: 18px; height: 18px; transition: transform .25s var(--ease);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B84A2A' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > *:not(summary) { padding-bottom: 1.3rem; } .faq details p { margin: 0; color: var(--ink-soft); max-width: var(--measure); }

/* =========================================================================
   Forms
   ========================================================================= */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.7rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-weight: 600; font-size: .93rem; margin-bottom: .5rem; color: var(--ink); }
.field .req { color: var(--coral-deep); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink); padding: .82rem 1rem; border: 1px solid #DCCFC5; border-radius: 12px; background: var(--white); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral-deep); box-shadow: 0 0 0 3px var(--coral-tint); }
.field textarea { min-height: 140px; resize: vertical; }
.checkbox { display: flex; gap: .7rem; align-items: flex-start; font-size: .93rem; color: var(--ink-soft); }
.checkbox input { width: 1.2rem; height: 1.2rem; margin-top: .18rem; flex: none; accent-color: var(--coral-deep); }
.form-success { display: none; align-items: center; gap: .7rem; margin-top: 1rem; padding: 1rem 1.25rem; background: #EDF7F0; border: 1px solid #BCE0C9; border-radius: 12px; color: #1B6B43; font-weight: 500; }
.form-success.show { display: flex; }
.form-note { font-size: .86rem; color: var(--muted); margin-top: 1rem; }
.newsletter { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center; }
@media (max-width: 820px) { .newsletter { grid-template-columns: 1fr; } }
.subscribe { display: flex; gap: .7rem; flex-wrap: wrap; }
.subscribe input { flex: 1 1 220px; }
.subscribe .btn { flex: none; }

/* Cookie consent. Fixed to the bottom so it never shifts the page layout, and
   both choices carry equal visual weight — refusing must be as easy as
   accepting. */
.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -14px 40px -24px rgba(48,36,42,.4); }
.consent__inner { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; padding: 1.4rem 0; display: flex; flex-wrap: wrap; gap: 1.2rem 2.5rem; align-items: center; justify-content: space-between; }
.consent__text { flex: 1 1 440px; }
.consent__title { font-size: 1.1rem; margin: 0 0 .35rem; }
.consent__text p { margin: 0; font-size: .92rem; color: var(--ink-soft); max-width: 74ch; }
.consent__details { margin-top: .6rem; }
.consent__details summary { cursor: pointer; font-size: .87rem; font-weight: 600; color: var(--coral-deep); }
.consent__details p { margin-top: .6rem; font-size: .87rem; }
.consent__actions { display: flex; gap: .7rem; flex-wrap: wrap; flex: 0 0 auto; }
.consent__actions .btn { padding: .8rem 1.6rem; }
@media (max-width: 560px) { .consent__actions { width: 100%; } .consent__actions .btn { flex: 1 1 auto; } }
.consent-link { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }

/* Scheduler embed. The facade renders until consent is given; only then is the
   Calendly iframe inserted. The height is fixed because a cross-origin iframe
   cannot size itself; these values fit Calendly's layout at each breakpoint. */
.scheduler { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.scheduler iframe { display: block; width: 100%; height: 760px; border: 0; }
@media (max-width: 900px) { .scheduler iframe { height: 900px; } }
@media (max-width: 640px) { .scheduler iframe { height: 1060px; } }
.scheduler + .form-note { margin-top: 1rem; }
.scheduler__facade { display: grid; justify-items: center; gap: 1rem; padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem; text-align: center; }
.scheduler__note { max-width: 56ch; margin: 0; color: var(--ink-soft); }
.scheduler__facade .form-note { margin: 0; }

.contact-aside { display: grid; gap: 1rem; align-content: start; }
.contact-item { display: flex; gap: .9rem; align-items: center; padding: 1rem 1.2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-item .ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; color: var(--plum); background: var(--plum-tint); }
.contact-item:nth-child(2) .ic { color: var(--coral-deep); background: var(--coral-tint); }
.contact-item:nth-child(3) .ic { color: #1F6F66; background: var(--teal-tint); }
.contact-item b { display: block; }

/* =========================================================================
   Final CTA
   ========================================================================= */
.cta-band { text-align: center; }
.cta-inner { background: var(--plum-deep); border-radius: var(--radius-lg); padding: clamp(2.8rem, 6vw, 4.8rem) clamp(1.5rem, 5vw, 3.5rem); color: #fff; }
.cta-inner .eyebrow { color: #D9C7E8; }
.cta-inner h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-inner p { color: rgba(255,255,255,.86); max-width: 56ch; margin-inline: auto; }
.cta-inner .btn-row { justify-content: center; margin-top: 1.8rem; }
.cta-inner .btn--coral { background: var(--coral); color: #2A1206; }
.cta-inner .btn--coral:hover { background: #F0846A; color: #2A1206; }

/* =========================================================================
   Footer — plum used as the brand accent, per the brief
   ========================================================================= */
.site-footer { background: var(--plum-deeper); color: rgba(255,255,255,.72); padding: clamp(3.5rem, 6vw, 4.5rem) 0 2rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: #C9B6DA; }
.footer-about p { color: rgba(255,255,255,.68); font-size: .94rem; max-width: 36ch; margin-top: 1.1rem; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .65rem; margin: 0; }
.footer-col a { color: rgba(255,255,255,.76); text-decoration: none; font-size: .94rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.15); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .82rem; }
.footer-bottom p { margin: 0; }
.disclaimer { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 1.5rem; max-width: 72ch; line-height: 1.6; }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.76); }

/* Utilities */
.prose h2 { margin-top: 2.6rem; } .prose h3 { margin-top: 1.9rem; } .prose > *:first-child { margin-top: 0; }
.pills { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin: 1.5rem 0 0; }
.pills li { font-size: .85rem; font-weight: 600; color: var(--plum); background: var(--plum-tint); padding: .42rem .95rem; border-radius: 999px; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.note-box { border: 1px solid #D5C7E0; border-radius: var(--radius); padding: 1.3rem 1.5rem; background: var(--plum-tint); color: var(--ink-soft); font-size: .93rem; }

/* Reveal: content is visible by default and only animates once JS confirms
   it can run, so a script failure can never leave the page blank. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

.cat-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .32rem .75rem; border-radius: 999px; margin-bottom: .9rem; }
.cat-career { background: var(--coral-tint); color: var(--coral-darker); }
.cat-motiv { background: #F6EDDC; color: #8A5A14; }
.cat-conf { background: var(--teal-tint); color: #1F6F66; }
.cat-growth { background: var(--plum-tint); color: var(--plum); }
