/* ============================================================
   Bridget Ball Consulting LLC — styles
   Warm & human: sage / clay / cream, serif headings
   ============================================================ */

:root {
  --cream:     #F8F3EA;  /* warm ivory */
  --sand:      #EFE7D6;  /* warm beige (light) */
  --sand-2:    #E6D8BF;  /* warm beige */
  --sage:      #7E9077;  /* soft sage */
  --sage-dk:   #2E4035;  /* deep forest green */
  --forest:    #2E4035;
  --forest-dk: #243029;
  --clay:      #AE8B4E;  /* muted brass / gold accent */
  --clay-dk:   #8A6A33;  /* brass (dark) */
  --ink:       #2B2A28;  /* charcoal */
  --muted:     #5E5950;
  --line:      #DDD2BE;
  --white:     #FFFDF8;

  --maxw: 1120px;
  --radius: 14px;
  --shadow: 0 18px 40px -24px rgba(42, 40, 37, .45);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1rem; }

a { color: var(--clay-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 600;
  color: var(--clay-dk);
  margin: 0 0 1rem;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--clay);
  margin-top: .6rem;
}
.center .eyebrow::after, .banner .eyebrow::after { margin-left: auto; margin-right: auto; }

.lead { font-size: 1.18rem; color: var(--muted); }

section { padding: 108px 0; }
.section-sand { background: var(--sand); }
.section-sage { background: var(--sage-dk); color: var(--cream); }
.section-sage h1, .section-sage h2, .section-sage h3 { color: var(--white); }
.section-sage .eyebrow { color: var(--sand-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--forest-dk); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--sage); }
.btn-ghost:hover { background: var(--sage); color: #fff; transform: translateY(-2px); }
.section-sage .btn-ghost { color: var(--cream); border-color: var(--sand-2); }
.section-sage .btn-ghost:hover { background: var(--cream); color: var(--ink); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.8rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,244,237,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; flex-direction: column; line-height: 1.05; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand .name { font-family: var(--serif); font-size: 1.22rem; color: var(--ink); font-weight: 600; }
.brand .sub { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .96rem; }
.nav-links a:hover { color: var(--clay-dk); text-decoration: none; }
.nav-links a.active { color: var(--clay-dk); }
.nav-cta { background: var(--forest); color: #fff !important; padding: 12px 22px; border-radius: 6px; text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; font-weight: 600; }
.nav-cta:hover { background: var(--forest-dk); }
.nav-cta:hover { background: var(--sage-dk); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.6rem; color: var(--ink); }
.caret { font-size: .7em; opacity: .7; }

/* Dropdowns (desktop) */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 256px;
  list-style: none; margin: 0; padding: 8px; display: none;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow);
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { display: block; }
.dropdown li { width: 100%; }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .92rem; white-space: nowrap; }
.dropdown a:hover { background: var(--sand); color: var(--clay-dk); text-decoration: none; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 2px;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 14px 24px 22px; display: none; max-height: 80vh; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { padding: 10px 0; width: 100%; }
  .caret { display: none; }
  /* Mobile: show submenus inline, indented */
  .dropdown {
    position: static; display: block; box-shadow: none; border: 0;
    background: transparent; padding: 0 0 6px 14px; min-width: 0;
  }
  .dropdown a { padding: 7px 0; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, var(--sand-2), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--sand));
  padding: 96px 0 88px;
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-text h1 { margin-bottom: .35em; }
.hero-text .lead { max-width: 36ch; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow);
}
.hero-card h3 { font-size: 1.05rem; color: var(--sage-dk); }
.hero-card ul { list-style: none; margin: 0; padding: 0; }
.hero-card li { padding: 9px 0; border-bottom: 1px solid var(--sand); font-size: .98rem; display: flex; gap: 10px; }
.hero-card li:last-child { border-bottom: 0; }
.hero-card li::before { content: "—"; color: var(--clay); }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Generic content ---------- */
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure.center { margin-left: auto; margin-right: auto; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--sand); color: var(--sage-dk); font-size: 1.4rem;
}
.card h3 { margin-bottom: .4em; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .98rem; }
.card ul { margin: .6rem 0 0; padding-left: 1.1rem; color: var(--muted); font-size: .95rem; }
.card ul li { margin-bottom: .35rem; }

