/* =====================================================================
   RISHITA BEAUTY LAB — premium mobile-first stylesheet
   Theme: warm ivory + dark rose (editorial, luxe). All colours/fonts come
   from css/theme.css tokens.

   Layout model: the whole site lives inside .canvas, a centred phone-width
   column (--maxw). At >=1024px --maxw becomes 100% and sections re-flow into
   real desktop grids (see the DESKTOP block at the bottom).
   ===================================================================== */

/* legacy token aliases — used by inline styles on the inner pages */
:root {
  --bg: var(--cream);
  --bg-alt: var(--blush-bg);
  --bg-card: var(--paper);
  --muted: var(--ink-soft);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--f-body);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(180deg, #efe7d9, var(--cream)) fixed;
}
img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
}
svg {
  display: block;
}
::selection {
  background: var(--rose);
  color: #fff;
}
.hidden,
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
body.modal-open,
body.menu-open {
  overflow: hidden;
}

/* Lenis smooth-scroll (minimal required rules) */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

.canvas {
  max-width: var(--maxw);
  margin-inline: auto;
  position: relative;
  background: var(--cream);
  min-height: 100vh;
  overflow: hidden;
  box-shadow: 0 0 80px -24px rgba(120, 95, 65, 0.28);
}
@media (min-width: 600px) {
  .canvas {
    border-inline: 1px solid var(--line);
  }
}

