:root {
  --bg: #f6fbff;
  --bg-soft: rgba(252, 255, 230, 0.84);
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-border: rgba(41, 76, 109, 0.12);
  --text: #183048;
  --text-muted: rgba(24, 48, 72, 0.72);
  --accent: #7bb6e2;
  --accent-strong: #5da5d8;
  --olive: #cadf92;
  --highlight: #4a86b4;
  --peach: #f6d4ba;
  --coral: #ff8b7b;
  --gold-soft: #f4e8c9;
  --shadow: 0 30px 80px rgba(110, 153, 186, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 6.5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 76% 18%, rgba(246, 232, 201, 0.72), transparent 18%),
    radial-gradient(circle at 20% 14%, rgba(255, 139, 123, 0.14), transparent 16%),
    radial-gradient(circle at top left, rgba(179, 222, 250, 0.96), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(252, 255, 230, 0.95), transparent 24%),
    linear-gradient(135deg, #b3defa 0%, #d8eef9 38%, #fcffe6 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  isolation: isolate;
  animation: page-fade-in 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes page-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.background-layers {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.background-layers__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.48;
}

.background-layers__glow--one {
  width: 34rem;
  height: 34rem;
  top: -8rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(179, 222, 250, 0.86), transparent 68%);
}

.background-layers__glow--two {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  top: 22vh;
  background: radial-gradient(circle, rgba(252, 255, 230, 0.88), transparent 70%);
}

.background-layers__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 134, 180, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 134, 180, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 90%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(24px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 -1rem;
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.92), rgba(246, 251, 255, 0.58));
  border-bottom: 1px solid rgba(74, 134, 180, 0.1);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 4.25rem;
  flex: 0 0 auto;
}

.brand__mark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand__text {
  display: grid;
  gap: 0.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.brand__text strong {
  color: var(--text);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--text-muted);
  transition: color 180ms ease;
}

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

.site-nav__cta {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(74, 134, 180, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(74, 134, 180, 0.14);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.2rem auto;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 5rem 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 4.5rem);
  padding-top: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--highlight);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(74, 134, 180, 0), rgba(74, 134, 180, 0.82));
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 {
  color: var(--text);
}

.hero-heading {
  display: block;
}

.hero-heading--dark {
  color: var(--text);
}

.hero-heading--accent {
  color: #ff6666;
}

.hero__lede,
.section-heading p,
.contact-copy p,
.panel p,
.service-card p,
.timeline-item p,
.faq-item p,
.step-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__feature {
  display: inline-flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1.6rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(74, 134, 180, 0.12);
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at top right, rgba(246, 212, 186, 0.35), transparent 52%);
  box-shadow: 0 18px 40px rgba(110, 153, 186, 0.08);
  backdrop-filter: blur(14px);
}

.hero__feature-label {
  color: var(--highlight);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__feature p {
  margin: 0;
  max-width: 25rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 10rem;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 134, 180, 0.14);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, rgba(123, 182, 226, 0.9), rgba(246, 212, 186, 0.92), rgba(252, 255, 230, 0.96));
  color: #193248;
  border-color: transparent;
  font-weight: 800;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.5);
}

