/* THE EILYN STRONG PROJECT, INCORPORATED
   Computer Systems Design · Waterbury, Connecticut
   Dark lilac theme — deep violet-black + ivory + deep lilac */

:root {
  --ink: #151219;
  --panel: #211B2C;
  --ivory: #F2EFF4;
  --lilac: #6F58A0;
  --lilac-soft: #8571B8;
  --lilac-deep: #4E3E78;
  --pale: #C9BCE0;
  --hair: #3A2F4D;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.75;
  background: #151219;
  color: #F2EFF4;
}

h1, h2, h3, h4 {
  margin: 0;
  color: #F2EFF4;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

p {
  margin: 0 0 16px;
  color: #F2EFF4;
}

a {
  color: #6F58A0;
  text-decoration: none;
}

a:hover {
  color: #C9BCE0;
}

ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: #F2EFF4;
}

li {
  margin-bottom: 8px;
}

:focus-visible {
  outline: 2px solid #C9BCE0;
  outline-offset: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: #6F58A0;
  color: #F2EFF4;
}

.btn-primary:hover {
  background: #8571B8;
  color: #F2EFF4;
}

.btn-outline {
  background: #151219;
  color: #6F58A0;
  border-color: #6F58A0;
}

.btn-outline:hover {
  background: #6F58A0;
  color: #F2EFF4;
}

.btn-ivory {
  background: #F2EFF4;
  color: #6F58A0;
}

.btn-ivory:hover {
  background: #C9BCE0;
  color: #151219;
}

/* ===== LANTERN NAV ===== */
.lantern-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #151219;
  border-bottom: 1px solid #6F58A0;
}

.lantern-nav.scrolled {
  box-shadow: 0 5px 16px #0B0910;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-square {
  width: 15px;
  height: 15px;
  background: #6F58A0;
  flex: none;
}

.brand-word {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #F2EFF4;
  line-height: 1.1;
}

.brand-caption {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: #6F58A0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F2EFF4;
  text-decoration: none;
  border-radius: 2px;
}

.nav-links a:hover {
  color: #8571B8;
}

.nav-links a.active {
  color: #6F58A0;
}

/* lantern glyph — small rounded lantern with handle arc and light dot */
.lantern-glyph {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 15px;
  border: 1.5px solid #6F58A0;
  border-radius: 4px;
  flex: none;
}

.lantern-glyph::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 8px;
  height: 5px;
  margin-left: -4px;
  border-top: 1.5px solid #6F58A0;
  border-left: 1.5px solid #6F58A0;
  border-right: 1.5px solid #6F58A0;
  border-radius: 6px 6px 0 0;
}

.lantern-glyph::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 50%;
  background: #6F58A0;
}

.nav-links a.active .lantern-glyph {
  background: #6F58A0;
  border-color: #6F58A0;
}

.nav-links a.active .lantern-glyph::before {
  border-color: #6F58A0;
}

.nav-links a.active .lantern-glyph::after {
  background: #F2EFF4;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: #211B2C;
  border: 1px solid #6F58A0;
  border-radius: 2px;
  padding: 12px 11px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #6F58A0;
}

/* ===== BLOOM HERO ===== */
.bloom-hero {
  background: #151219;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 24px 0;
}

.hero-eyebrow {
  display: inline-block;
  background: #6F58A0;
  color: #F2EFF4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 2px;
}

.hero-title {
  margin: 30px 0 22px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1px;
  color: #F2EFF4;
  max-width: 980px;
}

.hero-sub {
  margin: 0 0 36px;
  font-size: 19px;
  line-height: 1.75;
  color: #F2EFF4;
  max-width: 720px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* bloom graphic */
.bloom-stage {
  margin-top: 78px;
}

.bloom-wrap {
  position: relative;
  height: 236px;
}

.hero-bloom {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 132px;
  height: 132px;
  margin-left: -66px;
}

.hero-bloom span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  background: #6F58A0;
}

.hero-bloom .hb-1 { transform: rotate(0deg) translate(56px); }
.hero-bloom .hb-2 { transform: rotate(72deg) translate(56px); }
.hero-bloom .hb-3 { transform: rotate(144deg) translate(56px); }
.hero-bloom .hb-4 { transform: rotate(216deg) translate(56px); }
.hero-bloom .hb-5 { transform: rotate(288deg) translate(56px); }

.hero-bloom .hb-core {
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  background: #6F58A0;
  box-shadow: 0 0 0 7px #151219, 0 0 0 8px #6F58A0;
}

.bloom-stem {
  position: absolute;
  top: 136px;
  left: 50%;
  width: 2px;
  height: 82px;
  margin-left: -1px;
  background: #6F58A0;
}

.bloom-leaf {
  position: absolute;
  top: 172px;
  left: 50%;
  width: 22px;
  height: 11px;
  margin-left: 3px;
  background: #6F58A0;
  border-radius: 100% 0 100% 0;
  transform: rotate(16deg);
}

