:root {
  color-scheme: light;
  --background: #f7f9f6;
  --surface: #fff;
  --forest: #285743;
  --ink: #23372f;
  --muted: #56685d;
  --line: #dce5de;
  --sage: #eaf1e9;
  --gold: #ebd69f;
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--background);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  overflow-wrap: break-word;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.25rem);
}
h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
}
h3 {
  font-size: 1.28rem;
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 650;
}
em {
  font-weight: 400;
  color: var(--forest);
}
p {
  color: var(--muted);
}
a {
  color: var(--forest);
  text-underline-offset: 5px;
}
a:hover {
  text-decoration-thickness: 2px;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a,
summary {
  touch-action: manipulation;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 5px;
  border-radius: 3px;
}
main:focus,
section[tabindex="-1"]:focus {
  outline: none;
}
.container {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}
.narrow {
  max-width: 800px;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  color: var(--forest);
  line-height: 1.7;
}
.eyebrow .icon {
  width: 19px;
  height: 19px;
  margin-right: 8px;
}
.lead {
  font-size: 1.075rem;
  line-height: 1.8;
}
.text-link {
  max-width: 100%;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}
.text-link .icon {
  width: 18px;
}
.text-link:hover {
  text-decoration: underline;
}
.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 21px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.88rem;
  line-height: 1.5;
  transition:
    background-color 0.18s,
    transform 0.18s;
}
.button .icon {
  width: 18px;
  height: 18px;
}
.primary,
.header-cta {
  background: var(--forest);
  color: #fff;
}
.primary:hover,
.header-cta:hover {
  background: #1e4433;
  transform: translateY(-1px);
}
.light {
  background: var(--background);
  color: var(--forest);
}
.light:hover {
  background: var(--gold);
}
.skip-link {
  position: absolute;
  top: 8px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 20px;
  z-index: 20;
  background: var(--forest);
  color: #fff;
}
.skip-link:focus {
  transform: translateY(0);
}
.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--background);
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}
.brand {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-height: 44px;
  color: var(--ink);
  flex-shrink: 1;
}
.brand img {
  border-radius: 10px;
  width: 42px;
  height: 42px;
}
.brand > span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.4;
}
.brand small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.01em;
  font-weight: 400;
  color: var(--muted);
  margin-top: 3px;
}
.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 27px;
}
.desktop-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 550;
}
.desktop-nav a:hover {
  color: var(--forest);
  text-decoration: underline;
}
.header-cta {
  font-size: 0.77rem;
  min-height: 44px;
  padding: 10px 17px;
}
.mobile-menu {
  display: none;
}
.hero {
  padding-block: 65px 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}
.hero-copy {
  padding-bottom: 14px;
}
.hero h1 {
  margin-top: 25px;
}
.hero .lead {
  max-width: 470px;
  margin-top: 25px;
  font-size: 1rem;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}
.hero-actions .text-link {
  font-size: 0.79rem;
}
.quiet-benefits {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}
.quiet-benefits li {
  display: flex;
  gap: 6px;
  align-items: center;
}
.quiet-benefits .icon {
  width: 15px;
  height: 15px;
  color: var(--forest);
}
.hero-visual {
  position: relative;
  background: var(--sage);
  border-radius: 160px 160px 12px 12px;
  min-height: 594px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 42px;
}
.phone {
  position: relative;
  z-index: 1;
  width: 268px;
  border: 6px solid #23372f;
  border-radius: 39px;
  background: var(--background);
  box-shadow: 0 24px 45px -18px #23372f50;
  overflow: hidden;
  transform: rotate(3deg);
}
.phone img {
  width: 100%;
  aspect-ratio: 640/1391;
  object-fit: cover;
}
.sun-disc {
  position: absolute;
  top: 20px;
  right: 14px;
  background: var(--gold);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--forest);
}
.sun-disc .icon {
  width: 37px;
  height: 37px;
  stroke-width: 1.1;
}
.visual-note {
  position: absolute;
  z-index: 2;
  left: -22px;
  bottom: 96px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--surface);
  padding: 17px 22px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px #23372f0b;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}
