/* ==========================================================================
   Indigo Coaching - global stylesheet
   Palette derived from the logo: indigo, gold, silver, warm ivory.
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
  /* brand */
  --indigo:        #2e2557;
  --indigo-deep:   #221a42;
  --indigo-soft:   #4c4184;
  --indigo-pale:   #6f659b;
  --gold:          #a8871b;
  --gold-bright:   #c9a93b;
  --gold-pale:     #eadfbf;
  --silver:        #b9b9be;
  --silver-pale:   #e4e4e8;

  /* surfaces */
  --cream:         #fcfaf6;
  --sand:          #f5f0e7;
  --lilac:         #f2f0f8;
  --white:         #ffffff;

  /* text */
  --ink:           #241f3d;
  --body:          #55506b;
  --body-light:    #7a7590;

  /* type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* shape */
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 10px rgba(46, 37, 87, .06);
  --shadow:    0 12px 34px rgba(46, 37, 87, .10);
  --shadow-lg: 0 28px 64px rgba(46, 37, 87, .16);

  /* rhythm */
  --wrap:   1140px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------------------------------------------------------------- reset -- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.75;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;   /* fallback for old browsers */
  overflow-x: clip;     /* prevents sideways scroll without breaking iOS position:fixed / scrollY */
}

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

/* width/height attributes are there to reserve space, not to fix the size */
img { height: auto; }

input,
button,
textarea,
select { font: inherit; color: inherit; }

button { cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.14;
  color: var(--indigo);
  letter-spacing: -.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 1.4rem + 2.1vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.08rem + .5vw, 1.5rem); }
h4 { font-size: 1.0625rem; }

p { text-wrap: pretty; }

a {
  color: var(--gold);
  text-decoration-color: rgba(168, 135, 27, .35);
  text-underline-offset: .22em;
  transition: color .22s var(--ease), text-decoration-color .22s var(--ease);
}

a:hover { color: var(--indigo-soft); text-decoration-color: currentColor; }

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-pale); color: var(--indigo-deep); }

/* -------------------------------------------------------------- helpers -- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); }

.section--sand   { background: var(--sand); }
.section--lilac  { background: var(--lilac); }
.section--white  { background: var(--white); }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -140%);
  z-index: 200;
  background: var(--indigo);
  color: var(--white);
  padding: .75rem 1.4rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: transform .2s var(--ease);
}

.skip-link:focus-visible { transform: translate(-50%, 0); color: var(--white); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* eyebrow label above headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--indigo-pale);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.eyebrow--centred { justify-content: center; }

.lede {
  font-size: clamp(1.1rem, 1.02rem + .4vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink);
}

.section-head { max-width: 42rem; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head--centred { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1.1rem; }

/* the four tagline words, as in the logo */
.dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4em 1.1em;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--indigo);
}

.dots span + span::before {
  content: "·";
  color: var(--gold);
  font-weight: 700;
  margin-right: 1.1em;
}

/* -------------------------------------------------------------- buttons -- */
.btn {
  --btn-bg: var(--indigo);
  --btn-fg: var(--white);
  --btn-bd: var(--indigo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .85em 1.9em;
  border: 1.5px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease);
}

.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--indigo);
  --btn-bd: rgba(46, 37, 87, .28);
}

.btn--ghost:hover { --btn-bd: var(--gold); --btn-fg: var(--indigo-deep); }

.btn--gold  { --btn-bg: var(--gold); --btn-bd: var(--gold); --btn-fg: var(--white); }
.btn--gold:hover { --btn-bg: var(--gold-bright); --btn-bd: var(--gold-bright); }

.btn--light {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  --btn-bd: rgba(255, 255, 255, .45);
}

.btn--light:hover { --btn-bd: var(--gold-bright); --btn-fg: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem 1.1rem;
  margin-top: 2rem;
}

/* arrow glyph inside buttons and links */
.btn .arrow,
.text-link .arrow { transition: transform .22s var(--ease); }
.btn:hover .arrow,
.text-link:hover .arrow { transform: translateX(4px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--gold);
}

.text-link:hover { color: var(--indigo-soft); }

.text-link { position: relative; }
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.text-link:hover::after { transform: scaleX(1); }

/* --------------------------------------------------------------- header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 250, 246, .82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(46, 37, 87, .09);
  box-shadow: 0 6px 24px rgba(46, 37, 87, .05);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .85rem;
}

/* brand lock-up: emblem cropped from the full logo + typeset name */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--indigo);
  flex-shrink: 0;
}

/* the emblem alone, cropped out of the full logo artwork */
.brand__mark {
  width: 57px;
  height: 45px;
  background-image: url("/assets/logo.png");
  background-repeat: no-repeat;
  background-size: 118px 118px;
  background-position: -30px -26px;
  flex-shrink: 0;
}

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

