:root {
  --ivory: #f7efe3;
  --ivory-deep: #efe3d2;
  --blush: #dcc6bc;
  --gold: #c8a262;
  --gold-deep: #8d6a32;
  --burgundy: #5f2234;
  --burgundy-deep: #39131f;
  --ink: #2b1c1e;
  --muted: #6e5a5c;
  --white: #fffaf5;
  --border: rgba(95, 34, 52, 0.12);
  --shadow: 0 24px 60px rgba(74, 35, 45, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --reveal-duration: 820ms;
  --pointer-x: 50%;
  --pointer-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at top left, rgba(200, 162, 98, 0.2), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(95, 34, 52, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf7f1 0%, #f4ece1 52%, #fcf8f3 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.22) 48%, transparent 54%);
  opacity: 0;
  transform: translateX(-35%);
  pointer-events: none;
}

body.is-ready .page-shell::before {
  animation: page-glow 1.35s ease-out 180ms forwards;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  animation: ambient-float 14s ease-in-out infinite;
  will-change: transform;
}

.ambient-one {
  top: 60px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(200, 162, 98, 0.18);
}

.ambient-two {
  top: 520px;
  right: -140px;
  width: 420px;
  height: 420px;
  background: rgba(95, 34, 52, 0.12);
  animation-delay: -7s;
}

.site-header,
.section,
.intro-band,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  margin-top: 18px;
  background: rgba(255, 250, 245, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(74, 35, 45, 0.08);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease,
    border-color 240ms ease;
}

.site-header.is-scrolled {
  transform: translateY(6px) scale(0.992);
  background: rgba(255, 250, 245, 0.9);
  border-color: rgba(95, 34, 52, 0.1);
  box-shadow: 0 18px 44px rgba(74, 35, 45, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(200, 162, 98, 0.2);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 22%, var(--burgundy) 100%);
  transform: scaleX(0.2);
  transform-origin: left;
  opacity: 0;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--burgundy);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--burgundy) 0%, #7f3148 100%);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(95, 34, 52, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 420ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(95, 34, 52, 0.3);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(130%);
}

.button-secondary,
.button-outline {
  background: rgba(255, 250, 245, 0.75);
  color: var(--burgundy);
  border: 1px solid rgba(95, 34, 52, 0.15);
  box-shadow: none;
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.92rem;
}

.section {
  padding: 96px 0 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 48px;
  padding-top: 72px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

body.is-ready .hero-copy .eyebrow,
body.is-ready .hero-copy h1,
body.is-ready .hero-copy .hero-text,
body.is-ready .hero-copy .hero-actions,
body.is-ready .hero-copy .hero-points {
  animation: rise-in 880ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

body.is-ready .hero-copy h1 {
  animation-delay: 100ms;
}

body.is-ready .hero-copy .hero-text {
  animation-delay: 180ms;
}

body.is-ready .hero-copy .hero-actions {
  animation-delay: 260ms;
}

body.is-ready .hero-copy .hero-points {
  animation-delay: 340ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.6rem;
}

.hero-text,
.section-copy p,
.story-card p,
.company-copy p,
.credential-card p,
.contact-copy p,
.price-note,
.price-card li,
.steps-list li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.hero-points div,
.intro-card,
.story-card,
.price-card,
.steps-panel,
.credential-card,
.form-shell,
.contact-card,
.logo-panel {
  background: rgba(255, 250, 245, 0.74);
  border: 1px solid rgba(95, 34, 52, 0.08);
  box-shadow: var(--shadow);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease,
    background 300ms ease;
}

.hero-points div {
  padding: 18px;
  border-radius: var(--radius-sm);
}

.hero-points div:hover,
.intro-card:hover,
.story-card:hover,
.price-card:hover,
.steps-panel:hover,
.credential-card:hover,
.contact-card:hover,
.logo-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(141, 106, 50, 0.22);
  box-shadow: 0 28px 66px rgba(74, 35, 45, 0.16);
}

.hero-points strong {
  display: block;
  font-size: 0.96rem;
  margin-bottom: 8px;
  color: var(--burgundy);
}

.hero-points span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-media {
  position: relative;
  perspective: 1400px;
}

.portrait-card {
  position: relative;
  padding: 28px;
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.55), rgba(255, 246, 236, 0.9)),
    linear-gradient(180deg, rgba(200, 162, 98, 0.25), transparent 45%);
  box-shadow: 0 34px 70px rgba(74, 35, 45, 0.18);
  transform-style: preserve-3d;
  transform:
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateZ(0);
  transition: transform 220ms ease, box-shadow 280ms ease;
}