.bloom-baseline {
  border-top: 1px solid #6F58A0;
  padding-top: 14px;
}

.bloom-captions {
  display: flex;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.bloom-captions span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9BCE0;
}

/* ===== Section scaffolding ===== */
.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9BCE0;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #F2EFF4;
}

.section-lede {
  max-width: 760px;
  font-size: 17px;
  color: #F2EFF4;
  margin: 18px 0 0;
}

/* ===== PETAL ROWS ===== */
.petal-rows {
  padding: 96px 0 90px;
  background: #151219;
}

.petal-rows-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.petal-rows-head {
  margin-bottom: 30px;
}

.petal-row {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 36px 0;
  border-bottom: 1px solid #6F58A0;
}

.petal-row:first-of-type {
  border-top: 1px solid #6F58A0;
}

.petal-text {
  flex: 1;
}

.petal-text h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: #F2EFF4;
}

.petal-text p {
  margin: 0;
  max-width: 720px;
  color: #F2EFF4;
}

.petal-chip {
  flex: none;
  background: #6F58A0;
  color: #F2EFF4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

/* bloom glyph — centre dot with three tiny petals */
.bloom-glyph {
  position: relative;
  width: 26px;
  height: 26px;
  flex: none;
}

.bloom-glyph span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: #6F58A0;
}

.bloom-glyph .b-p1 { transform: translate(-4px, -8px); }
.bloom-glyph .b-p2 { transform: translate(8px, 4px); }
.bloom-glyph .b-p3 { transform: translate(-4px, 8px); }
.bloom-glyph .b-core { width: 6px; height: 6px; margin: -3px 0 0 -3px; }

/* outlined variant for promise rows */
.bloom-glyph--outline span {
  background: #151219;
  border: 1.5px solid #6F58A0;
}

.bloom-glyph--outline .b-core {
  background: #151219;
}

/* ===== HOPE STRIP ===== */
.hope-strip {
  padding: 90px 0 96px;
  background: #211B2C;
}

.hope-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.hope-strip-head {
  margin-bottom: 34px;
}

.hope-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #6F58A0;
  border-left: 1px solid #6F58A0;
}

.hope-tile {
  padding: 30px 26px;
  border-right: 1px solid #6F58A0;
  border-bottom: 1px solid #6F58A0;
}

.hope-tile h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F2EFF4;
  margin: 14px 0 8px;
}

.hope-tile p {
  margin: 0;
  font-size: 15px;
  color: #F2EFF4;
}

/* ===== PROMISE ROWS ===== */
.promise-rows {
  padding: 96px 0 90px;
  background: #151219;
}

.promise-rows-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.promise-rows-head {
  margin-bottom: 30px;
}

.promise-row {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 32px 0;
  border-bottom: 1px solid #6F58A0;
}

.promise-row:first-of-type {
  border-top: 1px solid #6F58A0;
}

.promise-text {
  flex: 1;
}

.promise-text h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: #F2EFF4;
}

.promise-text p {
  margin: 0;
  max-width: 720px;
  color: #F2EFF4;
}

.promise-chip {
  flex: none;
  background: #6F58A0;
  color: #F2EFF4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: #6F58A0;
}

.cta-band-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 24px;
  text-align: center;
}

.cta-band h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #F2EFF4;
  max-width: 760px;
  margin: 0 auto 16px;
}

.cta-band p {
  color: #F2EFF4;
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 30px;
}

/* ===== LANTERN FOOTER ===== */
.lantern-footer {
  background: #151219;
  border-top: 1px solid #6F58A0;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 44px 24px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-square {
  width: 13px;
  height: 13px;
  background: #6F58A0;
  flex: none;
}

.footer-word {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #F2EFF4;
  line-height: 1.1;
}

.footer-caption {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: #6F58A0;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #F2EFF4;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #8571B8;
}

.footer-contact {
  color: #C9BCE0;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.footer-contact a {
  color: #C9BCE0;
}

.footer-contact a:hover {
  color: #6F58A0;
}

.footer-row2 {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #3A2F4D;
  padding: 20px 0 26px;
}

.footer-lantern {
  flex: none;
}

.footer-lantern .lantern-glyph {
  background: #6F58A0;
  border-color: #6F58A0;
}

.footer-lantern .lantern-glyph::before {
  border-color: #6F58A0;
}

.footer-lantern .lantern-glyph::after {
  background: #F2EFF4;
}

.footer-legal {
  flex: 1;
  text-align: center;
  margin: 0;
  font-size: 13px;
  color: #F2EFF4;
}

.footer-legal a {
  color: #F2EFF4;
}

.footer-legal a:hover {
  color: #6F58A0;
}

/* ===== Secondary page hero ===== */
.page-hero {
  background: #151219;
  border-bottom: 1px solid #3A2F4D;
}

.page-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 84px 24px 70px;
}

.page-eyebrow {
  display: inline-block;
  background: #6F58A0;
  color: #F2EFF4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
}

