:root {
  --bg: #fbf5f0;
  --bg-soft: #f4ece6;
  --surface: rgba(255, 255, 255, 0.62);
  --surface-strong: rgba(255, 255, 255, 0.8);
  --text: #2f2730;
  --muted: #6d6160;
  --accent: #985523;
  --accent-deep: #6c3b19;
  --rose: #efdbd0;
  --peach: #f6e7da;
  --sky: #dde6f5;
  --gold: #d9b56c;
  --shadow: 0 30px 80px rgba(91, 63, 39, 0.14);
  --radius-xl: 32px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(221, 230, 245, 0.9), transparent 20%),
    linear-gradient(180deg, #faf6f1 0%, #f8efe8 55%, #f9f4ef 100%);
  overflow-x: hidden;
}

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

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

.page-shell {
  position: relative;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.page-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: calc(100svh + 40px);
  background-image: url("logo%20rose.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.25;
  transform: translateX(-50%) scale(1.18);
  transform-origin: top center;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 84%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 84%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.page-shell::after {
  content: none;
}

.site-header,
.page-shell main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(251, 245, 240, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(88, 61, 39, 0.08);
}

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

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  background: transparent;
  mix-blend-mode: multiply;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

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

.brand-copy small,
.menu-links a {
  color: #111111;
}

.brand-copy small {
  max-width: 320px;
  line-height: 1.25;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: inline-grid;
  gap: 5px;
  place-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(109, 76, 57, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  color: #111111;
  cursor: pointer;
  box-shadow: none;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-links {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 40;
  display: grid;
  gap: 6px;
  min-width: 230px;
  max-width: calc(100vw - 32px);
  padding: 12px;
  border: 1px solid rgba(109, 76, 57, 0.12);
  border-radius: 22px;
  background: rgba(251, 245, 240, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(88, 61, 39, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-nav.is-open .menu-links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
}

.menu-links a:hover,
.menu-links a:focus-visible {
  background: rgba(255, 255, 255, 0.62);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #b46c3f);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 18px 32px rgba(152, 85, 35, 0.22);
  text-align: center;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 38px rgba(152, 85, 35, 0.26);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
  border-color: rgba(109, 76, 57, 0.14);
  box-shadow: none;
}

.section {
  position: relative;
  padding: 56px 0;
}

.hero {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: calc(100svh - 120px);
  padding: clamp(38px, 7vh, 70px) max(16px, calc((100vw - var(--max-width)) / 2)) clamp(52px, 8vh, 82px);
  overflow: hidden;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 940px);
  padding: 0;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #111111;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.hero h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #111111;
}

.hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(4.2rem, 8.4vw, 7.6rem);
  line-height: 0.9;
}

.hero h1 span {
  display: block;
  margin: 22px auto 0;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.22;
  color: #111111;
}

.hero-subline {
  max-width: 780px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  word-spacing: 0;
  white-space: normal;
}

.accent-script {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  color: #111111;
}

.title-accent {
  font-weight: 700;
  color: #111111;
}

.tone-peach {
  font-style: normal;
  color: #111111;
}

.tone-sky {
  font-style: normal;
  color: #111111;
}

.tone-gold {
  font-style: normal;
  color: #111111;
}

.tone-accent {
  color: #111111;
  font-weight: 800;
}

.hero-text,
.section-heading p,
.story-panel p,
.service-card p,
.approach-card p,
.attendance-card p,
.future-card p,
.testimonial-content p,
.milestone-card p,
.cta-panel p,
.site-footer p {
  color: #111111;
  line-height: 1.7;
  font-size: 1.02rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.hero-text {
  max-width: 68ch;
  margin: 24px auto 0;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.quote-banner,
.footer-quote {
  max-width: 62ch;
  margin: 38px auto 22px;
  color: rgba(17, 17, 17, 0.7);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.35;
  text-align: center;
}

.quote-banner span,
.footer-quote span {
  display: block;
  margin-top: 10px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.hero-actions .button {
  min-width: 220px;
  background: linear-gradient(135deg, var(--accent), #b46c3f);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 32px rgba(152, 85, 35, 0.22);
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  margin: 22px auto 0;
  list-style: none;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(109, 76, 57, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: #111111;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.pill {
  padding: 10px 14px;
  border: 1px solid rgba(109, 76, 57, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #111111;
  font-size: 0.9rem;
  font-weight: 700;
}

.portrait-aura {
  position: absolute;
  inset: auto -10% -14% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152, 85, 35, 0.16), transparent 70%);
}

.portrait {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stats-strip,
.glass-card,
.service-card,
.approach-card,
.future-card,
.cta-panel,
.story-panel,
.story-portrait-card,
.milestone-card {
  border: 1px solid rgba(109, 76, 57, 0.1);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stats-strip {
  padding: 26px;
  border-radius: 30px;
}

.stats-strip span {
  display: block;
  margin-bottom: 12px;
  color: #111111;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.stats-strip strong {
  font-size: 1.15rem;
  line-height: 1.35;
  color: #111111;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.section-heading p {
  margin: 20px 0 0;
  max-width: 62ch;
}

.manifesto-grid,
.service-grid,
.approach-grid,
.other-services-grid,
.attendance-grid {
  display: grid;
  gap: 20px;
}

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

.glass-card,
.approach-card,
.future-card,
.story-panel,
.cta-panel,
.story-portrait-card,
.milestone-card {
  border-radius: var(--radius-xl);
}

.glass-card,
.approach-card,
.attendance-card,
.future-card {
  padding: 26px;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 22px;
  align-items: start;
}

.story-visual {
  position: sticky;
  top: 110px;
}

.story-portrait-card {
  position: relative;
  padding: 18px;
}

.story-portrait {
  min-height: 540px;
  max-height: 720px;
}

.story-panel {
  padding: 28px;
}

.story-panel p:first-child {
  margin-top: 0;
}

.story-emphasis {
  font-size: 1.15rem;
  color: #111111;
  font-weight: 700;
}

.story-closing {
  font-size: 1.18rem;
  color: #111111;
  font-weight: 800;
}

.milestone-card strong,
.approach-card strong,
.future-card h3,
.service-card h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.story-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.milestone-card {
  padding: 24px;
}

.milestone-card p {
  margin: 8px 0 0;
  color: #111111;
  line-height: 1.65;
}

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

.service-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(152, 85, 35, 0.18), rgba(152, 85, 35, 0.78));
}

.service-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.service-topline span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(152, 85, 35, 0.08);
  color: #111111;
  font-weight: 800;
}

.service-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
  color: #111111;
}

.service-card li + li {
  margin-top: 10px;
}

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

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

.attendance-card,
.milestone-card {
  border: 1px solid rgba(109, 76, 57, 0.1);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.attendance-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(246, 236, 229, 0.95), rgba(239, 219, 208, 0.9));
  box-shadow: inset 0 0 0 1px rgba(152, 85, 35, 0.12);
}

.attendance-icon svg {
  width: 28px;
  height: 28px;
  fill: #6c3b19;
}

.attendance-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: #111111;
}

.luna-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(109, 76, 57, 0.1);
  border-radius: var(--radius-xl);
  background:
    url("nova%20logo%20luna%20.png") center / cover no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(246, 236, 229, 0.72));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.luna-panel::before {
  content: none;
}

.luna-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.luna-copy h2 {
  margin: 0;
  max-width: 780px;
  color: #111111;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.luna-subtitle {
  max-width: 52ch;
  margin: 18px 0 0;
  color: #111111;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.55;
}

.luna-text {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.luna-text p,
.luna-notice p {
  margin: 0;
  color: #111111;
  line-height: 1.7;
}

.luna-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(109, 76, 57, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
}

.luna-notice-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(152, 85, 35, 0.1);
  color: #6c3b19;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.luna-notice strong {
  display: block;
  margin-bottom: 8px;
  color: #111111;
}

.luna-notice p + p {
  margin-top: 8px;
}

.luna-button {
  margin-top: 26px;
}

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

.future-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
}

.future-card h3,
.future-card p,
.future-card .pill,
.future-card .button,
.future-actions {
  position: relative;
  z-index: 1;
}

.future-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 230, 245, 0.42), transparent 68%);
}