/* ---------- Two-column feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Pill list ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.2rem 0 0; padding: 0; list-style: none; }
.pills li {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 16px; font-size: .9rem; color: var(--muted);
}
.section-sage .pills li { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); color: var(--cream); }

/* ---------- Credentials strip ---------- */
.creds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.creds .item { padding: 8px; }
.creds .item strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--ink); margin-bottom: 4px; }
.creds .item span { font-size: .86rem; color: var(--muted); }
@media (max-width: 760px) { .creds { grid-template-columns: 1fr 1fr; gap: 26px; } }
.creds-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 760px) { .creds-5 { grid-template-columns: 1fr 1fr; } }

/* ---------- Quote / banner ---------- */
.banner { text-align: center; }
.banner blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.3; margin: 0 auto; max-width: 22ch; font-style: italic;
}
.banner .attr { margin-top: 1.2rem; font-size: .95rem; opacity: .85; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; font-family: var(--sans); font-size: 1rem; background: var(--white); color: var(--ink);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(95,112,96,.15);
}
.contact-detail { margin-bottom: 22px; }
.contact-detail .k { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--sage); font-weight: 600; }
.contact-detail .v { font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #D9D3C8; padding: 56px 0 30px; font-size: .92rem; }
.site-footer a { color: var(--sand-2); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 26px; } }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.site-footer .brand-name { font-family: var(--serif); font-size: 1.4rem; color: #fff; margin-bottom: 8px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.footer-note { color: #9A938A; }
.footer-bottom {
  border-top: 1px solid #423E39; margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #9A938A;
}
.entity-note {
  background: rgba(255,255,255,.05); border: 1px solid #423E39; border-radius: 12px;
  padding: 18px 20px; margin-top: 26px; font-size: .9rem; color: #C7C0B6;
}
.entity-note strong { color: #fff; }

/* ---------- Two large service cards (boutique hero pattern) ---------- */
.bigcards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 760px) { .bigcards { grid-template-columns: 1fr; } }
.bigcard {
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 46px 42px; min-height: 260px; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.bigcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); text-decoration: none; }
.bigcard .kicker { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--clay-dk); font-weight: 700; margin-bottom: 1rem; }
.bigcard h3 { font-size: 2rem; margin-bottom: .35em; }
.bigcard p { color: var(--muted); margin: 0 0 1.4rem; }
.bigcard .arrow { color: var(--forest); font-weight: 600; font-size: 1rem; }