.page-hero h1 {
  margin: 26px 0 18px;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #F2EFF4;
  max-width: 860px;
}

.page-hero p.lead {
  font-size: 18px;
  line-height: 1.75;
  color: #F2EFF4;
  max-width: 760px;
  margin: 0 0 28px;
}

/* ===== Services page ===== */
.service-rows {
  padding: 90px 0;
  background: #151219;
}

.service-rows-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-head {
  margin-bottom: 30px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid #6F58A0;
}

.service-item:first-of-type {
  border-top: 1px solid #6F58A0;
}

.service-index {
  font-size: 30px;
  font-weight: 800;
  color: #6F58A0;
  line-height: 1;
  flex: none;
  width: 56px;
}

.service-body {
  flex: 1;
}

.service-body h3 {
  font-size: 26px;
  font-weight: 800;
  color: #F2EFF4;
  margin-bottom: 12px;
}

.service-body p {
  color: #F2EFF4;
  max-width: 820px;
}

.service-body ul {
  color: #F2EFF4;
}

.service-body li {
  color: #F2EFF4;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6F58A0;
}

.service-link:hover {
  color: #C9BCE0;
}

/* process overview */
.process-overview {
  padding: 90px 0;
  background: #211B2C;
}

.process-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.process-head {
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #6F58A0;
  border-left: 1px solid #6F58A0;
}

.process-step {
  padding: 30px 26px;
  border-right: 1px solid #6F58A0;
  border-bottom: 1px solid #6F58A0;
}

.process-step .step-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9BCE0;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 800;
  color: #F2EFF4;
  margin: 10px 0 8px;
}

.process-step p {
  font-size: 15px;
  color: #F2EFF4;
  margin: 0;
}

/* counters strip */
.counters-strip {
  padding: 78px 0;
  background: #151219;
}

.counters-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.counter-cell {
  text-align: center;
  padding: 18px 12px;
  border: 1px solid #3A2F4D;
  background: #211B2C;
}

.counter-num {
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: #6F58A0;
}

.counter-cell p {
  margin: 10px 0 0;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9BCE0;
}

/* ===== Contact page ===== */
.contact-zone {
  padding: 90px 0;
  background: #151219;
}

.contact-zone-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form-block h2,
.contact-info h2 {
  font-size: 26px;
  font-weight: 800;
  color: #F2EFF4;
  margin-bottom: 18px;
}

.contact-form-block p,
.contact-info p {
  color: #F2EFF4;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C9BCE0;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  font-size: 16px;
  font-family: inherit;
  color: #F2EFF4;
  background: #211B2C;
  border: 1px solid #3A2F4D;
  border-radius: 2px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #6F58A0;
  outline: none;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  font-size: 14px;
  color: #C9BCE0;
  margin: 0;
  min-height: 20px;
}

.contact-info-card {
  background: #211B2C;
  border: 1px solid #3A2F4D;
  padding: 30px;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #3A2F4D;
}

.contact-info-row:first-of-type {
  padding-top: 0;
}

.contact-info-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-row h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9BCE0;
  margin-bottom: 5px;
}

.contact-info-row p {
  margin: 0;
  font-size: 16px;
  color: #F2EFF4;
}

.contact-info-row a {
  color: #C9BCE0;
}

.contact-info-row a:hover {
  color: #6F58A0;
}

/* FAQ accordion */
.contact-faq {
  padding: 0 0 96px;
  background: #151219;
}

.faq-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-inner h2 {
  font-size: 32px;
  font-weight: 800;
  color: #F2EFF4;
  margin-bottom: 30px;
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid #6F58A0;
}

.faq-item:first-of-type {
  border-top: 1px solid #6F58A0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 8px;
  font-size: 18px;
  font-weight: 700;
  color: #F2EFF4;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.faq-question:hover {
  color: #C9BCE0;
}

.faq-icon {
  font-size: 22px;
  color: #6F58A0;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 8px 24px;
  color: #F2EFF4;
}

/* ===== Scroll reveal ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-title { font-size: 44px; }
  .page-hero h1 { font-size: 38px; }
  .hope-tiles { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-zone-inner { grid-template-columns: 1fr; }
}

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #211B2C;
    border-bottom: 1px solid #6F58A0;
    padding: 12px 24px 22px;
  }

  .lantern-nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 6px;
    border-bottom: 1px solid #3A2F4D;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .hero-title { font-size: 34px; }
  .page-hero h1 { font-size: 30px; }
  .section-title { font-size: 28px; }
  .cta-band h2 { font-size: 30px; }
  .hero-inner { padding-top: 64px; }
  .petal-row, .promise-row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .petal-chip, .promise-chip { align-self: flex-start; }
  .hope-tiles { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .counters-inner { grid-template-columns: 1fr; }
  .service-item { flex-direction: column; gap: 14px; }
  .bloom-captions span { font-size: 10px; letter-spacing: 2px; }
  .footer-row2 { flex-wrap: wrap; justify-content: center; }
  .footer-legal { text-align: center; }
}
