﻿:root {
  --sage: #548366;
  --sage-dark: #35684d;
  --sage-ink: #203c2e;
  --sage-soft: #e9f4e7;
  --mint: #f8fbf4;
  --cream: #fff3c7;
  --peach: #ffe3cd;
  --rose: #f7c7b6;
  --butter: #ffeaa3;
  --sky: #d9ecf2;
  --lavender: #e7dcf2;
  --leaf: #5f8f64;
  --leaf-dark: #35684d;
  --line: #e1d9c7;
  --text: #17211d;
  --muted: #6c655a;
  --paper: #fffdf8;
  --grey: #faf5ea;
  --shadow: 0 18px 45px rgba(98, 76, 45, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 94% 18%, rgba(231, 220, 242, 0.38), transparent 18%),
    radial-gradient(circle at 3% 42%, rgba(221, 239, 205, 0.46), transparent 19%),
    radial-gradient(circle at 70% 62%, rgba(255, 234, 163, 0.32), transparent 20%),
    radial-gradient(circle at 15% 88%, rgba(247, 199, 182, 0.28), transparent 19%),
    linear-gradient(180deg, #fffaf0 0%, #fbf7ed 45%, #f7fbf4 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

.botanical-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.leaf {
  position: absolute;
  opacity: 0.42;
}

.leaf {
  width: 86px;
  height: 126px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(95, 143, 100, 0.86), rgba(213, 235, 196, 0.3));
  transform-origin: center;
}

.leaf::after {
  content: "";
  position: absolute;
  left: 43px;
  top: 12px;
  width: 1px;
  height: 100px;
  background: rgba(53, 104, 77, 0.42);
  transform: rotate(45deg);
}

.leaf-one { right: -26px; top: 210px; transform: rotate(-32deg); }
.leaf-two { left: -34px; top: 640px; transform: rotate(25deg) scale(1.1); }
.leaf-three { right: 5%; bottom: 140px; transform: rotate(18deg) scale(0.9); }
.leaf-four { left: 9%; top: 1180px; transform: rotate(-12deg) scale(0.82); }
.leaf-five { right: -20px; top: 1460px; transform: rotate(42deg) scale(1.18); }

.vine {
  position: absolute;
  width: 210px;
  height: 430px;
  opacity: 0.34;
}

.vine::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(#6d9a70, transparent);
}

.vine i {
  position: absolute;
  width: 58px;
  height: 86px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(53,104,77,0.9), rgba(176,207,154,0.42));
}

.vine i:nth-child(1) { left: 42px; top: 34px; transform: rotate(-42deg); }
.vine i:nth-child(2) { right: 34px; top: 116px; transform: rotate(44deg); }
.vine i:nth-child(3) { left: 20px; top: 202px; transform: rotate(-48deg); }
.vine i:nth-child(4) { right: 20px; top: 282px; transform: rotate(42deg); }
.vine i:nth-child(5) { left: 56px; top: 350px; transform: rotate(-28deg) scale(0.7); }

.vine-one {
  left: -72px;
  top: 140px;
  transform: rotate(-8deg);
}

.vine-two {
  right: -78px;
  top: 540px;
  transform: rotate(12deg) scale(1.08);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(83, 129, 97, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.nav-inner,
.container {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, rgba(255,253,248,0.96), rgba(245,250,242,0.94), rgba(255,250,243,0.95));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 170px;
  padding: 10px 14px;
  border: 1px solid rgba(189,211,197,0.85);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,253,248,0.95), rgba(243,248,238,0.95));
  box-shadow: 0 12px 28px rgba(98,76,45,0.08);
}

.brand img {
  width: 126px;
  height: auto;
  filter: contrast(1.06) saturate(0.86);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  color: var(--sage-dark);
  font-size: 1.35rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.main-nav a {
  border: 0;
  border-radius: 999px;
  background: rgba(255,253,248,0.78);
  color: #26342e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  font: inherit;
  cursor: pointer;
  border: 1px solid rgba(189,211,197,0.7);
  box-shadow: 0 8px 22px rgba(98,76,45,0.04);
  text-align: center;
  line-height: 1.2;
}

.main-nav a:hover,
.main-nav a.active {
  background: linear-gradient(135deg, #f8fce8, #edf7ee);
  color: var(--sage-dark);
  border-color: rgba(83,129,97,0.3);
  box-shadow: 0 12px 24px rgba(53,104,77,0.09);
}

.hero {
  background:
    radial-gradient(circle at 52% 10%, rgba(231, 220, 242, 0.34), transparent 18%),
    radial-gradient(circle at 28% 72%, rgba(221, 239, 205, 0.62), transparent 18%),
    radial-gradient(circle at 78% 74%, rgba(255, 227, 205, 0.58), transparent 18%),
    radial-gradient(circle at 8% 12%, rgba(255, 234, 163, 0.55), transparent 23%),
    radial-gradient(circle at 88% 8%, rgba(217, 236, 242, 0.75), transparent 22%),
    linear-gradient(180deg, #fff9ed 0%, #f8fbf4 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 0 12px;
}

.hero-grid > div:first-child {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.package-strip {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: #17211d;
  line-height: 1.13;
}

h1 {
  max-width: 710px;
  font-size: clamp(2.15rem, 4.8vw, 4.2rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.08rem;
}

.lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: #3b4942;
  font-size: 1.1rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(44,95,69,0.95);
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.16), transparent 25%),
    linear-gradient(135deg, #2f6b4d, #5d8f65);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(53,104,77,0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(53,104,77,0.26);
  filter: saturate(1.03);
}

.button.secondary {
  background: #fffdf8;
  color: var(--sage-dark);
}

.button.full {
  width: 100%;
}

.hero-media {
  position: relative;
  min-height: 475px;
}

.desk-panel {
  position: absolute;
  inset: 0 0 44px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 234, 163, 0.95) 0 15%, transparent 16%),
    radial-gradient(circle at 84% 16%, rgba(247, 199, 182, 0.9) 0 14%, transparent 15%),
    radial-gradient(circle at 72% 82%, rgba(217, 236, 242, 0.95) 0 18%, transparent 19%),
    radial-gradient(circle at 42% 48%, rgba(231, 220, 242, 0.78), transparent 20%),
    radial-gradient(circle at 20% 82%, rgba(221, 239, 205, 0.95), transparent 17%),
    linear-gradient(135deg, #fff6df 0%, #edf8ea 44%, #ffe4cf 100%);
  box-shadow: var(--shadow);
}

.desk-surface {
  position: absolute;
  left: -10%;
  right: -8%;
  bottom: -24%;
  height: 46%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.28) 0 28px, transparent 28px 56px),
    linear-gradient(135deg, #e7d0a6, #f2dfbb);
  transform: rotate(-5deg);
}

.leaf-spray {
  position: absolute;
  left: 45%;
  top: 5%;
  width: 132px;
  height: 116px;
  transform: rotate(-12deg);
}

.desk-panel::before,
.desk-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.42);
  border: 1px solid rgba(255,255,255,0.6);
}

.desk-panel::before {
  left: 30px;
  bottom: 26px;
  width: 118px;
  height: 118px;
}

.desk-panel::after {
  right: 34px;
  top: 150px;
  width: 86px;
  height: 86px;
}

