/* =========================================================
   Flush Plumbing & Heating — Chelmsford MA
   Playful-organic. Sage + peach + cream. Fraunces + DM Sans.
   ========================================================= */

:root {
  --cream:        #f6f1e8;
  --cream-2:      #fdf6ec;
  --cream-3:      #efe6d6;
  --sage:         #3d5a4a;
  --sage-deep:    #2a3f34;
  --sage-soft:    #6b8b78;
  --peach:        #f0a781;
  --peach-deep:   #e08a5e;
  --butter:       #f4d97a;
  --ink:          #1f2922;
  --ink-soft:     #4a5550;
  --rule:         rgba(31, 41, 34, 0.12);
  --shadow-soft:  0 30px 60px -30px rgba(31, 41, 34, 0.22);
  --shadow-card:  0 1px 0 rgba(31, 41, 34, 0.06), 0 20px 40px -24px rgba(31, 41, 34, 0.18);

  --serif: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --sans:  "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-color: rgba(31,41,34,.25); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--sage); }

::selection { background: var(--peach); color: var(--ink); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}
.eyebrow--sage  { color: var(--sage); }
.eyebrow--peach { color: var(--peach-deep); }
.eyebrow--cream { color: var(--cream-3); }

/* =========================================================
   Mobile sticky CTA
   ========================================================= */
.mcta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
  background: var(--sage);
  color: var(--cream-2);
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 18px 40px -16px rgba(31,41,34,.55), inset 0 0 0 1px rgba(255,255,255,.05);
}
.mcta__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 0 0 4px rgba(240,167,129,.25);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(240,167,129,.25); }
  50%      { box-shadow: 0 0 0 8px rgba(240,167,129,0); }
}
@media (min-width: 880px) {
  .mcta { display: none; }
}

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 232, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav__wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__mark {
  width: 38px; height: 38px;
  color: var(--sage);
  display: inline-flex;
}
.brand__txt {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  font-variation-settings: "opsz" 30, "SOFT" 80;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.nav__links {
  justify-self: center;
  display: none;
  gap: 30px;
}
.nav__links a {
  text-decoration: none;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--peach);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__phone {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--cream-2);
  transition: border-color .25s ease, transform .25s ease;
}
.nav__phone:hover { border-color: var(--sage); transform: translateY(-1px); }
.nav__phone-pre {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}
.nav__phone-num { font-size: 15px; }

@media (min-width: 880px) {
  .nav__links { display: inline-flex; }
}
@media (max-width: 600px) {
  .nav__phone-pre { display: none; }
  .nav__phone { padding: 9px 14px; }
  .brand__sub { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--cream);
  padding: clamp(60px, 9vw, 120px) var(--pad) 0;
  overflow: hidden;
  isolation: isolate;
}
.hero__wrap {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-bottom: clamp(100px, 13vw, 180px);
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 8px 16px 8px 14px;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(61,90,74,.15);
}
.hero__h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 32px;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
}
.hero__h1-line {
  display: block;
}
.hero__h1-line:nth-child(2) {
  padding-left: clamp(0px, 4vw, 80px);
}
.hero__h1 em {
  font-style: italic;
  color: var(--sage);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero__sub {
  max-width: 640px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 36px;
}
.hero__sub strong {
  color: var(--ink);
  font-weight: 600;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 24px;
}
.hero__meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  letter-spacing: 0.01em;
}

/* Floating Google card */
.hero__card {
  position: absolute;
  right: 0;
  top: 4px;
  width: 280px;
  padding: 24px 26px;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  transform: rotate(2.5deg);
  z-index: 3;
}
.hero__card::before {
  content: "Google";
  position: absolute;
  top: -10px; left: 20px;
  background: var(--peach);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.hero__card-stars {
  display: flex;
  gap: 4px;
  color: var(--butter);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 0 rgba(31,41,34,.06));
}
.hero__card-big {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--ink);
  font-variation-settings: "opsz" 30;
}
.hero__card-num {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.02em;
  vertical-align: -2px;
  margin-right: 6px;
}
.hero__card-wink {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--sage);
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 980px) {
  .hero__card {
    position: relative;
    right: auto; top: auto;
    margin: 40px 0 0;
    width: 100%;
    max-width: 320px;
  }
}

