:root {
  --black: #050608;
  --ink: #111318;
  --muted: #5b6270;
  --faint: #8e95a3;
  --line: #e7e9ee;
  --line-dark: rgba(255, 255, 255, 0.13);
  --paper: #fbfbfa;
  --paper-soft: #f3f4f6;
  --blue: #236bff;
  --blue-soft: #dfe8ff;
  --max: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 220ms;
  --dur-slow: 560ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 34%, #ffffff 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(231, 233, 238, 0.74);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--dur) var(--ease-soft), background var(--dur) var(--ease-soft),
    border-color var(--dur) var(--ease-soft);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(231, 233, 238, 0.95);
  box-shadow: 0 10px 30px -24px rgba(5, 6, 8, 0.5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black);
  color: white;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.site-nav a {
  transition: color 160ms ease;
}

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

.nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

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

.nav-toggle.is-open span {
  background: transparent;
}

.nav-toggle.is-open span::before {
  transform: translateY(2px) rotate(45deg);
}

.nav-toggle.is-open span::after {
  transform: translateY(0) rotate(-45deg);
}

.hero,
.profile-hero,
.page-hero,
.section,
.site-footer {
  padding-inline: max(22px, calc((100vw - var(--max)) / 2));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 58px;
  padding-bottom: 44px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11.6ch;
  margin-bottom: 22px;
  font-size: clamp(46px, 7.2vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-lead,
.page-hero p,
.profile-copy p,
.brand-cta p,
.form-layout > div > p,
.copy-stack p {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 12px;
}

.en-note {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--faint);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--dur) var(--ease-out), background var(--dur) var(--ease-soft),
    border-color var(--dur) var(--ease-soft), box-shadow var(--dur) var(--ease-out);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -20px rgba(5, 6, 8, 0.5);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

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

/* Subtle light sweep across the primary button on hover */
.button-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-180%) skewX(-18deg);
  pointer-events: none;
}

.button-primary:hover::after {
  transform: translateX(320%) skewX(-18deg);
  transition: transform 720ms var(--ease-out);
}

.button-secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.hero-gallery,
.profile-gallery {
  position: relative;
  min-height: 640px;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  grid-template-rows: 1fr 0.72fr;
  gap: 14px;
}

.hero-shot,
.profile-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(5, 6, 8, 0.08);
  border-radius: 10px;
  background: #e9ebef;
  box-shadow: 0 34px 90px -64px rgba(5, 6, 8, 0.58);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.hero-shot:hover,
.profile-frame:hover,
.context-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 40px 100px -58px rgba(5, 6, 8, 0.62);
}

.hero-shot img,
.profile-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot-main {
  grid-row: 1 / span 2;
}

.hero-shot-beauty {
  min-height: 310px;
}

.hero-shot-life {
  min-height: 250px;
}

.hero-shot figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  background: rgba(5, 6, 8, 0.68);
  color: white;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.hero-shot-main figcaption {
  display: grid;
  gap: 2px;
  min-width: 150px;
}

.hero-shot-main figcaption span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 600;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 max(22px, calc((100vw - var(--max)) / 2)) 44px;
}

.signal-strip div {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
  font-weight: 700;
}

.signal-strip div:not(:last-child)::after {
  position: absolute;
  top: -4px;
  right: 18px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  content: "";
  transform: rotate(45deg);
}

.section {
  padding-top: clamp(72px, 9vw, 126px);
  padding-bottom: clamp(72px, 9vw, 126px);
}

.section-compact {
  padding-top: clamp(56px, 7vw, 96px);
}

