/* ==========================================================================
   Linda Allen — therapist, mediator, celebrant & author.
   Elegant, calming concept. Palette drawn from the butterfly logo (periwinkle
   blue + gold) with warm cream and sage.
   ========================================================================== */
:root {
  --blue: #7f9cd1;
  --blue-deep: #4a67a0;
  --gold: #bd9a4e;
  --gold-soft: #d8bd85;
  --cream: #fbf8f2;
  --sand: #f2ebdd;
  --sage: #9fb89b;
  --ink: #2c3446;
  --ink-soft: #5c6579;
  --white: #ffffff;

  --grad-hero: linear-gradient(165deg, #f7f3ea 0%, #eef2f8 55%, #e6ecf6 100%);
  --grad-gold: linear-gradient(135deg, #c9a85c, #e0c98d);
  --grad-blue: linear-gradient(135deg, #7f9cd1, #4a67a0);

  --shadow-sm: 0 8px 24px rgba(44, 52, 70, .08);
  --shadow-md: 0 20px 44px rgba(44, 52, 70, .13);
  --shadow-lg: 0 40px 80px rgba(44, 52, 70, .2);
  --radius: 20px;
  --radius-lg: 32px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Rubik", system-ui, sans-serif;
  --maxw: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); color: var(--ink); background: var(--cream);
  line-height: 1.7; overflow-x: hidden; font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--ink); }
section { position: relative; }
.wrap { width: min(var(--maxw), 92vw); margin-inline: auto; }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em; font-size: .8rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.eyebrow.center-line::after { content: ""; width: 28px; height: 2px; background: var(--gold); }

.script { font-family: var(--serif); font-style: italic; color: var(--blue-deep); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: .6em; font-family: var(--sans); font-weight: 500;
  font-size: 1rem; letter-spacing: .01em; padding: .9em 1.8em; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--grad-gold); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px rgba(74,103,160,.35); }