.leaf-spray i {
  position: absolute;
  bottom: 0;
  left: 56px;
  width: 23px;
  height: 74px;
  border-radius: 80% 0 80% 0;
  background: linear-gradient(135deg, #35684d, #8eb985);
  transform-origin: bottom;
  box-shadow: 0 8px 18px rgba(53,104,77,0.14);
}

.leaf-spray i:nth-child(1) { transform: rotate(-52deg); height: 62px; }
.leaf-spray i:nth-child(2) { transform: rotate(-24deg); height: 84px; background: linear-gradient(135deg, #548366, #b0cf9a); }
.leaf-spray i:nth-child(3) { transform: rotate(0deg); height: 94px; }
.leaf-spray i:nth-child(4) { transform: rotate(25deg); height: 82px; background: linear-gradient(135deg, #6d9a70, #bdd7a8); }
.leaf-spray i:nth-child(5) { transform: rotate(52deg); height: 64px; }

.ledger-sheet {
  position: absolute;
  right: 8%;
  top: 20%;
  width: 56%;
  height: 50%;
  border: 1px solid #decf9a;
  border-radius: 6px;
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(63,115,87,0.14) 24px 25px),
    linear-gradient(180deg, #fffef6, #fff5d7);
  transform: rotate(-6deg);
  box-shadow: 0 18px 26px rgba(28, 54, 41, 0.11);
}

.ledger-sheet span {
  position: absolute;
  left: 11%;
  right: 12%;
  height: 9px;
  border-radius: 6px;
  background: rgba(63, 115, 87, 0.1);
}

.ledger-sheet span:nth-child(1) { top: 18%; width: 68%; }
.ledger-sheet span:nth-child(2) { top: 31%; width: 52%; }
.ledger-sheet span:nth-child(3) { top: 44%; width: 72%; }
.ledger-sheet span:nth-child(4) { top: 57%; width: 46%; }
.ledger-sheet span:nth-child(5) { top: 70%; width: 60%; }

.calculator {
  position: absolute;
  left: 13%;
  bottom: 18%;
  width: 150px;
  height: 164px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 28px;
  gap: 9px;
  padding: 52px 14px 14px;
  border: 1px solid #b9c8c0;
  border-radius: 7px;
  background: linear-gradient(180deg, #f7d5c6, #edb39d);
  box-shadow: 18px 18px 0 rgba(63,115,87,0.08);
}

.calculator::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  height: 26px;
  border-radius: 5px;
  background: #fff9df;
  border: 1px solid #d8bd75;
}

.calculator i {
  display: block;
  border-radius: 5px;
  background: #fff9ef;
  border: 1px solid rgba(96, 76, 54, 0.18);
}

.sun-card {
  position: absolute;
  left: 8%;
  top: 11%;
  width: 188px;
  padding: 14px;
  border: 1px solid #dfbf69;
  border-radius: 7px;
  background: #fff1a7;
  color: var(--sage-ink);
  box-shadow: 0 12px 26px rgba(49,94,71,0.1);
}

.sun-card strong,
.family-note strong {
  display: block;
  font-size: 1rem;
  color: var(--sage-dark);
}

.sun-card span,
.family-note span {
  color: #55655d;
  font-size: 0.88rem;
}

.family-note {
  position: absolute;
  right: 8%;
  top: 8%;
  z-index: 2;
  width: 210px;
  padding: 14px;
  border: 1px solid #e6aa94;
  border-radius: 7px;
  background: #ffe3cd;
  box-shadow: 0 12px 26px rgba(94, 58, 38, 0.12);
  transform: rotate(3deg);
}

.folder-stack {
  position: absolute;
  left: 36%;
  bottom: 16%;
  width: 162px;
  height: 132px;
}

.folder-stack b {
  position: absolute;
  left: 0;
  right: 0;
  height: 58px;
  display: flex;
  align-items: center;
  padding-left: 18px;
  border-radius: 7px 7px 5px 5px;
  color: #244333;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(76, 56, 38, 0.1);
}

.folder-stack b:nth-child(1) {
  top: 0;
  background: #d9ecf2;
  transform: rotate(-3deg);
}

.folder-stack b:nth-child(2) {
  top: 34px;
  background: #e9f4e7;
  transform: rotate(2deg);
}

.folder-stack b:nth-child(3) {
  top: 68px;
  background: #ffeaa3;
  transform: rotate(-1deg);
}

.mug {
  position: absolute;
  right: 13%;
  bottom: 13%;
  width: 98px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd9d3;
  border-radius: 8px 8px 18px 18px;
  background: linear-gradient(180deg, #fffdf7, #f9e5d8);
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 24px rgba(49,94,71,0.12);
}

.mug::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 25px;
  width: 32px;
  height: 34px;
  border: 8px solid #eef3ef;
  border-left: 0;
  border-radius: 0 22px 22px 0;
}

.plant {
  position: absolute;
  right: 8%;
  top: 6%;
  width: 70px;
  height: 90px;
}

.plant::after {
  content: "";
  position: absolute;
  left: 21px;
  bottom: 0;
  width: 31px;
  height: 26px;
  border-radius: 4px 4px 10px 10px;
  background: #d99462;
}

.plant span {
  position: absolute;
  bottom: 24px;
  left: 25px;
  width: 20px;
  height: 48px;
  border-radius: 50% 50% 0 50%;
  background: #5f8a6f;
  transform-origin: bottom center;
}

.plant span:nth-child(1) { transform: rotate(-34deg); }
.plant span:nth-child(2) { height: 56px; background: #3f7357; }
.plant span:nth-child(3) { transform: rotate(35deg); background: #789b80; }
}

.photo-caption {
  position: absolute;
  right: 22px;
  bottom: 58px;
  z-index: 2;
  width: min(258px, 58%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.97);
  padding: 14px;
  box-shadow: 0 10px 26px rgba(28,54,41,0.14);
}

.photo-caption strong {
  display: block;
  color: var(--sage-dark);
}

.sally-card {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 285px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  padding: 12px;
  box-shadow: var(--shadow);
}

.sally-card img {
  width: 86px;
  height: 86px;
  border-radius: 6px;
  object-fit: cover;
}

.sally-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 58px 0;
}

.section.compact {
  padding: 38px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
}

.feature-row,
.card-grid,
.resource-grid,
.steps {
  display: grid;
  gap: 16px;
}

.feature-row {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.resource-grid {
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  align-items: start;
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.notice,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.card {
  padding: 20px;
  box-shadow: 0 10px 26px rgba(98, 76, 45, 0.045);
  background:
    radial-gradient(circle at 92% 8%, rgba(231,220,242,0.16), transparent 20%),
    linear-gradient(180deg, #fffdf8, #fffaf1);
}

.card p,
.panel p {
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: linear-gradient(135deg, #e9f4e7, #fff3c7);
  color: var(--sage-dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.card:nth-child(3n + 1) .icon {
  background: linear-gradient(135deg, #e9f4e7, #d9ecf2);
}

.card:nth-child(3n + 2) .icon {
  background: linear-gradient(135deg, #fff3c7, #ffe3cd);
}

.card:nth-child(3n) .icon {
  background: linear-gradient(135deg, #e7dcf2, #e9f4e7);
}

.package-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 0;
  min-height: 188px;
  padding: 24px;
  border: 1px solid #bdd3c5;
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 18%, rgba(221,239,205,0.5), transparent 23%),
    radial-gradient(circle at 12% 100%, rgba(255, 243, 199, 0.48), transparent 24%),
    linear-gradient(135deg, rgba(255,253,248,0.98), rgba(255,246,222,0.94));
  box-shadow: 0 14px 36px rgba(98,76,45,0.08);
}

.package-card-self {
  background:
    radial-gradient(circle at 92% 18%, rgba(231,220,242,0.42), transparent 23%),
    radial-gradient(circle at 12% 100%, rgba(247,199,182,0.3), transparent 24%),
    linear-gradient(135deg, rgba(255,253,248,0.98), rgba(247,251,244,0.94));
}

.package-type {
  display: inline-flex;
  margin: 0 0 10px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.package-card strong {
  display: block;
}

.package-cta {
  margin-top: 14px;
  min-height: 40px;
  padding: 9px 15px;
  width: fit-content;
  border-radius: 999px;
}

.package-card-glow {
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: 150px;
  height: 132px;
  border-radius: 100% 0 100% 0;
  background:
    radial-gradient(circle at 40% 34%, rgba(255,255,255,0.42), transparent 30%),
    linear-gradient(135deg, rgba(221,239,205,0.52), rgba(231,220,242,0.24));
  transform: rotate(18deg);
  pointer-events: none;
}

.package-art {
  display: flex;
  justify-content: flex-end;
}

.package-art-photo {
  width: 152px;
  height: 96px;
  border-radius: 18px 18px 12px 12px;
  border: 1px solid rgba(216, 207, 194, 0.85);
  background:
    linear-gradient(90deg, rgba(255,253,248,0.12), rgba(255,253,248,0.02)),
    url("assets/home-contact-newsletter-bg.png") 76% 52% / 320px auto no-repeat,
    linear-gradient(135deg, #fff9ee, #f5ece3);
  box-shadow: 0 14px 30px rgba(98,76,45,0.1);
}

.price {
  font-size: 1.7rem;
  font-weight: 850;
  color: var(--sage-dark);
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,243,199,0.28), transparent 18%),
    linear-gradient(180deg, #fffef9, #fffaf0);
  box-shadow: 0 18px 40px rgba(98,76,45,0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 710px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #fff2d5;
  color: var(--sage-ink);
  font-size: 0.9rem;
}

tbody tr:hover {
  background: #fbfdfb;
}

.included {
  text-align: center;
  color: var(--sage-dark);
  font-weight: 900;
}

.highlight-col {
  background: #f0f8e8;
}

.quote {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--sage);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 10%, rgba(231,220,242,0.22), transparent 18%),
    linear-gradient(180deg, #fffef9, #fffaf2);
  box-shadow: 0 16px 32px rgba(98,76,45,0.07);
  height: 100%;
}

.quote p {
  margin-top: 0;
  font-size: 1rem;
  color: #26342e;
}

.quote cite {
  color: var(--sage-dark);
  font-style: normal;
  font-weight: 800;
}

.sidebar {
  padding: 18px;
  background:
    radial-gradient(circle at 10% 0%, rgba(221,239,205,0.34), transparent 20%),
    linear-gradient(180deg, #fffef9, #f8fcf4);
  box-shadow: 0 18px 38px rgba(98,76,45,0.07);
}

.filter-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.filter-list a {
  display: flex;
  justify-content: space-between;
  border-radius: 999px;
  padding: 10px 12px;
  color: #314139;
  border: 1px solid transparent;
}

.filter-list a:hover,
.filter-list a.active {
  background: linear-gradient(135deg, #f8fce8, #edf7ee);
  border-color: rgba(83,129,97,0.22);
  color: var(--sage-dark);
}

.sidebar-note {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(216, 207, 194, 0.88);
  border-radius: 12px;
  background: rgba(255,253,248,0.88);
}

.sidebar-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--sage-dark);
}

.searchbar {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid rgba(216, 207, 194, 0.88);
  border-radius: 14px;
  background: rgba(255,253,248,0.9);
  box-shadow: 0 12px 28px rgba(98,76,45,0.05);
}

.searchbar input,
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfd8d2;
  border-radius: 6px;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
}

.searchbar input:focus,
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(83,129,97,0.18);
  border-color: rgba(83,129,97,0.38);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 18px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  padding: 7px 12px;
  color: #405049;
  font-size: 0.86rem;
  cursor: pointer;
}

.chip.active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}

.resource-list {
  display: grid;
  gap: 12px;
}

.resource-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 18px 18px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 96% 8%, rgba(231,220,242,0.22), transparent 18%),
    linear-gradient(180deg, #fffef9, #fffaf1);
  box-shadow: 0 14px 30px rgba(98,76,45,0.06);
}

.resource-item h3 {
  margin-bottom: 5px;
}

.resource-item,
.quote,
.card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.resource-item:hover,
.quote:hover,
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(98,76,45,0.1);
}

.meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.notice {
  background: var(--cream);
  border-color: #dfcf7e;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(98, 76, 45, 0.08);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 227, 205, 0.7), transparent 22%),
    radial-gradient(circle at 16% 18%, rgba(255, 234, 163, 0.46), transparent 20%),
    radial-gradient(circle at 70% 88%, rgba(221,239,205,0.54), transparent 22%),
    linear-gradient(180deg, #fffaf0, var(--mint));
  border-bottom: 1px solid var(--line);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(53,104,77,0.18), rgba(176,207,154,0.08));
}

.page-hero::before {
  width: 180px;
  height: 240px;
  left: -70px;
  top: 8px;
  transform: rotate(-14deg);
}

.page-hero::after {
  width: 180px;
  height: 240px;
  right: -66px;
  bottom: -76px;
  transform: rotate(22deg);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.page-hero-copy .lead {
  max-width: 680px;
}

.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.02;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(83,129,97,0.2);
  border-radius: 999px;
  background: rgba(255,253,248,0.9);
  color: var(--sage-dark);
  font-weight: 700;
}

.page-hero-visual {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(216, 207, 194, 0.88);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(98,76,45,0.12);
  background: linear-gradient(135deg, #fffaf0, #f8fcf4);
}

.page-hero-scene {
  position: absolute;
  inset: 0;
}

.visual-botanical .page-hero-scene,
.visual-services .page-hero-scene,
.visual-resources .page-hero-scene,
.visual-testimonials .page-hero-scene,
.visual-contact .page-hero-scene {
  background-image: url("assets/home-contact-newsletter-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.visual-botanical .page-hero-scene { background-position: center center; }
.visual-services .page-hero-scene { background-position: 72% 54%; }
.visual-resources .page-hero-scene { background-position: 54% 50%; }
.visual-testimonials .page-hero-scene { background-position: 24% 54%; }
.visual-contact .page-hero-scene { background-position: 84% 52%; }

.page-hero-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 14px;
  background: rgba(255,253,248,0.92);
  box-shadow: 0 14px 30px rgba(53,104,77,0.12);
}

.page-hero-note strong,
.page-hero-note span {
  display: block;
}

.page-hero-note strong {
  color: var(--sage-dark);
  margin-bottom: 4px;
}

.page-hero-services {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 227, 205, 0.74), transparent 22%),
    radial-gradient(circle at 16% 16%, rgba(255, 234, 163, 0.5), transparent 20%),
    radial-gradient(circle at 72% 84%, rgba(221,239,205,0.56), transparent 24%),
    linear-gradient(180deg, #fff9ef, #f6fbf0);
}

.page-hero-testimonials {
  background:
    radial-gradient(circle at 88% 22%, rgba(231,220,242,0.68), transparent 22%),
    radial-gradient(circle at 16% 16%, rgba(255, 243, 199, 0.42), transparent 20%),
    linear-gradient(180deg, #fffaf2, #f7f2fb);
}

.page-hero-contact,
.page-hero-signup {
  background:
    radial-gradient(circle at 88% 22%, rgba(231,220,242,0.54), transparent 22%),
    radial-gradient(circle at 16% 16%, rgba(255, 227, 205, 0.5), transparent 20%),
    linear-gradient(180deg, #fff9f0, #f7fbf4);
}

.crumb {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.botanical-split {
  align-items: stretch;
}

.profile {
  overflow: hidden;
}

.profile img {
  width: 100%;
  max-height: 390px;
  object-fit: cover;
  object-position: center;
  background: var(--sage-soft);
}

.profile-body {
  padding: 20px;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(231,220,242,0.72), transparent 21%),
    radial-gradient(circle at 12% 22%, rgba(255,234,163,0.58), transparent 22%),
    radial-gradient(circle at 58% 94%, rgba(221,239,205,0.72), transparent 24%),
    linear-gradient(135deg, #fff8e7, #f5fbef 54%, #ffe7d4);
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(53,104,77,0.32), rgba(176,207,154,0.18));
}

.about-hero::before {
  width: 190px;
  height: 270px;
  left: -64px;
  top: 18px;
  transform: rotate(-18deg);
}

.about-hero::after {
  width: 210px;
  height: 300px;
  right: -70px;
  bottom: -64px;
  transform: rotate(28deg);
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-pills span {
  border: 1px solid rgba(53,104,77,0.24);
  border-radius: 999px;
  background: rgba(255,253,248,0.82);
  padding: 8px 13px;
  color: var(--sage-dark);
  font-weight: 800;
}

.about-portrait-wrap {
  position: relative;
  min-height: 530px;
}

.about-portrait-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 530px;
  object-fit: cover;
  border: 1px solid rgba(53,104,77,0.28);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(82, 61, 42, 0.22);
}

.portrait-aura {
  position: absolute;
  inset: -24px;
  z-index: 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,234,163,0.72), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(231,220,242,0.78), transparent 26%),
    radial-gradient(circle at 64% 84%, rgba(221,239,205,0.8), transparent 28%);
}

.portrait-note {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 12px;
  background: rgba(255,253,248,0.9);
  box-shadow: 0 18px 36px rgba(53,104,77,0.16);
}

.portrait-note strong,
.portrait-note span {
  display: block;
}

.portrait-note strong {
  color: var(--sage-dark);
  font-size: 1.15rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-story-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(247,199,182,0.24), transparent 22%),
    radial-gradient(circle at 84% 48%, rgba(231,220,242,0.28), transparent 18%);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-highlights {
  margin-bottom: 22px;
}

.service-highlights .card:nth-child(4n + 1) {
  background: linear-gradient(180deg, #fffef8, #f4fbf1);
}

.service-highlights .card:nth-child(4n + 2) {
  background: linear-gradient(180deg, #fffef8, #fff7e8);
}

.service-highlights .card:nth-child(4n + 3) {
  background: linear-gradient(180deg, #fffef8, #fff3ec);
}

.service-highlights .card:nth-child(4n + 4) {
  background: linear-gradient(180deg, #fffef8, #f6f1fb);
}

.botanical-table {
  margin-top: 10px;
}

.botanical-table th:nth-child(2),
.botanical-table td:nth-child(2),
.botanical-table th:nth-child(3),
.botanical-table td:nth-child(3) {
  text-align: center;
  vertical-align: middle;
}

.botanical-resource-grid {
  gap: 22px;
}

.botanical-resource-grid .sidebar {
  position: sticky;
  top: 108px;
}

.resource-lead {
  margin-bottom: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(231,220,242,0.24), transparent 22%),
    linear-gradient(180deg, #fff5d8, #fff2ca);
}

.testimonials-shell {
  display: grid;
  gap: 18px;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.testimonials-grid .quote {
  min-height: 0;
  padding: 20px 22px 18px;
}

.testimonials-grid .quote p {
  font-size: 0.98rem;
  line-height: 1.72;
}

.testimonials-grid .quote cite {
  margin-top: 14px;
}

.tools-shell {
  display: grid;
  gap: 24px;
}

.tools-workspace-section {
  padding-top: 10px;
}

.calculator-switcher-head {
  display: grid;
  gap: 20px;
  align-items: end;
}

.calculator-title-inline {
  position: relative;
  display: inline-block;
  max-width: min(100%, 760px);
  min-width: 0;
}

.calculator-title-button {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  padding: 4px 34px 6px 0;
  background: transparent;
  color: var(--sage-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 2.5vw, 2.55rem);
  font-weight: 700;
  line-height: 1.02;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 14px;
  transition: color 140ms ease, opacity 140ms ease;
}

.calculator-title-button::after {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  opacity: 0.62;
  flex: 0 0 auto;
  transition: transform 140ms ease, opacity 140ms ease;
}

.calculator-title-button:hover {
  color: var(--sage-dark);
}

.calculator-title-inline.is-open .calculator-title-button::after {
  transform: rotate(225deg) translate(-2px, -1px);
  opacity: 0.82;
}

.calculator-title-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 4;
  min-width: min(440px, 100%);
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(216, 207, 194, 0.9);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,253,248,0.98), rgba(248,251,244,0.98));
  box-shadow: 0 18px 34px rgba(98,76,45,0.12);
  backdrop-filter: blur(10px);
  animation: fadeMenuIn 140ms ease;
}

.calculator-title-menu[hidden] {
  display: none;
}

.calculator-title-option {
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--sage-ink);
  padding: 10px 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.calculator-title-option:hover,
.calculator-title-option.active {
  background: rgba(233,244,231,0.92);
  border-color: rgba(83,129,97,0.18);
}

@keyframes fadeMenuIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tool-launch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tool-launch-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 180px;
  padding: 24px 22px;
  border: 1px solid rgba(216, 207, 194, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(221,239,205,0.42), transparent 26%),
    radial-gradient(circle at 12% 18%, rgba(255,233,180,0.32), transparent 18%),
    linear-gradient(180deg, #fffef9, #f7fbf3);
  box-shadow: 0 18px 34px rgba(98,76,45,0.08);
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  position: relative;
  overflow: hidden;
}

.tool-launch-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 34px;
  opacity: 0.8;
  border-radius: 100% 0 100% 0;
  transform: rotate(-14deg);
  background: linear-gradient(135deg, rgba(221,239,205,0.9), rgba(118,163,121,0.6));
}

.tool-launch-card:nth-child(2)::after {
  right: 24px;
  bottom: 22px;
  width: 44px;
  height: 42px;
  transform: rotate(22deg);
  border-radius: 100% 100% 0 100%;
}

.tool-launch-card:nth-child(3)::after {
  right: 14px;
  bottom: 16px;
  width: 62px;
  height: 28px;
  transform: rotate(-26deg);
}

.tool-launch-card:nth-child(4)::after {
  right: 20px;
  bottom: 14px;
  width: 36px;
  height: 50px;
  transform: rotate(14deg);
  border-radius: 100% 0 100% 100%;
}

.tool-launch-card:nth-child(5)::after {
  right: 26px;
  bottom: 20px;
  width: 52px;
  height: 30px;
  transform: rotate(-4deg);
}

.tool-launch-card:nth-child(6)::after {
  right: 18px;
  bottom: 20px;
  width: 46px;
  height: 38px;
  transform: rotate(30deg);
  border-radius: 100% 100% 0 100%;
}

.tool-launch-card small {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a6d5d;
}

.tool-launch-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1;
  max-width: 12ch;
  color: var(--sage-ink);
}

.tool-launch-card span {
  color: #526056;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 32ch;
}

.tool-launch-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126,102,162,0.22);
  box-shadow: 0 24px 42px rgba(98,76,45,0.12), 0 0 0 4px rgba(231,220,242,0.32);
}

.tool-launch-card:nth-child(3n + 1) {
  background:
    radial-gradient(circle at 100% 0%, rgba(221,239,205,0.42), transparent 26%),
    radial-gradient(circle at 12% 18%, rgba(255,233,180,0.32), transparent 18%),
    linear-gradient(180deg, #fffef9, #f7fbf3);
}

.tool-launch-card:nth-child(3n + 2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(231,220,242,0.38), transparent 26%),
    radial-gradient(circle at 16% 18%, rgba(247,199,182,0.26), transparent 18%),
    linear-gradient(180deg, #fffef9, #fff7f0);
}

.tool-launch-card:nth-child(3n + 3) {
  background:
    radial-gradient(circle at 100% 0%, rgba(255,234,163,0.26), transparent 26%),
    radial-gradient(circle at 16% 18%, rgba(214,237,210,0.3), transparent 18%),
    linear-gradient(180deg, #fffef9, #f6f1fb);
}

.calculator-stack {
  display: grid;
  gap: 22px;
}

.calculator-panel[hidden] {
  display: none;
}

.calculator-panel {
  padding: 26px;
  border: 1px solid rgba(216, 207, 194, 0.92);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(231,220,242,0.24), transparent 18%),
    radial-gradient(circle at 12% 14%, rgba(221,239,205,0.18), transparent 16%),
    linear-gradient(180deg, #fffef9, #fffaf2);
  box-shadow: 0 22px 42px rgba(98,76,45,0.08);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 108px;
}

.calculator-panel::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 26px;
  width: 92px;
  height: 58px;
  opacity: 0.22;
  pointer-events: none;
  border-radius: 100% 0 100% 0;
  transform: rotate(-18deg);
  background: linear-gradient(135deg, rgba(221,239,205,0.7), rgba(118,163,121,0.48));
}

.calculator-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.calculator-head h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 0.98;
}

.tool-jump {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(216, 207, 194, 0.9);
  border-radius: 999px;
  background: rgba(255,253,248,0.88);
  color: #56705d;
  white-space: nowrap;
}

#tools-top {
  scroll-margin-top: 108px;
}

.calculator-intro {
  margin: 0 0 18px;
  color: #4f5a52;
  max-width: 68ch;
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.calculator-form {
  padding: 20px;
  border: 1px solid rgba(216, 207, 194, 0.92);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,253,248,0.92), rgba(255,250,243,0.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.calculator-result {
  padding: 20px;
  border: 1px solid rgba(83,129,97,0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(221,239,205,0.22), transparent 18%),
    radial-gradient(circle at 18% 20%, rgba(231,220,242,0.18), transparent 18%),
    linear-gradient(180deg, #f9fdf7, #eff8e9);
  box-shadow: 0 14px 28px rgba(83,129,97,0.08);
}

.result-main {
  margin: 10px 0 12px;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--sage-dark);
  line-height: 1.1;
}

.result-breakdown {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  color: #445249;
}

.result-breakdown span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(83,129,97,0.18);
}

.result-breakdown span b {
  color: var(--sage-ink);
}

@media (min-width: 1360px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) and (max-width: 1359px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .nav-inner {
    gap: 14px;
  }

  .brand {
    min-width: 154px;
    padding: 8px 12px;
  }

  .brand img {
    width: 112px;
  }

  .main-nav {
    gap: 6px;
    font-size: 0.84rem;
  }

  .main-nav a {
    min-height: 38px;
    padding: 8px 12px;
  }
}

.form-card,
.contact-info-card,
.soft-panel {
  border-radius: 16px;
}

.form-card {
  background:
    radial-gradient(circle at 92% 8%, rgba(221,239,205,0.22), transparent 18%),
    linear-gradient(180deg, #fffef9, #fffaf1);
  box-shadow: 0 18px 38px rgba(98,76,45,0.08);
}

.form-card .field,
.contact-info-card p {
  color: #33423a;
}

.contact-info-card {
  background:
    radial-gradient(circle at 92% 8%, rgba(231,220,242,0.22), transparent 18%),
    linear-gradient(180deg, #fffef9, #fff7ef);
}

.soft-panel {
  background:
    radial-gradient(circle at 88% 10%, rgba(231,220,242,0.24), transparent 20%),
    linear-gradient(180deg, #fff5d8, #fff0c3);
}

.soft-panel p:last-child {
  margin-bottom: 0;
}

.soft-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--sage-dark);
}

.soft-list li + li {
  margin-top: 8px;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(83,129,97,0.2);
  background: rgba(255,253,248,0.92);
  color: var(--sage-dark);
  font-weight: 700;
}

.field input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin-right: 10px;
  vertical-align: middle;
}

label.field.full:has(input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 207, 194, 0.82);
  border-radius: 12px;
  background: rgba(255,253,248,0.8);
}

.story-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 28px 28px 30px;
  border: 1px solid rgba(216, 184, 99, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,250,240,0.84), rgba(255,247,232,0.9)),
    url("assets/timeline-crystal-plant-backdrop.svg") center / cover no-repeat;
  box-shadow: 0 22px 48px rgba(98,76,45,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(190,139,70,0.92), rgba(247,199,182,0.62) 48%, rgba(176,151,211,0.56));
}

.story-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -18px;
  width: 160px;
  height: 150px;
  border-radius: 40px 100px 40px 100px;
  background:
    linear-gradient(135deg, rgba(255,246,210,0.72), rgba(231,220,242,0.46));
  opacity: 0.78;
  transform: rotate(18deg);
}

.story-card h3,
.story-card p,
.story-year {
  position: relative;
  z-index: 1;
}

.story-year {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 4px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff0c7, #f7d0bd 52%, #eadff3);
  color: #5d4328;
  padding: 9px 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 20px rgba(98,76,45,0.08);
}

.story-card h3 {
  margin: 2px 0 0 24px;
  max-width: 14ch;
  font-size: 1.55rem;
  line-height: 1.06;
}

.story-card p {
  margin: 2px 0 0 24px;
  color: #4b554d;
  font-size: 1rem;
  line-height: 1.7;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 56px rgba(126,86,52,0.14), 0 0 0 5px rgba(255,234,163,0.28);
}

.service-detail-grid {
  gap: 20px;
}

.service-detail-card {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 28px 24px 24px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(231,220,242,0.28), transparent 18%),
    radial-gradient(circle at 0% 100%, rgba(255,234,163,0.22), transparent 16%),
    linear-gradient(180deg, #fffef9, #fff9f0);
  box-shadow: 0 18px 38px rgba(98,76,45,0.08);
}

.service-detail-card::before {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 108px;
  height: 148px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(83,129,97,0.18), rgba(193,220,172,0.08));
  transform: rotate(22deg);
}

.service-detail-card:nth-child(3n + 1) {
  background:
    radial-gradient(circle at 100% 0%, rgba(221,239,205,0.32), transparent 18%),
    radial-gradient(circle at 0% 100%, rgba(255,234,163,0.2), transparent 16%),
    linear-gradient(180deg, #fffef9, #f6fbf1);
}

.service-detail-card:nth-child(3n + 2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(255,234,163,0.3), transparent 18%),
    radial-gradient(circle at 0% 100%, rgba(247,199,182,0.16), transparent 16%),
    linear-gradient(180deg, #fffef9, #fff8ea);
}

.service-detail-card:nth-child(3n + 3) {
  background:
    radial-gradient(circle at 100% 0%, rgba(231,220,242,0.34), transparent 18%),
    radial-gradient(circle at 0% 100%, rgba(221,239,205,0.14), transparent 16%),
    linear-gradient(180deg, #fffef9, #f8f2fb);
}

.service-detail-card h3,
.service-detail-card p {
  position: relative;
  z-index: 1;
}

.service-detail-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.14;
}

.service-detail-card p {
  color: #4d554d;
  font-size: 1rem;
  line-height: 1.65;
}

.service-tier-section {
  position: relative;
  scroll-margin-top: 112px;
}

.service-tier-heading {
  align-items: center;
}

.service-tier-heading h2 {
  margin-bottom: 8px;
}

.service-price-panel,
.self-employed-panel {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(216, 207, 194, 0.9);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255,234,163,0.34), transparent 18%),
    radial-gradient(circle at 8% 100%, rgba(221,239,205,0.36), transparent 20%),
    linear-gradient(135deg, #fffdf8, #fff7e8);
  box-shadow: 0 18px 42px rgba(98,76,45,0.08);
}

.service-price-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
}

.service-price-panel strong,
.self-price-card strong {
  display: block;
  color: var(--sage-ink);
  font-size: 1.15rem;
}

.self-employed-section {
  background:
    radial-gradient(circle at 8% 16%, rgba(231,220,242,0.42), transparent 20%),
    linear-gradient(180deg, #fffdf8, #f7fbf4);
}

.self-employed-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin: -4px 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(185, 92, 69, 0.22);
  border-radius: 14px;
  background:
    radial-gradient(circle at 96% 0%, rgba(255,234,163,0.22), transparent 22%),
    linear-gradient(135deg, rgba(255,239,234,0.94), rgba(255,249,244,0.9));
  color: #6b372c;
}

.self-employed-note strong {
  color: #7a3c30;
}

.self-employed-note span {
  color: #6b4c43;
}

.self-employed-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background:
    radial-gradient(circle at 92% 8%, rgba(231,220,242,0.32), transparent 18%),
    radial-gradient(circle at 8% 100%, rgba(247,199,182,0.22), transparent 20%),
    linear-gradient(135deg, #fffdf8, #f7fbf4);
}

.self-price-card {
  display: grid;
  align-content: center;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(83,129,97,0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255,234,163,0.36), transparent 24%),
    linear-gradient(180deg, rgba(255,253,248,0.95), rgba(255,246,222,0.9));
}

