/* ============================================================
   Kiss & Tell Hair Studio — styles
   Warm minimalism · editorial serif · photography-led
   ============================================================ */

@property --pos {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 50%;
}

:root {
  --cream: #f7f2ea;
  --cream-2: #efe7db;
  --ink: #221b15;
  --ink-soft: #56493e;
  --taupe: #97877a;
  --rose: #b9776b;
  --blush: #ead4ca;
  --gold: #b08d57;
  --line: rgba(34, 27, 21, 0.14);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fs-hero: clamp(3.2rem, 9.5vw, 7.4rem);
  --fs-h2: clamp(2.3rem, 4.8vw, 4.1rem);
  --fs-h3: clamp(1.9rem, 3vw, 2.6rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

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

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.lock { overflow: hidden; }

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

a { color: inherit; }

::selection { background: var(--blush); color: var(--ink); }

.container {
  width: min(1240px, 100% - 3rem);
  margin-inline: auto;
}

@media (max-width: 640px) {
  .container { width: calc(100% - 2.5rem); }
}

/* ---------- type helpers ---------- */

.label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

.label::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.h2 em, .hero-title em {
  font-style: italic;
  color: var(--rose);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.05rem 1.9rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), background 0.4s;
  will-change: transform;
}

.btn .btn-fill {
  position: absolute;
  inset: 0;
  background: var(--rose);
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease);
}

.btn span, .btn svg { position: relative; z-index: 1; }

.btn:hover .btn-fill { transform: scaleY(1); }

.btn svg { width: 18px; height: 18px; flex: none; }

.btn--light {
  background: var(--cream);
  color: var(--ink);
}

.btn--light .btn-fill { background: var(--blush); }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 3px;
  position: relative;
}

.tlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.tlink:hover::after { transform: scaleX(0.35); transform-origin: left; }

.tlink .arr { transition: transform 0.45s var(--ease); }
.tlink:hover .arr { transform: translateX(5px); }

/* ---------- preloader ---------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.9s var(--ease);
}

.preloader .pre-word {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 500;
  font-style: italic;
  overflow: hidden;
}

.preloader .pre-word span {
  display: inline-block;
  transform: translateY(110%);
  animation: preRise 0.9s var(--ease) 0.15s forwards;
}

.preloader .pre-xo {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: preFade 0.8s ease 0.7s forwards;
}

@keyframes preRise { to { transform: translateY(0); } }
@keyframes preFade { to { opacity: 1; } }

.preloader.done { transform: translateY(-100%); }

html.no-preloader .preloader { display: none; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: transform 0.5s var(--ease), background 0.4s, box-shadow 0.4s;
}

.nav.hidden { transform: translateY(-105%); }

.nav.scrolled {
  background: rgba(247, 242, 234, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

.nav-logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  line-height: 1;
}

.nav-logo small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: 0.52rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav .btn { padding: 0.75rem 1.4rem; font-size: 0.85rem; }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ---------- hero ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 3.5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-label { margin-bottom: 2rem; }

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--fs-hero);
  line-height: 0.98;
  letter-spacing: -0.015em;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-block: 0.06em;
}

.hero-title .lw {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 1.1s var(--ease);
}

body.ready .hero-title .line:nth-child(2) .lw { transition-delay: 0.12s; }

body.ready .hero-title .lw { transform: translateY(0); }

.hero-sub {
  max-width: 38ch;
  margin-top: 1.8rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.hero-script {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose);
  margin-top: 0.9rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.6rem;
}

.hero-sub, .hero-script, .hero-ctas, .hero-label {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease);
}

body.ready .hero-label { transition-delay: 0.05s; }
body.ready .hero-sub { transition-delay: 0.35s; }
body.ready .hero-script { transition-delay: 0.45s; }
body.ready .hero-ctas { transition-delay: 0.55s; }

body.ready .hero-sub,
body.ready .hero-script,
body.ready .hero-ctas,
body.ready .hero-label {
  opacity: 1;
  transform: translateY(0);
}

.hero-media {
  position: relative;
  justify-self: end;
  width: min(100%, 460px);
}

.hero-arch {
  position: relative;
  border-radius: 999px 999px 14px 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5.4;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.3s var(--ease) 0.25s;
}

body.ready .hero-arch { clip-path: inset(0 0 0 0); }

.hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  transition: transform 1.6s var(--ease) 0.25s;
}

body.ready .hero-arch img { transform: scale(1.06); }

.hero-frame {
  position: absolute;
  inset: -1.1rem auto auto -1.1rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: 999px 999px 14px 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 1s ease 1s;
}

body.ready .hero-frame { opacity: 0.55; }

.hero-badge {
  position: absolute;
  right: -2.4rem;
  bottom: 3.2rem;
  width: 124px;
  height: 124px;
  animation: spin 22s linear infinite;
}

.hero-badge svg { width: 100%; height: 100%; }

.hero-badge text {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  fill: var(--ink-soft);
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 1s ease 1.4s;
}

body.ready .hero-scroll { opacity: 1; }

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--taupe), transparent);
  animation: drip 2.2s var(--ease) infinite;
}

@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 860px) {
  .hero { padding-top: 6.5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { justify-self: center; width: min(100%, 400px); margin-top: 1rem; }
  .hero-badge { right: -0.6rem; bottom: -2rem; width: 104px; height: 104px; }
  .hero-scroll { display: none; }
}

/* ---------- marquee ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-seq {
  display: flex;
  align-items: center;
  flex: none;
}

.marquee-seq span {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0 1.4rem;
}

.marquee-seq i {
  font-style: normal;
  color: var(--rose);
  font-size: 0.85rem;
}

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

/* ---------- generic reveals ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="mask"] {
  transform: none;
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.9s ease, clip-path 1s var(--ease);
}

[data-reveal="mask"].in { clip-path: inset(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .hero-title .lw { transform: none; }
  .hero-sub, .hero-script, .hero-ctas, .hero-label { opacity: 1; transform: none; }
  .hero-arch { clip-path: none; }
  .marquee-track { animation: none; }
  .hero-badge { animation: none; }
}

/* ---------- sections ---------- */