/* Hero blobs */
.hero__blob {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero__blob svg { width: 100%; height: 100%; }
.hero__blob--a {
  width: 480px; height: 480px;
  right: -180px;
  bottom: -120px;
  opacity: 0.08;
}
.hero__blob--b {
  width: 320px; height: 320px;
  left: -140px;
  top: 80px;
  opacity: 0.22;
}
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.16 0 0 0 0 0.13 0 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Curve below hero */
.hero__curve {
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  width: 100%;
  height: clamp(60px, 8vw, 120px);
  z-index: 4;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
}
.btn--solid {
  background: var(--ink);
  color: var(--cream-2);
}
.btn--solid:hover {
  background: var(--sage);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream-2);
  transform: translateY(-2px);
}
.btn--inline { margin-top: 24px; }
.btn--block {
  width: 100%;
  justify-content: center;
  padding: 18px 26px;
  font-size: 16px;
}
.btn__arrow {
  transition: transform .25s ease;
  font-family: var(--serif);
  font-size: 18px;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =========================================================
   Ribbon / marquee wink
   ========================================================= */
.ribbon {
  background: var(--cream-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  overflow: hidden;
}
.ribbon__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.ribbon__item { display: inline-block; }
.ribbon__star {
  display: inline-block;
  color: var(--peach-deep);
  font-style: normal;
  transform: translateY(-2px);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ribbon__track { animation: none; }
}

/* =========================================================
   Work / services
   ========================================================= */
.work {
  background: var(--cream);
  padding: clamp(80px, 12vw, 160px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.work__head { margin-bottom: clamp(48px, 6vw, 80px); }
.work__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.work__h2 em {
  font-style: italic;
  color: var(--peach-deep);
}
.work__h2-2 { display: block; padding-left: clamp(0px, 6vw, 100px); }
.work__h2-3 { display: block; padding-left: clamp(0px, 12vw, 200px); }

.work__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.work__item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--rule);
  transition: background-color .35s ease, padding-left .35s ease;
  position: relative;
}
.work__item:hover {
  background: var(--cream-2);
  padding-left: 12px;
}
.work__num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--sage-soft);
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-style: italic;
}
.work__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 6px;
  font-variation-settings: "opsz" 30, "SOFT" 60;
}
.work__desc {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}
.work__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage);
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(61, 90, 74, 0.08);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .work__item {
    grid-template-columns: 44px 1fr;
    grid-template-areas: "num body" "tag tag";
  }
  .work__num { grid-area: num; }
  .work__body { grid-area: body; }
  .work__tag { grid-area: tag; justify-self: start; margin-top: 4px; }
}

/* =========================================================
   Proof
   ========================================================= */
.proof {
  position: relative;
  background: var(--sage);
  color: var(--cream-2);
  padding: clamp(80px, 12vw, 160px) var(--pad);
  overflow: hidden;
  border-radius: clamp(40px, 6vw, 80px) clamp(40px, 6vw, 80px) 0 0;
  margin-top: clamp(20px, 4vw, 60px);
}
.proof__blob {
  position: absolute;
  z-index: 1;
  width: 600px; height: 600px;
  right: -200px;
  top: -200px;
  pointer-events: none;
}
.proof__wrap {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
}
.proof__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 22ch;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}
.proof__h2 em {
  font-style: italic;
  color: var(--peach);
}
.proof__h2-meta {
  display: block;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(253, 246, 236, 0.6);
  font-weight: 300;
  margin-top: 18px;
  font-variation-settings: "opsz" 30, "SOFT" 100;
}