.self-package-grid {
  display: grid;
  gap: 12px;
}

.self-package-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(216, 207, 194, 0.84);
  border-radius: 14px;
  background: rgba(255,253,248,0.78);
}

.self-package-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(221,239,205,0.82);
  color: var(--sage-dark);
  font-weight: 900;
}

.self-package-item h3 {
  margin-bottom: 6px;
}

.self-package-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(53,104,77,0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 96% 20%, rgba(231,220,242,0.5), transparent 18%),
    linear-gradient(135deg, #fffdf8, #eff8e9);
  box-shadow: 0 18px 45px rgba(98,76,45,0.1);
}

/* Blended homepage direction: garden path + cosy local studio */
.home-sally-section,
.home-services-section,
.calm-corner-section,
.home-reviews-section,
.local-band-section,
.home-contact-section {
  position: relative;
  overflow: hidden;
}

.home-sally-section {
  padding: 20px 0 58px;
  background:
    linear-gradient(180deg, rgba(255,253,248,0.48), rgba(255,248,237,0.7)),
    url("assets/home-sally-botanical-crystal-backdrop.png") center / cover no-repeat;
}

.garden-path {
  position: absolute;
  inset: auto -8% 0 -8%;
  height: 270px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 80%, transparent 0 42%, rgba(235,219,191,0.62) 43% 52%, transparent 53%),
    radial-gradient(ellipse at 68% 30%, transparent 0 42%, rgba(235,219,191,0.56) 43% 52%, transparent 53%);
}