.button--whatsapp {
  background:
    linear-gradient(135deg, #6ff2a7, #1fbf67 52%, #0f8f4a 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 52%);
  color: #08311d;
  border-color: rgba(15, 143, 74, 0.34);
  font-weight: 700;
}

.button--full {
  width: 100%;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero__stats article,
.panel,
.service-card,
.timeline-item,
.faq-item,
.step-card,
.hero-card,
.contact-card,
.model-card {
  position: relative;
  border: 1px solid var(--surface-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.45)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero__stats article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.hero__stats strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.8rem;
  color: var(--highlight);
}

.hero__stats span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero__visual {
  position: relative;
  min-height: 40rem;
}

.hero-product {
  position: relative;
  min-height: 100%;
  padding: 0.5rem 0 0.5rem 1rem;
  overflow: hidden;
}

.hero-product__glow {
  position: relative;
  background:
    radial-gradient(circle at 62% 26%, rgba(255, 247, 238, 0.98), transparent 16%),
    radial-gradient(circle at 62% 48%, rgba(245, 225, 200, 0.92), transparent 22%),
    radial-gradient(circle at 54% 68%, rgba(240, 214, 187, 0.58), transparent 24%),
    radial-gradient(circle at 30% 46%, rgba(179, 222, 250, 0.62), transparent 36%),
    radial-gradient(circle at 82% 64%, rgba(252, 255, 230, 0.92), transparent 24%),
    radial-gradient(circle at 90% 24%, rgba(255, 139, 123, 0.16), transparent 14%);
  position: absolute;
  inset: 6% 2% 8% 8%;
  filter: blur(34px);
  opacity: 0.98;
}

.hero-product__mist {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(216, 238, 249, 0.96) 0%, rgba(216, 238, 249, 0.72) 30%, rgba(244, 229, 210, 0.38) 52%, rgba(244, 229, 210, 0) 66%),
    radial-gradient(circle at 74% 24%, rgba(255, 250, 243, 0.98), transparent 18%),
    radial-gradient(circle at 69% 54%, rgba(246, 230, 211, 0.72), transparent 22%),
    radial-gradient(circle at 84% 76%, rgba(255, 139, 123, 0.12), transparent 16%);
  z-index: 1;
}

.hero-product__image-wrap::before,
.panel::before,
.service-card::before,
.timeline-item::before,
.step-card::before,
.contact-card::before,
.model-card::before,
.model-modal__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent 45%);
  pointer-events: none;
}

.hero-product__image-wrap {
  position: relative;
  z-index: 2;
  width: min(35rem, 100%);
  height: clamp(30rem, 44vw, 40rem);
  margin-left: auto;
  overflow: hidden;
}

.hero-product__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.01);
  mask-image:
    linear-gradient(180deg, transparent 0%, black 14%, black 84%, transparent 100%),
    linear-gradient(90deg, transparent 0%, black 18%, black 88%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, black 14%, black 84%, transparent 100%),
    linear-gradient(90deg, transparent 0%, black 18%, black 88%, transparent 100%);
}

.step-card span,
.timeline-item span,
.panel__index {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--highlight);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel h3,
.service-card h3,
.timeline-item h3,
.step-card h3 {
  display: block;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.72;
}

.hero-orb--one {
  width: 18rem;
  height: 18rem;
  right: 4%;
  top: 12%;
  background: radial-gradient(circle, rgba(246, 212, 186, 0.54), transparent 70%);
}

.hero-orb--two {
  width: 22rem;
  height: 22rem;
  left: 28%;
  bottom: 2%;
  background: radial-gradient(circle, rgba(179, 222, 250, 0.58), transparent 74%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 4% 46%;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 139, 123, 0.14), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(74, 134, 180, 0.08);
  border-bottom: 1px solid rgba(74, 134, 180, 0.08);
  background: rgba(255, 255, 255, 0.32);
}

.marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1rem 0;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-size: 0.78rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section--grid,
.services-grid,
.timeline,
.models-grid {
  display: grid;
  gap: 1.4rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
}

.intro-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.panel,
.service-card,
.timeline-item,
.step-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.process-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.process-band__sticky {
  position: sticky;
  top: 6rem;
}

.process-band__steps {
  display: grid;
  gap: 1.3rem;
}

.step-card {
  min-height: 13rem;
}

.models-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.model-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  appearance: none;
  outline: none;
}

.model-card:hover,
.model-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 34px 86px rgba(110, 153, 186, 0.22);
  border-color: rgba(74, 134, 180, 0.22);
}

.model-card__media {
  position: relative;
  display: block;
  width: 100%;
  min-width: 100%;
  overflow: hidden;
  height: clamp(20rem, 32vw, 22rem);
  background: #d8ebf7;
}

.model-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(179, 222, 250, 0.04), rgba(24, 48, 72, 0.18));
}

.model-card__media img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 700ms ease;
}

.model-card:hover .model-card__media img {
  transform: scale(1.04);
}

.model-card__body {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
}

.model-card--empty {
  padding: 1.4rem;
}

.model-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  color: var(--text);
}

.model-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--highlight);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-card__summary {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.model-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff6666;
  font-weight: 700;
}

.model-card__cta::after {
  content: "->";
  font-weight: 800;
}

body.modal-open {
  overflow: hidden;
}

.model-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
  pointer-events: none;
}

.model-modal[hidden] {
  display: none;
}