.portrait-accent {
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(200, 162, 98, 0.36), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.08), rgba(95, 34, 52, 0.06));
}

.portrait-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 500px;
  overflow: hidden;
  border-radius: 28px;
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.38), transparent 26%);
  opacity: 0.8;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-media:hover .portrait-card {
  box-shadow: 0 42px 82px rgba(74, 35, 45, 0.24);
}

.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
  transform-origin: center top;
  transition: transform 320ms ease;
}

.hero-media:hover .portrait {
  transform: scale(1.03);
}

.floating-note {
  position: absolute;
  left: -18px;
  bottom: 28px;
  z-index: 2;
  width: min(320px, calc(100% - 32px));
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(95, 34, 52, 0.92);
  color: var(--white);
  box-shadow: 0 26px 54px rgba(57, 19, 31, 0.32);
  animation: note-float 7s ease-in-out infinite;
  transform: translateZ(44px);
}

.note-label {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(247, 239, 227, 0.8);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.floating-note p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.35;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  padding-top: 30px;
}

.intro-card {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.intro-card,
.price-card,
.credential-card,
.story-card,
.logo-panel,
.form-shell {
  position: relative;
}

.intro-card::after,
.price-card::after,
.credential-card::after,
.story-card::after,
.logo-panel::after,
.form-shell::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 98, 0.16), transparent 68%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.intro-card:hover::after,
.price-card:hover::after,
.credential-card:hover::after,
.story-card:hover::after,
.logo-panel:hover::after,
.form-shell:hover::after {
  opacity: 1;
}

.intro-card p {
  margin: 0 0 8px;
  color: var(--gold-deep);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.intro-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 600;
}

.two-column,
.company-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: start;
}

.logo-panel {
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.logo-panel img {
  width: min(100%, 320px);
  margin: 0 auto 24px;
  filter: drop-shadow(0 18px 28px rgba(200, 162, 98, 0.28));
}

.value-list,
.check-list,
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list {
  display: grid;
  gap: 12px;
  text-align: left;
}

.value-list li,
.check-list li,
.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.value-list li::before,
.check-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--burgundy) 100%);
  transform: translateY(-50%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 18px;
}

.story-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.featured-quote {
  background:
    radial-gradient(circle at top right, rgba(200, 162, 98, 0.22), transparent 32%),
    rgba(255, 250, 245, 0.82);
}

.story-card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 30px;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 28px;
}

.price-card-featured {
  background:
    linear-gradient(180deg, rgba(95, 34, 52, 0.06), rgba(255, 250, 245, 0.86)),
    rgba(255, 250, 245, 0.92);
  border-color: rgba(141, 106, 50, 0.2);
  transform: translateY(-10px);
}