/* ---------- Type ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0.2px;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rose);
}
.section {
  padding: 50px var(--pad);
}
.section-head {
  margin-bottom: 26px;
}
.section-head h2 {
  font-size: 2.55rem;
}
.section-head h2 em,
h1 em,
.title em {
  color: var(--rose);
  font-style: italic;
}
.lead {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-top: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.3s;
  will-change: transform;
}
.btn-primary,
.btn-gold {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:active,
.btn-gold:active {
  transform: scale(0.96);
}
.btn-ghost,
.btn-outline {
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: rgba(249, 208, 218, 0.05);
}
.btn-outline {
  border-color: var(--rose);
  color: var(--rose-deep);
  background: transparent;
}
.btn-ghost.light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}
.btn-block {
  width: 100%;
}

/* =====================================================================
   PRELOADER
   ===================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: grid;
  place-items: center;
  transition:
    opacity 0.8s ease,
    visibility 0.8s;
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
}
.pre-inner {
  text-align: center;
}
.pre-logo {
  display: block;
  margin-inline: auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 50px -14px rgba(var(--rose-rgb), 0.6);
  animation: prepulse 2s var(--ease) infinite;
}
.pre-name {
  font-family: var(--f-display);
  font-size: 1.8rem;
  color: var(--ink);
  margin-top: 18px;
  letter-spacing: 2px;
}
.pre-name span {
  color: var(--rose);
}
.pre-bar {
  width: 130px;
  height: 2px;
  background: var(--line);
  margin: 16px auto 0;
  border-radius: 2px;
  overflow: hidden;
}
.pre-bar i {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  animation: preload 1.1s linear infinite;
}
@keyframes preload {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(360%);
  }
}
@keyframes prepulse {
  50% {
    transform: scale(1.05);
  }
}

/* =====================================================================
   NAV + FULL-SCREEN MENU
   ===================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--maxw);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px var(--pad);
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    padding 0.4s,
    box-shadow 0.4s;
}
.nav.scrolled,
.nav.solid {
  background: rgba(255, 253, 247, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 26px -20px rgba(120, 95, 65, 0.5);
  border-bottom: 1px solid var(--line);
  padding-block: 11px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 16px -6px rgba(var(--rose-rgb), 0.6);
}
.nav-brand b {
  font-family: var(--f-display);
  font-size: 1.15rem;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.nav.scrolled .nav-brand b,
.nav.solid .nav-brand b {
  color: var(--ink);
  text-shadow: none;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-burger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  position: relative;
  width: 19px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-burger span::before {
  top: -6px;
}
.nav-burger span::after {
  top: 6px;
}
.nav.scrolled .nav-burger span,
.nav.scrolled .nav-burger span::before,
.nav.scrolled .nav-burger span::after,
.nav.solid .nav-burger span,
.nav.solid .nav-burger span::before,
.nav.solid .nav-burger span::after {
  background: var(--rose-deep);
}
body.menu-open .nav-burger span {
  background: transparent !important;
}
body.menu-open .nav-burger span::before,
body.menu-open .nav-burger span::after {
  background: var(--rose-deep);
}
body.menu-open .nav-burger span::before {
  top: 0;
  transform: rotate(45deg);
}
body.menu-open .nav-burger span::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 890;
  max-width: var(--maxw);
  margin-inline: auto;
  background: linear-gradient(180deg, var(--paper), var(--blush-bg));
  transform: translateY(-100%);
  transition:
    transform 0.6s var(--ease),
    visibility 0.6s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 34px;
  visibility: hidden;
}
body.menu-open .menu {
  transform: translateY(0);
  visibility: visible;
}
.menu a {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--ink);
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  transition: 0.5s var(--ease);
}
body.menu-open .menu a {
  opacity: 1;
  transform: none;
}
body.menu-open .menu a:nth-child(1) {
  transition-delay: 0.12s;
}
body.menu-open .menu a:nth-child(2) {
  transition-delay: 0.17s;
}
body.menu-open .menu a:nth-child(3) {
  transition-delay: 0.22s;
}
body.menu-open .menu a:nth-child(4) {
  transition-delay: 0.27s;
}
body.menu-open .menu a:nth-child(5) {
  transition-delay: 0.32s;
}
body.menu-open .menu a:nth-child(6) {
  transition-delay: 0.37s;
}
body.menu-open .menu a:nth-child(7) {
  transition-delay: 0.42s;
}
.menu a span {
  font-family: var(--f-body);
  font-size: 0.8rem;
  color: var(--rose);
}
.menu-foot {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: 0.5s 0.5s var(--ease);
}
body.menu-open .menu-foot {
  opacity: 1;
}
.menu-foot a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 0.82rem;
  border: 1px solid var(--line-2);
  padding: 11px 16px;
  border-radius: 100px;
  color: var(--rose);
  opacity: 1;
  transform: none;
}
.menu-foot a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px var(--pad) 108px;
  overflow: hidden;
  background: var(--night);
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video video,
.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  transform: scale(1.06);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  to {
    transform: scale(1.16);
  }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(var(--night-rgb), 0.34) 0%,
    rgba(var(--night-rgb), 0.05) 26%,
    rgba(var(--night-rgb), 0.3) 60%,
    rgba(var(--night-rgb), 0.62) 86%,
    var(--cream) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  margin-bottom: 14px;
  color: #f4c9d5;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
.hero h1 {
  font-size: 3.55rem;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.hero h1 .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1s var(--ease) forwards;
  animation-delay: calc(0.62s + var(--i, 0) * 0.14s);
}
.hero h1 em {
  color: var(--blush);
  font-style: italic;
  display: block;
}
.hero p.sub {
  color: rgba(255, 255, 255, 0.9);
  margin: 16px 0 26px;
  max-width: 22em;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.15s forwards;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.3s forwards;
}
.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.45s forwards;
}
.hero-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-live);
  box-shadow: 0 0 0 0 rgba(79, 174, 114, 0.6);
  animation: pulse 2.4s infinite;
  flex: 0 0 auto;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}
.scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f4c9d5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: fadeUp 0.9s 1.6s forwards;
}
.scroll-hint i {
  width: 1px;
  height: 30px;
  background: linear-gradient(#f4c9d5, transparent);
  animation: sh 1.8s ease-in-out infinite;
}
@keyframes sh {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* =====================================================================
   INTRO
   ===================================================================== */
.intro {
  background: var(--cream);
  text-align: center;
  padding-top: 48px;
  padding-bottom: 46px;
}
.intro .eyebrow {
  margin-bottom: 14px;
}
.intro-title {
  font-size: 2.6rem;
  line-height: 1.1;
  max-width: 12ch;
  margin: 0 auto;
}
.intro-title em {
  color: var(--rose);
  font-style: italic;
}
.intro-text {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 34ch;
  margin: 18px auto 0;
}
.intro-text b {
  color: var(--ink);
  font-weight: 500;
}
.intro-stats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.intro-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.intro-stats b {
  font-family: var(--f-display);
  font-size: 1.9rem;
  color: var(--rose);
  line-height: 1;
}
.intro-stats small {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 5px;
  text-align: center;
  max-width: 9ch;
}
.intro-stats div + div {
  border-left: 1px solid var(--line-2);
  padding-left: 14px;
}

