:root {
  color-scheme: light;
  --cream: #fff8ef;
  --cream-deep: #fbe5ea;
  --blush: #f6b7c6;
  --pink: #f8d6df;
  --lavender: #dcc7f7;
  --purple: #9b6bb3;
  --purple-deep: #7e4e99;
  --peach: #ffd1b8;
  --sage: #afc7b3;
  --sage-deep: #5d7f66;
  --rose: #c96f86;
  --rose-deep: #a84f68;
  --plum: #3f2a44;
  --muted-plum: #6f5d73;
  --taupe: #8b748f;
  --brown: #3f2a44;
  --gold: #d6a94f;
  --ink: #4a3a4d;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(63, 42, 68, 0.13);
  --shadow-soft: 0 10px 26px rgba(155, 107, 179, 0.12);
  --radius: 18px;
  --max: 1120px;
  --focus: 0 0 0 4px rgba(155, 107, 179, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(246, 203, 193, 0.45), transparent 30rem),
    linear-gradient(180deg, var(--cream), #fffdf8 45%, var(--cream-deep));
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

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

a {
  color: var(--rose-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--sage-deep);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--brown);
  color: var(--white);
  padding: 0.7rem 1rem;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(143, 71, 69, 0.16);
  background: rgba(255, 248, 238, 0.95);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  width: calc(100% - 2rem);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: var(--brown);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 55px;
  object-fit: contain;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.nav-toggle {
  position: relative;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(143, 71, 69, 0.28);
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  margin: 0 0.35rem;
}

.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  transform: translateY(-7px);
}

.nav-toggle::after {
  transform: translateY(7px);
}

.site-nav {
  position: absolute;
  inset: 100% 1rem auto 1rem;
  display: none;
  border: 1px solid rgba(143, 71, 69, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 0.6rem;
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  border-radius: 12px;
  color: var(--brown);
  padding: 0.75rem 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  background: var(--cream-deep);
  color: var(--rose-deep);
}

.site-nav .nav-cta {
  background: var(--rose-deep);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--sage-deep);
  color: var(--white);
}

main {
  overflow: hidden;
}

section,
[id] {
  scroll-margin-top: 96px;
}

.section,
.hero,
.page-hero {
  width: calc(100% - 2rem);
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0 2.5rem;
}

.hero-media {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(200, 148, 54, 0.28);
  border-radius: 24px;
  background: var(--cream-deep);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  position: relative;
  min-width: 0;
  border: 1px dashed rgba(143, 71, 69, 0.35);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.55rem;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.35rem, 12vw, 5.4rem);
}

h2 {
  font-size: clamp(1.8rem, 7vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  overflow-wrap: break-word;
}

.lead {
  max-width: 68ch;
  color: #5d483d;
  font-size: 1.1rem;
}

.hero .lead {
  margin-top: 0.85rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.button.primary {
  background: var(--rose-deep);
  color: var(--white);
}

.button.primary:hover {
  background: var(--sage-deep);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(143, 71, 69, 0.35);
  background: var(--white);
  color: var(--brown);
}

.button.secondary:hover {
  border-color: var(--sage-deep);
  color: var(--sage-deep);
}

.notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: #fff8e4;
  padding: 0.95rem;
  color: #51392d;
}

.notice img {
  width: 38px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.section {
  padding: 2.5rem 0;
}

.section-header {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.soft-band {
  width: 100%;
  background:
    linear-gradient(90deg, rgba(158, 189, 175, 0.18), transparent 28%, rgba(246, 203, 193, 0.28)),
    var(--cream-deep);
}

.grid {
  display: grid;
  gap: 1rem;
}

.card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(143, 71, 69, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.card::after {
  position: absolute;
  inset: 0.55rem;
  pointer-events: none;
  border: 1px dashed rgba(207, 126, 125, 0.32);
  border-radius: 14px;
  content: "";
}

.card > * {
  position: relative;
  z-index: 1;
}

.icon-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 150px;
}

.icon-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.icon-card p,
.gallery-card p,
.care-card p,
.faq-answer {
  color: #604b40;
}

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

.gallery-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 0.75rem;
  padding: 1rem;
}

.gallery-card h2 {
  font-size: clamp(1.35rem, 1.1rem + 0.6vw, 1.85rem);
  line-height: 1.15;
}

.gallery-card .button {
  width: 100%;
  margin-top: auto;
}

.gallery-card .item-art {
  display: flex;
  min-height: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(246, 203, 193, 0.38), rgba(158, 189, 175, 0.24));
}

.gallery-card .item-art img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(74, 51, 40, 0.16));
}

.trust-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.trust-list li::before {
  width: 0.75rem;
  height: 0.75rem;
  flex: 0 0 auto;
  margin-top: 0.45rem;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: var(--blush);
  content: "";
}

.page-hero {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
}

.page-hero .logo-mark {
  width: min(210px, 58vw);
  filter: drop-shadow(0 14px 24px rgba(74, 51, 40, 0.12));
}

.two-column {
  display: grid;
  gap: 1.25rem;
}