.section { padding: clamp(4rem, 8vw, 6.75rem) 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}

/* ---------- intro ---------- */

.intro { text-align: center; }

.intro .label { justify-content: center; }
.intro .label::before { display: none; }

.intro-text {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.2vw, 2.3rem);
  font-weight: 500;
  line-height: 1.32;
  max-width: 26em;
  margin: 1.4rem auto 0;
  text-wrap: balance;
}

.intro-text em { color: var(--rose); }

.intro-sig {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--taupe);
}

/* ---------- services ---------- */

.services { border-top: 1px solid var(--line); }

.svc-list { border-bottom: 1px solid var(--line); }

.svc-row {
  display: grid;
  grid-template-columns: 4rem 1.2fr 1fr auto;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.8rem, 3.5vw, 2.6rem) 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: background 0.4s;
}

.svc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--taupe);
  padding-top: 0.5rem;
}

.svc-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--fs-h3);
  line-height: 1.1;
  margin-bottom: 0.7rem;
  transition: transform 0.5s var(--ease);
}

.svc-row:hover .svc-name { transform: translateX(8px); }

.svc-desc {
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 42ch;
  text-wrap: pretty;
}

.svc-prices { width: 100%; padding-top: 0.4rem; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: 0.95rem;
  padding: 0.32rem 0;
}

.price-row .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(34, 27, 21, 0.3);
  transform: translateY(-4px);
}

.price-row .amt {
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.svc-cta { padding-top: 0.55rem; justify-self: end; }

.svc-preview {
  position: fixed;
  z-index: 90;
  width: 230px;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 12px 12px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.85) rotate(3deg);
  transition: opacity 0.35s ease, transform 0.5s var(--ease);
  box-shadow: 0 30px 60px -20px rgba(34, 27, 21, 0.45);
}

.svc-preview.show { opacity: 1; transform: scale(1) rotate(0deg); }

.svc-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .svc-row { grid-template-columns: 2.6rem 1fr; }
  .svc-prices { grid-column: 2; max-width: 430px; }
  .svc-cta { grid-column: 2; justify-self: start; padding-top: 0.2rem; }
  .svc-preview { display: none; }
}

/* ---------- before / after ---------- */

.ba {
  --pos: 50%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  background: var(--cream-2);
  transition: --pos 0.55s var(--ease);
}

.ba.dragging { transition: none; }

.ba--wide { aspect-ratio: 16 / 10; }

.ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba .ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  margin-left: -1px;
  background: rgba(247, 242, 234, 0.95);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}

.ba-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease);
}

.ba:hover .ba-knob { transform: translate(-50%, -50%) scale(1.12); }

.ba-knob svg { width: 20px; height: 20px; }