.visual-note .icon {
  color: var(--forest);
  background: var(--sage);
  width: 39px;
  height: 39px;
  padding: 10px;
  border-radius: 50%;
}
.visual-note strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-visual figcaption {
  position: absolute;
  bottom: 13px;
  font-size: 0.65rem;
  color: var(--muted);
}
.benefit-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}
.benefit-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 24px;
}
.benefit-strip p {
  display: flex;
  gap: 13px;
  justify-content: center;
  align-items: center;
  font-size: 0.83rem;
  color: var(--forest);
}
.benefit-strip p + p {
  border-left: 1px solid var(--line);
}
.benefit-strip .icon {
  width: 22px;
  height: 22px;
}
.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-heading h2 {
  margin-top: 16px;
}
.section-heading > p:last-child {
  max-width: 510px;
  margin: 20px auto 0;
  font-size: 0.95rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.feature-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}
.feature-image {
  position: relative;
  background: var(--ink);
}
.feature-image img {
  width: 100%;
  aspect-ratio: 800/343;
  object-fit: cover;
}
.feature-image > span {
  position: absolute;
  top: 30px;
  left: 30px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.feature-copy {
  padding: 30px 34px 34px;
}
.feature-copy > .icon {
  color: var(--forest);
  margin-bottom: 17px;
  width: 25px;
  height: 25px;
}
.feature-copy h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.feature-copy p {
  margin-top: 15px;
  font-size: 0.91rem;
  max-width: 420px;
}
.feature-copy .text-link {
  margin-top: 12px;
}
.schedule-example {
  padding: 23px 34px 12px;
  background: var(--sage);
  min-height: 242px;
}
.schedule-example > div {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #d1dfd1;
  padding: 10px 0;
}
.schedule-example > div:last-of-type {
  border: 0;
}
.schedule-example > div > .icon {
  width: 18px;
  height: 18px;
  color: var(--forest);
}
.schedule-example strong {
  font-size: 1.14rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.schedule-example > div > span {
  font-size: 0.76rem;
  color: var(--muted);
  margin-left: auto;
}
.example-label {
  font-size: 0.63rem;
  margin-top: 6px;
}
.themes-section {
  background: var(--sage);
}
.row-heading {
  max-width: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 36px;
}
.row-heading > p:last-child {
  max-width: 340px;
  margin: 0;
  font-size: 0.94rem;
}
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 18px;
}
.theme-card {
  display: block;
  min-width: 0;
  background: var(--background);
  padding: 26px 24px 20px;
  border: 1px solid #d6e2d5;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition:
    background-color 0.18s,
    transform 0.18s;
}
.theme-card:hover {
  background: #fff;
  transform: translateY(-4px);
}
.theme-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1e8d1;
  color: var(--forest);
  margin-bottom: 32px;
}
.theme-card:nth-child(2) .theme-icon {
  background: #e1e9df;
}
.theme-card:nth-child(3) .theme-icon {
  background: #ece4dc;
}
.theme-card:nth-child(4) .theme-icon {
  background: #e0e7ee;
}
.theme-kicker {
  font-size: 0.62rem;
  color: var(--muted);
}
.theme-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin: 5px 0 12px;
}
.theme-card p {
  font-size: 0.8rem;
  line-height: 1.8;
  min-height: 66px;
}
.theme-link {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--forest);
  font-weight: 650;
}
.theme-link .icon {
  width: 16px;
  height: 16px;
}
.more-themes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 26px;
  margin-top: 24px;
  font-size: 0.74rem;
  color: var(--muted);
}
.more-themes a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
}
.more-themes .icon {
  width: 15px;
  height: 15px;
}
.sharing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.message-example {
  width: 100%;
  padding: 25px 25px 0;
}
.quote-art {
  background: var(--forest);
  color: #fff;
  padding: 40px 36px 32px;
  border-radius: 10px;
  position: relative;
  box-shadow: 12px 12px 0 var(--sage);
}
.quote-art > span:first-child {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.59rem;
  letter-spacing: 0.13em;
  color: var(--gold);
}
.quote-art blockquote {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.45;
  margin: 44px 0 42px;
  letter-spacing: -0.02em;
}
.quote-signature {
  color: var(--gold);
  font-size: 0.72rem;
}
.message-example figcaption {
  font-size: 0.63rem;
  margin: 24px 0 0;
  text-align: center;
  color: var(--muted);
}
.sharing-copy h2 {
  margin-top: 16px;
}
.sharing-copy > p:not(.eyebrow) {
  margin-top: 23px;
  font-size: 0.92rem;
  max-width: 435px;
}
.sharing-copy .text-link {
  margin-top: 19px;
}
.small-note {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.small-note > .icon {
  color: var(--forest);
}
.small-note p {
  font-size: 0.78rem;
  line-height: 1.75;
}
.how-section {
  background: #fff;
  border-block: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 55px;
  counter-reset: steps;
}
.step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--sage);
  color: var(--forest);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.13rem;
  margin-bottom: 22px;
}
.steps h3 {
  font-size: 1.06rem;
}
.steps p {
  font-size: 0.86rem;
  margin-top: 12px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.faq-grid h2 {
  margin: 16px 0 22px;
}
.faq-grid > div > p:not(.eyebrow) {
  font-size: 0.91rem;
}
.faq-grid .text-link {
  margin-top: 20px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  padding: 23px 32px 23px 0;
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  position: absolute;
  right: 2px;
  top: 22px;
  color: var(--forest);
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  padding: 0 25px 25px 0;
  font-size: 0.87rem;
}
.availability-section {
  padding: 0 0 85px;
}
.availability-panel {
  border-radius: 14px;
  background: var(--forest);
  color: #fff;
  text-align: center;
  padding: 56px 25px 46px;
}
.availability-icon {
  background: #ffffff0e;
  border: 1px solid #ffffff26;
  border-radius: 50%;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  color: var(--gold);
}
.availability-icon .icon {
  width: 28px;
  height: 28px;
}
.availability-panel .eyebrow {
  color: var(--gold);
  font-size: 0.63rem;
}
.availability-panel h2 {
  margin-top: 17px;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}
.availability-panel em {
  color: var(--gold);
}
.availability-panel > p:not(.eyebrow) {
  color: #e4ece4;
  margin-top: 23px;
  font-size: 0.9rem;
}
.availability-panel .button {
  margin-top: 28px;
}
.availability-panel .contact-note {
  font-size: 0.7rem !important;
  line-height: 1.8;
}
.contact-note a {
  color: inherit;
}
.availability-panel a:focus-visible {
  outline-color: var(--gold);
}
.site-footer {
  background: var(--sage);
  padding: 52px 0 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1.2fr;
  gap: 38px;
}
.footer-top h2 {
  font-family: var(--sans);
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.footer-top > div > p {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--forest);
  margin-top: 22px;
}
.footer-top nav > a,
.footer-contact > a {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 38px;
  font-size: 0.74rem;
  text-decoration: none;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.footer-top nav > a:hover,
.footer-contact > a:hover {
  text-decoration: underline;
}
.footer-contact .icon {
  width: 14px;
  height: 14px;
}
.footer-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d2dfd0;
  margin-top: 46px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.65rem;
}
.footer-bottom a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  margin-bottom: 40px;
  color: var(--muted);
}
.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.article-hero {
  padding: 30px 0 60px;
}
.article-hero h1 {
  margin-top: 16px;
}
.article-hero .lead {
  margin-top: 24px;
}
.article-content {
  padding-top: 0;
}
.article-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.article-quote {
  background: var(--forest);
  border-radius: 12px;
  padding: 45px;
}
.article-quote .eyebrow {
  color: var(--gold);
}
.article-quote blockquote {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1.45;
  margin: 26px 0;
}
.article-quote figcaption {
  color: var(--gold);
  font-size: 0.8rem;
}
.article-side h2 {
  font-size: 2.15rem;
}
.checked-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
  margin: 26px 0;
}
.checked-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
}
.checked-list .icon {
  color: var(--forest);
  width: 20px;
  margin-top: 2px;
}
.band {
  background: var(--sage);
}
.band h2 {
  margin: 15px 0 25px;
}
.band p + p {
  margin-top: 20px;
}
.notice {
  border-left: 3px solid var(--forest);
  padding-left: 22px;
  font-size: 0.86rem;
}
.related {
  padding-top: 0;
}
.related h2 {
  font-size: 2rem;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 25px;
}
.related-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 48px;
  padding: 8px 18px;
  text-decoration: none;
}
.related-links .icon {
  width: 17px;
}
.legal-hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 3.7rem);
}
.updated {
  font-size: 0.8rem;
  margin-top: 20px;
}
.legal-document {
  padding-bottom: 85px;
}
.legal-document section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.legal-document h2 {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.legal-document p {
  margin-top: 16px;
}
.error-page {
  min-height: 60vh;
}
.error-page h1 {
  margin: 20px 0 25px;
}
.error-page .button {
  margin-top: 25px;
}
@media (min-width: 1300px) {
  .hero-grid {
    gap: 85px;
  }
  .hero-visual {
    min-height: 614px;
  }
  .phone {
    width: 276px;
  }
}
@media (max-width: 1050px) {
  .container {
    width: calc(100% - 48px);
  }
  .desktop-nav {
    gap: 16px;
  }
  .desktop-nav a {
    font-size: 0.72rem;
  }
  .header-cta {
    display: none;
  }
  .hero-grid {
    gap: 38px;
    grid-template-columns: 1.1fr 1fr;
  }
  .hero-visual {
    min-height: 540px;
  }
  .phone {
    width: 235px;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero-actions {
    gap: 8px 14px;
  }
  .hero-actions .button {
    font-size: 0.78rem;
  }
  .theme-card {
    padding: 22px 18px;
  }
  .theme-card p {
    min-height: 87px;
  }
  .sharing-grid {
    gap: 45px;
  }
  .faq-grid {
    gap: 45px;
  }
  .footer-top {
    gap: 24px;
    grid-template-columns: 1.1fr 0.7fr 1fr;
  }
  .footer-contact {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .footer-contact h2 {
    margin: 0;
  }
}
@media (max-width: 760px) {
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 66px;
  }
  .hero {
    padding: 44px 0 45px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 8.6vw, 4.1rem);
  }
  .hero-copy {
    padding: 0;
  }
  .hero .lead {
    font-size: 0.94rem;
    max-width: 530px;
    margin-top: 22px;
  }
  .hero-actions {
    gap: 17px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 0.85rem;
  }
  .quiet-benefits {
    margin-top: 21px;
    gap: 20px;
  }
  .hero-visual {
    width: min(420px, 100%);
    margin: auto;
    min-height: 570px;
    border-radius: 140px 140px 10px 10px;
    padding-top: 26px;
    padding-bottom: 36px;
  }
  .phone {
    width: 245px;
  }
  .visual-note {
    left: -5px;
    bottom: 100px;
    padding: 15px;
    font-size: 0.7rem;
  }
  .sun-disc {
    width: 70px;
    height: 70px;
    right: 13px;
    top: 18px;
  }
  .sun-disc .icon {
    width: 29px;
    height: 29px;
  }
  .benefit-strip .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding-block: 25px;
  }
  .benefit-strip p {
    justify-content: start;
    font-size: 0.8rem;
  }
  .benefit-strip p + p {
    border: 0;
  }
  .section-heading {
    margin-bottom: 32px;
  }
  .section-heading h2 {
    font-size: 2.3rem;
  }
  .section-heading > p:last-child {
    font-size: 0.9rem;
  }
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .feature-copy {
    padding: 25px;
  }
  .schedule-example {
    padding: 25px;
    min-height: auto;
  }
  .schedule-example > div {
    padding-block: 14px;
  }
  .schedule-example .example-label {
    font-size: 0.68rem;
    margin-top: 12px;
  }
  .row-heading {
    display: block;
  }
  .row-heading > p:last-child {
    margin-top: 22px;
    max-width: 440px;
  }
  .theme-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
    gap: 14px;
  }
  .theme-card {
    padding: 22px 18px;
  }
  .theme-icon {
    margin-bottom: 22px;
  }
  .theme-card p {
    min-height: 70px;
    font-size: 0.79rem;
  }
  .theme-kicker {
    font-size: 0.59rem;
  }
  .theme-link {
    font-size: 0.65rem;
    gap: 5px;
  }
  .more-themes {
    gap: 5px 20px;
  }
  .more-themes > span {
    width: 100%;
  }
  .sharing-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
  }
  .message-example {
    max-width: 430px;
    padding: 0 12px 0 0;
    margin: auto;
  }
  .quote-art {
    padding: 32px;
  }
  .quote-art blockquote {
    font-size: 1.8rem;
  }
  .sharing-copy h2 {
    font-size: 2.45rem;
  }
  .steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .steps li {
    position: relative;
    padding-left: 67px;
  }
  .step-number {
    position: absolute;
    left: 0;
    top: 0;
  }
  .steps p {
    margin-top: 9px;
    max-width: 440px;
  }
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .faq-grid h2 {
    font-size: 2.45rem;
  }
  .faq summary {
    font-size: 0.85rem;
    padding-block: 21px;
  }
  .availability-section {
    padding-bottom: 55px;
  }
  .availability-panel {
    padding: 40px 21px 33px;
  }
  .availability-panel > p:not(.eyebrow) {
    font-size: 0.8rem;
  }
  .availability-panel .button {
    font-size: 0.78rem;
    gap: 8px;
    padding-inline: 16px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-contact {
    display: block;
    grid-column: 1/-1;
  }
  .footer-contact h2 {
    margin-bottom: 12px;
  }
  .footer-bottom {
    align-items: start;
    flex-wrap: wrap;
    gap: 5px 20px;
    margin-top: 30px;
  }
  .footer-bottom > span:nth-child(2) {
    width: 100%;
    order: 3;
  }
  .footer-bottom a {
    margin-left: auto;
    min-height: 28px;
  }
  .article-hero {
    padding-bottom: 40px;
  }
  .article-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
  }
  .article-quote {
    padding: 30px;
  }
  .article-quote blockquote {
    font-size: 1.65rem;
  }
  .article-content {
    padding-top: 0;
  }
  .breadcrumbs {
    margin-bottom: 25px;
  }
  .legal-document {
    padding-bottom: 55px;
  }
  .related {
    padding-top: 0;
  }
  .related-links {
    gap: 10px;
  }
  .related-links a {
    font-size: 0.83rem;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .brand > span {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 0.93rem;
  }
  .brand small {
    font-size: 0.62rem;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }
  .hero-actions .text-link {
    justify-content: center;
  }
  .quiet-benefits {
    font-size: 0.66rem;
    gap: 12px;
  }
  .hero-visual {
    min-height: 535px;
  }
  .phone {
    width: 230px;
  }
  .visual-note {
    padding: 10px;
    left: -2px;
    font-size: 0.65rem;
  }
  .theme-grid {
    grid-template-columns: 1fr;
  }
  .theme-card p {
    min-height: auto;
  }
  .theme-link {
    font-size: 0.77rem;
  }
  .theme-card {
    padding: 25px;
  }
  .theme-icon {
    margin-bottom: 17px;
  }
  .theme-kicker {
    font-size: 0.7rem;
  }
  .availability-panel .button {
    font-size: 0.7rem;
    padding: 12px;
    gap: 6px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top > div:first-child,
  .footer-contact {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .theme-card:hover,
  .button:hover {
    transform: none;
  }
}
@media (forced-colors: active) {
  .button,
  .theme-card,
  .feature-card,
  .phone,
  .availability-panel {
    border: 1px solid CanvasText;
  }
  .icon {
    forced-color-adjust: auto;
  }
  .step-number,
  .theme-icon {
    border: 1px solid CanvasText;
  }
}

@media (max-width: 1050px) {
  .header-inner {
    min-height: 78px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu {
    display: block;
    margin-left: auto;
  }
  .mobile-menu > summary {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 46px;
    padding: 8px 4px;
    cursor: pointer;
    font-size: 0.8rem;
    list-style: none;
  }
  .mobile-menu > summary::-webkit-details-marker {
    display: none;
  }
  .menu-lines {
    position: relative;
    width: 18px;
    height: 12px;
    border-block: 1.5px solid currentColor;
  }
  .mobile-menu[open] .menu-lines {
    border: 0;
  }
  .mobile-menu[open] .menu-lines::before,
  .mobile-menu[open] .menu-lines::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 18px;
    border-top: 1.5px solid;
    transform: rotate(45deg);
  }
  .mobile-menu[open] .menu-lines::after {
    transform: rotate(-45deg);
  }
  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }
  .mobile-menu nav {
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    background: var(--background);
    z-index: 10;
    padding: 14px 24px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 25px #23372f0c;
  }
  .mobile-menu nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 7px 4px;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }
}

.hero-grid > *,
.feature-grid > *,
.sharing-grid > *,
.faq-grid > *,
.footer-top > *,
.article-grid > * {
  min-width: 0;
}

/* Store links reuse the existing button styles. */
.download-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 12px;
  max-width: 30rem;
  margin-top: 24px;
}
.availability-panel .download-actions {
  margin-inline: auto;
}
.availability-panel .download-actions .button {
  margin-top: 0;
}
