:root {
  --ink: #2d2924;
  --espresso: #32251d;
  --sand: #d9c4a0;
  --sand-light: #f4ead9;
  --cream: #fffaf1;
  --paper: #f9f2e6;
  --gold: #b58a42;
  --gold-light: #e2c783;
  --olive: #64715a;
  --white: #fffdf9;
  --line: rgba(93, 66, 42, 0.18);
  --shadow: 0 24px 70px rgba(65, 45, 28, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: white;
  background: var(--espresso);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 12px 35px rgba(48, 36, 27, 0.09);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 2rem));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.brand-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(70, 47, 25, 0.2));
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
}

.brand:hover .brand-icon {
  transform: rotate(12deg) scale(1.06);
}

.brand-wordmark {
  width: 132px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.9rem, 2vw, 1.8rem);
}

.nav-links a {
  position: relative;
  padding: 0.45rem 0;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: left 250ms ease, right 250ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 0;
  right: 0;
}

.nav-cta {
  padding: 0.65rem 1.1rem !important;
  border: 1px solid rgba(45, 41, 36, 0.28);
  border-radius: 999px;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.nav-cta:hover {
  color: var(--cream);
  background: var(--espresso);
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.8);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 19px;
  height: 1.5px;
  display: block;
  content: "";
  background: currentColor;
  transition: transform 260ms ease, opacity 200ms ease;
}

.menu-toggle span {
  transform: translate(-50%, -50%);
}

.menu-toggle::before {
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-toggle::after {
  transform: translate(-50%, calc(-50% + 6px));
}

.menu-active .menu-toggle span {
  opacity: 0;
}

.menu-active .menu-toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-active .menu-toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

main {
  min-height: 70vh;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  isolation: isolate;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/hero-color.png") center 36% / cover no-repeat;
  animation: hero-in 1400ms cubic-bezier(.2,.8,.2,1) both;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 20, 15, 0.78) 0%, rgba(28, 20, 15, 0.39) 48%, rgba(28, 20, 15, 0.04) 82%),
    linear-gradient(0deg, rgba(30, 22, 17, 0.54), transparent 42%);
}

@keyframes hero-in {
  from { transform: scale(1.08); filter: saturate(0.7); }
  to { transform: scale(1); filter: saturate(1); }
}

.hero-content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(4.5rem, 10vh, 7.5rem);
  color: white;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  content: "";
  background: var(--gold-light);
}

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

h1,
h2,
.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: 770px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  letter-spacing: -0.045em;
}

.hero-content > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.86);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  min-height: 50px;
  padding: 0.8rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease, color 250ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(45, 30, 18, 0.18);
}

.button-primary {
  color: var(--espresso);
  background: var(--gold-light);
}