/* =====================================================================
   SERVICES
   ===================================================================== */
.services {
  background: var(--cream);
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  min-height: 188px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
}
.svc-img {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--blush-bg2);
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.svc:active .svc-img img {
  transform: scale(1.06);
}
.svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 22, 32, 0.86) 18%, rgba(42, 22, 32, 0.18) 78%);
}
.svc-body {
  position: relative;
  padding: 20px;
  width: 100%;
}
.svc-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 5px 11px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.svc-tag:empty,
.price-card .ribbon:empty {
  display: none;
}
.svc h3 {
  font-size: 1.7rem;
  color: #fff;
}
.svc p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 4px 0 12px;
  max-width: 20em;
}
.svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svc-price {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--blush);
}
.svc-price small {
  font-family: var(--f-body);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.svc-go {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--glow);
  transition: transform 0.4s var(--ease);
}
.svc:active .svc-go {
  transform: translateX(4px);
}
.form-note {
  font-size: 0.72rem;
  color: var(--ink-mute);
  margin-top: 12px;
  text-align: center;
}

/* =====================================================================
   REELS (autoplay in view)
   ===================================================================== */
.reels {
  background: var(--blush-bg);
}
.reel-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px var(--pad) 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-inline: calc(var(--pad) * -1);
}
.reel-scroll::-webkit-scrollbar {
  display: none;
}
.reel {
  position: relative;
  flex: 0 0 72%;
  max-width: 280px;
  aspect-ratio: 9/16;
  border-radius: 22px;
  overflow: hidden;
  scroll-snap-align: center;
  background: var(--blush-bg2);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: block;
}
.reel video,
.reel img.poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel img.poster {
  z-index: 1;
  transition: opacity 0.5s;
}
.reel.playing img.poster {
  opacity: 0;
}
.reel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(42, 22, 32, 0.5));
  z-index: 2;
  pointer-events: none;
}
.reel figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 3;
  font-size: 0.82rem;
  color: #fff;
  font-family: var(--f-display);
  font-style: italic;
}
.reel figcaption:empty {
  display: none;
}
.reel .mute {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(42, 18, 26, 0.5);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.85rem;
}
.reel .mute .ico-sound,
.reel .mute.on .ico-muted {
  display: none;
}
.reel .mute.on .ico-sound {
  display: block;
}
.reel .play-dot {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
}
.reel .play-dot i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rose);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 1.2rem;
  padding-left: 4px;
  box-shadow: var(--glow);
}

/* =====================================================================
   PORTFOLIO (slow auto-scroll marquee rows)
   ===================================================================== */
.portfolio {
  background: var(--cream);
  overflow: hidden;
}
.pf-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-inline: calc(var(--pad) * -1);
}
.pf-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding-inline: 14px;
  animation: pfScroll var(--dur, 46s) linear infinite;
}
.pf-track.b {
  animation-direction: reverse;
}
.portfolio:hover .pf-track,
.pf-track.paused,
.rev-track.paused {
  animation-play-state: paused;
}
@keyframes pfScroll {
  to {
    transform: translateX(-50%);
  }
}
.pf-card {
  flex: 0 0 auto;
  width: 190px;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  cursor: zoom-in;
  background: var(--blush-bg2);
}
.pf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.pf-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(42, 22, 32, 0.28));
  pointer-events: none;
}
.pf-card:active img {
  transform: scale(1.06);
}
.pf-hint {
  text-align: center;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--ink-mute);
}
.pf-cta {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

/* lightbox (portfolio) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(40, 18, 26, 0.9);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 84vh;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.lb-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}
.lb-close {
  top: 22px;
  right: 22px;
}
.lb-prev,
.lb-next {
  top: 50%;
  margin-top: -24px;
}
.lb-prev {
  left: 12px;
}
.lb-next {
  right: 12px;
}

/* =====================================================================
   PRICING
   ===================================================================== */
.pricing {
  background: var(--blush-bg);
}
.price-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.price-card.featured {
  border-color: var(--rose);
  box-shadow:
    0 0 0 1px var(--rose),
    var(--shadow);
}
.price-card .ribbon {
  position: absolute;
  top: -11px;
  left: 22px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  padding: 5px 13px;
  border-radius: 100px;
  box-shadow: var(--glow);
}
.price-card h3 {
  font-size: 1.55rem;
}
.price-tag {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--rose-deep);
  margin: 4px 0 14px;
}
.price-card ul {
  margin-bottom: 20px;
}
.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}
.price-card li::before {
  content: "✦";
  color: var(--rose);
  flex: 0 0 auto;
  font-size: 0.75rem;
  margin-top: 2px;
}
.price-card li:last-child {
  border: 0;
}
.price-card .btn {
  width: 100%;
}
.pricing-note {
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.8rem;
  max-width: 52ch;
  margin: 18px auto 0;
}