.future-card .button,
.future-actions {
  margin-top: auto;
}

.future-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.future-actions .button {
  flex: 1 1 180px;
}

.testimonials-shell {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
}

.testimonials-stack {
  position: relative;
  width: min(100%, 820px);
  min-height: 500px;
  margin: 0 auto;
  cursor: grab;
  user-select: none;
}

.testimonials-stack.is-dragging {
  cursor: grabbing;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 18px;
  width: min(100%, 720px);
  min-height: 460px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(109, 76, 57, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 236, 229, 0.76));
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, opacity 260ms ease;
}

.testimonial-card:hover {
  box-shadow: 0 36px 80px rgba(91, 63, 39, 0.18);
}

.testimonial-card.is-active {
  z-index: 5;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.testimonial-card.is-next {
  z-index: 4;
  opacity: 0.88;
  transform: translate3d(26px, 16px, 0) scale(0.97);
}

.testimonial-card.is-third {
  z-index: 3;
  opacity: 0.72;
  transform: translate3d(50px, 30px, 0) scale(0.94);
}

.testimonial-card.is-fourth {
  z-index: 2;
  opacity: 0.56;
  transform: translate3d(74px, 44px, 0) scale(0.91);
}

.testimonial-card:not(.is-active) .testimonial-content {
  opacity: 0;
  pointer-events: none;
}

.testimonial-content {
  display: grid;
  align-content: center;
}

.testimonial-content strong {
  display: block;
  margin-bottom: 14px;
  color: #111111;
  font-size: 1.08rem;
}

.testimonial-content p {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.75;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(251, 245, 240, 0.92);
  color: #6c3b19;
  box-shadow: 0 18px 40px rgba(91, 63, 39, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
}

.testimonial-arrow span {
  font-size: 2rem;
  line-height: 1;
}

.testimonial-arrow-left {
  left: 0;
}

.testimonial-arrow-right {
  right: 0;
}

.future-card .button {
  margin-top: 10px;
}

.cta-panel {
  position: relative;
  padding: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(239, 219, 208, 0.85), transparent 26%),
    radial-gradient(circle at 85% 25%, rgba(221, 230, 245, 0.8), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(247, 238, 231, 0.82));
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto 8% -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152, 85, 35, 0.1), transparent 70%);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 8px;
  color: #111111;
}

