/* Bloom Don't Shrink — Ecosystem Site
   Same house. Different rooms. */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Base ecosystem palette */
  --midnight: #1d2229;
  --charcoal: #2a2f37;
  --cream: #f6f1e7;
  --parchment: #efe7d8;
  --earth-green: #55694f;
  --earth-green-deep: #3e4f3a;
  --plum: #5a3a4e;
  --plum-deep: #43293a;
  --rose: #8d5a6e;
  --gold: #b98d4f;
  --bronze: #98713d;
  --clay: #b06a4d;
  --coffee: #6b5138;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Default (Bloom Don't Shrink) lane */
  --accent: var(--gold);
  --room: var(--earth-green);
}

/* Room lanes — same house, different rooms */
body.room-capacity { --accent: var(--gold); --room: var(--earth-green); }
body.room-portals  { --accent: var(--clay); --room: var(--plum); }
body.room-straight { --accent: var(--gold); --room: var(--plum-deep); }
body.room-speaking { --accent: var(--bronze); --room: var(--earth-green-deep); }
body.room-about    { --accent: var(--gold); --room: var(--earth-green); }
body.room-contact  { --accent: var(--bronze); --room: var(--charcoal); }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--midnight);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

a { color: var(--room); }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--midnight);
  color: var(--cream);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1rem;
}
.announce strong { color: var(--gold); font-weight: 600; }

/* ---------- Nav ---------- */
nav.site-nav {
  background: var(--cream);
  border-bottom: 1px solid rgba(29,34,41,0.1);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  max-width: 1060px; margin: 0 auto; padding: 0.9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.brand {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  color: var(--midnight); text-decoration: none; letter-spacing: 0.01em;
}
.brand em { font-style: italic; color: var(--earth-green); }
.nav-links { display: flex; flex-wrap: wrap; gap: 1.15rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none; padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { border-bottom-color: var(--accent); }
.nav-links a.active { border-bottom-color: var(--accent); color: var(--midnight); }
.nav-links a.nav-cta {
  background: var(--midnight); color: var(--cream);
  padding: 0.55rem 1.05rem; border-radius: 3px; border-bottom: none;
}
.nav-links a.nav-cta:hover { background: var(--earth-green-deep); }

/* ---------- Hero ---------- */
header.hero {
  background: var(--midnight);
  color: var(--cream);
  padding: 5.5rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
header.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(185,141,79,0.14), transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(85,105,79,0.18), transparent 65%);
  pointer-events: none;
}
body.room-portals header.hero::after {
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(176,106,77,0.2), transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(90,58,78,0.35), transparent 65%);
}
body.room-straight header.hero { background: var(--plum-deep); }
body.room-straight header.hero::after {
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(185,141,79,0.16), transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(29,34,41,0.5), transparent 65%);
}
.hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.hero .kicker {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 600;
  margin-bottom: 1.4rem;
  color: var(--cream);
}
.hero .sub {
  font-size: 1.08rem; font-weight: 300; line-height: 1.8;
  color: rgba(246,241,231,0.85); max-width: 640px; margin-bottom: 2.2rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn {
  display: inline-block; text-decoration: none; border-radius: 3px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.95rem 1.7rem; transition: all .2s ease;
}
.btn-primary { background: var(--gold); color: var(--midnight); }
.btn-primary:hover { background: var(--cream); }
.btn-ghost { border: 1px solid rgba(246,241,231,0.5); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--midnight); color: var(--cream); }
.btn-dark:hover { background: var(--earth-green-deep); }

/* ---------- Sections ---------- */
section { padding: 4.5rem 0; }
section.alt { background: var(--parchment); }
section.dark { background: var(--midnight); color: var(--cream); }
section.room-tint { background: var(--room); color: var(--cream); }

.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.9rem;
}
section.dark .section-label, section.room-tint .section-label { color: var(--gold); }
h2.section-title { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 1.6rem; color: inherit; }
h3.sub-title { font-size: 1.45rem; margin: 2.2rem 0 0.8rem; }