/* =====================================================================
   CRAFT — brands + finishes
   ===================================================================== */
.craft {
  background: var(--cream);
  overflow: hidden;
}
.brand-marquee-band {
  margin-inline: calc(var(--pad) * -1);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper);
  padding: 18px 0;
}
.brand-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 34px;
  animation: pfScroll var(--dur, 40s) linear infinite;
}
.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-width: 90px;
}
.brand-tile img {
  height: 100%;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
}
.brand-tile span {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.brand-marquee-item {
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand-marquee-sep {
  color: var(--rose);
  font-size: 0.7rem;
}
.finish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}
.finish-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  padding: 16px 14px;
  box-shadow: var(--shadow-sm);
}
.finish-card h3 {
  font-size: 1.2rem;
  color: var(--rose-deep);
}
.finish-card p {
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.45;
}

/* =====================================================================
   ABOUT
   ===================================================================== */
.about {
  background: var(--blush-bg);
}
.about-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--blush-bg2);
  aspect-ratio: 4/5;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.about-photo .badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.about-photo .badge b {
  font-family: var(--f-display);
  font-size: 1.7rem;
  color: var(--rose);
  line-height: 1;
}
.about-photo .badge small {
  font-size: 0.66rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.about h2 {
  font-size: 2.5rem;
}
.about h2 em {
  color: var(--rose);
  font-style: italic;
}
.about p.eyebrow {
  color: var(--rose);
  font-size: 0.66rem;
  margin-bottom: 0;
}
.about .role {
  color: var(--rose);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 12px 0;
}
.about p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 14px;
}
.about .link-gold {
  color: var(--rose-deep);
  font-weight: 500;
  font-size: 0.9rem;
}
.about-signature {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--rose);
  margin-top: 14px;
}

/* =====================================================================
   REVIEWS
   ===================================================================== */
.reviews {
  background: var(--cream);
  overflow: hidden;
}
.rev-rows {
  margin-inline: calc(var(--pad) * -1);
}
.rev-track {
  display: flex;
  gap: 11px;
  width: max-content;
  padding-inline: 14px;
  animation: pfScroll var(--dur, 48s) linear infinite;
}
.reviews:hover .rev-track {
  animation-play-state: paused;
}
.rev-card {
  flex: 0 0 74vw;
  max-width: 280px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.rev-stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.rev-card p {
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 1rem;
  line-height: 1.38;
  font-style: italic;
  white-space: normal;
}
.rev-who {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
}
.rev-who .av {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-soft));
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  flex: 0 0 auto;
}
.rev-who b {
  font-size: 0.8rem;
  color: var(--ink);
  display: block;
  font-family: var(--f-body);
}
.rev-who small {
  font-size: 0.66rem;
  color: var(--ink-mute);
}
.rev-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 9px 18px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.rr-score {
  font-family: var(--f-display);
  font-size: 1.7rem;
  color: var(--rose-deep);
  line-height: 1;
  font-weight: 600;
}
.rr-mid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.rr-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.9rem;
  line-height: 1;
}
.rr-mid small {
  font-size: 0.68rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq {
  background: var(--blush-bg);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--rose);
  transition: transform 0.3s var(--ease);
  flex: 0 0 auto;
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 18px 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* =====================================================================
   ENQUIRY
   ===================================================================== */
.enquiry {
  background: var(--cream);
}
.form-wrap {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.field {
  position: relative;
  margin-bottom: 16px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 16px 15px;
  color: var(--ink);
  font-size: 0.92rem;
  transition: 0.3s;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field label {
  position: absolute;
  left: 15px;
  top: 16px;
  color: var(--ink-mute);
  font-size: 0.92rem;
  pointer-events: none;
  transition: 0.25s var(--ease);
  padding: 0 5px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--rose-rgb), 0.1);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field.float label {
  top: -9px;
  font-size: 0.68rem;
  color: var(--rose);
  background: var(--paper);
  letter-spacing: 0.04em;
}
.field.sel::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 22px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--rose);
  border-bottom: 1.5px solid var(--rose);
  transform: rotate(45deg);
  pointer-events: none;
}
.field-err {
  color: var(--status-error);
  font-size: 0.78rem;
  margin: -6px 0 12px;
}
.field-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.field-consent input {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--rose);
}
.field-consent a {
  color: var(--rose);
}
.form-ok {
  display: none;
  text-align: center;
  padding: 16px;
}
.form-ok.show {
  display: block;
}
.form-ok h3 {
  font-size: 1.6rem;
}
.form-ok p {
  color: var(--ink-soft);
  margin-top: 8px;
}
.form-ok .tick {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 1.7rem;
  box-shadow: var(--glow);
}