.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: clamp(48px, 6vw, 80px) 0 40px;
}
@media (min-width: 760px) {
  .proof__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.proof__quote {
  background: rgba(253, 246, 236, 0.06);
  border: 1px solid rgba(253, 246, 236, 0.12);
  border-radius: 24px;
  padding: 28px 28px 24px;
  position: relative;
  transition: transform .35s ease, background-color .35s ease;
}
.proof__quote:hover {
  transform: translateY(-4px);
  background: rgba(253, 246, 236, 0.09);
}
.proof__quote:nth-child(2) { transform: rotate(-1deg); }
.proof__quote:nth-child(2):hover { transform: translateY(-4px) rotate(-1deg); }
.proof__quote:nth-child(3) { transform: rotate(0.6deg); }
.proof__quote:nth-child(3):hover { transform: translateY(-4px) rotate(0.6deg); }
.proof__stars {
  color: var(--butter);
  font-size: 18px;
  letter-spacing: 2px;
  margin: 0 0 14px;
}
.proof__quote blockquote {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  color: var(--cream-2);
  font-variation-settings: "opsz" 30, "SOFT" 60;
}
.proof__sig {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 246, 236, 0.6);
  margin: 0;
}

.proof__foot {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(253, 246, 236, 0.75);
  margin: 0;
}
.proof__link {
  color: var(--peach);
  text-decoration-color: var(--peach);
  text-decoration-thickness: 1px;
}
.proof__link:hover { color: var(--butter); }

/* =========================================================
   Towns
   ========================================================= */
.towns {
  background: var(--cream-2);
  padding: clamp(80px, 12vw, 140px) var(--pad);
}
.towns__wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: clamp(40px, 6vw, 80px);
}
@media (min-width: 880px) {
  .towns__wrap { grid-template-columns: 1.1fr 1fr; align-items: start; }
}
.towns__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
  max-width: 14ch;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.towns__h2 em {
  font-style: italic;
  color: var(--sage);
}
.towns__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  margin: 0;
  max-width: 50ch;
  line-height: 1.55;
}
.towns__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.towns__list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 30, "SOFT" 60;
  transition: padding-left .3s ease, color .3s ease;
}
.towns__list li:hover {
  padding-left: 14px;
  color: var(--sage);
}
.towns__bullet {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--peach);
  flex-shrink: 0;
}
.towns__list li:nth-child(2n) .towns__bullet { background: var(--sage); }
.towns__home {
  margin-left: auto;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--peach-deep);
  background: rgba(240, 167, 129, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
}

/* =========================================================
   About
   ========================================================= */
.about {
  position: relative;
  background: var(--ink);
  color: var(--cream-2);
  padding: clamp(80px, 12vw, 160px) var(--pad);
  overflow: hidden;
}
.about__blob {
  position: absolute;
  width: 500px; height: 500px;
  left: -180px;
  bottom: -180px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}
.about__wrap {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: clamp(40px, 6vw, 80px);
}
@media (min-width: 960px) {
  .about__wrap { grid-template-columns: 1fr 1fr; align-items: start; }
}
.about__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.about__body p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: rgba(253, 246, 236, 0.78);
  margin: 0 0 18px;
}
.about__body strong { color: var(--cream-2); font-weight: 600; }
.about__stats {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(253, 246, 236, 0.12);
  border-radius: 24px;
  overflow: hidden;
}
.about__stat {
  background: var(--ink);
  padding: 28px 24px;
}
.about__stat:nth-child(1) { background: var(--sage-deep); }
.about__stat:nth-child(4) { background: var(--sage-deep); }
.about__stat dt {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 246, 236, 0.55);
  margin: 0 0 12px;
  font-weight: 600;
}
.about__stat dd {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  color: var(--cream-2);
}
.about__stat-num {
  font-size: clamp(40px, 4.5vw, 56px);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.about__stat-num--word {
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  line-height: 1.1;
}
.about__stat-unit {
  font-size: 16px;
  color: rgba(253, 246, 236, 0.55);
  letter-spacing: 0;
  margin-left: 4px;
}
.about__stat p {
  margin: 0;
  font-size: 13px;
  color: rgba(253, 246, 236, 0.6);
  line-height: 1.45;
}

/* =========================================================
   Book / quote form
   ========================================================= */
.book {
  background: var(--peach);
  color: var(--ink);
  padding: clamp(80px, 12vw, 140px) var(--pad);
  position: relative;
  overflow: hidden;
}
.book::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  right: -300px;
  top: -300px;
  background: var(--butter);
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(2px);
}
.book__wrap {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: clamp(40px, 6vw, 80px);
}
@media (min-width: 960px) {
  .book__wrap { grid-template-columns: 1fr 1.1fr; align-items: start; }
}
.book__h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}
.book__h2 em { font-style: italic; color: var(--sage); }
.book__lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(31, 41, 34, 0.78);
  margin: 0 0 24px;
}
.book__lead a {
  font-weight: 600;
  color: var(--ink);
  text-decoration-color: var(--sage);
}
.book__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.book__list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 26px;
  position: relative;
}
.book__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(-45deg);
}