.button-light {
  color: white;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.button-dark {
  color: var(--cream);
  background: var(--espresso);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
}

.scroll-cue {
  position: absolute;
  right: max(1rem, calc((100vw - 1180px) / 2));
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  width: 1px;
  height: 54px;
  content: "";
  background: linear-gradient(white, transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  50% { transform: scaleY(0.55); transform-origin: top; }
}

.flow-section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.flow-section::before {
  position: absolute;
  inset: -34px 0 auto;
  height: 36px;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, var(--section-bg, var(--cream)) 88%);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.selena-section {
  --section-bg: var(--paper);
  background:
    radial-gradient(circle at 92% 10%, rgba(226,199,131,0.18), transparent 27%),
    var(--paper);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.portrait-frame,
.editorial-frame {
  position: relative;
  margin: 0;
}

.portrait-frame::before {
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: 0;
  content: "";
  border: 1px solid rgba(181,138,66,0.55);
  border-radius: 48% 48% 10px 10px;
}

.portrait-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(520px, 52vw, 680px);
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 48% 48% 10px 10px;
  box-shadow: var(--shadow);
}

.feature-copy h2,
.section-heading h2,
.page-title h1 {
  margin-bottom: 1.3rem;
  color: var(--espresso);
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.035em;
}

.feature-copy .lead {
  max-width: 560px;
  font-size: clamp(1.04rem, 1.8vw, 1.3rem);
  color: #5f554b;
}

.signature-line {
  width: 76px;
  height: 2px;
  margin: 1.75rem 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.services-home {
  --section-bg: var(--cream);
  background:
    radial-gradient(circle at 5% 60%, rgba(100,113,90,0.1), transparent 30%),
    var(--cream);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading p {
  max-width: 610px;
  color: #6a6056;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.15rem;
}

.service-card {
  position: relative;
  min-height: 460px;
  grid-column: span 4;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 4px 4px 42px 4px;
  color: white;
  background: var(--espresso);
  box-shadow: 0 16px 38px rgba(62, 43, 29, 0.12);
}

.service-card:nth-child(2) {
  margin-top: 3rem;
}

.service-card img,
.service-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(35,25,19,0.9) 0%, rgba(35,25,19,0.05) 70%);
}

.service-card:hover img,
.service-card:hover video {
  transform: scale(1.05);
}

.service-card-content {
  position: relative;
  z-index: 1;
  padding: 1.65rem;
}

.service-card h3 {
  margin-bottom: 0.45rem;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.service-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}

.nails-banner {
  --section-bg: #d9c8aa;
  overflow: hidden;
  background: #d9c8aa;
}

.nails-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.editorial-frame img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 48% 48% 8px 8px;
  box-shadow: var(--shadow);
}

.editorial-frame::after {
  position: absolute;
  right: -22px;
  bottom: 28px;
  width: 86px;
  height: 86px;
  content: "";
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 50%;
}

.service-chips {
  margin: 1.8rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-chips span {
  padding: 0.48rem 0.85rem;
  border: 1px solid rgba(50,37,29,0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.page-hero {
  position: relative;
  min-height: 66svh;
  padding: 9rem 0 5rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--espresso);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(34,25,19,0.86), rgba(34,25,19,0.17));
}

.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title {
  position: relative;
  z-index: 1;
}

.page-title h1 {
  max-width: 800px;
  color: white;
}

.page-title p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
}

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

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px 44px 6px 6px;
  background: rgba(255,255,255,0.55);
}

.service-row:nth-child(even) .service-row-media {
  order: 2;
}