.ba-tag {
  position: absolute;
  top: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.ba-tag--before {
  left: 1rem;
  background: rgba(34, 27, 21, 0.45);
  color: var(--cream);
}

.ba-tag--after {
  right: 1rem;
  background: rgba(247, 242, 234, 0.82);
  color: var(--ink);
}

.ba-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.ba-caption h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
}

.ba-caption .tlink { font-size: 0.88rem; }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3.5vw, 3rem) clamp(1.2rem, 3vw, 2.5rem);
}

.ba-feature { grid-column: 1 / -1; }

@media (max-width: 740px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba--wide { aspect-ratio: 4 / 5; }
}

/* ---------- gallery ---------- */

.gallery-cols {
  columns: 3;
  gap: 1.2rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  transform: scale(1.01);
  transition: transform 1s var(--ease);
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34, 27, 21, 0.25), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery-item:hover::after { opacity: 1; }

@media (max-width: 900px) { .gallery-cols { columns: 2; } }

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: 999px 999px 14px 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

.about-copy p {
  margin-top: 1.4rem;
  color: var(--ink-soft);
  max-width: 52ch;
  text-wrap: pretty;
}

.about-copy .h2 { margin-top: 1.2rem; }

.about-cf {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; }
}

/* ---------- experience ---------- */

.experience { background: var(--cream-2); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.exp-item {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem 1.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.55s var(--ease), box-shadow 0.55s;
}

.exp-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -28px rgba(34, 27, 21, 0.35);
}

.exp-photo {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
}

.exp-photo img { width: 100%; height: 100%; object-fit: cover; }

.exp-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.15;
}

.exp-item p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  text-wrap: pretty;
}

@media (max-width: 860px) {
  .exp-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ---------- reviews ---------- */

.review-stars {
  display: flex;
  gap: 0.18rem;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.review-feature {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.review-feature .review-stars { padding-top: 0.5rem; }

.review-feature blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 500;
  line-height: 1.32;
  text-wrap: pretty;
  grid-row: span 2;
}

.review-feature figcaption {
  grid-column: 2;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.review {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.review blockquote {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.38;
  text-wrap: pretty;
}

.review figcaption {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.review-name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.review-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--taupe);
}

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-feature { grid-template-columns: 1fr; gap: 0.9rem; }
  .review-feature blockquote { grid-row: auto; }
  .review-feature figcaption { grid-column: 1; }
}

/* ---------- booking ---------- */

.booking {
  background: var(--ink);
  color: var(--cream);
  border-radius: 40px 40px 0 0;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0 0;
  margin-top: 2rem;
}

.booking .label { color: var(--blush); }
.booking .label::before { background: var(--rose); }

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.booking-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.02;
  margin-top: 1.4rem;
  letter-spacing: -0.01em;
}

.booking-title em { font-style: italic; color: var(--blush); }

.booking-note {
  margin-top: 1.6rem;
  color: rgba(247, 242, 234, 0.72);
  max-width: 44ch;
  text-wrap: pretty;
}

.booking .btn { margin-top: 2.4rem; }

.booking-wa-num {
  display: block;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: rgba(247, 242, 234, 0.6);
}

.booking-wa-num a { color: var(--blush); text-decoration: none; }

.hours { list-style: none; margin-top: 1.4rem; }

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(247, 242, 234, 0.16);
  font-size: 0.97rem;
}

.hours li span:first-child { color: rgba(247, 242, 234, 0.65); }

.hours li span:last-child { font-weight: 600; }

.booking-loc {
  margin-top: 1.6rem;
  font-size: 0.92rem;
  color: rgba(247, 242, 234, 0.6);
  text-wrap: pretty;
}

@media (max-width: 860px) {
  .booking-grid { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */

.footer {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(247, 242, 234, 0.16);
  padding: 2.2rem 0 6.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: rgba(247, 242, 234, 0.6);
}

.footer-links {
  display: flex;
  gap: 1.8rem;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--blush); }

.footer-xo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--rose);
}

@media (min-width: 861px) {
  .footer { padding-bottom: 2.2rem; }
}

/* ---------- sticky mobile whatsapp ---------- */

.waba {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translate(-50%, 140%);
  z-index: 110;
  display: none;
  transition: transform 0.6s var(--ease);
}

.waba.show { transform: translate(-50%, 0); }