.lede { font-size: 1.12rem; font-weight: 300; line-height: 1.85; }
p + p { margin-top: 1.1rem; }

.stanza p { margin: 0; }
.stanza { margin: 1.4rem 0; padding-left: 1.2rem; border-left: 3px solid var(--accent); }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.4rem; }
.card {
  background: var(--cream); border: 1px solid rgba(29,34,41,0.1);
  border-top: 4px solid var(--card-accent, var(--gold));
  border-radius: 4px; padding: 2rem 1.8rem;
  display: flex; flex-direction: column;
}
section.alt .card { background: #fbf8f1; }
.card .card-room { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--card-accent, var(--gold)); margin-bottom: 0.7rem; }
.card h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.card .for { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.8rem; }
.card p.desc { font-size: 0.95rem; flex: 1; }
.card .best { font-size: 0.85rem; margin-top: 1rem; color: var(--charcoal); }
.card .best strong { color: var(--midnight); }
.card a.more {
  margin-top: 1.3rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; color: var(--card-accent, var(--gold));
}
.card a.more:hover { text-decoration: underline; }

/* accent variants for the four rooms on home */
.card.c-capacity { --card-accent: var(--earth-green); }
.card.c-portals  { --card-accent: var(--clay); }
.card.c-straight { --card-accent: var(--plum); }
.card.c-speaking { --card-accent: var(--bronze); }

/* ---------- Signature ideas / core lines ---------- */
.lines { display: grid; gap: 0.4rem; margin-top: 1.6rem; }
.lines p {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 500; font-style: italic; margin: 0.45rem 0; color: inherit;
}
.lines p::before { content: '— '; color: var(--gold); font-style: normal; }

/* ---------- Lists ---------- */
ul.styled { list-style: none; margin-top: 1.2rem; }
ul.styled li { padding: 0.45rem 0 0.45rem 1.6rem; position: relative; }
ul.styled li::before {
  content: ''; position: absolute; left: 0; top: 1.05rem;
  width: 0.55rem; height: 0.55rem; border-radius: 50%;
  background: var(--accent);
}
ul.cols { columns: 2; column-gap: 2.5rem; }
@media (max-width: 640px) { ul.cols { columns: 1; } }

ol.steps { list-style: none; counter-reset: step; margin-top: 1.8rem; }
ol.steps li { counter-increment: step; padding: 1.3rem 0 1.3rem 4rem; position: relative; border-bottom: 1px solid rgba(29,34,41,0.1); }
ol.steps li:last-child { border-bottom: none; }
ol.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 1.2rem;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--room); color: var(--cream);
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
ol.steps li strong.step-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; display: block; }

/* ---------- Pull quote ---------- */
.pull {
  font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 500; font-style: italic; line-height: 1.35;
  text-align: center; max-width: 780px; margin: 0 auto; color: inherit;
}
.pull-mark { display:block; text-align:center; color: var(--gold); font-family: var(--serif); font-size: 3rem; line-height: 0.5; margin-bottom: 1.2rem; }

/* ---------- Flow (pressure → action) ---------- */
.flow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.9rem; margin: 2.2rem 0 1.4rem; }
.flow span.node {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  background: var(--parchment); color: var(--midnight);
  padding: 0.7rem 1.4rem; border-radius: 3px; border: 1px solid rgba(29,34,41,0.12);
}
section.dark .flow span.node, section.room-tint .flow span.node { background: rgba(246,241,231,0.1); color: var(--cream); border-color: rgba(246,241,231,0.25); }
.flow span.arrow { color: var(--gold); font-size: 1.3rem; }

/* ---------- Offer blocks ---------- */
.offer {
  background: #fbf8f1; border: 1px solid rgba(29,34,41,0.12); border-left: 5px solid var(--accent);
  border-radius: 4px; padding: 2rem; margin-top: 1.6rem;
}
.offer h3 { font-size: 1.55rem; margin-bottom: 0.6rem; }
.offer .invest { font-weight: 600; color: var(--earth-green-deep); margin-top: 0.9rem; }