/* set in Jost to match the geometric sans of the logo artwork itself */
.brand__name b {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--indigo);
}

.brand__name small {
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .25rem;
}

.site-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.1rem); }

.site-nav a:not(.btn) {
  position: relative;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--indigo);
  text-decoration: none;
  padding-block: .35rem;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}

.site-nav a:not(.btn):hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.site-nav a[aria-current="page"] { color: var(--indigo-deep); }

.site-nav .btn { font-size: .8rem; padding: .7em 1.5em; letter-spacing: .1em; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid rgba(46, 37, 87, .18);
  border-radius: 50%;
  padding: 0;
}

.nav-toggle__bars { display: block; width: 20px; height: 14px; position: relative; }

.nav-toggle__bars i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.8px;
  border-radius: 2px;
  background: var(--indigo);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.nav-toggle__bars i:nth-child(1) { top: 0; }
.nav-toggle__bars i:nth-child(2) { top: 6px; }
.nav-toggle__bars i:nth-child(3) { top: 12px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    top: var(--header-h, 74px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 2rem;
    background: var(--cream);
    border-bottom: 1px solid rgba(46, 37, 87, .1);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }

  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  .site-nav a:not(.btn) {
    padding-block: .95rem;
    border-bottom: 1px solid rgba(46, 37, 87, .08);
    font-size: .88rem;
  }

  .site-nav a:not(.btn)::after { display: none; }
  .site-nav a[aria-current="page"] { color: var(--gold); }
  .site-nav .btn { margin-top: 1.4rem; align-self: flex-start; }
}

/* ----------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(60rem 34rem at 82% 12%, rgba(201, 169, 59, .13), transparent 62%),
    radial-gradient(48rem 34rem at 8% 88%, rgba(111, 101, 155, .13), transparent 60%),
    var(--cream);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--gold); }

.hero .lede { max-width: 34rem; }

.hero__dots { margin-top: 2.6rem; }

/* logo panel */
.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, var(--white) 0%, var(--sand) 58%, rgba(245, 240, 231, 0) 74%);
}

.hero__art::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(168, 135, 27, .22);
}

.hero__art::after {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  border: 1px dashed rgba(111, 101, 155, .2);
  animation: spin 90s linear infinite;
}

.hero__art img {
  position: relative;
  width: 78%;
  filter: drop-shadow(0 18px 34px rgba(46, 37, 87, .14));
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero .lede, .hero__grid > div:first-child { margin-inline: auto; }
  .hero .eyebrow, .hero .btn-row, .hero__dots { justify-content: center; }
  .hero__art { order: -1; max-width: 22rem; margin-inline: auto; }
}

/* --------------------------------------------------- intro / two-column -- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--wide-left { grid-template-columns: 1.15fr .85fr; }

@media (max-width: 880px) {
  .split--wide-left { grid-template-columns: 1fr; }
}

.prose > * + * { margin-top: 1.15em; }
.prose h2 + p, .prose h3 + p { margin-top: 1rem; }
.prose h3 { margin-top: 2.2rem; }

/* soft image / placeholder frame */
.frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--lilac), var(--sand));
  box-shadow: var(--shadow);
}

.frame img { width: 100%; height: 100%; object-fit: cover; }

.frame--portrait { aspect-ratio: 4 / 5; }
.frame--wide     { aspect-ratio: 3 / 2; }

/* dashed placeholder shown until a real photo is dropped in */
.frame--placeholder {
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  border: 1.5px dashed rgba(111, 101, 155, .35);
  box-shadow: var(--shadow-sm);
}

.frame--placeholder span {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--indigo-pale);
  max-width: 18rem;
}

.frame__badge {
  position: absolute;
  right: clamp(-.5rem, 2vw, 1.25rem);
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.3rem;
  border-radius: 999px;
  background: rgba(252, 250, 246, .94);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo);
}

.frame__badge b { color: var(--gold); font-weight: 600; }

/* ---------------------------------------------------------------- cards -- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1rem, 2.4vw, 1.75rem);
}

.card {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--white);
  border: 1px solid rgba(46, 37, 87, .07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--silver));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(168, 135, 27, .28);
}

.card:hover::before { transform: scaleX(1); }

.card h3 { margin-bottom: .6rem; }
.card p { font-size: .98rem; }

.card__num {
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .2em;
  color: var(--gold);
  display: block;
  margin-bottom: .9rem;
}

/* small line-art icon bubble */
.card__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--indigo-soft);
}

.card__icon svg { width: 22px; height: 22px; }