.home-sally-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255,253,248,0.22), rgba(255,253,248,0.8)),
    radial-gradient(circle at 100% 0%, rgba(231,220,242,0.28), transparent 24%),
    radial-gradient(circle at 68% 18%, rgba(221,239,205,0.42), transparent 20%),
    linear-gradient(90deg, #fffdf8, #f7fbf3);
  box-shadow: 0 22px 58px rgba(98, 76, 45, 0.12);
  overflow: hidden;
}

.home-sally-image {
  position: relative;
  min-height: 485px;
  overflow: hidden;
}

.home-sally-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hanging-vine {
  display: none;
}

.vine-left { left: -8px; }
.vine-right { right: -8px; transform: scaleX(-1); }

.home-sally-copy {
  position: relative;
  padding: 62px 56px;
  background:
    radial-gradient(circle at 92% 18%, rgba(221,239,205,0.24), transparent 21%),
    linear-gradient(180deg, rgba(255,253,248,0.86), rgba(247,251,243,0.92));
}

.home-sally-copy h2,
.home-services-section h2,
.calm-copy h2,
.home-contact-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.45rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

.home-sally-copy::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 14px;
  width: 190px;
  height: 300px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(95,143,100,0.12), rgba(221,239,205,0.04));
  transform: rotate(18deg);
}