.section-muted {
  background: linear-gradient(180deg, #f4f5f7 0%, #f8f9fb 100%);
}

.section-dark {
  background: var(--black);
  color: white;
}

.section-dark .eyebrow,
.section-dark .label {
  color: #8eb1ff;
}

.section-dark p,
.section-dark .mini-card p,
.section-dark .steps p {
  color: rgba(255, 255, 255, 0.67);
}

.section-head {
  display: grid;
  gap: 0;
  max-width: 820px;
  margin-bottom: 42px;
}

.section-head .en-note {
  margin: 16px 0 0;
}

.card-grid {
  display: grid;
  gap: 14px;
}

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

.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.card,
.mini-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.card {
  position: relative;
  min-height: 226px;
  padding: 28px;
  box-shadow: 0 20px 70px -62px rgba(5, 6, 8, 0.48);
}

.card p,
.mini-card p {
  color: var(--muted);
}

.card-index {
  display: block;
  margin-bottom: 68px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.mini-card {
  min-height: 166px;
  padding: 22px;
}

.section-dark .mini-card {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.045);
}

.talent-panel {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(0, 0.9fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 36px 100px -76px rgba(5, 6, 8, 0.5);
}

.talent-panel-media {
  min-height: 560px;
}

.talent-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.talent-panel-copy {
  align-self: center;
  padding: clamp(30px, 6vw, 68px);
}

.talent-panel-stack {
  position: relative;
  display: grid;
  align-items: stretch;
  padding: 16px;
  background: #090a0d;
}

.talent-panel-stack img {
  border-radius: 8px;
}

.talent-panel-stack .stack-main {
  height: 100%;
  min-height: 520px;
}

.talent-panel-stack .stack-small {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: min(42%, 260px);
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 30px 70px -36px rgba(5, 6, 8, 0.7);
}

.talent-panel-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.06em;
}

.badges,
.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badges {
  margin: 24px 0 28px;
}

.badges span,
.deliverables span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.system-grid,
.package-grid {
  display: grid;
  gap: 14px;
}

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

.system-grid article,
.package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 70px -62px rgba(5, 6, 8, 0.48);
}

.system-grid article {
  min-height: 230px;
  padding: 24px;
}

.system-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.system-grid p,
.package-card p,
.package-card li {
  color: var(--muted);
}

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

.package-card {
  display: grid;
  align-content: start;
  min-height: 360px;
  padding: 28px;
}

.package-card h3 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.05em;
}

.package-card.featured {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

.package-card.featured .label {
  color: #8eb1ff;
}

.package-card.featured p,
.package-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 600;
}

.package-card li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "•";
}

.package-card.featured li::before {
  color: #8eb1ff;
}

.package-note {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.context-card {
  position: relative;
  min-height: 300px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #111318;
  padding: 0;
  color: white;
  text-align: left;
  box-shadow: 0 24px 80px -60px rgba(5, 6, 8, 0.55);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.context-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.context-card:hover img {
  transform: scale(1.035);
}

.context-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(to top, rgba(5, 6, 8, 0.82), transparent);
  content: "";
}

.context-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  font-size: 15px;
  font-weight: 800;
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.modal-layer.is-open {
  opacity: 1;
  pointer-events: auto;
}

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

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: min(92vh, 860px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 40px 120px -50px rgba(5, 6, 8, 0.7);
  transform: translateY(14px) scale(0.98);
  transition: transform 220ms ease;
}

.modal-layer.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.gallery-modal {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.gallery-modal img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.gallery-modal > div {
  align-self: center;
  padding: clamp(28px, 5vw, 54px);
}

.gallery-modal .button {
  margin-top: 14px;
}

.inquiry-modal {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1fr);
  gap: 20px;
  padding: clamp(22px, 4vw, 36px);
}

.inquiry-modal > div {
  align-self: start;
  padding-top: 12px;
}

.inquiry-modal .form-card {
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.steps article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.steps span {
  display: block;
  margin-bottom: 68px;
  color: #8eb1ff;
  font-weight: 800;
}

.brand-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 244, 255, 0.86)),
    #ffffff;
}

.brand-cta div {
  max-width: 760px;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding-top: 82px;
  padding-bottom: 82px;
}

.profile-copy h1,
.page-hero h1,
.contact-section h1 {
  max-width: 14ch;
}

.profile-gallery {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-template-rows: 1fr 0.74fr;
  gap: 14px;
  min-height: 650px;
}

.profile-frame-main {
  grid-row: 1 / span 2;
}

.profile-frame.wide {
  min-height: 260px;
}

.split,
.form-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #151821;
}

.portfolio-card.large {
  grid-row: span 2;
  min-height: 734px;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(5, 6, 8, 0.82), transparent);
  content: "";
}

.portfolio-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 22px;
}

.portfolio-card figcaption span {
  display: block;
  color: #8eb1ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-card figcaption strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.deliverables {
  max-width: 820px;
}

.form-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.form-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
}

.form-card textarea {
  resize: vertical;
}