/* ------------------------------------------------------------- includes -- */
.ticks { list-style: none; padding: 0; display: grid; gap: 1rem; }

.ticks li {
  position: relative;
  padding-left: 2.3rem;
  line-height: 1.65;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  background: var(--gold-pale);
}

.ticks li::after {
  content: "";
  position: absolute;
  left: .48rem; top: .78em;
  width: .42rem; height: .72rem;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

.ticks li b { color: var(--ink); font-weight: 500; }

/* --------------------------------------------------------- pricing card -- */
.price-card {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.price-card::after {
  content: "";
  position: absolute;
  right: -18%; top: -32%;
  width: 24rem; height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 59, .22), transparent 66%);
  pointer-events: none;
}

.price-card h3, .price-card h2 { color: var(--white); }
.price-card .eyebrow { color: var(--gold-bright); }
.price-card .eyebrow::before { background: var(--gold-bright); }

.price-card__figure {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-block: .4rem 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 4vw, 4.2rem);
  line-height: 1;
  color: var(--white);
}

.price-card__figure small {
  font-family: var(--font-body);
  font-size: .95rem;
  letter-spacing: .04em;
  color: var(--gold-bright);
}

.price-card .ticks li::before { background: rgba(201, 169, 59, .22); }
.price-card .ticks li::after  { border-color: var(--gold-bright); }
.price-card .ticks li b { color: var(--white); }

.price-card hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  margin-block: 1.8rem;
}

/* ----------------------------------------------------------- pull quote -- */
.quote {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.6rem, 4vw, 3.5rem);
  border-left: 3px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-sm);
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.05rem + .9vw, 1.7rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--indigo);
}

.quote cite {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------------------------------------- testimonials -- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  max-width: 62rem;
  margin-inline: auto;
}

@media (max-width: 820px) {
  .testimonials { grid-template-columns: 1fr; max-width: 40rem; }
}

.testimonial {
  position: relative;
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid rgba(46, 37, 87, .07);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.testimonial__mark {
  position: absolute;
  top: .2rem;
  right: 1.1rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .15;
  pointer-events: none;
}

.testimonial blockquote {
  margin: 0;
  position: relative;
}

.testimonial blockquote p {
  color: var(--body);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: .7rem;
}

.testimonial blockquote p:last-child { margin-bottom: 0; }

.testimonial figcaption {
  margin-top: 1.1rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(46, 37, 87, .08);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ------------------------------------------------------------- CTA band -- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--indigo) 0%, var(--indigo-deep) 70%);
  color: rgba(255, 255, 255, .82);
  text-align: center;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-band::before {
  width: 32rem; height: 32rem;
  left: -10rem; bottom: -18rem;
  background: radial-gradient(circle, rgba(201, 169, 59, .18), transparent 65%);
}

.cta-band::after {
  width: 28rem; height: 28rem;
  right: -8rem; top: -14rem;
  background: radial-gradient(circle, rgba(185, 185, 190, .16), transparent 65%);
}

.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 38rem; margin: 1.2rem auto 0; }
.cta-band .eyebrow { color: var(--gold-bright); }
.cta-band .eyebrow::before { background: var(--gold-bright); }
.cta-band .btn-row { justify-content: center; }

/* --------------------------------------------------------------- accord -- */
.faq-list { display: grid; gap: 1rem; }

.faq-item {
  background: var(--white);
  border: 1px solid rgba(46, 37, 87, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.faq-item[open] { border-color: rgba(168, 135, 27, .32); box-shadow: var(--shadow); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem clamp(1.2rem, 3vw, 1.9rem);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1rem + .3vw, 1.22rem);
  color: var(--indigo);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--indigo-soft); }

.faq-item summary i {
  position: relative;
  flex-shrink: 0;
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  background: var(--lilac);
  transition: background .25s var(--ease), transform .3s var(--ease);
}

.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: .62rem; height: 1.6px;
  border-radius: 2px;
  background: var(--indigo-soft);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}

.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item[open] summary i { background: var(--gold-pale); }
.faq-item[open] summary i::after { opacity: 0; transform: translate(-50%, -50%) rotate(0); }

.faq-item__body {
  padding: 0 clamp(1.2rem, 3vw, 1.9rem) 1.6rem;
  max-width: 46rem;
}

.faq-item__body > * + * { margin-top: 1em; }

/* ----------------------------------------------------------------- form -- */
.form-panel {
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid rgba(46, 37, 87, .07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.field { display: flex; flex-direction: column; gap: .5rem; }
.field--full { grid-column: 1 / -1; }

@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
}

.field label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--indigo);
}

.field label .req { color: var(--gold); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1.05rem;
  background: var(--cream);
  border: 1.5px solid rgba(46, 37, 87, .12);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease),
              box-shadow .2s var(--ease);
}