/* =====================================================================
   CONTACT + FOOTER
   ===================================================================== */
.contact {
  background: var(--blush-bg);
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.contact-info {
  padding: 22px;
}
.ci-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.ci-row:last-child {
  border: 0;
}
.ci-row .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blush-bg), var(--paper));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.ci-row .ic svg {
  width: 18px;
  height: 18px;
  fill: var(--rose-deep);
}
.ci-row b {
  font-size: 0.9rem;
  color: var(--ink);
  display: block;
}
.ci-row small {
  font-size: 0.8rem;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}
footer {
  background: linear-gradient(180deg, var(--paper), var(--blush-bg));
  padding: 40px var(--pad) 120px;
  text-align: center;
  border-top: 1px solid var(--line);
}
footer > img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  box-shadow: 0 14px 34px -12px rgba(var(--rose-rgb), 0.6);
}
footer h3 {
  font-size: 1.6rem;
  letter-spacing: 1px;
}
footer p {
  color: var(--ink-mute);
  font-size: 0.8rem;
  margin-top: 8px;
}
.foot-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 18px 0;
}
.foot-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--rose);
  transition: 0.3s;
}
.foot-social a svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.foot-social a:active {
  background: var(--rose);
  color: #fff;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin-top: 6px;
}
.foot-links a {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.foot-links a:hover {
  color: var(--rose);
}
.foot-copy {
  font-size: 0.7rem;
  color: var(--ink-mute);
  margin-top: 14px;
  line-height: 1.7;
}

/* =====================================================================
   FLOATING BUTTONS
   ===================================================================== */
.floaters {
  position: fixed;
  right: 16px;
  bottom: 22px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 600px) {
  .floaters {
    right: calc(50% - var(--maxw) / 2 + 16px);
  }
}
.fab {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(40, 18, 26, 0.4);
  transition: transform 0.35s var(--ease);
  position: relative;
}
.fab svg {
  width: 23px;
  height: 23px;
  fill: #fff;
}
.fab:active {
  transform: scale(0.9);
}
.fab.wa {
  background: #25d366;
}
.fab.ig {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}
.fab .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 15px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

/* =====================================================================
   WHATSAPP LEAD-GATE POPUP (phone number step before wa.me)
   ===================================================================== */
.wa-gate-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.wa-gate-modal[hidden] {
  display: none;
}
.wa-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 16, 0.55);
  backdrop-filter: blur(3px);
}
.wa-gate-inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  background: var(--paper);
  border-radius: 24px 24px 0 0;
  padding: 26px 22px calc(24px + env(safe-area-inset-bottom));
  box-shadow: var(--shadow);
  animation: enqUp 0.35s var(--ease);
}
@keyframes enqUp {
  from {
    transform: translateY(30px);
    opacity: 0.4;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.wa-gate-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--cream);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1;
}
.wa-gate-inner h3 {
  font-size: 1.7rem;
  padding-right: 36px;
}
.wa-gate-sub {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin: 8px 0 16px;
  line-height: 1.5;
}
.wa-gate-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: var(--cream);
  font-size: 1rem;
  color: var(--ink);
  font-family: inherit;
}
.wa-gate-input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(var(--rose-rgb), 0.1);
}
.wa-gate-error {
  color: var(--status-error);
  font-size: 0.8rem;
  margin-top: 8px;
}
.wa-gate-submit {
  width: 100%;
  margin-top: 14px;
}
.wa-gate-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.wa-gate-consent input {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--rose);
}
.wa-gate-consent a {
  color: var(--rose);
}