.home-sally-copy::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: 22px;
  width: 150px;
  height: 240px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(95,143,100,0.14), rgba(255,255,255,0.02));
  transform: rotate(-18deg);
}

.home-sally-copy > * {
  position: relative;
  z-index: 1;
}

.script-note {
  color: var(--sage-dark);
  font-size: 1.45rem;
  font-style: italic;
}

.award-section {
  padding: 10px 0 18px;
  background: #fffdf8;
}

.award-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,234,163,0.32), transparent 18%),
    radial-gradient(circle at 100% 100%, rgba(231,220,242,0.28), transparent 20%),
    linear-gradient(135deg, #fffef8, #f8fcf3);
  box-shadow: 0 18px 36px rgba(98,76,45,0.08);
  overflow: hidden;
}

.award-strip::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,245,198,0.82) 0 18%, rgba(255,234,163,0.42) 19% 36%, rgba(231,220,242,0.26) 37% 56%, transparent 57%);
  pointer-events: none;
}

.award-copy h2 {
  margin-bottom: 8px;
}

.award-copy p:last-child {
  margin-bottom: 0;
  max-width: 60ch;
}

.award-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 10px 14px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,248,209,0.92), rgba(255,253,248,0.96) 58%),
    rgba(255,253,248,0.94);
  border: 1px solid rgba(216, 184, 99, 0.44);
  box-shadow: 0 18px 36px rgba(176,128,41,0.18), 0 0 0 8px rgba(255,234,163,0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.award-badge:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 46px rgba(176,128,41,0.24), 0 0 0 10px rgba(255,234,163,0.36);
}

.award-badge img {
  width: 150px;
  height: auto;
}


