:root {
  --white: #ffffff;
  --ivory: #fffaf8;
  --soft-ivory: #fff4f0;
  --blush: #fbd8d7;
  --rose: #cc9999;
  --rose-deep: #9f686b;
  --charcoal: #333333;
  --deep: #242424;
  --muted: #6f6462;
  --line: rgba(204, 153, 153, 0.34);
  --line-dark: rgba(255, 250, 248, 0.18);
  --rose-gradient: linear-gradient(105deg, #8d595d 0%, #e8b7ad 32%, #f4c8bf 52%, #bd7f80 76%, #77494f 100%);
  --shadow: 0 18px 50px rgba(83, 53, 53, 0.11);
  --shadow-modal: 0 28px 90px rgba(51, 33, 33, 0.26);
  --container: 1216px;
  --gutter: 24px;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 1000;
  transform: translateY(calc(-100% - 24px));
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  padding: 10px 14px;
  transition: transform 160ms ease;
}

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

.container {
  width: min(100% - calc(var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.site-header {
  display: none;
}

.site-header.is-scrolled,
.site-header.nav-active {
  border-bottom: 1px solid rgba(204, 153, 153, 0.2);
  background: rgba(255, 250, 248, 0.86);
  box-shadow: 0 12px 32px rgba(83, 53, 53, 0.08);
  backdrop-filter: blur(16px);
}

.site-header:not(.is-scrolled):not(.nav-active) {
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  width: min(100% - 48px, var(--container));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(51, 51, 51, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--rose);
  transition: transform 180ms ease;
}

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

.nav-cta,
.menu-toggle,
.modal-close {
  border: 0;
  background: transparent;
  color: inherit;
}

.nav-cta {
  min-height: 40px;
  border: 1px solid rgba(204, 153, 153, 0.5);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--rose-deep);
  font-weight: 800;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(204, 153, 153, 0.42);
  border-radius: 999px;
  place-items: center;
  color: var(--rose-deep);
}

.section-art {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero .section-bg {
  background-color: var(--ivory);
  background-image: url("./assets/hero/hero-bg-desktop-20260711.png");
  background-position: center;
}

.market .section-bg {
  background-color: var(--deep);
  background-image: url("./assets/backgrounds/market-dark-desktop.webp");
}

.structure .section-bg {
  background-color: var(--ivory);
  background-image: url("./assets/backgrounds/structure-agenda-desktop.webp");
}

.authority .section-bg {
  background-color: var(--deep);
  background-image: url("./assets/backgrounds/authority-desktop.webp");
}

.final-cta .section-bg {
  background-color: var(--ivory);
  background-image: url("./assets/backgrounds/cta-final-desktop.webp");
}

.icon,
.card-icon,
.proof-icon,
.format-list i {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-arrow-right {
  --icon: url("./assets/icons/arrow-right.svg");
}

.icon-menu {
  --icon: url("./assets/icons/menu.svg");
}

.icon-close {
  --icon: url("./assets/icons/close.svg");
}

.icon-send {
  --icon: url("./assets/icons/send.svg");
}

.icon-lock {
  --icon: url("./assets/icons/lock.svg");
}

.icon-professional {
  --icon: url("./assets/icons/custom/audience-professional-network.png");
}

.icon-growth {
  --icon: url("./assets/icons/custom/audience-growth-chart.png");
}

.icon-value-diamond {
  --icon: url("./assets/icons/custom/audience-value-diamond.png");
}

.icon-not-for {
  --icon: url("./assets/icons/custom/audience-not-for-x.png");
}

.icon-diagnosis {
  --icon: url("./assets/icons/custom/method-diagnosis-magnifier.png");
}

.icon-skin-base {
  --icon: url("./assets/icons/custom/method-skin-base-drop.png");
}

.icon-technology {
  --icon: url("./assets/icons/custom/method-experience-sparkles.png");
}

.icon-injectables {
  --icon: url("./assets/icons/custom/method-technology-syringe.png");
}

.icon-experience {
  --icon: url("./assets/icons/custom/method-experience-clipboard.png");
}

.icon-proof {
  --icon: url("./assets/icons/custom/method-proof-image-check.png");
}

.icon-calendar {
  --icon: url("./assets/icons/calendar.svg");
}

.icon-whatsapp {
  --icon: url("./assets/icons/whatsapp.svg");
}

.icon-case-review {
  --icon: url("./assets/icons/case-review.svg");
}

.icon-layers {
  --icon: url("./assets/icons/layers.svg");
}

.icon-library {
  --icon: url("./assets/icons/library.svg");
}

.icon-message {
  --icon: url("./assets/icons/message.svg");
}

.quote-mark {
  display: block;
  width: 54px;
  height: 42px;
  color: var(--rose);
  background: currentColor;
  -webkit-mask: url("./assets/icons/quote.svg") center / contain no-repeat;
  mask: url("./assets/icons/quote.svg") center / contain no-repeat;
}

.eyebrow {
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--blush);
}

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  max-width: 800px;
  margin-top: 20px;
  font-size: 5rem;
}

h1 span {
  display: block;
  color: var(--rose-deep);
}

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 1.45rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.button-primary {
  background: var(--rose-gradient);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(159, 104, 107, 0.2);
}

.button .icon {
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.03);
  box-shadow: 0 22px 44px rgba(159, 104, 107, 0.26);
}

.button:hover .icon,
.button:focus-visible .icon {
  transform: translateX(4px);
}

:focus-visible {
  outline: 3px solid rgba(204, 153, 153, 0.42);
  outline-offset: 4px;
}

.hero {
  height: 100svh;
  min-height: 760px;
}

.hero .container {
  width: min(100% - 224px, 1264px);
}

.hero-grid {
  display: grid;
  height: 100%;
  grid-template-columns: 730px minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding: clamp(56px, 7.4vh, 88px) 0 88px;
}

.hero-brand {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 28px;
  margin: 0 0 clamp(54px, 6.4vh, 70px) -18px;
}

.hero-brand img {
  width: clamp(78px, 6vw, 98px);
  height: auto;
}

.hero-brand div {
  display: grid;
  gap: 6px;
}

.hero-brand strong {
  color: #493531;
  font-family: var(--display);
  font-size: clamp(2rem, 2.25vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-brand span {
  color: #b86b6c;
  font-size: clamp(0.68rem, 0.78vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero .eyebrow {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 22px;
  background: linear-gradient(135deg, #ba7273 0%, #c88484 55%, #a86468 100%);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(144, 82, 84, 0.16);
}

.hero h1 {
  max-width: 730px;
  margin-top: 26px;
  color: #55362f;
  font-size: clamp(4.35rem, 4.7vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
}

.hero h1 span {
  display: inline;
  color: inherit;
}

.hero-subtitle {
  max-width: 650px;
  margin-top: 18px;
  color: #b86b6c;
  font-family: var(--display);
  font-size: clamp(2.55rem, 3.05vw, 3.15rem);
  font-weight: 600;
  line-height: 1.08;
}

.hero-description {
  max-width: 700px;
  margin-top: 30px;
  color: rgba(35, 29, 27, 0.88);
  font-size: clamp(1.08rem, 1.12vw, 1.2rem);
  line-height: 1.72;
}

.hero-description strong {
  color: #2d2523;
  font-weight: 800;
}

.hero-actions {
  display: grid;
  max-width: 600px;
  margin-top: 44px;
  gap: 30px;
}

.hero .button-primary {
  width: min(100%, 492px);
  min-height: 78px;
  border: 1px solid rgba(255, 244, 240, 0.82);
  border-radius: 8px;
  background: linear-gradient(135deg, #9d595e 0%, #cf8888 38%, #bc7377 76%, #95575d 100%);
  color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(135, 78, 82, 0.38),
    inset 0 0 0 2px rgba(255, 236, 229, 0.24),
    0 18px 42px rgba(132, 79, 82, 0.22);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.hero-note {
  position: relative;
  max-width: 560px;
  min-height: 42px;
  padding-left: 54px;
  color: rgba(51, 37, 34, 0.68);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 34px;
  height: 38px;
  background: url("data:image/svg+xml,%3Csvg width='34' height='38' viewBox='0 0 34 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 3.5L28.5 7.6V16.1C28.5 23.8 24 30.9 17 34.5C10 30.9 5.5 23.8 5.5 16.1V7.6L17 3.5Z' stroke='%23b86b6c' stroke-width='2'/%3E%3Cpath d='M11.5 18.6L15.1 22.1L22.8 13.9' stroke='%23b86b6c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  height: 100svh;
  align-self: end;
  justify-self: end;
  width: auto;
  margin: 0 calc((1264px - 100vw) / 2 + 72px) 0 0;
}

.hero-portrait img {
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 28px 40px rgba(71, 43, 43, 0.1));
}

.market {
  color: var(--ivory);
}

.market-stack {
  display: grid;
  gap: 42px;
  padding: 108px 0;
}

.market-stack > * {
  min-width: 0;
}

.market-heading {
  width: 100%;
  max-width: 900px;
  min-width: 0;
  margin-inline: auto;
  text-align: center;
}

.section-copy h2,
.section-heading h2,
.method-intro h2,
.structure-copy h2,
.authority-copy h2,
.final-cta h2 {
  margin-top: 14px;
}

.section-copy h2,
.authority-copy h2 {
  max-width: 650px;
}

.market-heading h2 {
  width: 100%;
  max-width: 760px;
  min-width: 0;
  margin-inline: auto;
}

.market-heading p {
  max-width: 860px;
  margin: 20px auto 0;
  color: rgba(255, 250, 248, 0.9);
  font-size: clamp(1.16rem, 1.22vw, 1.32rem);
  font-weight: 500;
  line-height: 1.58;
}

.copy-stack {
  display: grid;
  max-width: 640px;
  margin-top: 26px;
  gap: 14px;
  color: rgba(255, 250, 248, 0.82);
}

.proof-carousel,
.instagram-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
}

.proof-rail,
.instagram-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 0.34fr);
  gap: 18px;
  overflow-x: auto;
  padding: 2px 4px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.proof-rail::-webkit-scrollbar,
.instagram-rail::-webkit-scrollbar {
  display: none;
}

.proof-slide,
.instagram-card {
  scroll-snap-align: start;
}

.proof-slide {
  min-height: 360px;
  border: 1px solid rgba(204, 153, 153, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 248, 0.06);
  padding: 16px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.result-frame {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 236px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 248, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 250, 248, 0.08), rgba(255, 250, 248, 0.02) 49.5%, rgba(204, 153, 153, 0.18) 50%, rgba(204, 153, 153, 0.34)),
    url("./assets/textures/rose-gold-grain-tile.webp");
  background-size: cover, 300px;
}

.result-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 250, 248, 0.18), transparent 32%),
    radial-gradient(circle at 72% 76%, rgba(255, 250, 248, 0.16), transparent 30%);
  opacity: 0.72;
}

.result-frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 250, 248, 0.46);
}

.result-frame span {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 0 14px 14px;
  color: rgba(255, 250, 248, 0.82);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.result-frame span:last-child {
  justify-self: end;
}

.proof-slide strong {
  display: block;
  margin-top: 18px;
  color: var(--ivory);
  font-size: 1rem;
  font-weight: 900;
}

.proof-slide p {
  margin-top: 8px;
  color: rgba(255, 250, 248, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.carousel-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  place-items: center;
  border: 1px solid rgba(255, 250, 248, 0.22);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(47, 35, 34, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: rgba(159, 104, 107, 0.92);
}

.carousel-control .icon {
  width: 18px;
  height: 18px;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-prev .icon {
  transform: rotate(180deg);
}

.carousel-control-next {
  right: -20px;
}

.market-impact {
  width: 100%;
  max-width: 1040px;
  min-width: 0;
  justify-self: center;
  text-align: center;
}

.impact-quote {
  position: relative;
  margin: 0;
  border: 1px solid rgba(204, 153, 153, 0.44);
  border-radius: 8px;
  padding: 24px 36px 28px;
  color: var(--ivory);
}

.impact-quote .quote-mark {
  margin-bottom: 10px;
}

.impact-quote p,
.authority-impact p {
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.08;
}

.market-impact p {
  font-size: clamp(1.9rem, 2.15vw, 2.15rem);
  white-space: nowrap;
}

.audience,
.instagram-proof,
.method,
.structure,
.authority,
.final-cta {
  padding: 120px 0;
}

.section-heading {
  max-width: 920px;
}

.section-heading h2 {
  max-width: 870px;
}

.audience .section-heading {
  margin-inline: auto;
  text-align: center;
}

.audience .section-heading h2 {
  margin-inline: auto;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.audience-card {
  display: grid;
  min-height: 236px;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 12px 38px rgba(83, 53, 53, 0.06);
}

.audience-card-quiet {
  background: rgba(255, 244, 240, 0.82);
}

.card-icon {
  width: 62px;
  height: 62px;
  color: var(--rose);
}

.audience-card h3 {
  margin-top: 22px;
  color: var(--rose-deep);
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.25;
}

.audience-card p {
  max-width: 270px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.instagram-proof {
  background:
    linear-gradient(180deg, rgba(255, 250, 248, 0.96), rgba(255, 244, 240, 0.9)),
    url("./assets/textures/paper-ivory-tile.webp");
}

.instagram-heading {
  display: grid;
  max-width: 840px;
  gap: 16px;
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.instagram-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.instagram-carousel {
  margin-top: 42px;
}

.instagram-rail {
  grid-auto-columns: minmax(258px, 0.26fr);
  padding-block: 4px 18px;
}

.instagram-card {
  min-height: 430px;
  border: 1px solid rgba(204, 153, 153, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
  box-shadow: 0 16px 44px rgba(83, 53, 53, 0.08);
}

.instagram-card-top {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--charcoal);
  font-size: 0.78rem;
}

.instagram-card-top strong {
  font-weight: 900;
}

.instagram-card-top span {
  color: var(--rose-deep);
  font-weight: 900;
}

.instagram-media {
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 248, 0.58), rgba(204, 153, 153, 0.2)),
    url("./assets/textures/rose-gold-grain-tile.webp");
  color: rgba(71, 43, 43, 0.58);
  text-align: center;
}

.instagram-media span {
  max-width: 180px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.05;
}

.instagram-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.instagram-carousel .carousel-control {
  border-color: rgba(159, 104, 107, 0.24);
  color: var(--rose-deep);
  background: rgba(255, 250, 248, 0.88);
}

.instagram-carousel .carousel-control:hover,
.instagram-carousel .carousel-control:focus-visible {
  color: var(--white);
  background: var(--rose-deep);
}

.method {
  background:
    linear-gradient(180deg, rgba(255, 250, 248, 0.92), rgba(255, 244, 240, 0.82)),
    url("./assets/textures/paper-ivory-tile.webp");
}

.method-intro {
  display: grid;
  max-width: 900px;
  gap: 18px;
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.method-intro p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.method-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.method-track::before {
  display: none;
}

.method-track li {
  position: relative;
  display: grid;
  min-height: 184px;
  justify-items: center;
  align-content: start;
  gap: 13px;
  border: 1px solid rgba(204, 153, 153, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  padding: 24px 20px 22px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(83, 53, 53, 0.06);
}

.track-number {
  color: rgba(159, 104, 107, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.track-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 999px;
  color: var(--rose);
  background: var(--ivory);
  box-shadow: 0 14px 34px rgba(83, 53, 53, 0.08);
}

.track-icon::before {
  content: "";
  width: 72px;
  height: 72px;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.method-track strong {
  max-width: 230px;
  color: var(--charcoal);
  font-size: 1.02rem;
  line-height: 1.35;
}

.structure {
  min-height: 820px;
}

.structure-grid {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.62fr);
  gap: 64px;
  align-items: center;
}

.structure-copy h2 {
  max-width: 660px;
}

.structure-tagline {
  max-width: 680px;
  margin-top: 18px;
  color: #9f686b;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.15vw, 2.34rem);
  font-weight: 600;
  line-height: 1.12;
}

.format-list {
  display: flex;
  max-width: 690px;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.format-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(204, 153, 153, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 0 15px;
  color: rgba(51, 51, 51, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.format-list i {
  width: 18px;
  height: 18px;
  color: var(--rose);
}

.structure-actions {
  margin-top: 30px;
}

.structure-actions .button {
  width: min(100%, 340px);
}

.agenda-panel {
  border: 1px solid rgba(204, 153, 153, 0.4);
  border-radius: 8px;
  background: rgba(255, 250, 248, 0.82);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.agenda-title {
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.agenda-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: agenda;
}

.agenda-list li {
  position: relative;
  min-height: 40px;
  padding-left: 48px;
  color: rgba(51, 51, 51, 0.82);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
}

.agenda-list li::before {
  counter-increment: agenda;
  content: counter(agenda);
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--rose-gradient);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.technical-note {
  margin-top: 22px;
  border-left: 2px solid var(--rose);
  padding-left: 15px;
  color: rgba(51, 51, 51, 0.66);
  font-size: 0.82rem;
  line-height: 1.55;
}

.authority {
  color: var(--ivory);
}

.authority-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.62fr);
  gap: 60px;
  align-items: center;
}

.authority-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 0.78;
  border: 1px solid rgba(204, 153, 153, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 248, 0.05);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.24);
}

.authority-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.authority-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
  margin-top: 58px;
}

.glass-note {
  border: 1px solid rgba(204, 153, 153, 0.36);
  border-radius: 8px;
  padding: 26px 28px;
  background: rgba(255, 250, 248, 0.04);
}

.glass-note strong {
  color: var(--blush);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.glass-note p {
  margin-top: 10px;
  color: rgba(255, 250, 248, 0.76);
}

.authority-impact {
  margin: 0;
  color: var(--ivory);
}

.authority-impact .quote-mark {
  margin-bottom: 14px;
}

.final-cta {
  padding-bottom: 90px;
}

.final-cta-inner {
  display: grid;
  max-width: 700px;
  min-height: 210px;
  align-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.final-cta .button {
  margin-top: 10px;
}

.faq-wrap {
  display: grid;
  max-width: 860px;
  gap: 10px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid rgba(204, 153, 153, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 30px rgba(83, 53, 53, 0.05);
}

.faq-item summary {
  position: relative;
  min-height: 56px;
  padding: 17px 52px 17px 20px;
  color: rgba(51, 51, 51, 0.84);
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: var(--rose-deep);
  -webkit-mask: url("./assets/icons/chevron-down.svg") center / contain no-repeat;
  mask: url("./assets/icons/chevron-down.svg") center / contain no-repeat;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin: -4px 20px 18px;
  color: var(--muted);
}

.application-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.application-modal.is-open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 36, 36, 0.62);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  width: min(100%, 820px);
  max-height: 88vh;
  overflow: auto;
  border: 1px solid rgba(204, 153, 153, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 248, 0.98)),
    url("./assets/textures/paper-ivory-tile.webp");
  box-shadow: var(--shadow-modal);
}

.modal-header {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(204, 153, 153, 0.22);
  background: rgba(255, 250, 248, 0.96);
  padding: 26px 28px 22px;
  backdrop-filter: blur(12px);
}

.modal-kicker {
  color: var(--rose-deep);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.modal-header h2 {
  margin-top: 5px;
  font-size: 2.2rem;
}

.modal-header p:not(.modal-kicker) {
  max-width: 560px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.modal-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(204, 153, 153, 0.38);
  border-radius: 999px;
  color: var(--rose-deep);
}

.application-form {
  padding: 26px 28px 30px;
}

.form-status {
  margin-bottom: 18px;
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(204, 153, 153, 0.12);
  color: var(--rose-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.is-success {
  background: rgba(82, 144, 112, 0.14);
  color: #32634a;
}

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

.field {
  display: grid;
  gap: 7px;
  margin: 0;
  color: rgba(51, 51, 51, 0.8);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.35;
}

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

.field span,
.radio-field legend {
  padding: 0;
  color: rgba(51, 51, 51, 0.78);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(204, 153, 153, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--charcoal);
  padding: 13px 14px;
  font-size: 0.96rem;
  font-weight: 500;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(204, 153, 153, 0.2);
}

.field.is-invalid input,
.field.is-invalid textarea,
.radio-field.is-invalid {
  border-color: rgba(159, 104, 107, 0.82);
}

.field em {
  min-height: 16px;
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.radio-field {
  grid-template-columns: repeat(2, max-content);
  align-content: start;
  column-gap: 18px;
  row-gap: 8px;
  border: 1px solid rgba(204, 153, 153, 0.28);
  border-radius: 8px;
  padding: 12px 14px 7px;
}

.radio-field legend,
.radio-field em {
  grid-column: 1 / -1;
}

.radio-field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.radio-field input {
  width: 17px;
  height: 17px;
  accent-color: var(--rose-deep);
}

.form-footer {
  display: flex;
  margin-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.button-submit {
  min-width: 240px;
}

.form-footer p {
  display: inline-flex;
  max-width: 320px;
  align-items: center;
  gap: 8px;
  color: rgba(51, 51, 51, 0.52);
  font-size: 0.78rem;
  line-height: 1.35;
}

.form-footer .icon-lock {
  color: var(--rose-deep);
}

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

body.js-ready .reveal {
  transform: none;
  opacity: 1;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

body.js-ready .reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 861px) and (max-width: 1500px) {
  .hero-portrait {
    margin-right: calc((1264px - 100vw) / 2 - 70px);
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  .hero .container {
    width: min(100% - 64px, 1020px);
  }

  .hero-grid {
    grid-template-columns: minmax(520px, 0.98fr) minmax(0, 1.02fr);
  }

  .hero h1 {
    font-size: 4.08rem;
  }

  .hero-subtitle {
    font-size: 2.34rem;
  }

  .hero-portrait {
    height: 100svh;
    width: auto;
    margin-right: calc((1020px - 100vw) / 2);
  }

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

  .method-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .method-track::before {
    display: none;
  }

  .structure-grid,
  .authority-grid,
  .authority-bottom {
    grid-template-columns: 1fr;
  }

  .agenda-panel {
    max-width: 620px;
  }
}

@media (min-width: 861px) and (max-height: 860px) {
  .hero-copy {
    padding: 50px 0 44px;
  }

  .hero-brand {
    gap: 22px;
    margin: 0 0 34px -14px;
  }

  .hero-brand img {
    width: 70px;
  }

  .hero-brand strong {
    font-size: clamp(1.8rem, 2vw, 2.12rem);
  }

  .hero-brand span {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
  }

  .hero .eyebrow {
    min-height: 28px;
    padding-inline: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    max-width: 720px;
    margin-top: 18px;
    font-size: clamp(3.45rem, 3.65vw, 4.05rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    max-width: 560px;
    margin-top: 14px;
    font-size: clamp(2.02rem, 2.18vw, 2.36rem);
    line-height: 1.08;
  }

  .hero-description {
    max-width: 560px;
    margin-top: 22px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .hero-actions {
    max-width: 520px;
    margin-top: 28px;
    gap: 18px;
  }

  .hero .button-primary {
    width: min(100%, 430px);
    min-height: 54px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .hero-note {
    max-width: 500px;
    min-height: 34px;
    padding-left: 42px;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .hero-note::before {
    width: 28px;
    height: 32px;
  }
}

@media (max-width: 860px) {
  :root {
    --gutter: 20px;
  }

  .header-inner {
    width: min(100% - 32px, var(--container));
    min-height: 68px;
  }

  .brand img {
    width: 162px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    transform: translateY(-8px);
    gap: 0;
    border: 1px solid rgba(204, 153, 153, 0.28);
    border-radius: 8px;
    background: rgba(255, 250, 248, 0.97);
    padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .site-nav .nav-cta {
    min-height: 48px;
    justify-content: flex-start;
    border: 0;
    border-radius: 8px;
    padding: 0 14px;
    text-align: left;
  }

  .site-nav a {
    display: flex;
    align-items: center;
  }

  .site-nav a::after {
    display: none;
  }

  .hero .section-bg {
    background-image: url("./assets/hero/hero-bg-mobile-20260711.png");
    background-position: center top;
  }

  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero .container {
    width: min(100% - 32px, var(--container));
  }

  .hero-grid {
    display: grid;
    min-height: 100svh;
    grid-template-areas:
      "brand"
      "portrait"
      "title"
      "subtitle"
      "description"
      "actions";
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    padding: 10px 0 max(12px, env(safe-area-inset-bottom));
  }

  .hero-copy {
    display: contents;
  }

  .hero-brand {
    grid-area: brand;
    justify-self: center;
    width: 100%;
    max-width: 390px;
    justify-content: center;
    gap: 14px;
    margin: 0;
  }

  .hero-brand img {
    width: clamp(56px, 14vw, 74px);
  }

  .hero-brand strong {
    font-size: clamp(1.08rem, 4.25vw, 1.58rem);
    white-space: nowrap;
  }

  .hero-brand span {
    font-size: clamp(0.4rem, 1.55vw, 0.54rem);
    letter-spacing: 0.14em;
    white-space: nowrap;
  }

  .hero .eyebrow {
    display: none;
  }

  h1 {
    max-width: 620px;
    font-size: 3.55rem;
  }

  .hero h1 {
    grid-area: title;
    justify-self: center;
    max-width: 610px;
    margin-top: 0;
    text-align: center;
    font-size: clamp(2.66rem, 8.85vw, 3.66rem);
    line-height: 0.96;
  }

  .hero h1 span {
    display: block;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    grid-area: subtitle;
    position: relative;
    z-index: 2;
    justify-self: center;
    max-width: 560px;
    margin-top: 7px;
    border-radius: 8px;
    padding: 4px 10px 6px;
    background: radial-gradient(ellipse at center, rgba(255, 250, 248, 0.66) 0%, rgba(255, 250, 248, 0.36) 50%, rgba(255, 250, 248, 0) 76%);
    color: #92535a;
    text-align: center;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.72),
      0 0 18px rgba(255, 250, 248, 0.96),
      0 0 34px rgba(255, 250, 248, 0.82);
    font-size: clamp(1.74rem, 6.35vw, 2.32rem);
    line-height: 1.06;
  }

  .hero-description {
    grid-area: description;
    justify-self: center;
    max-width: 620px;
    margin-top: 9px;
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.34;
  }

  .hero-actions {
    grid-area: actions;
    justify-self: stretch;
    display: grid;
    max-width: none;
    margin-top: 11px;
    gap: 0;
  }

  .hero .button-primary {
    width: min(100%, 390px);
    min-height: 62px;
    justify-self: center;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
  }

  .hero-note {
    display: none;
  }

  .hero-portrait {
    grid-area: portrait;
    position: relative;
    justify-self: center;
    width: min(126vw, 560px);
    height: clamp(380px, 55svh, 530px);
    margin: -2px auto -20px;
    overflow: hidden;
  }

  .hero-portrait img {
    position: absolute;
    left: 43%;
    bottom: -6%;
    width: auto;
    height: 120%;
    max-width: none;
    transform: translateX(-50%);
    object-position: bottom center;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0) 100%);
  }

  .hero-portrait::after {
    display: none;
  }

  .market .section-bg {
    background-image: url("./assets/backgrounds/market-dark-mobile.webp");
  }

  .market-stack {
    gap: 34px;
    padding: 82px 0;
  }

  .market-impact p {
    white-space: normal;
  }

  .proof-rail {
    grid-auto-columns: minmax(280px, 82%);
  }

  .instagram-rail {
    grid-auto-columns: minmax(258px, 78%);
  }

  .carousel-control {
    display: none;
  }

  .structure .section-bg {
    background-image: url("./assets/backgrounds/structure-agenda-mobile.webp");
    background-position: center bottom;
  }

  .authority .section-bg {
    background-image: url("./assets/backgrounds/authority-mobile.webp");
  }

  .final-cta .section-bg {
    background-image: url("./assets/backgrounds/cta-final-mobile.webp");
  }

  .audience,
  .instagram-proof,
  .method,
  .structure,
  .authority,
  .final-cta {
    padding: 78px 0;
  }

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

  .structure-grid {
    min-height: 0;
    gap: 34px;
  }

  .structure-tagline {
    font-size: clamp(1.46rem, 6vw, 2rem);
    line-height: 1.1;
  }

  .final-cta-inner {
    min-height: 170px;
  }

  .application-modal {
    align-items: end;
    padding: 0;
  }

  .modal-dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 8px 8px 0 0;
  }

  .modal-header,
  .application-form {
    padding-inline: 20px;
  }

  .form-grid,
  .form-footer {
    grid-template-columns: 1fr;
  }

  .form-grid {
    display: grid;
  }

  .radio-field {
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .form-footer {
    display: grid;
  }

  .button-submit,
  .form-footer .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand img {
    width: 148px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  h1 {
    font-size: 2.85rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
  }

  .hero-grid {
    padding: 8px 0 max(10px, env(safe-area-inset-bottom));
  }

  .hero-subtitle {
    font-size: clamp(1.58rem, 6.4vw, 2.02rem);
  }

  .hero-description {
    max-width: 365px;
    font-size: 0.8rem;
    line-height: 1.38;
  }

  .hero-actions {
    margin-top: 10px;
  }

  .hero-portrait {
    width: min(130vw, 540px);
    height: clamp(390px, 54svh, 510px);
    margin: -4px auto -20px;
  }

  .impact-quote {
    padding: 28px 24px 30px;
  }

  .market-heading p,
  .instagram-heading p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .proof-rail,
  .instagram-rail {
    grid-auto-columns: minmax(252px, 88%);
    gap: 14px;
    padding-inline: 0;
  }

  .proof-slide {
    min-height: 326px;
    padding: 12px;
  }

  .result-frame {
    min-height: 208px;
  }

  .instagram-card {
    min-height: 382px;
    padding: 12px;
  }

  .instagram-media {
    min-height: 238px;
  }

  .instagram-media span {
    font-size: 1.28rem;
  }

  .impact-quote p,
  .authority-impact p {
    font-size: 1.95rem;
  }

  .audience-grid,
  .method-track {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
  }

  .method-track {
    gap: 12px;
    margin-top: 36px;
  }

  .method-track li {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: auto;
    justify-items: start;
    align-items: center;
    align-content: center;
    gap: 10px 16px;
    padding: 18px;
    text-align: left;
  }

  .method-track li::before {
    display: none;
  }

  .track-number {
    display: none;
  }

  .track-icon {
    grid-row: 1;
    width: 52px;
    height: 52px;
  }

  .track-icon::before {
    width: 52px;
    height: 52px;
  }

  .method-track strong {
    max-width: none;
  }

  .format-list {
    display: grid;
  }

  .format-list span {
    min-height: 46px;
    border-radius: 8px;
    padding: 10px 13px;
  }

  .agenda-panel,
  .glass-note {
    padding: 22px 18px;
  }

  .authority-bottom {
    margin-top: 36px;
  }

  .modal-header {
    gap: 12px;
  }

  .modal-header h2 {
    font-size: 1.9rem;
  }

  .modal-close {
    width: 38px;
    height: 38px;
  }

  .radio-field {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) and (max-height: 780px) {
  .hero-grid {
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  }

  .hero-brand {
    gap: 10px;
  }

  .hero-brand img {
    width: clamp(50px, 12vw, 60px);
  }

  .hero-brand strong {
    font-size: clamp(1.04rem, 4vw, 1.36rem);
  }

  .hero-brand span {
    font-size: clamp(0.38rem, 1.35vw, 0.46rem);
  }

  .hero .eyebrow {
    min-height: 28px;
    margin-top: 5px;
    font-size: 0.62rem;
  }

  .hero-portrait {
    width: min(122vw, 490px);
    height: clamp(338px, 52svh, 400px);
    margin: -2px auto -18px;
  }

  .hero h1 {
    margin-top: -4px;
    font-size: clamp(2.2rem, 7.55vw, 3.06rem);
  }

  .hero-subtitle {
    margin-top: 6px;
    font-size: clamp(1.3rem, 5.3vw, 1.68rem);
  }

  .hero-description {
    max-width: 350px;
    margin-top: 5px;
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .hero-actions {
    margin-top: 6px;
  }

  .hero .button-primary {
    width: min(100%, 360px);
    min-height: 56px;
    font-size: 0.72rem;
  }
}

@media (max-width: 420px) and (min-height: 781px) and (max-height: 880px) {
  .hero-portrait {
    height: clamp(438px, 53svh, 456px);
    margin-bottom: -24px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.12rem);
  }

  .hero-subtitle {
    font-size: clamp(1.5rem, 5.95vw, 1.88rem);
  }

  .hero-description {
    margin-top: 5px;
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .hero-actions {
    margin-top: 7px;
  }

  .hero .button-primary {
    min-height: 60px;
  }
}

@media (max-width: 420px) and (max-height: 820px) {
  .hero-portrait {
    height: clamp(400px, 51svh, 418px);
    margin-bottom: -20px;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 7.65vw, 3rem);
  }

  .hero-subtitle {
    font-size: clamp(1.38rem, 5.45vw, 1.72rem);
  }

  .hero-description {
    margin-top: 5px;
    font-size: 0.8rem;
    line-height: 1.24;
  }

  .hero-actions {
    margin-top: 6px;
  }

  .hero .button-primary {
    min-height: 56px;
    font-size: 0.72rem;
  }
}

@media (min-width: 421px) and (max-width: 560px) and (max-height: 820px) {
  .hero-grid {
    padding-top: 6px;
  }

  .hero-brand {
    gap: 10px;
    max-width: 360px;
  }

  .hero-brand img {
    width: clamp(50px, 11vw, 62px);
  }

  .hero-brand strong {
    font-size: clamp(1.04rem, 3.9vw, 1.36rem);
  }

  .hero-brand span {
    font-size: clamp(0.38rem, 1.35vw, 0.48rem);
  }

  .hero .eyebrow {
    min-height: 28px;
    margin-top: 4px;
    font-size: 0.62rem;
  }

  .hero-portrait {
    width: min(124vw, 520px);
    height: clamp(405px, 52svh, 430px);
    margin: -4px auto -58px;
  }

  .hero h1 {
    margin-top: -2px;
    font-size: clamp(2.42rem, 7.2vw, 3rem);
  }

  .hero-subtitle {
    margin-top: 5px;
    padding: 3px 8px 5px;
    font-size: clamp(1.48rem, 5.1vw, 1.72rem);
  }

  .hero-description {
    margin-top: 5px;
    font-size: 0.84rem;
    line-height: 1.24;
  }

  .hero-actions {
    margin-top: 7px;
  }

  .hero .button-primary {
    min-height: 56px;
    font-size: 0.74rem;
  }
}

@media (min-width: 421px) and (max-width: 560px) and (min-height: 821px) and (max-height: 880px) {
  .hero-portrait {
    margin-bottom: -64px;
  }
}

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

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