/* =====================================================================
   COOKIE CONSENT BANNER
   ===================================================================== */
.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  display: flex;
  justify-content: center;
  padding: 14px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
}
.consent-inner {
  width: 100%;
  max-width: var(--maxw);
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: enqUp 0.35s var(--ease);
}
.consent-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.consent-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.consent-text {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.consent-actions {
  display: flex;
  gap: 10px;
}
.consent-actions .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.85rem;
}

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition:
    opacity 1s var(--ease),
    transform 1.05s var(--ease),
    filter 1s var(--ease);
}
[data-animate].in {
  opacity: 1;
  transform: none;
  filter: none;
}
.section-head h2 {
  position: relative;
  display: inline-block;
}
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--rose), transparent);
  transition: width 1s var(--ease) 0.25s;
}
.section-head.in h2::after {
  width: 64%;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    transition: none !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .pf-track,
  .rev-track,
  .brand-marquee-track {
    animation: none !important;
  }
}

/* =====================================================================
   INNER PAGES — service detail, about, legal
   ===================================================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px var(--pad);
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar .back {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--ink);
  flex: 0 0 auto;
  background: var(--paper);
}
.topbar b {
  font-family: var(--f-display);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  flex: 1;
}
.page {
  padding-bottom: 96px;
  min-height: 100vh;
}
.wrap {
  padding: 26px var(--pad);
}
.center {
  text-align: center;
}
.title {
  font-size: 2.3rem;
  line-height: 1.08;
}
.page section {
  padding-block: 26px;
}

/* service hero */
.sd-hero {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 66vh;
  overflow: hidden;
  background: var(--night);
}
.sd-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 36%,
    rgba(30, 20, 14, 0.62) 72%,
    rgba(30, 20, 14, 0.55) 90%,
    var(--cream) 100%
  );
}
.sd-hero .sd-head {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 2;
  padding: 0 var(--pad);
}
.sd-hero .tag,
.sd-titlebar .tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  margin-bottom: 10px;
}
.sd-hero h1 {
  font-size: 2.7rem;
  color: #fff;
  line-height: 1;
}
.sd-hero .meta {
  margin-top: 8px;
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--blush);
}
.sd-intro {
  padding: 22px var(--pad) 6px;
}
.sd-intro .lead {
  font-size: 1rem;
  margin-top: 0;
}
.sd-titlebar,
.sd-cta {
  display: none;
}
.sd-intro .hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.back-link,
.back-home {
  display: inline-block;
  color: var(--rose-deep);
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.check-list {
  max-width: 640px;
  margin-inline: auto;
}
.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.check-list li::before {
  content: "✦";
  color: var(--rose);
  flex: 0 0 auto;
}
.card-grid-3 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.service-card h3 {
  font-size: 1.4rem;
}
.service-card p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 5px;
}
.process-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin-inline: auto;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.process-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  flex: 0 0 auto;
  box-shadow: var(--glow);
}
.process-step p {
  font-size: 0.9rem;
  color: var(--ink);
}
.testi-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.testi-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.9rem;
}
.testi-card .quote-mark {
  display: none;
}
.testi-card p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.4;
  margin: 8px 0 12px;
}
.testi-name {
  font-size: 0.8rem;
  color: var(--ink-mute);
}
.testi-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stats-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stats-4 > div {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  padding: 18px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-icon {
  width: 26px;
  height: 26px;
  color: var(--rose);
  margin-bottom: 6px;
}
.trust-icon svg {
  width: 100%;
  height: 100%;
}
.trust-num {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--rose-deep);
  line-height: 1;
}
.trust-label {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}
.manifesto p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.9rem;
  line-height: 1.2;
  text-align: center;
}
.cta-section .lead {
  max-width: 44ch;
  margin-inline: auto;
}
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-grid .title {
  margin-bottom: 16px;
}
.about-grid > div:not(.about-photo) p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