.form-card .button {
  width: 100%;
  margin-top: 4px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.page-hero {
  display: grid;
  align-content: center;
  min-height: 62vh;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 28px;
}

.contact-section {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 44px;
  padding-bottom: 44px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: start;
  justify-content: end;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero,
  .profile-hero,
  .split,
  .form-layout,
  .talent-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-gallery,
  .profile-gallery {
    max-width: 560px;
    min-height: 720px;
  }

  .card-grid.three,
  .steps,
  .system-grid,
  .package-grid,
  .context-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.five {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .portfolio-card.large {
    min-height: 480px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 69px 12px auto;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 24px 64px -44px rgba(5, 6, 8, 0.45);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .profile-hero,
  .page-hero,
  .section,
  .site-footer {
    padding-inline: 18px;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 32px;
  }

  h1 {
    font-size: clamp(40px, 13.6vw, 58px);
    line-height: 0.97;
  }

  h2 {
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1.05;
  }

  .hero-lead,
  .page-hero p,
  .profile-copy p,
  .brand-cta p,
  .form-layout > div > p,
  .copy-stack p {
    font-size: 16px;
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 18px 34px;
  }

  .signal-strip div {
    padding: 12px 0;
  }

  .signal-strip div:not(:last-child)::after {
    display: none;
  }

  .card-grid.three,
  .card-grid.five,
  .steps,
  .system-grid,
  .package-grid,
  .context-grid,
  .gallery-modal,
  .inquiry-modal {
    grid-template-columns: 1fr;
  }

  .card,
  .mini-card,
  .steps article,
  .system-grid article,
  .package-card {
    min-height: auto;
  }

  .card-index,
  .steps span,
  .system-grid span {
    margin-bottom: 28px;
  }

  .talent-panel-media {
    min-height: 420px;
  }

  .hero-gallery,
  .profile-gallery {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .hero-shot-main,
  .profile-frame-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .hero-shot-beauty,
  .hero-shot-life,
  .profile-frame,
  .profile-frame.wide {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .talent-panel-stack .stack-main {
    min-height: 390px;
  }

  .talent-panel-stack .stack-small {
    right: 24px;
    bottom: 24px;
    width: 44%;
    height: 150px;
  }

  .portfolio-card,
  .portfolio-card.large {
    min-height: 380px;
  }

  .brand-cta,
  .site-footer {
    display: grid;
  }

  .brand-cta {
    padding: 24px;
  }

  .context-card {
    min-height: 240px;
  }

  .modal-layer {
    padding: 10px;
    align-items: end;
  }

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

  .gallery-modal img {
    min-height: 320px;
    max-height: 50vh;
  }

  .gallery-modal > div {
    padding: 24px;
  }

  .inquiry-modal {
    gap: 14px;
    padding: 24px;
  }

  .page-hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .site-footer nav {
    justify-content: start;
  }
}

/* === Floating WhatsApp button === */
.wa-float {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px 12px 13px;
  border-radius: 999px;
  background: #1faf54;
  color: white;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 18px 40px -18px rgba(31, 175, 84, 0.85);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -20px rgba(31, 175, 84, 0.9);
}

.wa-float svg {
  width: 22px;
  height: 22px;
  flex: none;
}

.wa-float .wa-label {
  white-space: nowrap;
}

@media (max-width: 560px) {
  .wa-float {
    padding: 13px;
  }

  .wa-float .wa-label {
    display: none;
  }
}

/* === FAQ (native details/summary) === */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: transform 200ms ease;
}

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

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
}

/* === AI transparency note === */
.disclosure {
  display: grid;
  gap: 12px;
  max-width: 880px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.disclosure h3 {
  margin: 0;
}

.disclosure p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section-dark .faq-item,
.section-dark .disclosure {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.045);
}

.section-dark .faq-item p,
.section-dark .disclosure p {
  color: rgba(255, 255, 255, 0.67);
}

/* =========================================================
   Micro-polish layer — subtle motion, hover, decorative
   ========================================================= */

/* ---- Scroll progress bar (injected by main.js) ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 30;
  background: linear-gradient(90deg, var(--blue), #5a8bff);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* ---- Staggered child reveal (gated by JS-added [data-reveal]) ---- */
[data-reveal] :is(.card-grid, .context-grid, .package-grid, .system-grid, .steps, .portfolio-grid, .deliverables) > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

[data-reveal].is-visible :is(.card-grid, .context-grid, .package-grid, .system-grid, .steps, .portfolio-grid, .deliverables) > * {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible :is(.card-grid, .context-grid, .package-grid, .system-grid, .steps, .portfolio-grid, .deliverables) > *:nth-child(1) { transition-delay: 30ms; }
[data-reveal].is-visible :is(.card-grid, .context-grid, .package-grid, .system-grid, .steps, .portfolio-grid, .deliverables) > *:nth-child(2) { transition-delay: 85ms; }
[data-reveal].is-visible :is(.card-grid, .context-grid, .package-grid, .system-grid, .steps, .portfolio-grid, .deliverables) > *:nth-child(3) { transition-delay: 140ms; }
[data-reveal].is-visible :is(.card-grid, .context-grid, .package-grid, .system-grid, .steps, .portfolio-grid, .deliverables) > *:nth-child(4) { transition-delay: 195ms; }
[data-reveal].is-visible :is(.card-grid, .context-grid, .package-grid, .system-grid, .steps, .portfolio-grid, .deliverables) > *:nth-child(5) { transition-delay: 250ms; }
[data-reveal].is-visible :is(.card-grid, .context-grid, .package-grid, .system-grid, .steps, .portfolio-grid, .deliverables) > *:nth-child(6) { transition-delay: 305ms; }
[data-reveal].is-visible :is(.card-grid, .context-grid, .package-grid, .system-grid, .steps, .portfolio-grid, .deliverables) > *:nth-child(n + 7) { transition-delay: 360ms; }

/* ---- Image fade-in (class added by main.js) ---- */
.img-reveal {
  opacity: 0;
}

.img-reveal.is-loaded {
  opacity: 1;
  transition: opacity 600ms var(--ease-out);
}

/* ---- Hover micro-interactions on content cards ---- */
.card,
.mini-card,
.system-grid article,
.package-card,
.faq-item {
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-soft), background var(--dur) var(--ease-soft);
}

.card:hover,
.mini-card:hover,
.system-grid article:hover,
.package-card:not(.featured):hover {
  transform: translateY(-3px);
  border-color: var(--blue-soft);
  box-shadow: 0 26px 60px -48px rgba(35, 107, 255, 0.5);
}

.package-card.featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 34px 80px -56px rgba(5, 6, 8, 0.7);
}

.section-dark .mini-card:hover,
.steps article:hover {
  transform: translateY(-3px);
  border-color: rgba(142, 177, 255, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.badges span,
.deliverables span {
  transition: border-color var(--dur) var(--ease-soft), color var(--dur) var(--ease-soft),
    transform var(--dur) var(--ease-out);
}

.badges span:hover,
.deliverables span:hover {
  border-color: var(--blue-soft);
  color: var(--ink);
  transform: translateY(-1px);
}

/* ---- FAQ: hover affordance + smooth content reveal ---- */
.faq-item summary {
  transition: background var(--dur) var(--ease-soft);
}

.faq-item summary:hover {
  background: rgba(35, 107, 255, 0.04);
}

.faq-item summary::after {
  transition: transform var(--dur) var(--ease-out);
}

.faq-item[open] p {
  animation: faqIn 320ms var(--ease-out);
}

@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ---- Decorative: soft hero glow + film grain ---- */
.hero,
.profile-hero {
  position: relative;
  isolation: isolate;
}

.hero::before,
.profile-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -6%;
  width: 52%;
  height: 70%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(35, 107, 255, 0.16), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Floating WhatsApp: smoother + iOS safe-area ---- */
.wa-float {
  bottom: max(clamp(16px, 4vw, 28px), env(safe-area-inset-bottom, 0px));
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

/* ---- Mobile sticky action bar ---- */
.mobile-bar {
  display: none;
}

@media (max-width: 720px) {
  .wa-float {
    display: none;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .mobile-bar .mb-cta {
    flex: 1;
  }

  .mobile-bar .mb-wa {
    display: grid;
    place-items: center;
    width: 48px;
    flex: none;
    border-radius: 8px;
    background: #1faf54;
    color: white;
  }

  .mobile-bar .mb-wa svg {
    width: 22px;
    height: 22px;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] :is(.card-grid, .context-grid, .package-grid, .system-grid, .steps, .portfolio-grid, .deliverables) > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .img-reveal {
    opacity: 1 !important;
  }

  .button-primary::after,
  .scroll-progress {
    display: none !important;
  }

  .faq-item[open] p {
    animation: none !important;
  }
}