/* ---------- Atmospheric image band ---------- */
.imgband {
  position: relative; min-height: 440px; display: grid; place-items: center; text-align: center;
  background: linear-gradient(135deg, #708471, #354a3c); background-size: cover; background-position: center;
}
.imgband .overlay { position: absolute; inset: 0; background: rgba(40, 56, 46, .48); }
.imgband .inner { position: relative; color: #fff; max-width: 26ch; padding: 48px 24px; }
.imgband .inner h2 { color: #fff; font-style: italic; font-weight: 400; }

/* ---------- Serene CTA band ---------- */
.arrive { text-align: center; }
.arrive h2 { font-style: italic; font-weight: 400; }

/* ---------- HEAL+ framework ---------- */
.heal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 2rem; }
@media (max-width: 900px) { .heal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .heal-grid { grid-template-columns: 1fr; } }
.heal {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; text-align: left;
}
.heal .letter {
  font-family: var(--serif); font-size: 2rem; line-height: 1; color: #fff;
  background: var(--sage); width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 14px; font-weight: 600;
}
.heal.plus .letter { background: var(--clay); }
.heal h3 { font-size: 1.08rem; margin-bottom: .35em; }
.heal p { font-size: .92rem; color: var(--muted); margin: 0; }
.section-sage .heal { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.section-sage .heal p { color: var(--sand-2); }

/* ---------- Flow / process arrows ---------- */
.flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: 12px; margin-top: 1.8rem; }
.flow .step {
  flex: 1 1 180px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 20px; position: relative;
}
.flow .step .n { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--clay); font-weight: 700; }
.flow .step h3 { font-size: 1.1rem; margin: .3em 0 .3em; }
.flow .step p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Highlight / offer band ---------- */
.offer {
  background: linear-gradient(180deg, var(--white), var(--sand));
  border: 1px solid var(--line); border-left: 5px solid var(--clay);
  border-radius: var(--radius); padding: 30px 32px;
}
.offer h3 { color: var(--clay-dk); margin-bottom: .4em; }
.offer p { margin-bottom: 0; color: var(--muted); }

/* ---------- Service-line cards ---------- */
.card h4 {
  font-family: var(--sans); font-size: .74rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--sage); font-weight: 700;
  margin: 1.1rem 0 .45rem;
}
.card h4:first-of-type { margin-top: .8rem; }
.card .deliv { border-top: 1px dashed var(--line); margin-top: 1rem; padding-top: .2rem; }

/* ---------- Package cards ---------- */
.pkg { position: relative; border-top: 4px solid var(--clay); }
.pkg .num {
  font-family: var(--serif); font-size: .85rem; font-weight: 600; color: var(--clay-dk);
  letter-spacing: .04em;
}
.pkg h3 { margin: .25em 0 .35em; }
.pkg .scope { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Assessment callout ---------- */
.assess {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--sage);
  border-radius: var(--radius); padding: 28px 30px;
}
.assess .riasec {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; min-width: 168px;
}
.assess .riasec span {
  background: var(--sand); color: var(--sage-dk); border-radius: 10px;
  width: 50px; height: 50px; display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
}
.assess h3 { margin-bottom: .35em; }
.assess p { color: var(--muted); margin: 0; font-size: .96rem; }
@media (max-width: 640px) { .assess { grid-template-columns: 1fr; } }

/* ---------- Hero media ---------- */
.hero-media { display: flex; justify-content: center; }
.hero-media .portrait { max-width: 460px; }

/* ---------- Portrait ---------- */
.portrait {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 3 / 2; object-fit: cover; object-position: center top;
  background: var(--sand-2);
}
.portrait-round {
  width: 100%; max-width: 340px; border-radius: 50%; aspect-ratio: 1 / 1;
  object-fit: cover; box-shadow: var(--shadow); background: var(--sand-2); margin: 0 auto;
}

/* ---------- Philosophy pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 2rem; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr 1fr; } }
.pillars .p {
  text-align: center; padding: 22px 14px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.pillars .p strong { display: block; font-family: var(--serif); font-size: 1.05rem; }

/* ---------- Boundary / ethics note ---------- */
.boundary {
  background: var(--sand); border-radius: var(--radius); padding: 26px 30px;
  border: 1px solid var(--line);
}
.boundary h3 { font-size: 1.15rem; }
.boundary p { margin-bottom: 0; color: var(--muted); font-size: .96rem; }

/* ---------- Belief / mission statement (bold, centered) ---------- */
.belief { padding: 116px 0; }
.belief-mark { width: 58px; height: 58px; border-radius: 50%; background: var(--sand); color: var(--sage-dk); display: grid; place-items: center; margin: 0 auto 1.6rem; }
.belief-mark .ic-svg { width: 30px; height: 30px; }
.belief-statement { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.32; color: var(--ink); max-width: 24ch; margin: 0 auto; }