.form-panel {
  border: 1px solid rgba(143, 71, 69, 0.16);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.request-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

label,
legend {
  color: var(--brown);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(74, 51, 40, 0.25);
  border-radius: 14px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0.9rem;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.choice-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.45rem;
}

.choice {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  border: 1px solid rgba(74, 51, 40, 0.14);
  border-radius: 14px;
  background: var(--cream);
  padding: 0.7rem;
}

.choice input {
  width: auto;
  margin-top: 0.3rem;
}

.error-text {
  min-height: 1.25rem;
  color: #9b2f2f;
  font-size: 0.92rem;
  font-weight: 700;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.field.has-error .choice {
  border-color: #9b2f2f;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.5rem;
  color: var(--sage-deep);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  border: 1px solid rgba(143, 71, 69, 0.16);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--brown);
  font-weight: 800;
}

summary::marker {
  color: var(--rose-deep);
}

.faq-answer {
  padding: 0 1rem 1rem;
}

.cat-accent {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: center;
}

.cat-accent img {
  width: 90px;
  height: 116px;
  object-fit: contain;
  animation: gentle-float 5s ease-in-out infinite;
}

.site-footer {
  border-top: 1px solid rgba(143, 71, 69, 0.16);
  background: var(--brown);
  color: #fff8ee;
  margin-top: 2rem;
}

.footer-wrap {
  width: calc(100% - 2rem);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
  padding: 2rem 0;
}

.footer-wrap a {
  color: #ffe3d8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.footer-note {
  color: #f6d9cd;
  font-size: 0.95rem;
}

@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .site-nav a {
    padding: 0.55rem 0.72rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2.5rem;
  }

  .hero-card {
    margin-top: -4.5rem;
    width: min(720px, calc(100% - 2rem));
    padding: 1.6rem;
  }

  .grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-column {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .form-panel {
    padding: 1.35rem;
  }

  .footer-wrap {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .hero-media,
  .hero-media img {
    min-height: 380px;
  }

  .section {
    padding: 3.2rem 0;
  }

  .brand img {
    width: 66px;
    height: 62px;
  }
}

/* Pink/lavender boutique polish pass. */
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(220, 199, 247, 0.55), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(246, 183, 198, 0.48), transparent 26rem),
    linear-gradient(180deg, var(--cream), #fffafb 46%, #f7edf9);
}

a {
  color: var(--purple-deep);
}

a:hover {
  color: var(--rose-deep);
}

.site-header {
  border-bottom-color: rgba(155, 107, 179, 0.16);
  background: rgba(255, 248, 239, 0.94);
}

.brand,
.nav-toggle,
.site-nav a,
h1,
h2,
h3,
label,
legend,
summary {
  color: var(--plum);
}

.nav-toggle {
  border-color: rgba(155, 107, 179, 0.3);
}

.site-nav {
  border-color: rgba(155, 107, 179, 0.2);
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  background: linear-gradient(135deg, rgba(248, 214, 223, 0.95), rgba(220, 199, 247, 0.75));
  color: var(--purple-deep);
}

.site-nav .nav-cta,
.button.primary {
  background: var(--purple);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.button.primary:hover {
  background: var(--purple-deep);
  color: var(--white);
}

.hero {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 111, 134, 0.24);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 214, 223, 0.34));
  box-shadow: var(--shadow);
  padding: 0;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.hero-media {
  min-height: 245px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  box-shadow: none;
}

.hero-media img {
  min-height: 245px;
}

.hero-card {
  border: 0;
  border-top: 1px solid rgba(201, 111, 134, 0.2);
  border-radius: 0;
  background:
    radial-gradient(circle at 92% 12%, rgba(220, 199, 247, 0.28), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 239, 0.96));
  box-shadow: none;
}

.hero-card::before,
.hero-card::after {
  position: absolute;
  pointer-events: none;
  opacity: 0.78;
}

.hero-card::before {
  top: 1rem;
  right: 1.2rem;
  color: var(--gold);
  content: "*";
  font-size: 1.4rem;
}

.hero-card::after {
  right: 2.8rem;
  bottom: 1.2rem;
  color: var(--rose);
  content: "";
  font-size: 1.15rem;
}

.eyebrow,
.form-status {
  color: var(--purple-deep);
}

.lead,
.icon-card p,
.gallery-card p,
.care-card p,
.faq-answer {
  color: var(--muted-plum);
}

.button.secondary {
  border-color: rgba(201, 111, 134, 0.58);
  background: var(--white);
  color: var(--rose-deep);
}

.button.secondary:hover {
  border-color: var(--rose);
  background: var(--cream-deep);
  color: var(--plum);
}

.notice {
  background: linear-gradient(135deg, #fff8ef, #f8d6df 58%, #f0e6ff);
  color: var(--plum);
}

.soft-band {
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 209, 184, 0.5), transparent 20rem),
    radial-gradient(circle at 88% 16%, rgba(220, 199, 247, 0.62), transparent 25rem),
    linear-gradient(180deg, #fff7fb, #f7ecff);
}