.waba .btn {
  box-shadow: 0 18px 40px -12px rgba(34, 27, 21, 0.5);
  padding: 0.95rem 1.7rem;
}

@media (max-width: 860px) {
  .waba { display: block; }
}

/* ============================================================
   Mobile polish
   ============================================================ */

@media (max-width: 860px) {
  :root {
    --fs-hero: clamp(2.9rem, 12.5vw, 4.6rem);
    --fs-h2: clamp(2.1rem, 8vw, 2.9rem);
    --fs-h3: clamp(1.55rem, 5.4vw, 1.9rem);
  }

  .label { font-size: 0.66rem; }
  .label::before { width: 1.6rem; }

  /* nav */
  .nav-inner { padding: 0.85rem 0; }
  .nav-logo { font-size: 1.3rem; }
  .nav-logo small { font-size: 0.48rem; margin-top: 0.25rem; }
  .nav .btn { padding: 0.68rem 1.15rem; font-size: 0.8rem; gap: 0.5rem; }
  .nav .btn svg { width: 15px; height: 15px; }

  /* hero */
  .hero { min-height: auto; padding: 6.2rem 0 3.2rem; }
  .hero-label { margin-bottom: 1.4rem; }
  .hero-sub { margin-top: 1.3rem; font-size: 1.02rem; }
  .hero-script { margin-top: 0.7rem; font-size: 1.3rem; }
  .hero-ctas { margin-top: 1.9rem; gap: 1.1rem 1.4rem; }
  .hero-media { margin-top: 1.8rem; margin-bottom: 2.3rem; }
  .hero-arch { aspect-ratio: 4 / 4.7; }
  .hero-frame { inset: -0.8rem auto auto -0.8rem; }

  /* marquee */
  .marquee { padding: 0.9rem 0; }
  .marquee-seq span { font-size: 1.12rem; padding: 0 1rem; }
  .marquee-seq i { font-size: 0.72rem; }

  /* sections */
  .section-head { gap: 1rem; }
  .intro-text { font-size: clamp(1.3rem, 5.6vw, 1.6rem); }
  .intro-sig { font-size: 1.2rem; }

  /* services */
  .svc-row { padding: 1.7rem 0; gap: 0.9rem 1.1rem; }
  .svc-num { padding-top: 0.3rem; font-size: 1rem; }
  .svc-desc { font-size: 0.94rem; }
  .price-row { font-size: 0.92rem; padding: 0.26rem 0; }

  /* before/after + gallery */
  .ba-caption { margin-top: 0.8rem; }
  .ba-caption h3 { font-size: 1.3rem; }
  .ba-knob { width: 42px; height: 42px; }
  .gallery-cols { gap: 0.8rem; }
  .gallery-item { margin-bottom: 0.8rem; border-radius: 10px; }

  /* about */
  .about-media { max-width: 100%; aspect-ratio: 4 / 4.6; }
  .about-copy p { margin-top: 1.2rem; font-size: 0.97rem; }
  .about-cf { margin-top: 1.5rem; font-size: 0.82rem; }

  /* experience */
  .exp-item { padding: 1.7rem 1.5rem 1.9rem; border-radius: 14px; gap: 0.95rem; }
  .exp-photo { width: 64px; height: 64px; }
  .exp-item h3 { font-size: 1.45rem; }
  .exp-item p { font-size: 0.94rem; }

  /* reviews */
  .review { padding-top: 1.4rem; gap: 0.9rem; }
  .review blockquote { font-size: 1.18rem; }
  .review-feature { padding-top: 1.6rem; }

  /* booking + footer */
  .booking { border-radius: 26px 26px 0 0; }
  .booking-note { margin-top: 1.3rem; font-size: 0.97rem; }
  .booking .btn { margin-top: 2rem; }
  .hours { margin-top: 0.4rem; }
  .hours li { padding: 0.8rem 0; font-size: 0.93rem; }
  .booking-loc { margin-top: 1.3rem; font-size: 0.88rem; }
  .footer { padding-top: 1.8rem; }
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.9rem;
  }

  /* sticky booking pill — clear the iPhone home indicator */
  .waba { bottom: calc(0.9rem + env(safe-area-inset-bottom)); }
  .waba .btn { padding: 0.9rem 1.55rem; font-size: 0.9rem; }
}

@media (max-width: 400px) {
  .nav-logo small { display: none; }
  .hero-ctas .tlink { font-size: 0.9rem; }
  .price-row { font-size: 0.88rem; }
}