.home-services-section {
  padding: 54px 0 40px;
  background:
    radial-gradient(circle at 5% 10%, rgba(221,239,205,0.55), transparent 20%),
    linear-gradient(180deg, #fff8ed, #fffdf8);
}

.home-services-section .section-heading {
  justify-content: center;
  text-align: center;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  position: relative;
  padding: 24px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 22%, rgba(235,219,191,0.54), transparent 19%),
    radial-gradient(circle at 100% 78%, rgba(235,219,191,0.42), transparent 19%),
    linear-gradient(180deg, rgba(255,253,248,0.82), rgba(255,253,248,0.92));
}

@media (min-width: 981px) and (max-width: 1320px) {
  .home-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-service-card {
  min-height: 220px;
  padding: 24px 14px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 0%, rgba(231,220,242,0.28), transparent 22%),
    #fffdf8;
  text-align: center;
  box-shadow: 0 12px 28px rgba(98,76,45,0.065);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-service-card:nth-child(4n + 1) {
  background:
    radial-gradient(circle at 84% 0%, rgba(221,239,205,0.52), transparent 24%),
    linear-gradient(180deg, #fffdf8, #f6fbf1);
}

.home-service-card:nth-child(4n + 2) {
  background:
    radial-gradient(circle at 84% 0%, rgba(255,234,163,0.4), transparent 24%),
    linear-gradient(180deg, #fffdf8, #fff7e8);
}

.home-service-card:nth-child(4n + 3) {
  background:
    radial-gradient(circle at 84% 0%, rgba(247,199,182,0.34), transparent 24%),
    linear-gradient(180deg, #fffdf8, #fff4ef);
}

.home-service-card:nth-child(4n + 4) {
  background:
    radial-gradient(circle at 84% 0%, rgba(231,220,242,0.42), transparent 24%),
    linear-gradient(180deg, #fffdf8, #f7f2fb);
}

.home-service-card:hover {
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(53,104,77,0.42);
  background:
    radial-gradient(circle at 80% 0%, rgba(231,220,242,0.42), transparent 25%),
    linear-gradient(180deg, #fffdf8, #f5fbef);
  box-shadow: 0 22px 45px rgba(53,104,77,0.18), 0 0 0 4px rgba(255,234,163,0.32);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  border-radius: 7px;
  background: linear-gradient(135deg, #e9f4e7, #e7dcf2);
  color: var(--sage-dark);
  font-size: 1.35rem;
}

.service-icon svg {
  width: 34px;
  height: 34px;
}

.home-service-card:nth-child(4n + 1) .service-icon {
  background: linear-gradient(135deg, #e7f4e5, #dff0e2);
}

.home-service-card:nth-child(4n + 2) .service-icon {
  background: linear-gradient(135deg, #fff3d0, #ffefc0);
}

.home-service-card:nth-child(4n + 3) .service-icon {
  background: linear-gradient(135deg, #ffe8db, #f8dace);
}

.home-service-card:nth-child(4n + 4) .service-icon {
  background: linear-gradient(135deg, #efe7f9, #e5daf4);
}

.home-service-card p {
  color: #504b43;
  font-size: 0.9rem;
}

.calm-corner-section {
  padding: 20px 0 50px;
  background: #fffdf8;
}

.calm-corner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fffaf0;
  box-shadow: 0 18px 42px rgba(98,76,45,0.1);
}

.calm-copy {
  padding: 46px;
}

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  align-items: stretch;
}

.mini-feature {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 138px;
  padding: 18px 16px;
  border: 1px solid rgba(216, 207, 194, 0.82);
  border-radius: 16px;
  background: rgba(255,253,248,0.76);
}

.mini-feature span {
  display: inline-flex;
  color: var(--sage-dark);
  font-size: 1rem;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(221,239,205,0.74);
  border: 1px solid rgba(83,129,97,0.16);
}

.mini-feature strong {
  line-height: 1.15;
}

.mini-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.shelf-scene {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,253,248,0.05), rgba(255,253,248,0.05)),
    url("assets/home-shelf-scene.png") center / cover no-repeat;
}

.shelf-scene::after {
  display: none;
}

.shelf-vines,
.shelf-candle,
.lavender-pot,
.sticky-note {
  display: none;
}

.shelf-vines i {
  position: absolute;
  top: 0;
  width: 44px;
  height: 120px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #35684d, #8eb985);
  z-index: 1;
}

.shelf-vines i:nth-child(1) { left: 18px; transform: rotate(-24deg); }
.shelf-vines i:nth-child(2) { left: 78px; transform: rotate(28deg); }
.shelf-vines i:nth-child(3) { right: 44px; transform: rotate(-18deg); }
.shelf-vines i:nth-child(4) { right: 104px; transform: rotate(32deg); }

.shelf-candle {
  position: absolute;
  left: 18%;
  bottom: 27%;
  z-index: 2;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 22px 22px;
  background: linear-gradient(180deg, #35684d, #5d8f65);
  color: #fff8e8;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 18px 36px rgba(53,104,77,0.22);
}

.lavender-pot {
  position: absolute;
  left: 40%;
  bottom: 27%;
  z-index: 2;
  width: 95px;
  height: 128px;
  background:
    radial-gradient(ellipse at 22% 10%, #7c68a4 0 7%, transparent 8%),
    radial-gradient(ellipse at 48% 4%, #8d78b1 0 7%, transparent 8%),
    radial-gradient(ellipse at 72% 12%, #7c68a4 0 7%, transparent 8%),
    linear-gradient(90deg, transparent 0 30%, #638b65 31% 33%, transparent 34% 62%, #638b65 63% 65%, transparent 66%),
    linear-gradient(180deg, transparent 0 52%, #e3c6a7 53% 100%);
  border-radius: 10px;
}

.sticky-note {
  position: absolute;
  right: 28%;
  bottom: 21%;
  z-index: 3;
  width: 128px;
  padding: 12px;
  border: 1px solid #d8bd75;
  border-radius: 5px;
  background: #fff3c7;
  color: var(--sage-dark);
  font-style: italic;
  transform: rotate(-4deg);
  box-shadow: 0 12px 24px rgba(98,76,45,0.13);
}

.home-reviews-section {
  padding: 44px 0;
  background:
    radial-gradient(circle at 88% 84%, rgba(231,220,242,0.72), transparent 20%),
    linear-gradient(180deg, #fffdf8, #f6eefb);
}

.centered {
  display: block;
  text-align: center;
}

.review-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 20px;
  align-items: center;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(83,129,97,0.18);
  border-radius: 999px;
  background: rgba(255,253,248,0.92);
  color: var(--sage-dark);
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(98,76,45,0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.carousel-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(83,129,97,0.3);
  box-shadow: 0 16px 28px rgba(98,76,45,0.12);
}

.review-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}

.home-review-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,253,248,0.94);
  box-shadow: 0 12px 30px rgba(98,76,45,0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  color: inherit;
  min-width: 0;
}

.home-review-card:hover {
  transform: translateY(-9px) scale(1.025);
  border-color: rgba(126,102,162,0.34);
  box-shadow: 0 22px 48px rgba(126,102,162,0.18), 0 0 0 4px rgba(231,220,242,0.45);
}

.review-text {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #38453f;
}

.quote-mark {
  display: block;
  color: #8a70ad;
  font-size: 2.7rem;
  line-height: 0.7;
  margin-bottom: 10px;
}

.stars {
  color: var(--sage-dark);
  margin: 0 0 6px;
  letter-spacing: 0.08em;
}

.review-meta {
  margin-top: auto;
  padding-top: 14px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.carousel-dots i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d8d0c4;
}

.carousel-dots i.active {
  background: var(--sage-dark);
}

.local-band-section {
  padding: 30px 0;
  background: #fffdf8;
}

.local-band-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(247,251,241,0.82), rgba(255,253,248,0.62), rgba(246,238,251,0.82)),
    url("assets/home-local-family-band.png") center / cover no-repeat;
}

.local-band-grid::before,
.local-band-grid::after {
  content: "";
  position: absolute;
  bottom: 24px;
  width: 62px;
  height: 36px;
  border-radius: 100% 0 100% 0;
  opacity: 0.72;
  pointer-events: none;
}

.local-band-grid::before {
  left: calc(50% - 28px);
  transform: rotate(-12deg);
  background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(221,239,205,0.92));
}

.local-band-grid::after {
  left: calc(50% + 12px);
  bottom: 32px;
  width: 44px;
  height: 28px;
  transform: rotate(20deg);
  background: linear-gradient(135deg, rgba(255,248,239,0.9), rgba(247,199,182,0.86));
}

.local-band-copy {
  display: grid;
  gap: 8px;
}

.band-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(53,104,77,0.18);
  background: rgba(255,253,248,0.82);
  color: var(--sage-dark);
  box-shadow: 0 10px 20px rgba(98,76,45,0.08);
}

.band-icon svg {
  width: 22px;
  height: 22px;
}

.map-kind-icon {
  background: linear-gradient(135deg, rgba(255,253,248,0.96), rgba(233,244,231,0.9));
}

.family-kind-icon {
  background: linear-gradient(135deg, rgba(255,248,239,0.98), rgba(245,235,255,0.96));
  color: #7a5b94;
}

.band-plant {
  min-height: 130px;
}

.home-contact-section {
  padding: 34px 0 28px;
  background:
    linear-gradient(90deg, rgba(255,253,248,0.25), rgba(255,253,248,0.25)),
    url("assets/home-contact-newsletter-bg.png") center / cover no-repeat;
}

.home-contact-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(98,76,45,0.08);
  background:
    linear-gradient(135deg, rgba(255,243,199,0.92), rgba(255,253,248,0.86));
}

.home-chat-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 28px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 94% 12%, rgba(231,220,242,0.34), transparent 18%),
    radial-gradient(circle at 10% 80%, rgba(221,239,205,0.42), transparent 18%),
    linear-gradient(135deg, rgba(255,243,199,0.94), rgba(255,253,248,0.9));
}

.home-chat-panel .button {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
  white-space: nowrap;
}

.mock-footer {
  margin-top: 0;
  background:
    radial-gradient(circle at 4% 20%, rgba(255,234,163,0.08), transparent 16%),
    radial-gradient(circle at 96% 50%, rgba(231,220,242,0.12), transparent 18%),
    linear-gradient(180deg, #255b40, #224f39);
}

.footer-compact-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0 10px;
}

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

.mock-footer .footer-brand {
  flex: 0 0 auto;
  width: 78px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(255,253,248,0.96);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 12px 28px rgba(18,32,24,0.22);
}

.mock-footer .footer-brand img {
  display: block;
  width: 62px;
  max-width: 62px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  margin: 0;
  padding: 0;
  background: transparent;
}

.footer-brand-copy {
  display: grid;
  gap: 4px;
  max-width: 260px;
}

.footer-brand-copy strong,
.footer-brand-copy span,
.mock-footer p,
.mock-footer a,
.mock-footer span {
  color: #e7f0ea;
}

.footer-brand-copy strong {
  font-size: 1rem;
}

.footer-brand-copy span {
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-contact-line a,
.footer-details summary {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.footer-socials a:hover,
.footer-details summary:hover,
.footer-contact-line a:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-details {
  justify-self: end;
}

.footer-details[open] {
  width: 100%;
  grid-column: 1 / -1;
}

.footer-details summary {
  list-style: none;
  cursor: pointer;
  color: #f2f7f3;
  font-weight: 700;
}

.footer-details summary::-webkit-details-marker {
  display: none;
}

.footer-details[open] summary {
  margin-bottom: 14px;
  background: rgba(255,255,255,0.12);
  justify-self: end;
}

.mock-footer-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding: 6px 0 8px;
}

.mock-footer h3 {
  margin: 0 0 12px;
  font-size: 0.96rem;
}

.mock-footer-inner a {
  display: block;
  margin: 7px 0;
}

.mock-footer-contact p {
  line-height: 1.6;
}

.mock-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 8px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 0.82rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.policy-exact-card {
  max-width: 860px;
  margin: 0 auto;
}

.policy-exact-card h2 {
  margin-bottom: 16px;
}

.policy-exact-card p + p {
  margin-top: 14px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: #2b3933;
}

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

.footer:not(.mock-footer) {
  background:
    radial-gradient(circle at 12% 0%, rgba(255,234,163,0.18), transparent 20%),
    linear-gradient(135deg, #2f6048, #467959);
  color: #eff8f1;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 30px;
  padding: 42px 0;
}

.footer:not(.mock-footer) img {
  width: 170px;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 6px;
  background: #fff;
}

.footer:not(.mock-footer) h3 {
  color: #fff;
  margin-bottom: 12px;
}

.footer:not(.mock-footer) a {
  display: block;
  color: #e2efe6;
  margin: 7px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 15px 0;
  color: #d8e8dd;
  font-size: 0.88rem;
}

.updates-dashboard-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(217,236,242,0.3), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(255,227,205,0.26), transparent 18%),
    linear-gradient(180deg, rgba(255,253,248,0.62), rgba(248,251,244,0.82));
}

.updates-dashboard-shell {
  display: grid;
  gap: 22px;
}

.dashboard-panel,
.dashboard-update-card,
.dashboard-deadline-card,
.watch-card,
.source-card {
  border: 1px solid rgba(216, 207, 194, 0.9);
  border-radius: var(--radius);
  background: rgba(255,253,248,0.94);
  box-shadow: 0 14px 32px rgba(98,76,45,0.065);
}

.planner-note,
.dashboard-attribution,
.source-card em {
  color: var(--muted);
}

.update-card-topline,
.watch-card span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 850;
}

.dashboard-panel {
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(221,239,205,0.28), transparent 18%),
    linear-gradient(180deg, rgba(255,253,248,0.96), rgba(255,250,241,0.94));
}

.live-panel {
  background:
    radial-gradient(circle at 2% 0%, rgba(217,236,242,0.3), transparent 22%),
    radial-gradient(circle at 98% 12%, rgba(231,220,242,0.22), transparent 20%),
    linear-gradient(180deg, rgba(255,253,248,0.97), rgba(247,251,244,0.95));
}

.updates-main-panel {
  display: grid;
  align-content: start;
}

.dashboard-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-section-head h2 {
  margin: 4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.06;
}

.source-link,
.source-card span,
.dashboard-search {
  display: inline-flex;
  align-items: center;
}

.source-link svg,
.source-link svg,
.source-card svg,
.dashboard-search svg {
  width: 18px;
  height: 18px;
}

.dashboard-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  min-width: 0;
}

.segmented-controls {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(216, 207, 194, 0.86);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.72);
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.segmented-controls::-webkit-scrollbar {
  display: none;
}

.segmented-controls button {
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 10px;
  background: transparent;
  color: #314139;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
}

.segmented-controls button:hover,
.segmented-controls button.active {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}

.dashboard-search {
  gap: 8px;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid rgba(216, 207, 194, 0.86);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.86);
  min-width: 0;
  width: 100%;
}

.dashboard-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.updates-main-shell {
  min-width: 0;
}

.dashboard-update-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.dashboard-feed-window {
  height: clamp(420px, 44vw, 520px);
  max-height: 520px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 10px;
  min-width: 0;
  scrollbar-color: rgba(82,116,87,0.58) rgba(236,231,220,0.76);
  scrollbar-width: thin;
}

.dashboard-feed-window::-webkit-scrollbar {
  width: 9px;
}

.dashboard-feed-window::-webkit-scrollbar-track {
  background: rgba(236,231,220,0.76);
  border-radius: 999px;
}

.dashboard-feed-window::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(77,123,91,0.74), rgba(176,151,92,0.66));
  border-radius: 999px;
}