/* legal pages */
.legal-page main.wrap {
  padding-bottom: 60px;
}
.legal-page h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.legal-page h2 {
  font-size: 1.5rem;
  margin: 26px 0 8px;
  color: var(--rose-deep);
}
.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 10px;
}
.legal-page ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}
.legal-page a.inline-link {
  color: var(--rose-deep);
  text-decoration: underline;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 4px 0 16px;
  font-size: 0.82rem;
}
.policy-table th,
.policy-table td {
  text-align: left;
  padding: 8px 10px;
  border: 1px solid var(--line-2);
  color: var(--ink-soft);
}
.policy-table th {
  background: var(--cream);
  color: var(--ink);
  font-weight: 600;
}

/* sticky action bar (inner pages) */
.action-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--maxw);
  z-index: 850;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.action-bar .ab-price {
  flex: 0 0 auto;
  line-height: 1.1;
}
.action-bar .ab-price b {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--ink);
  display: block;
}
.action-bar .ab-price small {
  font-size: 0.62rem;
  color: var(--ink-mute);
}
.action-bar .btn {
  flex: 1;
  padding: 14px 16px;
}
.page footer {
  padding-bottom: 40px;
}

/* =====================================================================
   DESKTOP / LAPTOP (>=1024px) — additive only.
   --maxw becomes 100% so every fixed element (nav, floaters, action bar,
   popups) realigns automatically, then stacked sections turn into grids.
   ===================================================================== */