.field textarea { min-height: 9.5rem; resize: vertical; line-height: 1.6; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236f659b' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.05rem center;
  background-size: 12px;
  padding-right: 2.6rem;
}

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(46, 37, 87, .24); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 59, .16);
}

.field .hint { font-size: .82rem; color: var(--body-light); }

.field .error {
  font-size: .82rem;
  color: #a5314a;
  min-height: 0;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #c25a72;
  box-shadow: 0 0 0 4px rgba(194, 90, 114, .12);
}

/* honeypot - hidden from people, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--body);
}

.consent input { width: 1.15rem; height: 1.15rem; margin-top: .28rem; accent-color: var(--gold); flex-shrink: 0; }

.form-note {
  margin-top: 1.6rem;
  font-size: .85rem;
  color: var(--body-light);
}

/* contact detail rows beside the form */
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.5rem; }

.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }

.contact-list .ico {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--indigo-soft);
  box-shadow: var(--shadow-sm);
}

.contact-list .ico svg { width: 20px; height: 20px; }

.contact-list h3 { font-size: 1.02rem; margin-bottom: .15rem; }
.contact-list p, .contact-list a { font-size: .98rem; }

/* --------------------------------------------------------------- social -- */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem 1.25rem;
  border: 1.5px solid rgba(46, 37, 87, .16);
  border-radius: 999px;
  background: var(--white);
  color: var(--indigo);
  font-size: .88rem;
  letter-spacing: .04em;
  text-decoration: none;
  transition: transform .22s var(--ease), border-color .22s var(--ease),
              color .22s var(--ease), box-shadow .22s var(--ease);
}

.social-btn svg { width: 19px; height: 19px; }

.social-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--indigo-deep);
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------- footer -- */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: var(--indigo-deep);
  color: rgba(255, 255, 255, .68);
  font-size: .95rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%; top: -22rem;
  width: 40rem; height: 40rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 59, .10), transparent 62%);
  pointer-events: none;
}

.site-footer .wrap { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 2.5rem;
}

@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.site-footer a { color: rgba(255, 255, 255, .74); text-decoration: none; }
.site-footer a:hover { color: var(--gold-bright); }

.site-footer ul { list-style: none; padding: 0; display: grid; gap: .7rem; }

/* the full logo would vanish against the dark footer, so the emblem carries it */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.4rem;
}

.footer-logo__mark {
  width: 76px;
  height: 60px;
  background-image: url("/assets/logo.png");
  background-repeat: no-repeat;
  background-size: 157px 157px;
  background-position: -40px -35px;
  flex-shrink: 0;
}

.footer-logo__name {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--white);
}

.footer-brand p { max-width: 26rem; }

.site-footer .dots { color: rgba(255, 255, 255, .82); margin-top: 1.4rem; }
.site-footer .dots span + span::before { color: var(--gold-bright); }

.site-footer .social-btn {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .82);
}

.site-footer .social-btn:hover { border-color: var(--gold-bright); color: var(--white); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .84rem;
  color: rgba(255, 255, 255, .5);
}

/* ----------------------------------------------------------- page intro -- */
.page-head {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5rem) clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(46rem 26rem at 78% 0%, rgba(201, 169, 59, .12), transparent 60%),
    var(--lilac);
}

.page-head h1 { max-width: 20ch; }
.page-head p { max-width: 44rem; margin-top: 1.3rem; }

/* breadcrumb */
.crumbs {
  display: flex;
  gap: .5rem;
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--body-light);
  margin-bottom: 1.4rem;
}

.crumbs a { color: var(--indigo-pale); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }

/* -------------------------------------------------------------- reveals -- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* two-column sections reveal from opposite sides for a choreographed feel */
.split > .reveal:nth-child(1) { transform: translate(-28px, 0); }
.split > .reveal:nth-child(2) { transform: translate(28px, 0); }
.split > .reveal.is-visible { transform: none; }

/* a soft fade as each page loads, so navigation feels seamless */
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }
body { animation: page-in .55s var(--ease) both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------- scrolling dragonfly -- */
.scroll-dragonfly {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: clamp(44px, 6vw, 82px);
  z-index: 90;
  opacity: 0;
  cursor: pointer;
  pointer-events: auto;
  will-change: transform;
  transform: translate3d(-30vw, 26vh, 0) rotate(90deg);
}
.scroll-dragonfly img { display: block; width: 100%; height: auto; }
@media (prefers-reduced-motion: reduce) {
  .scroll-dragonfly { display: none; }
}

/* --------------------------------------------------------------- print -- */
@media print {
  .site-header, .site-footer, .cta-band, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .scroll-dragonfly { display: none; }
}