.footer-closing {
  max-width: 520px;
  text-align: right;
}

.footer-quote {
  margin-bottom: 0;
}

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

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 0.92;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(18, 140, 74, 0.32);
}

.floating-whatsapp-icon {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
}

.floating-whatsapp-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.launch-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 18px;
}

.launch-modal.is-open {
  display: grid;
}

.launch-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 23, 20, 0.34);
  backdrop-filter: blur(10px);
}

.launch-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100svh - 36px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(109, 76, 57, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 236, 229, 0.96));
  box-shadow: 0 36px 100px rgba(46, 31, 22, 0.24);
}

.launch-modal-card h2 {
  margin: 18px 0 12px;
  color: #111111;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.98;
}

.launch-modal-card p {
  margin: 0 0 22px;
  color: #111111;
  line-height: 1.65;
}

.launch-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #111111;
  font-size: 1.45rem;
  cursor: pointer;
}

.launch-form {
  display: grid;
  gap: 14px;
}

.launch-form label {
  display: grid;
  gap: 8px;
  color: #111111;
  font-weight: 700;
}

.launch-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(109, 76, 57, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: #111111;
  font: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

  .reveal,
  .button {
    transition: none;
    animation: none;
  }

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

}

@media (max-width: 1100px) {
  .manifesto-grid,
  .service-grid,
  .other-services-grid,
  .approach-grid,
  .story-milestones,
  .attendance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: calc(100svh - 130px);
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-visual {
    position: static;
    max-width: 430px;
  }

  .luna-panel::before {
    width: 86%;
    opacity: 0.18;
  }
}