@media (min-width: 1024px) {
  :root {
    --maxw: 100%;
    --pad: 60px;
  }
  .canvas {
    box-shadow: none;
    border-inline: 0;
  }

  .section {
    padding-block: 88px;
  }
  .section-head {
    margin-bottom: 34px;
  }
  .section-head h2 {
    font-size: 3.1rem;
  }

  /* NAV → horizontal top bar (burger hidden, links inline) */
  .nav {
    padding-block: 18px;
  }
  .nav-brand img {
    width: 44px;
    height: 44px;
  }
  .nav-brand b {
    font-size: 1.28rem;
  }
  .nav-burger {
    display: none;
  }
  .menu {
    position: fixed;
    top: 0;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
    margin: 0;
    width: 100%;
    max-width: var(--maxw);
    height: auto;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
    padding: 24px var(--pad);
    background: none;
    visibility: visible;
    z-index: 901;
    pointer-events: none;
    transition: color 0.3s;
  }
  .menu a {
    font-family: var(--f-body);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    padding: 6px 0;
    border: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: color 0.3s;
  }
  .menu a span {
    display: none;
  }
  .menu a:hover {
    color: var(--blush);
  }
  .nav.scrolled ~ .menu a,
  .nav.solid ~ .menu a {
    color: var(--ink);
    text-shadow: none;
  }
  .nav.scrolled ~ .menu a:hover,
  .nav.solid ~ .menu a:hover {
    color: var(--rose);
  }
  .menu-foot {
    display: none;
  }

  /* HERO → big portrait on the left, text on a slim dark panel to the right */
  .hero {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 96px var(--pad) 90px 0;
  }
  .hero-video {
    left: 0;
    right: auto;
    width: 75%;
  }
  .hero-video video,
  .hero-video img {
    object-position: 50% 35%;
    transform: scale(1.02);
    animation: heroZoom 16s ease-in-out infinite alternate;
  }
  .hero-scrim {
    background:
      linear-gradient(180deg, transparent 85%, rgba(250, 246, 238, 0.55) 95%, var(--cream) 100%),
      linear-gradient(90deg, rgba(var(--night-rgb), 0) 56%, rgba(var(--night-rgb), 0.55) 69%, var(--night) 83%);
  }
  .hero-inner {
    max-width: 360px;
  }
  .hero h1 {
    font-size: 3.3rem;
  }
  .hero p.sub {
    font-size: 1rem;
    max-width: 20em;
  }
  .scroll-hint {
    left: 37%;
  }

  .intro-title {
    font-size: 3.5rem;
    max-width: 18ch;
  }
  .intro-text {
    font-size: 1.1rem;
    max-width: 56ch;
  }
  .intro-stats {
    gap: 40px;
  }
  .intro-stats div + div {
    padding-left: 40px;
  }
  .intro-stats b {
    font-size: 2.4rem;
  }

  .svc-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
  }
  .svc {
    min-height: 400px;
  }
  .svc:hover .svc-img img {
    transform: scale(1.06);
  }
  .svc:hover .svc-go {
    transform: translateX(4px);
  }
  .services .form-note {
    text-align: center;
  }

  .reel {
    flex: 0 0 264px;
    max-width: 264px;
  }

  .portfolio .pf-track.b {
    display: none;
  }
  .pf-card {
    width: 230px;
  }
  .pf-card:hover img {
    transform: scale(1.06);
  }

  .price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .finish-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .brand-tile {
    height: 54px;
  }

  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 64px;
    align-items: center;
  }
  .about-photo {
    margin-bottom: 0;
    max-height: 620px;
  }
  .about h2 {
    font-size: 2.9rem;
  }

  .rev-card {
    flex: 0 0 320px;
    max-width: 320px;
  }
  .rev-rating:hover {
    border-color: var(--rose);
  }

  .faq-list {
    max-width: 780px;
    margin-inline: auto;
  }

  .form-wrap {
    max-width: 700px;
    margin-inline: auto;
    padding: 34px 30px;
  }
  .form-live {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
  }
  .form-live .field.full,
  .form-live > button,
  .form-live > .form-note,
  .form-live > .field-consent {
    grid-column: 1 / -1;
  }

  .contact-card {
    max-width: 640px;
    margin-inline: auto;
  }
    .contact-info {
    padding: 30px;
  }
  .ci-row:hover {
    background: rgba(var(--rose-rgb), 0.04);
  }

  footer {
    padding: 76px var(--pad) 90px;
  }
  footer h3 {
    font-size: 1.9rem;
  }
  .foot-social a:hover {
    background: var(--rose);
    color: #fff;
  }

  .btn-primary:hover,
  .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px -16px rgba(var(--rose-rgb), 0.55);
  }
  .btn-ghost:hover,
  .btn-outline:hover {
    border-color: var(--rose);
  }

  .wa-gate-modal {
    align-items: center;
  }
  .wa-gate-inner {
    max-width: 460px;
    border-radius: 24px;
  }

  /* inner pages */
  .page {
    padding-bottom: 0;
  }
  .wrap {
    max-width: 780px;
    margin-inline: auto;
  }
  .wrap.about-grid {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 64px;
    align-items: center;
  }
  .wrap.about-grid .about-photo {
    margin-bottom: 0;
  }
  .page section {
    padding-block: 40px;
  }
  .title {
    font-size: 2.9rem;
  }
  .service-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    align-items: stretch;
  }
  .service-page > section,
  .service-page > .sd-rest {
    grid-column: 1 / -1;
  }
  .sd-hero {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    border-radius: 0 22px 22px 0;
    min-height: 560px;
  }
  .sd-hero::after {
    display: none;
  }
  .sd-hero .sd-head {
    /* the real <h1> lives here — keep it for crawlers/screen readers, but the
       desktop layout shows the larger titlebar heading instead */
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    padding: 0;
  }
  .sd-intro {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    padding: 30px var(--pad) 30px 0;
  }
  .sd-titlebar {
    display: block;
    margin-bottom: 18px;
  }
  .sd-titlebar .tag {
    color: var(--rose-deep);
    border-color: var(--line-2);
    background: var(--paper);
  }
  .sd-titlebar .h1 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 2.9rem;
    line-height: 1.05;
  }
  .sd-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .sd-cta .ab-price b {
    font-family: var(--f-display);
    font-size: 1.9rem;
    display: block;
    line-height: 1;
  }
  .sd-cta .btn {
    margin-left: auto;
  }
  .action-bar {
    display: none !important;
  }
}