.book__form {
  background: var(--cream-2);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}
.book__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.book__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.book__field--full { grid-column: 1 / -1; }
.book__field > span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.book__field > span em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  font-weight: 400;
  margin-left: 4px;
}
.book__field input,
.book__field select,
.book__field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  transition: border-color .25s ease, background-color .25s ease;
}
.book__field input::placeholder,
.book__field textarea::placeholder { color: rgba(31,41,34,.35); }
.book__field input:focus,
.book__field select:focus,
.book__field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--cream-2);
}
.book__field textarea { resize: vertical; }
@media (max-width: 540px) {
  .book__fields { grid-template-columns: 1fr; }
}

.book__success {
  text-align: center;
  padding: 40px 20px;
}
.book__success-h {
  font-family: var(--serif);
  font-size: 40px;
  font-style: italic;
  color: var(--sage);
  margin: 0 0 12px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.book__success p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
}
.book__success a { font-weight: 600; color: var(--ink); }

/* =========================================================
   Footer
   ========================================================= */
.foot {
  background: var(--cream-3);
  color: var(--ink);
  padding: clamp(60px, 8vw, 100px) var(--pad) calc(120px + env(safe-area-inset-bottom));
}
@media (min-width: 880px) {
  .foot { padding-bottom: clamp(60px, 8vw, 100px); }
}
.foot__wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: clamp(40px, 6vw, 60px);
}
@media (min-width: 880px) {
  .foot__wrap {
    grid-template-columns: 1.2fr 2fr;
    gap: clamp(40px, 6vw, 80px);
  }
}
.foot__brand { max-width: 320px; }
.foot__mark {
  width: 44px; height: 44px;
  display: inline-flex;
  color: var(--sage);
  margin-bottom: 16px;
}
.foot__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 30, "SOFT" 60;
}
.foot__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--sage);
  margin: 0;
  font-variation-settings: "opsz" 30, "SOFT" 100;
}

.foot__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 560px) {
  .foot__cols { grid-template-columns: repeat(3, 1fr); }
}
.foot__col p,
.foot__col a {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 6px;
  text-decoration: none;
  line-height: 1.55;
}
.foot__col a:hover { color: var(--sage); text-decoration: underline; }
.foot__h {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
}
.foot__phone {
  font-family: var(--serif);
  font-size: 22px !important;
  font-weight: 500;
  color: var(--ink) !important;
  display: inline-block;
  margin-bottom: 10px !important;
  font-variation-settings: "opsz" 30, "SOFT" 60;
}

.foot__base {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-soft);
}
.foot__base p { margin: 0; }
.foot__base a {
  color: var(--ink);
  font-weight: 600;
  text-decoration-color: var(--sage);
}

/* =========================================================
   Page-load reveal
   ========================================================= */
.hero__eyebrow,
.hero__h1-line,
.hero__sub,
.hero__ctas,
.hero__meta,
.hero__card {
  opacity: 0;
  transform: translateY(14px);
  animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__eyebrow         { animation-delay: .05s; }
.hero__h1-line:nth-child(1) { animation-delay: .15s; }
.hero__h1-line:nth-child(2) { animation-delay: .28s; }
.hero__sub             { animation-delay: .42s; }
.hero__ctas            { animation-delay: .55s; }
.hero__meta            { animation-delay: .68s; }
.hero__card            { animation-delay: .85s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__h1-line, .hero__sub, .hero__ctas, .hero__meta, .hero__card {
    opacity: 1; transform: none; animation: none;
  }
}