.card {
  border-color: rgba(220, 199, 247, 0.58);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 239, 0.88));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card::after {
  border-color: rgba(201, 111, 134, 0.32);
}

.icon-card:hover,
.gallery-card:hover {
  border-color: rgba(201, 111, 134, 0.48);
  box-shadow: 0 16px 36px rgba(155, 107, 179, 0.16);
  transform: translateY(-4px);
}

.gallery-card .item-art {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.9), transparent 3.4rem),
    linear-gradient(145deg, rgba(248, 214, 223, 0.86), rgba(220, 199, 247, 0.52), rgba(175, 199, 179, 0.24));
}

.gallery-card .item-art img,
.page-hero .logo-mark {
  filter: drop-shadow(0 8px 14px rgba(63, 42, 68, 0.16));
}

.trust-list li::before {
  background: linear-gradient(135deg, var(--blush), var(--lavender));
}

.form-panel,
details {
  border-color: rgba(220, 199, 247, 0.65);
}

input,
select,
textarea {
  border-color: rgba(111, 93, 115, 0.28);
}

.choice {
  border-color: rgba(155, 107, 179, 0.2);
  background: #fff8ef;
}

.site-footer {
  border-top-color: rgba(220, 199, 247, 0.22);
  background:
    radial-gradient(circle at 20% 0%, rgba(246, 183, 198, 0.2), transparent 20rem),
    var(--plum);
}

.footer-wrap a {
  color: #ffe3f0;
}

.footer-note {
  color: #f4e4f7;
}

.footer-social {
  display: grid;
  gap: 0.35rem;
}

.facebook-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.5rem 0.8rem;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.facebook-link:hover {
  background: rgba(246, 183, 198, 0.22);
  color: #ffffff;
}

.about-social {
  margin-top: 1rem;
}

.request-social-note {
  margin-top: 1rem;
  color: var(--muted-plum);
}

@media (prefers-reduced-motion: reduce) {
  .icon-card:hover,
  .gallery-card:hover {
    transform: none;
  }
}

@media (min-width: 760px) {
  .hero {
    padding-top: 0;
  }

  .hero-card {
    width: auto;
    margin-top: 0;
    padding: 2rem;
  }
}

@media (min-width: 980px) {
  .hero-media,
  .hero-media img {
    min-height: 420px;
  }
}

/* Navigation and card layout tightening pass. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 22px rgba(63, 42, 68, 0.06);
}

.card h2,
.card h3 {
  line-height: 1.15;
}

.icon-card h3 {
  font-size: clamp(1.25rem, 1.05rem + 0.45vw, 1.55rem);
}

.gallery-grid {
  align-items: stretch;
  grid-template-columns: 1fr;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.gallery-card h2 {
  font-size: clamp(1.35rem, 1.1rem + 0.6vw, 1.85rem);
  line-height: 1.15;
}

.gallery-card p {
  margin-bottom: 0.25rem;
}

.gallery-card .button {
  width: 100%;
  margin-top: auto;
}

.gallery-card .item-art {
  display: flex;
  height: 150px;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.gallery-card .item-art img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card .item-art {
    height: 165px;
    min-height: 165px;
  }
}

@media (min-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .gallery-card {
    padding: 1.1rem;
  }

  .gallery-card .item-art {
    height: 178px;
    min-height: 178px;
  }
}

/* Sticky header and footer layout reliability pass. */
html {
  min-height: 100%;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

.site-header {
  flex: 0 0 auto;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 239, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

main {
  flex: 1 0 auto;
  overflow: visible;
}

.site-footer {
  flex-shrink: 0;
}

.site-footer h2 {
  color: #fff8ef;
}

.site-footer .footer-note {
  color: #eadcf8;
}

.site-footer .footer-links a,
.site-footer .footer-wrap a {
  color: #fbe5ea;
}

.site-footer .footer-links a:hover,
.site-footer .footer-wrap a:hover {
  color: #ffffff;
}

.site-footer .footer-links a:focus-visible,
.site-footer .footer-wrap a:focus-visible {
  box-shadow: 0 0 0 4px rgba(248, 214, 223, 0.36);
}

.site-footer .facebook-link {
  color: #ffffff;
  border: 1px solid rgba(251, 229, 234, 0.32);
}

/* Mobile hero banner containment and spacing review. */
.hero-media {
  height: auto;
  min-height: 0;
}

.hero-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.hero h1 {
  font-size: clamp(2.15rem, 10vw, 4.75rem);
}

.hero .eyebrow {
  line-height: 1.35;
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 82px;
  }

  section,
  [id] {
    scroll-margin-top: 82px;
  }

  .hero {
    margin-top: 1.35rem;
    margin-bottom: 2rem;
  }

  .hero-card {
    padding: 1.1rem;
  }

  .hero .lead {
    margin-top: 0.7rem;
    font-size: 1.02rem;
  }

  .button-row {
    gap: 0.65rem;
  }

  .hero .button {
    flex: 1 1 100%;
  }

  .notice {
    margin-top: 1rem;
  }
}