.dashboard-update-card,
.watch-card {
  min-height: 208px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 10px;
  background:
    radial-gradient(circle at 98% 0%, rgba(231,220,242,0.2), transparent 18%),
    linear-gradient(180deg, #fffef9, #fffaf1);
}

.dashboard-update-card:nth-child(3n + 2),
.watch-card:nth-child(3n + 2) {
  background:
    radial-gradient(circle at 98% 0%, rgba(217,236,242,0.28), transparent 20%),
    linear-gradient(180deg, #fffef9, #f6fbf2);
}

.dashboard-update-card:nth-child(3n),
.watch-card:nth-child(3n) {
  background:
    radial-gradient(circle at 98% 0%, rgba(255,227,205,0.3), transparent 20%),
    linear-gradient(180deg, #fffef9, #fff7eb);
}

.update-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--sage-dark);
}

.dashboard-update-card h3,
.dashboard-deadline-card h3,
.watch-card h3 {
  margin: 0;
  color: var(--sage-ink);
  line-height: 1.18;
}

.dashboard-update-card p,
.dashboard-deadline-card p,
.watch-card p {
  margin: 0;
  color: var(--muted);
}

.source-link {
  gap: 6px;
  margin-top: auto;
  color: var(--sage-dark);
  font-weight: 800;
  width: fit-content;
}

.source-link:hover,
.source-card:hover strong {
  color: var(--sage-ink);
}

.dashboard-status {
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.dashboard-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: 20px;
  align-items: start;
}

.deadline-list {
  display: grid;
  gap: 12px;
}

.dashboard-deadline-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border-left: 5px solid var(--sage);
  background: linear-gradient(180deg, #fffef9, #fffaf1);
}

.compact-head {
  margin-bottom: 14px;
}

.compact-head h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.compact-deadlines {
  gap: 10px;
}

.deadline-lane-panel {
  align-self: start;
  max-width: 330px;
}

.deadline-mini-card {
  display: grid;
  grid-template-columns: clamp(78px, 18vw, 92px) minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 86px;
  padding: 10px;
  border: 1px solid rgba(216, 207, 194, 0.86);
  border-left: 5px solid var(--sage);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,253,248,0.96), rgba(251,247,236,0.94));
  color: inherit;
}