@media (max-width: 800px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 14px;
  }

  .site-header,
  .stats-row,
  .manifesto-grid,
  .service-grid,
  .approach-grid,
  .other-services-grid,
  .attendance-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .story-layout,
  .story-milestones {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
    top: 8px;
    border-radius: 22px;
    padding: 12px;
    align-items: center;
    gap: 10px;
  }

  .site-nav {
    margin-left: auto;
    flex-shrink: 0;
  }

  .menu-links {
    position: fixed;
    top: 86px;
    left: 10px;
    right: 10px;
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .hero {
    min-height: auto;
    padding: 28px 12px 40px;
    margin-left: calc(50% - 50vw);
  }

  .hero-copy {
    padding: 0 4px;
    text-align: center;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 10vw, 4rem);
    line-height: 0.96;
  }

  .hero-subline {
    max-width: 100%;
    font-size: clamp(1rem, 3.8vw, 1.2rem);
    line-height: 1.34;
  }

  .hero-text {
    margin-top: 22px;
    font-size: 1rem;
  }

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

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

  .hero-highlights {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-highlights li {
    width: 100%;
    min-height: 40px;
  }

  .luna-panel {
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(251, 245, 240, 0.9), rgba(251, 245, 240, 0.78)),
      url("nova%20logo%20luna%20.png") center bottom / contain no-repeat,
      linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(246, 236, 229, 0.72));
  }

  .luna-panel::before {
    inset: auto -28% -8% auto;
    width: 110%;
    height: 56%;
    opacity: 0.12;
    background-position: center bottom;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 32%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 32%, rgba(0, 0, 0, 0) 100%);
  }

  .luna-notice {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 0;
  }

  .stats-strip,
  .glass-card,
  .service-card,
  .approach-card,
  .future-card,
  .story-panel,
  .story-portrait-card,
  .milestone-card,
  .attendance-card,
  .testimonial-card,
  .cta-panel {
    border-radius: 24px;
  }

  .testimonials-stack {
    min-height: 420px;
  }

  .testimonial-card {
    width: calc(100% - 32px);
    min-height: 360px;
    padding: 24px;
  }

  .testimonial-arrow {
    width: 46px;
    height: 46px;
  }

  .story-visual {
    max-width: 100%;
  }

  .story-portrait {
    min-height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .cta-panel {
    padding: 28px;
  }

  .site-footer,
  .footer-closing {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .launch-modal {
    padding: 12px;
  }

  .launch-modal-card {
    width: 100%;
    max-height: calc(100svh - 24px);
    padding: 24px 18px 20px;
    border-radius: 24px;
  }

  .launch-modal-card h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .future-actions {
    flex-direction: column;
  }

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

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp-icon svg {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
    padding-top: 10px;
  }

  .page-shell::before {
    height: 100svh;
    opacity: 0.18;
    transform: translateX(-50%) scale(1.32);
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    border-radius: 22px;
    padding: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

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

  .brand-copy small {
    display: none;
  }

  .site-nav {
    width: auto;
    justify-content: space-between;
    margin-left: auto;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-links {
    top: 72px;
    left: 8px;
    right: 8px;
    width: auto;
    padding: 10px;
  }

  .menu-links a {
    padding: 11px 12px;
    font-size: 0.94rem;
  }

  .nav-cta {
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .hero {
    padding: 22px 10px 34px;
  }

  .eyebrow {
    gap: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 24px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9.5vw, 3.1rem);
    line-height: 1;
  }

  .hero h1 span {
    margin-top: 16px;
    font-size: clamp(0.98rem, 4vw, 1.16rem);
  }

  .hero-text {
    line-height: 1.65;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .stats-strip,
  .glass-card,
  .service-card,
  .approach-card,
  .future-card,
  .story-panel,
  .story-portrait-card,
  .milestone-card,
  .attendance-card,
  .cta-panel {
    padding: 22px;
  }

  .stats-strip strong,
  .service-card p,
  .approach-card p,
  .attendance-card p,
  .future-card p,
  .story-panel p,
  .milestone-card p,
  .hero-text,
  .quote-banner,
  .footer-quote {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

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

  .service-card p,
  .approach-card p,
  .attendance-card p,
  .future-card p,
  .story-panel p,
  .milestone-card p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .section-heading h2,
  .cta-panel h2,
  .luna-copy h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
  }

  .luna-panel {
    background:
      linear-gradient(180deg, rgba(251, 245, 240, 0.95), rgba(251, 245, 240, 0.86)),
      url("nova%20logo%20luna%20.png") center bottom / contain no-repeat,
      linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(246, 236, 229, 0.72));
    padding-bottom: 28px;
  }

  .luna-subtitle {
    font-size: 1rem;
  }

  .luna-text p,
  .luna-notice p {
    line-height: 1.62;
  }

  .testimonials-shell {
    width: 100%;
  }

  .testimonials-stack {
    width: 100%;
    min-height: 430px;
  }

  .testimonial-card {
    width: calc(100% - 24px);
    min-height: 390px;
    padding: 22px;
  }

  .testimonial-card.is-next {
    transform: translate3d(10px, 12px, 0) scale(0.97);
  }

  .testimonial-card.is-third {
    transform: translate3d(18px, 24px, 0) scale(0.94);
  }

  .testimonial-card.is-fourth {
    transform: translate3d(24px, 36px, 0) scale(0.91);
  }

  .testimonial-content p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .testimonial-arrow {
    top: auto;
    bottom: -18px;
  }

  .launch-modal-card {
    padding: 20px 16px 18px;
  }

  .launch-form input {
    min-height: 48px;
  }

  .testimonial-arrow-left {
    left: calc(50% - 58px);
  }

  .testimonial-arrow-right {
    right: calc(50% - 58px);
  }

  .footer-brand {
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.4rem);
  }

  .testimonial-card {
    width: calc(100% - 14px);
    padding: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --shadow: 0 16px 42px rgba(91, 63, 39, 0.1);
    --radius-xl: 22px;
  }

  body {
    font-size: 15px;
  }

  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
    padding: 8px 0 32px;
  }

  .page-shell::before {
    opacity: 0.12;
    transform: translateX(-50%) scale(1.18);
  }

  .site-header {
    position: sticky;
    top: 6px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 18px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
    line-height: 1.1;
  }

  .brand-copy small {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
    margin: 0;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-links {
    position: fixed;
    top: 70px;
    left: 8px;
    right: 8px;
    width: auto;
    min-width: 0;
    max-height: calc(100svh - 90px);
    overflow: auto;
    padding: 10px;
    border-radius: 18px;
  }

  .menu-links a {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .nav-cta {
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .section {
    padding: 30px 0;
  }

  .hero {
    width: auto;
    margin-left: 0;
    padding: 22px 6px 30px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .hero h1 span,
  .hero-subline {
    font-size: clamp(0.98rem, 4.2vw, 1.15rem);
    line-height: 1.32;
  }

  .hero-text,
  .section-heading p,
  .story-panel p,
  .service-card p,
  .approach-card p,
  .attendance-card p,
  .future-card p,
  .testimonial-content p,
  .milestone-card p,
  .cta-panel p,
  .site-footer p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .cta-panel h2,
  .luna-copy h2 {
    font-size: clamp(1.75rem, 8.2vw, 2.35rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 20px;
  }

  .button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .hero-actions .button,
  .cta-actions .button,
  .future-card .button,
  .luna-button {
    width: 100%;
  }

  .stats-row,
  .manifesto-grid,
  .service-grid,
  .approach-grid,
  .other-services-grid,
  .attendance-grid,
  .story-milestones,
  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stats-strip,
  .glass-card,
  .service-card,
  .approach-card,
  .future-card,
  .story-panel,
  .story-portrait-card,
  .milestone-card,
  .attendance-card,
  .cta-panel,
  .luna-panel {
    padding: 18px;
    border-radius: 18px;
  }

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

  .story-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-visual {
    position: static;
    max-width: 100%;
  }

  .story-portrait {
    min-height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .luna-panel {
    background:
      linear-gradient(180deg, rgba(251, 245, 240, 0.96), rgba(251, 245, 240, 0.9)),
      url("nova%20logo%20luna%20.png") center bottom / contain no-repeat,
      linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(246, 236, 229, 0.72));
  }

  .luna-subtitle {
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .luna-text {
    gap: 10px;
    margin-top: 18px;
  }

  .luna-notice {
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding: 14px;
    border-radius: 16px;
  }

  .testimonials-shell {
    width: 100%;
  }

  .testimonials-stack {
    position: static;
    display: grid;
    gap: 14px;
    width: 100%;
    min-height: 0;
    cursor: default;
    user-select: auto;
  }

  .testimonial-card,
  .testimonial-card.is-active,
  .testimonial-card.is-next,
  .testimonial-card.is-third,
  .testimonial-card.is-fourth {
    position: static;
    width: 100%;
    min-height: 0;
    padding: 18px;
    opacity: 1;
    transform: none;
  }

  .testimonial-card:not(.is-active) .testimonial-content {
    opacity: 1;
    pointer-events: auto;
  }

  .testimonial-content {
    align-content: start;
  }

  .testimonial-content strong {
    margin-bottom: 10px;
    font-size: 0.98rem;
  }

  .testimonial-arrow {
    display: none;
  }

  .site-footer,
  .footer-closing {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-logo {
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 10px;
  }
}