/* ---------- Script accents & brand wordmark ---------- */
.script { font-family: var(--script); font-weight: 600; color: var(--sage); font-size: 1.08em; }
.brand { flex-direction: row; align-items: center; gap: 11px; }
.brand .leaf-mark { width: 32px; height: 36px; color: var(--sage); flex: none; }
.brand .wm { display: flex; flex-direction: column; line-height: 1.02; }
.brand .name { font-family: var(--serif); font-size: 1.16rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; color: var(--ink); }
.brand .name small { display: block; font-size: .56rem; letter-spacing: .34em; font-weight: 500; opacity: .85; margin-top: 3px; }
.brand .sub { font-family: var(--script); font-size: 1.06rem; line-height: 1; color: var(--clay); text-transform: none; letter-spacing: 0; margin-top: 3px; }

.goldrule { width: 64px; height: 2px; background: var(--clay); margin: 0 0 1.6rem; border-radius: 2px; }

/* ---------- Icons ---------- */
.ic-svg { width: 30px; height: 30px; }
.ic-round { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px; color: #fff; }
.ic-round.ic-forest { background: var(--forest); }
.ic-round.ic-clay { background: var(--clay); }
.ic-round .ic-svg { width: 28px; height: 28px; }

/* ---------- Intro value rows ---------- */
.valuecols { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.valuecols > div:first-child { padding-right: 48px; }
.valuerows { border-left: 1px solid var(--line); padding-left: 48px; }
.vrow { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; }
.vrow + .vrow { border-top: 1px solid var(--line); }
.vrow p { margin: 0; color: var(--muted); }
.vrow .ic-svg { width: 32px; height: 32px; color: var(--sage); flex: none; margin-top: 2px; }
@media (max-width: 820px) {
  .valuecols { grid-template-columns: 1fr; }
  .valuecols > div:first-child { padding-right: 0; }
  .valuerows { border-left: 0; padding-left: 0; margin-top: 1.2rem; }
}

/* ---------- Learn-more link ---------- */
.learnrow { margin-top: 1.1rem; }
.learn { text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 700; color: var(--clay-dk); }
.learn:hover { text-decoration: none; color: var(--forest); }

/* ---------- Script tagline ---------- */
.scriptline { font-family: var(--script); font-weight: 600; font-size: 1.9rem; color: var(--sage); text-align: center; margin-top: 1.8rem; }

/* ---------- Credentials strip ---------- */
.credhead { font-family: var(--serif); text-transform: uppercase; letter-spacing: .2em; font-size: 1.05rem; font-weight: 500; color: var(--sage-dk); margin-bottom: 2.2rem; }
.credstrip { display: flex; flex-wrap: wrap; justify-content: center; }
.credstrip .ci { flex: 1 1 0; min-width: 168px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 6px 20px; }
.credstrip .ci + .ci { border-left: 1px solid var(--line); }
.credstrip .ci .ic-svg { width: 30px; height: 30px; color: var(--sage); }
.credstrip .ci span { font-size: .82rem; color: var(--muted); line-height: 1.35; max-width: 16ch; }
@media (max-width: 760px) { .credstrip .ci { flex: 1 1 45%; } .credstrip .ci + .ci { border-left: 0; } }

/* ---------- Testimonial ---------- */
.testimonial .qmark { font-family: var(--serif); font-size: 4.4rem; line-height: 0; color: var(--clay); display: block; height: 2.2rem; }
.quote { font-family: var(--serif); font-size: 1.5rem; font-style: italic; line-height: 1.5; color: var(--ink); }
.testimonial .attr { letter-spacing: .16em; text-transform: uppercase; font-size: .76rem; color: var(--muted); margin-top: 1.2rem; }

/* ---------- Botanical decorations ---------- */
.intro-band, .cta-band, .testimonial { position: relative; overflow: hidden; }
.deco { position: absolute; pointer-events: none; }
.sprig { width: 150px; height: auto; opacity: .4; display: block; }
.deco-tl { top: -8px; left: -26px; color: var(--sage); opacity: .65; }
.deco-bl { bottom: -16px; left: -18px; color: #fff; }
.deco-br { bottom: -16px; right: -18px; transform: scaleX(-1); color: #fff; }
.cta-band .sprig { opacity: .3; width: 168px; }
@media (max-width: 680px) { .deco { display: none; } }

/* ---------- Ivory button + underline link (on forest) ---------- */
.btn-ivory { display: inline-block; background: var(--cream); color: var(--forest); font-family: var(--sans); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; padding: 16px 34px; border-radius: 6px; transition: transform .15s ease, box-shadow .15s ease; }
.btn-ivory:hover { background: #fff; text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.link-underline { color: var(--cream); text-decoration: underline; text-underline-offset: 4px; font-weight: 600; letter-spacing: .06em; font-size: .82rem; text-transform: uppercase; }
.link-underline:hover { color: #fff; }

/* ---------- Centered layout pass ---------- */
.hero-center .wrap { display: block; }
.hero-center .goldrule { margin-left: auto; margin-right: auto; }
.hero-center .lead { margin-left: auto; margin-right: auto; }

/* Centered round portrait + monogram fallback */
.portrait-wrap { display: flex; justify-content: center; margin: 0 auto 2rem; }
.portrait-round { width: 220px; max-width: 64vw; border-radius: 50%; aspect-ratio: 1/1; object-fit: cover; box-shadow: var(--shadow); background: var(--sand-2); }
.portrait-fallback { width: 220px; height: 220px; border-radius: 50%; background: var(--sage); color: var(--cream); display: grid; place-items: center; font-family: var(--serif); font-size: 4rem; letter-spacing: .04em; box-shadow: var(--shadow); }
.about-portrait .portrait-round, .about-portrait .portrait-fallback { width: 260px; height: 260px; }

/* Cards centered everywhere */
.card { text-align: center; }
.card .ic, .card .ic-round { margin-left: auto; margin-right: auto; }
.card h4 { text-align: center; }
.card ul { list-style: none; padding: 0; margin: .7rem 0 0; }
.card ul li { margin-bottom: .35rem; }

/* Flow steps, pills, boundary centered */
.flow .step { text-align: center; }
.pills { justify-content: center; }
.boundary { text-align: center; }

/* Credential emblems */
.emblems { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.emblem-item { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 150px; }
.emblem { width: 96px; height: 96px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white); display: grid; place-items: center; overflow: hidden; box-shadow: 0 10px 24px -18px rgba(42,40,37,.5); }
.emblem img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.emblem-mono { font-family: var(--serif); font-size: 1.35rem; color: var(--sage-dk); letter-spacing: .04em; }
.emblem-label { font-size: .84rem; color: var(--muted); line-height: 1.3; text-align: center; }
.emblem-label small { display: block; opacity: .85; margin-top: 2px; }
@media (max-width: 600px) { .emblems { gap: 26px; } .emblem-item { width: 132px; } }

/* Contact — single centered column */
.contact-single { max-width: 560px; margin: 0 auto; text-align: center; }
.contact-single h2 { text-align: center; }
.contact-single .form-field { text-align: left; }
.contact-single .contact-detail { text-align: center; }
.contact-single > div + div { margin-top: 44px; }

/* Centered feature row (intro) */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 2.6rem; text-align: center; }
.feature { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.feature .ic-svg { width: 34px; height: 34px; color: var(--sage); }
.feature p { margin: 0; color: var(--muted); max-width: 26ch; }
@media (max-width: 760px) { .features { grid-template-columns: 1fr; gap: 26px; } }

.hidden-field { display: none; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.tag { display:inline-block; background: var(--sand); color: var(--sage-dk); font-size:.74rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; padding:5px 12px; border-radius:999px; margin-bottom:14px; }
.notice { background: var(--white); border:1px solid var(--line); border-left: 4px solid var(--clay); border-radius: 8px; padding: 14px 18px; font-size:.9rem; color: var(--muted); }