.deadline-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(98,76,45,0.11);
}

.deadline-mini-date {
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 8px 7px;
  border-radius: 10px;
  background: #eef7ed;
  text-align: center;
}

.deadline-near .deadline-mini-date {
  background: #fff3d2;
}

.deadline-soon .deadline-mini-date {
  background: #ffe9dc;
}

.deadline-mini-date time {
  color: var(--sage-ink);
  font-weight: 900;
  font-size: clamp(0.92rem, 2.8vw, 1.02rem);
  line-height: 1.02;
}

.deadline-mini-date em {
  color: #5d5147;
  font-size: clamp(0.66rem, 2.4vw, 0.74rem);
  font-style: normal;
  font-weight: 800;
}

.deadline-mini-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.deadline-mini-copy small {
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deadline-mini-copy strong {
  color: var(--sage-ink);
  font-size: clamp(0.92rem, 2.8vw, 0.98rem);
  line-height: 1.16;
}

.deadline-near {
  border-left-color: #d7a73c;
}

.deadline-soon {
  border-left-color: #b95c45;
}

.deadline-date {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius);
  background: #eef7ed;
  text-align: center;
}

.deadline-near .deadline-date {
  background: #fff3d2;
}

.deadline-soon .deadline-date {
  background: #ffe9dc;
}

.deadline-date time {
  display: block;
  color: var(--sage-ink);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.05;
}

.deadline-date span {
  color: #5d5147;
  font-size: 0.86rem;
  font-weight: 800;
}

.standalone-source {
  margin-top: 0;
}

.deadline-planner {
  position: sticky;
  top: 108px;
}

.planner-form {
  display: grid;
  gap: 12px;
}

.planner-form .field {
  display: block;
}

.planner-form .field span {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
  color: #2b3933;
}

.planner-results {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.planner-result-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3px;
  padding: 12px;
  border: 1px solid rgba(216, 207, 194, 0.84);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.7);
}

.planner-result-row span {
  color: #33433b;
  font-weight: 800;
}

.planner-result-row strong {
  color: var(--sage-dark);
}

.planner-result-row em {
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
}

.planner-note {
  display: block;
  margin-top: 12px;
}

.watch-grid,
.source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.watch-card span {
  color: var(--sage-dark);
}

.source-band {
  padding: 4px 0 0;
}

.source-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.source-card {
  min-height: 150px;
  padding: 16px;
  display: grid;
  gap: 8px;
  align-content: start;
  background: linear-gradient(180deg, #fffef9, #f7fbf4);
}

.source-card span {
  width: 34px;
  height: 34px;
  justify-content: center;
  border-radius: 6px;
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.source-card strong {
  color: var(--sage-ink);
  line-height: 1.2;
}

.source-card em {
  font-style: normal;
  font-size: 0.9rem;
}

.dashboard-attribution {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.watch-grid,
.source-grid,
.source-band,
.deadline-planner,
.planner-form,
.planner-results,
.planner-note,
.standalone-source {
  display: none;
}

.dashboard-attribution a {
  color: var(--sage-dark);
  font-weight: 800;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 88px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    justify-content: center;
    width: 100%;
  }

  .hero-grid,
  .split,
  .page-hero-grid,
  .resource-grid,
  .about-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .botanical-resource-grid .sidebar {
    position: static;
  }

  .dashboard-two-column {
    grid-template-columns: 1fr;
  }

  .dashboard-summary-grid,
  .dashboard-update-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-visual {
    min-height: 260px;
  }

  .hero-media {
    min-height: 520px;
  }

  .desk-panel {
    inset: 0;
  }

  .sally-card {
    left: 14px;
    bottom: 16px;
  }

  .photo-caption {
    left: 20px;
    right: 20px;
    bottom: 132px;
    width: min(360px, calc(100% - 40px));
  }

  .feature-row,
  .card-grid,
  .steps,
  .about-values,
  .about-story-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-sally-grid,
  .calm-corner-grid {
    grid-template-columns: 1fr;
  }

  .award-strip,
  .calculator-shell {
    grid-template-columns: 1fr;
  }

  .package-pair,
  .self-employed-panel {
    grid-template-columns: 1fr;
  }

  .home-service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .review-row {
    grid-template-columns: 34px 1fr 1fr 34px;
  }

  .local-band-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .local-band-copy {
    justify-items: center;
  }

  .band-plant {
    width: 180px;
    margin: 0 auto;
  }

  .footer-compact-bar,
  .mock-footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-contact-line,
  .mock-footer-brand {
    justify-content: center;
  }

  .award-badge {
    justify-self: center;
  }

  .footer-details {
    justify-self: center;
    width: 100%;
  }

  .footer-details summary {
    justify-content: center;
  }

  .footer-brand-copy {
    max-width: 360px;
  }

  .mock-footer-bottom {
    justify-content: center;
  }

  .about-portrait-wrap,
  .about-portrait-wrap img {
    min-height: 0;
    height: 470px;
  }

  .about-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .home-sally-grid,
  .calm-corner-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .home-sally-copy,
  .calm-copy {
    padding: 38px;
  }

  .home-sally-image {
    min-height: 470px;
  }

}

@media (max-width: 980px) {
  .dashboard-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .calculator-switcher-head {
    grid-template-columns: 1fr;
  }

  .dashboard-two-column {
    grid-template-columns: 1fr;
  }

  .dashboard-search {
    width: 100%;
  }

  .deadline-lane-panel {
    margin-top: 0;
    max-width: none;
  }

  .tool-launch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-row {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .review-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .dashboard-controls {
    grid-template-columns: 1fr;
  }

  .dashboard-summary-grid,
  .dashboard-update-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-feed-window {
    height: 560px;
    max-height: 560px;
  }

  .calculator-title-button {
    font-size: 1.9rem;
    white-space: normal;
  }

  .tool-launch-grid {
    grid-template-columns: 1fr;
  }

  .tool-launch-card {
    min-height: 156px;
    padding: 20px 18px;
  }

  .tool-launch-card strong {
    font-size: 1.5rem;
  }

  .hero-grid {
    padding-top: 34px;
  }

  .hero-media {
    min-height: 520px;
  }

  .desk-panel {
    inset: 0;
  }

  .sally-card {
    width: calc(100% - 20px);
    left: 10px;
    bottom: 16px;
  }

  .photo-caption {
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    bottom: 132px;
  }

  .sun-card {
    left: 7%;
    top: 10%;
    width: 164px;
  }

  .family-note {
    right: 6%;
    top: 17%;
    width: 190px;
  }

  .folder-stack {
    left: 34%;
    bottom: 38%;
  }

  .calculator {
    left: 8%;
    bottom: 40%;
    width: 128px;
    height: 142px;
  }

  .mug {
    right: 16%;
    bottom: 36%;
  }

  .leaf-spray {
    left: 42%;
    top: 6%;
  }

  .feature-row,
  .card-grid,
  .steps,
  .about-values,
  .about-story-grid,
  .form-grid,
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .home-sally-copy,
  .calm-copy,
  .home-contact-card {
    padding: 26px;
  }

  .home-chat-panel {
    grid-template-columns: 1fr;
  }

  .home-chat-panel .button {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    white-space: normal;
  }

  .home-sally-image {
    min-height: 360px;
  }

  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .mini-feature-grid {
    grid-template-columns: 1fr;
  }

  .shelf-scene {
    min-height: 360px;
  }

  .review-row {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    display: none;
  }

  .review-slots {
    grid-template-columns: 1fr;
  }

  .calculator-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .award-strip {
    padding: 22px;
  }

  .mock-footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .about-hero {
    padding: 40px 0;
  }

  .page-hero {
    padding: 34px 0;
  }

  .page-hero-visual {
    min-height: 220px;
  }

  .about-portrait-wrap,
  .about-portrait-wrap img {
    height: 390px;
  }

  .story-card {
    min-height: 0;
  }

  .package-card,
  .resource-item {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: 0;
  }

  .service-price-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-art {
    justify-content: flex-start;
  }

  .package-art-photo {
    width: min(100%, 200px);
  }

  .section-heading {
    display: block;
  }

  .dashboard-summary-grid,
  .dashboard-update-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-section-head {
    display: block;
  }

  .dashboard-section-head .button,
  .standalone-source {
    margin-top: 12px;
  }

  .dashboard-panel {
    padding: 18px;
  }

  .dashboard-deadline-card {
    grid-template-columns: 1fr;
  }

  .deadline-date {
    min-height: 74px;
    text-align: left;
  }
}