.btn--ghost:hover { background: #fff; box-shadow: var(--shadow-sm); }
.btn--lg { padding: 1.05em 2.1em; font-size: 1.05rem; }

/* progress bar */
.progress { position: fixed; inset: 0 auto auto 0; height: 4px; width: 0; z-index: 999; background: var(--grad-gold); }

/* ==========================================================================
   Top bar + nav
   ========================================================================== */
.topbar { background: var(--ink); color: #cfd6e2; font-size: .82rem; }
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; align-items: center; justify-content: space-between; padding: .5rem 0; }
.topbar a { color: #cfd6e2; transition: color .25s; }
.topbar a:hover { color: var(--gold-soft); }
.topbar .tb-info { display: flex; flex-wrap: wrap; gap: .3rem 1.4rem; }
.topbar .tb-info span { display: inline-flex; align-items: center; gap: .45em; }
.topbar .tb-social { display: flex; gap: 1rem; }

.nav {
  position: sticky; top: 0; z-index: 900; background: rgba(251, 248, 242, .82);
  backdrop-filter: blur(14px) saturate(1.3); box-shadow: 0 6px 22px rgba(44,52,70,.06);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .55rem clamp(1rem, 4vw, 2.2rem); transition: padding .35s var(--ease);
}
.nav__logo img { height: 60px; width: auto; transition: transform .4s var(--ease); }
.nav__logo:hover img { transform: scale(1.05); }
.nav__links { display: flex; align-items: center; gap: .25rem; }
.nav__links a { font-weight: 500; padding: .5em .95em; border-radius: 999px; position: relative; font-size: .98rem; transition: color .25s; }
.nav__links a::after { content: ""; position: absolute; left: 50%; bottom: .3em; width: 0; height: 2px; background: var(--gold); transform: translateX(-50%); transition: width .3s var(--ease); }
.nav__links a:hover { color: var(--blue-deep); }
.nav__links a:hover::after { width: 40%; }
.nav__links .btn { color: #fff; }
.nav__links .btn::after { display: none; }
.nav__burger { display: none; border: 0; background: #fff; box-shadow: var(--shadow-sm); width: 46px; height: 46px; border-radius: 12px; font-size: 1.2rem; cursor: pointer; }

@media (max-width: 900px) {
  .nav__burger { display: grid; place-items: center; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); flex-direction: column;
    justify-content: center; gap: 1rem; background: rgba(251,248,242,.98); backdrop-filter: blur(16px);
    transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.2rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { background: var(--grad-hero); padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__title { font-size: clamp(2.4rem, 5.4vw, 4.2rem); letter-spacing: -.01em; }
.hero__title em { font-style: italic; color: var(--blue-deep); }
.hero__lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); max-width: 42ch; margin: 1.2rem 0 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__art { position: relative; }
.hero__art img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.hero__art .frame { position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--gold-soft); border-radius: var(--radius-lg); z-index: 1; }
.hero__badge {
  position: absolute; z-index: 3; bottom: -22px; left: -22px; background: #fff; border-radius: 18px;
  box-shadow: var(--shadow-md); padding: 1rem 1.3rem; display: flex; align-items: center; gap: .8rem; max-width: 240px;
}
.hero__badge b { font-family: var(--serif); font-size: 1.9rem; color: var(--gold); line-height: 1; }
.hero__badge span { font-size: .82rem; color: var(--ink-soft); }

/* floating butterfly / orbs */
.orb { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .5; z-index: 0; }
.orb--1 { width: 320px; height: 320px; background: #c9d6ee; top: -80px; right: -60px; }
.orb--2 { width: 260px; height: 260px; background: #ecdcae; bottom: -60px; left: -80px; }
.butterfly { position: absolute; width: 60px; z-index: 3; opacity: .8; animation: flutter 7s ease-in-out infinite; }
@keyframes flutter { 0%,100% { transform: translate(0,0) rotate(-4deg); } 50% { transform: translate(-14px,-22px) rotate(6deg); } }
@keyframes floaty { 50% { transform: translateY(-16px); } }

/* ==========================================================================
   Section heading
   ========================================================================== */
.sec { padding: clamp(4rem, 9vw, 8rem) 0; }
.sec-head { max-width: 44rem; }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
.sec-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__art { position: relative; }
.about__art img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about__art .frame { position: absolute; inset: -16px 16px 16px -16px; border: 2px solid var(--blue); opacity: .4; border-radius: var(--radius-lg); z-index: -1; }
.about__quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: var(--blue-deep); border-left: 3px solid var(--gold); padding-left: 1.3rem; margin: 1.6rem 0; }
.stats { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2rem; }
.stat { flex: 1; min-width: 120px; background: #fff; border-radius: 16px; padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm); text-align: center; }
.stat b { font-family: var(--serif); font-size: 2.1rem; color: var(--blue-deep); display: block; line-height: 1; }
.stat span { font-size: .85rem; color: var(--ink-soft); }

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: linear-gradient(180deg, #f3f6fb, #f7f2e9); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.6vw, 2rem); margin-top: 3rem; }
.service {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column;
}
.service:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service__img { aspect-ratio: 16/10; overflow: hidden; }
.service__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service:hover .service__img img { transform: scale(1.07); }
.service__body { padding: 1.5rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.service__body h3 { font-size: 1.4rem; }
.service__body p { color: var(--ink-soft); font-size: .96rem; flex: 1; }
.service__link { margin-top: 1rem; font-weight: 500; color: var(--blue-deep); display: inline-flex; align-items: center; gap: .4em; transition: gap .3s; }
.service:hover .service__link { gap: .9em; }

/* ==========================================================================
   Book
   ========================================================================== */
.book { background: linear-gradient(160deg, #eef2f8, #e7edf6); }
.book__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.book__cover { position: relative; justify-self: center; }
.book__cover img { width: min(320px, 70vw); border-radius: 6px; box-shadow: var(--shadow-lg); transform: rotate(-3deg); transition: transform .5s var(--ease); }
.book__cover:hover img { transform: rotate(0) scale(1.02); }
.book__cover::after { content: ""; position: absolute; inset: auto 0 -30px 0; height: 40px; background: radial-gradient(ellipse at center, rgba(44,52,70,.22), transparent 70%); }
.book blockquote { font-family: var(--serif); font-style: italic; color: var(--ink); font-size: 1.1rem; border-left: 3px solid var(--gold); padding-left: 1.2rem; margin: 1.4rem 0; }
.book__accolades { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.6rem 0; }
.book__accolades .chip { background: #fff; border-radius: 12px; padding: .7rem 1rem; box-shadow: var(--shadow-sm); font-size: .85rem; color: var(--ink-soft); }
.book__accolades .chip b { color: var(--gold); font-family: var(--serif); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--ink); color: #eef1f7; overflow: hidden; }
.testimonials h2, .testimonials .eyebrow { color: #fff; }
.testimonials .eyebrow { color: var(--gold-soft); }
.testimonials .sec-head p { color: #c3cad9; }
.t-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 2rem; height: 100%; display: flex; flex-direction: column; gap: 1rem; backdrop-filter: blur(6px); }
.t-card .quote { font-family: var(--serif); font-size: 2.5rem; line-height: 0; color: var(--gold); height: 1rem; }
.t-card blockquote { margin: 0; flex: 1; color: #e7ebf4; font-size: 1rem; }
.t-card .who { font-weight: 600; color: #fff; }
.t-card .who span { display: block; font-weight: 400; font-size: .85rem; color: var(--gold-soft); }
.swiper { padding: 1rem .5rem 3.5rem; overflow: visible; }
.swiper-pagination-bullet { background: #fff; opacity: .3; }
.swiper-pagination-bullet-active { opacity: 1; background: var(--gold); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__info { display: grid; gap: 1.2rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border-radius: 16px; padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm); }
.info-row .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--grad-blue); color: #fff; font-size: 1.1rem; }
.info-row b { display: block; font-family: var(--serif); }
.info-row a, .info-row p { color: var(--ink-soft); margin: 0; }
.contact__form { background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1rem; }
.field label { font-size: .85rem; font-weight: 500; color: var(--ink-soft); display: block; margin-bottom: .35rem; }
.field input, .field textarea { width: 100%; border: 1.5px solid #e5ddcd; border-radius: 12px; padding: .85em 1em; font-family: var(--sans); font-size: 1rem; background: var(--cream); transition: border .25s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.form-note { min-height: 1.2em; font-size: .9rem; margin-top: .6rem; color: var(--blue-deep); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: #222836; color: #b9c1d1; padding: 3.5rem 0 1.8rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer__logo img { height: 68px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .9; }
.footer h4 { color: #fff; font-size: 1.05rem; }
.footer a { color: #b9c1d1; transition: color .25s; }
.footer a:hover { color: var(--gold-soft); }
.footer__links { display: grid; gap: .5rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; font-size: .85rem; color: #8b93a5; }
.footer__bottom a { color: var(--gold-soft); }

.totop { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 800; width: 52px; height: 52px; border-radius: 50%;
  border: 0; cursor: pointer; background: var(--grad-blue); color: #fff; font-size: 1.3rem; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px); transition: all .4s var(--ease); }
.totop.show { opacity: 1; transform: translateY(0); }
.totop:hover { transform: translateY(-4px) scale(1.06); }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="pop"] { transform: scale(.86); }
[data-delay="1"] { transition-delay: .12s; }
[data-delay="2"] { transition-delay: .24s; }
[data-delay="3"] { transition-delay: .36s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero__grid, .about__grid, .book__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__art, .about__art { order: -1; max-width: 460px; margin-inline: auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .services__grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .topbar .tb-info span.tb-addr { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Multi-page: dropdown nav, page banners, content blocks, CTA band
   ========================================================================== */
.nav__drop { position: relative; }
.nav__drop > .nav__droptoggle { cursor: pointer; }
.nav__menu {
  position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff; border-radius: 14px;
  box-shadow: var(--shadow-md); padding: .5rem; display: grid; gap: .1rem;
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .3s var(--ease); z-index: 60;
}
.nav__drop:hover .nav__menu, .nav__drop.open .nav__menu { opacity: 1; visibility: visible; transform: translateY(7px); }
.nav__menu a { padding: .6em .9em; border-radius: 10px; font-size: .95rem; }
.nav__menu a::after { display: none; }
.nav__menu a:hover { background: var(--sand); color: var(--blue-deep); }
.nav__links a.active { color: var(--blue-deep); }
.nav__links a.active::after { width: 40%; }

.page-hero { background: var(--grad-hero); padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem); position: relative; overflow: hidden; text-align: center; }
.page-hero .orb { z-index: 0; }
.page-hero .inner { position: relative; z-index: 2; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-hero p { color: var(--ink-soft); max-width: 46rem; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { font-size: .82rem; color: var(--ink-soft); margin-bottom: 1.1rem; letter-spacing: .02em; }
.breadcrumb a { color: var(--blue-deep); }

.block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.block + .block { margin-top: clamp(3rem, 6vw, 5rem); }
.block__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.emerge-badge { max-width: 230px; width: 100%; height: auto; margin-bottom: 1.3rem; border-radius: 12px; box-shadow: var(--shadow-sm); }
.block.rev .block__text { order: 2; }
.block h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.block h3 { color: var(--blue-deep); }
.block p { color: var(--ink-soft); }

.check { list-style: none; padding: 0; margin: 1.1rem 0 0; display: grid; gap: .6rem; }
.check li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); }
.check li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

.prose { max-width: 48rem; margin-inline: auto; }
.prose h3 { margin-top: 1.8rem; color: var(--blue-deep); }
.prose p, .prose li { color: var(--ink-soft); }

.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.6vw, 2rem); margin-top: 2.5rem; }
.mini { background: #fff; border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
a.mini { display: block; text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
a.mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mini h4 { font-size: 1.15rem; color: var(--blue-deep); }
.mini p { color: var(--ink-soft); font-size: .95rem; margin: 0; }
.mini--retailer { text-align: center; }
.mini--media { text-align: center; }
.mini__logo { display: flex; align-items: center; justify-content: center; height: 60px; margin: 0 auto 1rem; }
.mini__logo img { max-height: 60px; max-width: 100%; width: auto; object-fit: contain; border-radius: 6px; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); margin-top: 2.5rem; }
.gallery__item { margin: 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 260px; object-fit: cover; display: block; }
.gallery__item img.pos-top { object-position: top; }
.gallery__item figcaption { padding: .8rem 1rem; font-size: .85rem; color: var(--ink-soft); }

.cta-band { background: var(--grad-blue); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; box-shadow: var(--shadow-md); }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-band p { opacity: .93; max-width: 42rem; margin: 0 auto 1.6rem; }
.cta-band .btn { background: #fff; color: var(--blue-deep); }
.cta-band .btn:hover { background: var(--sand); }
.btn--amazon, .cta-band .btn--amazon { background: #ff9900; color: #232f3e; font-weight: 600; }
.btn--amazon:hover, .cta-band .btn--amazon:hover { background: #ec8b00; }
.amz-logo { height: 20px; width: auto; display: block; }

.quote-card { background: #fff; border-radius: var(--radius); padding: 1.8rem 2rem; box-shadow: var(--shadow-sm); border-left: 3px solid var(--gold); }
.quote-card p { font-family: var(--serif); font-style: italic; color: var(--ink); margin: 0 0 .8rem; }
.quote-card .who { font-weight: 600; color: var(--blue-deep); font-style: normal; font-family: var(--sans); }
.quote-card .who span { display: block; font-weight: 400; font-size: .85rem; color: var(--ink-soft); }
.quotes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

.trust { background: #fff; padding: clamp(2.4rem, 5vw, 3.6rem) 0; border-top: 1px solid #eee6d8; border-bottom: 1px solid #eee6d8; }
.trust .sec-head { margin-bottom: 1.6rem; }
.trust__row { display: flex; flex-wrap: wrap; gap: 1.6rem 2.8rem; align-items: center; justify-content: center; }
.trust__item { display: flex; flex-direction: column; align-items: center; gap: .55rem; min-width: 130px; }
.trust__item img { max-height: 62px; width: auto; object-fit: contain; }
.trust__item span { font-size: .82rem; color: var(--ink-soft); text-align: center; }

.train-list { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.15rem; }
.train-list span {
  background: #fff; border: 1px solid #e4e0d6; border-radius: 999px;
  padding: .32rem .75rem; font-size: .78rem; color: var(--ink-soft);
}

.launch-hero { margin: 0 0 0; }
.launch-hero img { width: 100%; height: min(420px, 56vw); object-fit: cover; object-position: center 30%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.launch-hero figcaption { text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: .75rem; }

.excerpt {
  background: #fff; border-radius: var(--radius); padding: 2rem 2.2rem;
  box-shadow: var(--shadow-sm); border-left: 3px solid var(--gold);
  max-width: 48rem; margin: 2rem auto 0;
}
.excerpt h3 { font-size: 1.15rem; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; font-family: var(--sans); font-weight: 600; }
.excerpt p { font-family: var(--serif); font-style: italic; color: var(--ink); margin: .6rem 0 0; font-size: 1.08rem; }

.form-privacy { font-size: .8rem; color: var(--ink-soft); margin-top: .85rem; line-height: 1.5; }
.form-privacy a { color: var(--blue-deep); text-decoration: underline; }

.about__copy p + p { margin-top: .9rem; }

@media (max-width: 900px) {
  .block { grid-template-columns: 1fr; }
  .block.rev .block__text { order: 0; }
  .block__img { order: -1; }
  .cards3, .quotes-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .nav__menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: transparent; padding: .2rem 0 .2rem 1rem; min-width: 0; }
}