.model-modal.is-open {
  pointer-events: auto;
}

.model-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 48, 72, 0.34);
  opacity: 0;
  transition: opacity 280ms ease;
  backdrop-filter: blur(10px);
}

.model-modal__panel {
  position: relative;
  width: min(1100px, 100%);
  max-height: min(90vh, 980px);
  overflow: auto;
  padding: 1.2rem;
  border: 1px solid rgba(74, 134, 180, 0.14);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 40px 110px rgba(55, 94, 124, 0.22);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
  backdrop-filter: blur(24px);
}

.model-modal.is-open .model-modal__backdrop {
  opacity: 1;
}

.model-modal.is-open .model-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.model-modal__close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: inline-flex;
  justify-self: end;
  margin-left: auto;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(74, 134, 180, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.model-modal__content {
  display: grid;
  gap: 1.5rem;
}

.model-modal__header {
  max-width: 48rem;
}

.model-modal__header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.model-modal__header p,
.model-modal__meta {
  color: var(--text-muted);
  line-height: 1.75;
}

.model-modal__meta {
  font-size: 0.94rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
}

.model-modal__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.model-modal__shot {
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.66);
}

.model-modal__shot--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.model-modal__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

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

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

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

.faq-item {
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.35rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding-right: 2rem;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.15rem;
  font-size: 1.5rem;
  color: var(--highlight);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
  color: var(--highlight);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(74, 134, 180, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(140, 167, 109, 0.5);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  min-height: 1.5rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.form-note.is-error {
  color: #c94d4d;
}

.form-note.is-success {
  color: #4f7d36;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 30;
  background: rgba(74, 134, 180, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--olive), var(--accent-strong));
}

.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
  will-change: opacity, transform, filter, clip-path;
}

.reveal.is-pending {
  opacity: 0;
  transform: translate3d(-14px, 0, 0) scale(1);
  filter: blur(1px);
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 1120ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    transform 1120ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    filter 1120ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
    clip-path 1120ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

.reveal.is-pending[data-reveal-dir="up"] {
  transform: translate3d(14px, 0, 0) scale(1);
  clip-path: inset(0 0 0 100%);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}

.reveal-text .reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(-0.55em, 0, 0);
  filter: blur(1px);
  transition:
    opacity 980ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 980ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--word-index, 0) * 26ms);
  will-change: opacity, transform, filter;
}

.reveal.is-pending[data-reveal-dir="up"] .reveal-text .reveal-word,
.reveal-text.is-pending[data-reveal-dir="up"] .reveal-word {
  transform: translate3d(0.55em, 0, 0);
}

.reveal.is-visible .reveal-text .reveal-word,
.reveal-text.is-visible .reveal-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

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

  .marquee__track,
  .reveal,
  .hero-product__image-wrap,
  .model-card__media img,
  .model-modal__panel,
  .reveal-word {
    animation: none !important;
    transition: none !important;
    filter: none !important;
    clip-path: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1080px) {
  .hero,
  .process-band,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .intro-panels,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__visual {
    min-height: auto;
  }

  .process-band__sticky {
    position: static;
  }

  .models-grid,
  .model-modal__gallery {
    grid-template-columns: 1fr;
  }

  .model-modal__shot--feature {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 0.9rem 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(74, 134, 180, 0.12);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 200ms ease,
      transform 200ms ease;
  }

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

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero__stats,
  .services-grid,
  .intro-panels,
  .timeline,
  .models-grid,
  .model-modal__gallery {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero-product {
    padding: 0;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-product__image-wrap {
    width: 100%;
    height: clamp(26rem, 78vw, 34rem);
    margin: 0;
  }

  .hero-product__glow {
    inset: 8% 0 8% 6%;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 1.2rem, 100vw - 1.2rem);
  }

  .hero h1,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .site-header::before {
    inset-inline: -0.6rem;
  }

  .hero-product__image-wrap,
  .panel,
  .service-card,
  .timeline-item,
  .step-card,
  .faq-item,
  .contact-card,
  .model-card {
    border-radius: 22px;
  }

  .hero__stats article,
  .contact-card {
    padding: 1rem;
  }

  .model-card__body,
  .model-modal__panel {
    padding: 1rem;
  }

  .hero__feature {
    width: 100%;
  }

  .brand__mark {
    width: 3.6rem;
  }
}