.card-tag {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(200, 162, 98, 0.15);
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price-card h3 {
  margin-top: 16px;
}

.price {
  margin: 18px 0 8px;
  font-family: "Cormorant Garamond", serif;
  color: var(--burgundy);
  font-size: 2.8rem;
  line-height: 1;
}

.price-note {
  margin: 0 0 18px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.company-section {
  align-items: stretch;
}

.company-copy,
.steps-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
}

.company-copy {
  background:
    linear-gradient(135deg, rgba(200, 162, 98, 0.12), rgba(255, 250, 245, 0.9)),
    rgba(255, 250, 245, 0.85);
  border: 1px solid rgba(95, 34, 52, 0.08);
  box-shadow: var(--shadow);
}

.company-price {
  margin: 18px 0 8px;
  color: var(--burgundy);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
}

.steps-list {
  display: grid;
  gap: 18px;
  padding-left: 24px;
  margin: 20px 0 0;
}

.credentials-section {
  padding-bottom: 8px;
}

.credential-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.credential-card {
  padding: 28px;
  border-radius: 26px;
}

.credential-card h3 {
  margin-bottom: 14px;
}

.contact-section {
  padding-bottom: 96px;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 20px;
}

.contact-card span {
  color: var(--gold-deep);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1.02rem;
  line-height: 1.5;
}

.contact-meta {
  margin-top: 18px;
}

.contact-meta p {
  margin: 0 0 8px;
  font-size: 0.94rem;
}

.form-shell {
  padding: 30px;
  border-radius: 30px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity var(--reveal-duration) ease,
    transform var(--reveal-duration) cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.interest-form {
  display: grid;
  gap: 18px;
}

.honey-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.interest-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(95, 34, 52, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  outline: none;
  border-color: rgba(95, 34, 52, 0.32);
  box-shadow: 0 0 0 4px rgba(95, 34, 52, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

#form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(95, 34, 52, 0.08);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.form-status::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(141, 106, 50, 0.5);
  box-shadow: 0 0 0 6px rgba(200, 162, 98, 0.12);
  flex: 0 0 auto;
}

.form-status.is-loading {
  color: var(--burgundy);
  background: rgba(200, 162, 98, 0.12);
  border-color: rgba(200, 162, 98, 0.28);
}

.form-status.is-loading::before {
  background: var(--gold);
  animation: pulse-dot 1.1s ease-in-out infinite;
}

.form-status.is-success {
  color: #22543d;
  background: rgba(186, 230, 201, 0.32);
  border-color: rgba(56, 161, 105, 0.26);
}

.form-status.is-success::before {
  background: #2f855a;
  box-shadow: 0 0 0 6px rgba(72, 187, 120, 0.16);
}

.form-status.is-error {
  color: #822727;
  background: rgba(254, 215, 215, 0.5);
  border-color: rgba(229, 62, 62, 0.22);
}

.form-status.is-error::before {
  background: #c53030;
  box-shadow: 0 0 0 6px rgba(245, 101, 101, 0.14);
}

.form-status.is-soft {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(95, 34, 52, 0.08);
  color: var(--muted);
}

.form-status.is-soft::before {
  background: rgba(141, 106, 50, 0.5);
  box-shadow: 0 0 0 6px rgba(200, 162, 98, 0.12);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  align-items: center;
  gap: 18px 28px;
  padding: 26px 28px 40px;
  margin-bottom: 14px;
  color: var(--muted);
  background: rgba(255, 250, 245, 0.72);
  border: 1px solid rgba(95, 34, 52, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(74, 35, 45, 0.08);
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  font-family: "Playfair Display", serif;
  color: var(--burgundy);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-brand p,
.footer-copy {
  margin: 0;
}

.footer-contact {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
  font-size: 0.94rem;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 600;
}

.footer-copy {
  margin: 0;
  white-space: nowrap;
  font-size: 0.92rem;
}

@keyframes rise-in {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes note-float {
  0%,
  100% {
    transform: translate3d(0, 0, 44px);
  }
  50% {
    transform: translate3d(0, -10px, 44px);
  }
}

@keyframes ambient-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -22px, 0) scale(1.06);
  }
}

@keyframes page-glow {
  0% {
    opacity: 0;
    transform: translateX(-35%);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(65%);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.75;
  }
}

@media (max-width: 1140px) {
  .site-header {
    border-radius: 30px;
    padding-inline: 18px;
  }

  .hero,
  .two-column,
  .company-section,
  .contact-section,
  .story-grid,
  .pricing-grid,
  .credential-cards {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .intro-band {
    grid-template-columns: 1fr;
  }

  .price-card-featured {
    transform: none;
  }

  .hero-points div:hover,
  .intro-card:hover,
  .story-card:hover,
  .price-card:hover,
  .steps-panel:hover,
  .credential-card:hover,
  .contact-card:hover,
  .logo-panel:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
  }

  .site-nav {
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 36px;
  }

  .portrait-card {
    min-height: auto;
    padding: 18px;
    transform: none;
  }

  .portrait {
    object-position: center top;
    transform: scale(1);
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 16px;
    animation: none;
  }

  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .site-footer {
    padding: 24px 20px 34px;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }

  .footer-copy {
    white-space: normal;
  }

  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section,
  .intro-band,
  .site-footer {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding-top: 56px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .brand small {
    font-size: 0.72rem;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    text-align: center;
    padding: 6px 0;
  }

  .price {
    font-size: 2.2rem;
  }

  .story-card,
  .price-card,
  .company-copy,
  .steps-panel,
  .credential-card,
  .form-shell,
  .logo-panel,
  .portrait-card {
    padding: 24px 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }

  .portrait-card {
    transform: none;
  }
}