/* ---------- Contact form ---------- */
form.contact { display: grid; gap: 1.2rem; margin-top: 2rem; }
form.contact label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 0.4rem; }
form.contact input, form.contact select, form.contact textarea {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--sans); font-size: 0.98rem;
  border: 1px solid rgba(29,34,41,0.25); border-radius: 3px; background: #fbf8f1; color: var(--midnight);
}
form.contact input:focus, form.contact select:focus, form.contact textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }
form.contact textarea { min-height: 130px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 640px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ---------- Closing CTA band ---------- */
.cta-band { background: var(--midnight); color: var(--cream); text-align: center; padding: 5rem 1.5rem; }
.cta-band h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1.2rem; }
.cta-band p { max-width: 620px; margin: 0 auto 2rem; font-weight: 300; color: rgba(246,241,231,0.85); }

/* ---------- Footer ---------- */
footer {
  background: var(--charcoal); color: rgba(246,241,231,0.8);
  padding: 4rem 1.5rem 2.5rem; font-size: 0.9rem;
}
.footer-grid {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 3rem;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
footer .brand { color: var(--cream); font-size: 1.25rem; }
footer .tagline { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold); margin: 0.8rem 0 1rem; }
footer h4 { font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer a { color: rgba(246,241,231,0.8); text-decoration: none; }
footer a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1060px; margin: 3rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(246,241,231,0.15);
  font-size: 0.78rem; color: rgba(246,241,231,0.55);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}

/* ---------- Visual motifs ---------- */
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3.5rem; align-items: center; max-width: 1060px; margin: 0 auto; position: relative; z-index: 1; }
@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; } }

.portrait { position: relative; max-width: 380px; justify-self: center; }
.portrait img { width: 100%; display: block; border-radius: 4px; position: relative; z-index: 1; }
.portrait::before {
  content: ''; position: absolute; inset: -14px 14px 14px -14px;
  border: 2px solid var(--gold); border-radius: 4px; z-index: 0;
}
.portrait::after {
  content: ''; position: absolute; inset: 14px -14px -14px 14px;
  background: var(--earth-green); opacity: 0.35; border-radius: 4px; z-index: 0;
}
.portrait.plum::after { background: var(--plum); opacity: 0.5; }

.portrait-caption { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); text-align: center; margin-top: 1.6rem; }

.motif { display: flex; justify-content: center; padding: 0.5rem 0 0; }
.motif svg { width: min(340px, 70vw); height: auto; display: block; }

.card-icon { margin-bottom: 0.9rem; }
.card-icon svg { width: 36px; height: 36px; display: block; }

.hero-motif { position: absolute; right: 4%; bottom: 8%; opacity: 0.5; z-index: 0; pointer-events: none; }
.hero-motif svg { width: clamp(160px, 24vw, 300px); height: auto; display: block; }
@media (max-width: 820px) { .hero-motif { display: none; } }

/* ---------- Straight Through hero: photographic vinyl banner + wordmark ---------- */
.st-hero-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.st-hero-center .sub { margin-left: auto; margin-right: auto; }
.st-hero-center .cta-row { justify-content: center; }

.st-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 1;
  max-height: 400px;
  min-height: 190px;
  background: #0e0d10 url('straight-through-banner.jpg') center / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.st-banner .st-logo {
  width: min(440px, 52vw);
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.6));
}

/* ---------- Split text/image section ---------- */
.split-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: center; }
@media (max-width: 820px) { .split-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ---------- Photo gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  border-radius: 4px; border: 1px solid rgba(29,34,41,0.12);
}
.split-photo { border-radius: 4px; display: block; width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }

/* ---------- Misc ---------- */
.divider { width: 60px; height: 3px; background: var(--gold); margin: 2.2rem 0; border: none; }
.center { text-align: center; }
.center .divider { margin-left: auto; margin-right: auto; }
.mt { margin-top: 2rem; }

@media (max-width: 720px) {
  header.hero { padding: 4rem 1.5rem 3.5rem; }
  section { padding: 3.2rem 0; }
  .nav-links { gap: 0.8rem; }
}