.service-row-media img,
.service-row-media video {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.service-row-copy {
  padding: clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.clean-list {
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.2rem;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 1.1rem;
  color: #665b50;
}

.clean-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.nails-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.nail-service {
  position: relative;
  min-height: 270px;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 4px 38px 4px 4px;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.nail-service::before {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(181,138,66,0.34);
  border-radius: 50%;
}

.nail-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.nail-service h2 {
  margin: 1.5rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.nail-service p {
  max-width: 430px;
  color: #675d52;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.about-intro img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 46% 46% 5px 5px;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.about-copy p {
  max-width: 680px;
  color: #655b52;
  font-size: 1.05rem;
}

.certifications {
  --section-bg: var(--paper);
  background: var(--paper);
}

.certificate-stack {
  display: grid;
  gap: 0.8rem;
}

.certificate {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px 28px 4px 4px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(70,47,28,0.05);
}

.certificate summary {
  min-height: 98px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

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

.certificate-symbol {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--gold-light), var(--olive));
}

.certificate-title {
  margin-right: auto;
}

.certificate-title strong,
.certificate-title span {
  display: block;
}

.certificate-title span {
  color: #756a5f;
  font-size: 0.82rem;
}

.certificate-action {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.certificate-arrow {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 300ms ease;
}

.certificate[open] .certificate-arrow {
  transform: rotate(225deg) translate(-2px, -2px);
}

.certificate-visual {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms cubic-bezier(.2,.8,.2,1);
}

.certificate[open] .certificate-visual {
  grid-template-rows: 1fr;
}

.certificate-visual-inner {
  min-height: 0;
  overflow: hidden;
}

.certificate-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1rem;
}

.contact-card {
  min-height: 360px;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 5px 42px 5px 5px;
  background: rgba(255,255,255,0.55);
}

.contact-card.dark {
  color: white;
  border: 0;
  background: var(--espresso);
}

.contact-card h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.contact-card.dark h2 {
  color: white;
}

.contact-lines {
  margin: 2rem 0;
  display: grid;
  gap: 1rem;
}

.contact-line {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.contact-line small {
  display: block;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-marquee {
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.brand-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 24s linear infinite;
}

.brand-set {
  display: flex;
  align-items: center;
  gap: 8rem;
  padding-right: 8rem;
}

.brand-set img {
  width: 150px;
  height: 58px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.25);
  opacity: 0.7;
}

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

.site-footer {
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,0.75);
  background:
    radial-gradient(circle at 85% 10%, rgba(181,138,66,0.2), transparent 28%),
    var(--espresso);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-brand img {
  width: 155px;
  filter: invert(1);
  opacity: 0.9;
}

.footer-title {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.75rem;
}

.floating-contact {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 80;
  min-height: 52px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  color: white;
  background: #395d45;
  box-shadow: 0 12px 30px rgba(38,57,43,0.3);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 250ms ease;
}

.floating-contact:hover {
  transform: translateY(-4px) scale(1.02);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

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

@media (max-width: 900px) {
  .site-header.menu-active {
    backdrop-filter: none;
  }

  .nav-shell { min-height: 72px; }
  .brand-wordmark { width: 112px; }
  .menu-toggle { display: grid; }

  .nav-links {
    position: fixed;
    inset: 72px 0 0;
    padding: 2.5rem 1.5rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background:
      radial-gradient(circle at 100% 0, rgba(226,199,131,0.25), transparent 28%),
      var(--cream);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 420ms cubic-bezier(.2,.8,.2,1), visibility 420ms;
  }

  .menu-active .nav-links {
    transform: none;
    visibility: visible;
  }

  .nav-links a {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 500;
  }

  .nav-links a::after { display: none; }
  .nav-cta { margin-top: 1rem; text-align: center; font-family: var(--sans) !important; font-size: 0.9rem !important; }

  .split-feature,
  .nails-layout,
  .about-intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card { grid-column: span 6; }
  .service-card:nth-child(2) { margin-top: 0; }
  .service-card:last-child { grid-column: 4 / span 6; }
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-row-media { order: initial; }
  .service-row-media img,
  .service-row-media video { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-shell,
  .container,
  .hero-content { width: min(100% - 1.35rem, 1180px); }
  .brand-icon { width: 36px; height: 36px; }
  .brand-wordmark { width: 102px; }
  .home-hero { min-height: 92svh; }
  .home-hero::before { background-position: 60% center; }
  .home-hero::after {
    background: linear-gradient(0deg, rgba(28,20,15,0.86), rgba(28,20,15,0.08) 78%);
  }
  .hero-content { margin-bottom: 3.5rem; }
  h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  .scroll-cue { display: none; }
  .flow-section { padding: 4.6rem 0; }
  .portrait-frame::before { inset: -9px 9px 9px -9px; }
  .portrait-frame img { height: clamp(430px, 125vw, 520px); object-position: 56% center; }
  .split-feature { gap: 3rem; }
  .feature-copy h2,
  .section-heading h2,
  .page-title h1 { font-size: clamp(2.9rem, 14vw, 4.2rem); }
  .service-grid { display: grid; grid-template-columns: 1fr; }
  .service-card,
  .service-card:last-child { grid-column: auto; min-height: 390px; }
  .editorial-frame img { min-height: 390px; }
  .nails-service-grid { grid-template-columns: 1fr; }
  .nail-service { min-height: 230px; }
  .page-hero { min-height: 70svh; padding-bottom: 3rem; }
  .clean-list { grid-template-columns: 1fr; }
  .certificate summary { padding: 1rem; align-items: flex-start; }
  .certificate-action span { display: none; }
  .certificate-title strong { line-height: 1.2; }
  .about-intro { gap: 2.5rem; }
  .about-intro img { aspect-ratio: 16 / 11; object-position: center 28%; }
  .brand-set { gap: 4rem; padding-right: 4rem; }
  .brand-set img { width: 120px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-contact span { display: none; }
  .floating-contact { width: 52px; padding: 0; justify-content: center; }
}

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