/* ============================================
   Lashkin Studio v4
   Ultra Premium · Real Photos · Emil Philosophy
   Playfair Display / Inter
   Ivory #FAFAFA · Green #4A7C59 · Black #0A0A0A
   ============================================ */

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

:root {
  --black:    #0A0A0A;
  --black-2:  #161616;
  --black-3:  #222222;
  --white:    #FAFAFA;
  --white-2:  #F0EFEB;
  --white-3:  #E0DED6;
  --green:    #4A7C59;
  --green-l:  #5E9A6F;
  --sage:     #8BAF7C;
  --text:     #1A1A1A;
  --text-2:   #555555;
  --text-3:   #888888;

  --display: 'Playfair Display', Georgia, serif;
  --sans:    'Inter', -apple-system, sans-serif;

  /* Emil's curves */
  --out:     cubic-bezier(0.23, 1, 0.32, 1);
  --in-out:  cubic-bezier(0.77, 0, 0.175, 1);
  --drawer:  cubic-bezier(0.32, 0.72, 0, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); }
img { display: block; max-width: 100%; }

/* =====================
   CUSTOM CURSOR — desktop only
   ===================== */
.cursor {
  display: none;
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
}

@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body { cursor: none; }
  a, button, .magnetic, .srv-item, .gal-cell, .pp-card { cursor: none; }
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear, background 0.2s var(--out), width 0.2s var(--out), height 0.2s var(--out);
  will-change: transform;
  pointer-events: none;
  z-index: 9999;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--out), height 0.35s var(--out), border-color 0.3s var(--out), background 0.3s var(--out), opacity 0.3s var(--out);
  will-change: transform;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  opacity: 0.15;
  background: var(--black);
  border-color: transparent;
}

body.cursor-magnetic .cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
}

body.cursor-magnetic .cursor-ring {
  width: 64px;
  height: 64px;
  border-color: var(--green);
  opacity: 0.2;
}

/* =====================
   TOPBAR
   ===================== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  background: var(--black);
  color: var(--text-3);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.topbar a {
  color: var(--text-3);
  transition: color 0.2s var(--out);
}

.topbar-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-3);
  opacity: 0.4;
}

.topbar-lang {
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-3);
  padding: 3px 10px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.2s var(--out), color 0.2s var(--out);
}

@media (hover: hover) and (pointer: fine) {
  .topbar a:hover { color: var(--white); }
  .topbar-lang:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }
}

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s var(--out), box-shadow 0.3s var(--out);
}

.nav.stuck {
  background: rgba(250, 250, 250, 0.96);
  box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo-img {
  height: 48px;
  width: auto;
  overflow: visible;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: color 0.2s var(--out);
}

.nav-book {
  background: var(--black);
  color: var(--white) !important;
  padding: 10px 24px;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  transition: background 0.2s var(--out), transform 0.16s var(--out) !important;
}

.nav-book:active { transform: scale(0.97); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s var(--out), opacity 0.3s var(--out);
}

.burger.open span:first-child { transform: rotate(45deg) translate(2.3px, 2.3px); }
.burger.open span:last-child  { transform: rotate(-45deg) translate(2.3px, -2.3px); }

/* Mobile overlay */
.mob {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--out);
}

.mob.open { opacity: 1; pointer-events: all; }

.mob-a {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--black);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s var(--out), transform 0.3s var(--out), color 0.2s;
}

.mob.open .mob-a { opacity: 1; transform: translateY(0); }
.mob.open .mob-a:nth-child(1) { transition-delay: 0.04s; }
.mob.open .mob-a:nth-child(2) { transition-delay: 0.08s; }
.mob.open .mob-a:nth-child(3) { transition-delay: 0.12s; }
.mob.open .mob-a:nth-child(4) { transition-delay: 0.16s; }
.mob.open .mob-a:nth-child(5) { transition-delay: 0.20s; }

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--black); }
  .nav-book:hover { background: var(--green); }
  .mob-a:hover { color: var(--green); }
}

/* =====================
   HERO
   ===================== */
.hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 100vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 60px clamp(24px, 5vw, 80px);
  position: relative;
}

/* Grain texture overlay — luxury detail */
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 0;
}

.hero-label {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hero-h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3rem, 6.5vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--black);
  position: relative;
  z-index: 1;
}

.h1-line { display: block; }

.h1-line-i {
  font-style: italic;
  color: var(--green);
}

/* Hero right — photo on top, text below */
.hero-right {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--white-3);
  overflow: hidden;
}

.hero-photo {
  position: relative;
  overflow: hidden;
}

/* Gradient overlay — softens bottom edge into the page */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 60%, rgba(247,244,237,0.6) 100%),
    linear-gradient(to right,  rgba(247,244,237,0.08) 0%, transparent 25%);
  pointer-events: none;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-right-inner {
  padding: 32px clamp(24px, 4vw, 56px) clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--white-3);
  background: var(--white);
}

.hero-p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 28px;
}

.hero-btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 16px 40px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s var(--out), transform 0.16s var(--out), box-shadow 0.2s var(--out);
  margin-bottom: 40px;
  will-change: transform;
}

.hero-btn:active { transform: scale(0.97); }

.hero-meta {
  display: flex;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--white-3);
}

.hm-val {
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2px;
}

.hm-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

@media (hover: hover) and (pointer: fine) {
  .hero-btn:hover {
    background: var(--green-l);
    box-shadow: 0 8px 28px rgba(74, 124, 89, 0.32);
  }
}

/* Magnetic base — JS handles the translate */
.magnetic {
  transition: transform 0.5s var(--out);
  will-change: transform;
}

/* =====================
   TICKER
   ===================== */
.ticker {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: slide 22s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.tick-sep {
  opacity: 0.35 !important;
  letter-spacing: 0 !important;
}

@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================
   SECTION COMMON
   ===================== */
.sec {
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
}

.eyebrow {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

.eyebrow-light { color: var(--sage); }

/* =====================
   ABOUT
   ===================== */
.about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.about-quote {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 40px;
}

.about-quote em {
  font-style: italic;
  color: var(--green);
}

.about-photo {
  overflow: hidden;
  max-width: 260px;
  border-radius: 140px 140px 100px 100px / 160px 160px 120px 120px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--out);
}

@media (hover: hover) and (pointer: fine) {
  .about-photo:hover img { transform: scale(1.04); }
}

.about-body {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 20px;
}

.about-body-2 {
  color: var(--text-3);
  font-size: 0.84rem;
}

.about-room {
  margin-top: 32px;
  overflow: hidden;
}

.about-room img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--out);
}

@media (hover: hover) and (pointer: fine) {
  .about-room:hover img { transform: scale(1.03); }
}

/* =====================
   PERMPOINT — dark, horizontal scroll
   ===================== */
.pp {
  background: var(--black);
  color: var(--white);
  padding-bottom: 0;
}

.pp-intro {
  padding: 0 clamp(24px, 5vw, 80px);
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.pp-h2 {
  font-family: var(--display);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.pp-h2-perm { color: var(--white); }
.pp-h2-point { font-style: italic; color: var(--sage); }

.pp-tagline {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-top: 18px;
}

.pp-scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0 clamp(60px, 8vw, 120px) 0;
  cursor: grab;
}

.pp-scroll-wrap::-webkit-scrollbar { display: none; }

.pp-scroll-track {
  display: flex;
  gap: 16px;
  padding: 0 clamp(24px, 5vw, 80px);
  width: max-content;
}

.pp-card {
  width: clamp(280px, 26vw, 360px);
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  transition: border-color 0.25s var(--out), transform 0.25s var(--out);
}

.pp-card-img {
  padding: 0;
  overflow: hidden;
  width: clamp(240px, 22vw, 320px);
  border: none;
}

.pp-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--out);
  pointer-events: none;
}

.pp-card-top {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.pp-card-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--sage);
  line-height: 1;
  opacity: 0.25;
}

.pp-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
}

.pp-card p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
}

.pp-card-cta {
  background: var(--black-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
  min-height: 300px;
}

.pp-excl {
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  color: var(--sage);
  line-height: 1.5;
}

.pp-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pp-price-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.pp-price-dur {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.btn-pp {
  display: inline-block;
  background: var(--sage);
  color: var(--black);
  padding: 14px 36px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s var(--out), transform 0.16s var(--out);
  will-change: transform;
}

.btn-pp:active { transform: scale(0.97); }

@media (hover: hover) and (pointer: fine) {
  .pp-card:hover {
    border-color: rgba(139, 175, 124, 0.18);
    transform: translateY(-2px);
  }
  .pp-card-img:hover img { transform: scale(1.04); }
  .btn-pp:hover { background: var(--green-l); }
}

/* =====================
   SERVICES
   ===================== */
.srv { background: var(--white-2); }

.srv-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.srv-head { margin-bottom: clamp(40px, 5vw, 64px); }

.srv-h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--black);
}

.srv-cat-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-3);
}

.srv-item {
  display: grid;
  grid-template-columns: 80px 1fr auto 36px;
  gap: 20px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--white-3);
  cursor: pointer;
  transition: opacity 0.2s var(--out);
  text-decoration: none;
}

.srv-item:last-child { border-bottom: 1px solid var(--white-3); }

.srv-item-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.srv-num {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
  opacity: 0.12;
}

.srv-sig {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

.srv-item-mid h3 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--black);
  transition: color 0.2s var(--out);
}

.srv-item-mid p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-2);
}

.srv-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  padding-right: 4px;
}

.srv-price {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
  transition: color 0.2s var(--out);
}

.srv-dur {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--text-3);
  text-transform: uppercase;
}

.srv-arrow {
  color: var(--text-3);
  transition: transform 0.25s var(--out), color 0.2s var(--out);
}

@media (hover: hover) and (pointer: fine) {
  .srv-items:hover .srv-item { opacity: 0.3; }
  .srv-items:hover .srv-item:hover { opacity: 1; }
  .srv-item:hover .srv-item-mid h3 { color: var(--green); }
  .srv-item:hover .srv-price { color: var(--green); }
  .srv-item:hover .srv-arrow {
    transform: translate(4px, -4px);
    color: var(--green);
  }
}

/* Add-ons — borders on items directly, no grid background */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border-top: 1px solid var(--white-3);
}

/* First column items get a left border */
.addon-item:nth-child(odd) {
  border-left: 1px solid var(--white-3);
}

/* Last item alone on its row → same size, centered */
.addon-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 50%;
  border-right: 1px solid var(--white-3);
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white-2);
  gap: 16px;
  border-right: 1px solid var(--white-3);
  border-bottom: 1px solid var(--white-3);
  transition: background 0.2s var(--out);
}

@media (hover: hover) and (pointer: fine) {
  .addon-item:hover { background: var(--white-3); }
}

.addon-name {
  font-size: 0.8rem;
  color: var(--text-2);
}

.addon-price {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
}

/* =====================
   GALLERY
   ===================== */
.gal { background: var(--white); }

.gal-inner { max-width: 1280px; margin: 0 auto; }

.gal-head { margin-bottom: 40px; }

.gal-h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--black);
}

/* Gallery — CSS masonry columns: shows photos at natural ratio without chaos */
.gal-grid {
  columns: 3;
  column-gap: 10px;
}

.gal-cell {
  break-inside: avoid;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.gal-cell img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.65s var(--out);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .gal-cell:hover img { transform: scale(1.04); }
}

/* Image lazy load fade */
.gal-cell img,
.about-photo img,
.about-room img,
.ldm-photo img,
.pp-card-img img,
.hero-photo img {
  opacity: 0;
  transition: opacity 0.6s var(--out), transform 0.65s var(--out);
}

.gal-cell img.img-loaded,
.about-photo img.img-loaded,
.about-room img.img-loaded,
.ldm-photo img.img-loaded,
.pp-card-img img.img-loaded,
.hero-photo img.img-loaded {
  opacity: 1;
}

/* =====================
   LDM SKIN CARE — dark, editorial
   ===================== */
.ldm {
  background: var(--black-2);
  color: var(--white);
}

.ldm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.ldm-h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
}

.ldm-p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
  max-width: 380px;
}

.ldm-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.ldm-steps span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.ldm-arrow {
  color: var(--sage) !important;
  font-size: 0.72rem !important;
}

.ldm-happy {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  padding: 16px 20px;
  border: 1px solid rgba(139, 175, 124, 0.25);
}

.ldm-happy-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
}

.ldm-happy-detail {
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

.ldm-btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 16px 36px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s var(--out), background 0.2s var(--out), transform 0.16s var(--out);
  will-change: transform;
}

.ldm-btn:active { transform: scale(0.97); }

@media (hover: hover) and (pointer: fine) {
  .ldm-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
  }
}

.ldm-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.ldm-photo {
  overflow: hidden;
}

.ldm-photo-1 { grid-column: 1 / 3; }
.ldm-photo-2 { grid-column: 2; }

.ldm-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--out);
}

@media (hover: hover) and (pointer: fine) {
  .ldm-photo:hover img { transform: scale(1.03); }
}

/* =====================
   TRAINING
   ===================== */
.train { background: var(--white-2); }

.train-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.train-h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: clamp(40px, 5vw, 72px);
}

.train-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 100px);
}

.train-lead {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.58;
  color: var(--text);
}

.train-feat {
  display: flex;
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--white-3);
}

.train-feat:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
}

.train-feat-n {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green);
  min-width: 24px;
  line-height: 1.4;
}

.train-feat h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 3px;
}

.train-feat p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-2);
}

.train-cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.04em;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--green);
  transition: color 0.2s var(--out), border-color 0.2s var(--out);
}

@media (hover: hover) and (pointer: fine) {
  .train-cta:hover { color: var(--black); border-color: var(--black); }
}

/* =====================
   GOOGLE REVIEWS
   ===================== */
.reviews {
  padding: 100px clamp(24px, 5vw, 80px);
  background: var(--white-2);
}

.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-header {
  margin-bottom: 64px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.stars {
  display: flex;
  gap: 3px;
  color: #FBBC04;
}
.stars svg {
  width: 20px;
  height: 20px;
}

.reviews-avg {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-1);
  letter-spacing: -0.02em;
}

.reviews-count {
  font-size: 0.8rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--white-3);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: #FBBC04;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-2);
  flex: 1;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--white-3);
}

.review-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: 0.04em;
}

.review-date {
  font-size: 0.72rem;
  color: var(--text-2);
}

.reviews-cta {
  display: flex;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--white-3);
  padding-bottom: 4px;
  transition: color 0.2s var(--out), border-color 0.2s var(--out);
}
.reviews-link:hover { color: var(--text-1); border-color: var(--text-1); }

@media (max-width: 960px) {
  .reviews-track { grid-template-columns: 1fr; gap: 12px; }
}

/* =====================
   CONTACT
   ===================== */
.contact { padding: 0; }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.contact-left {
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 100px);
}

.contact-h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 36px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
}

.contact-info a { transition: color 0.2s var(--out); }

@media (hover: hover) and (pointer: fine) {
  .contact-info a:hover { color: var(--white); }
}

.contact-right {
  background: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(48px, 6vw, 100px);
}

.contact-big-btn {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 24px;
  transition: transform 0.16s var(--out);
  will-change: transform;
}

.contact-big-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--out);
}

.contact-big-btn:active { transform: scale(0.98); }

.contact-sub-btn {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  transition: color 0.2s var(--out);
}

.contact-sms-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: color 0.2s var(--out), border-color 0.2s var(--out), background 0.2s var(--out);
}
.contact-sms-btn::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.75)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  .contact-big-btn:hover::after { transform: scaleX(1); }
  .contact-sub-btn:hover { color: var(--white); }
  .contact-sms-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
}

/* =====================
   FOOTER
   ===================== */
.ft {
  background: var(--black);
  padding: 28px clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.ft-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ft-logo {
  height: 22px;
  width: auto;
  opacity: 0.35;
}

.ft-copy {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.06em;
}

/* =====================
   SCROLL REVEAL ANIMATIONS
   Emil Kowalski philosophy:
   rv   → clip-path wipe (headings)
   rv-up → scale(0.97) + opacity (content)
   Duration: 600ms / 450ms | Ease: --out
   ===================== */
.rv {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.65s var(--out);
}

.rv.vis {
  clip-path: inset(0 0 -24px 0);
}

.rv-up {
  opacity: 0;
  transform: scale(0.97) translateY(18px);
  transition: opacity 0.48s var(--out), transform 0.48s var(--out);
}

.rv-up.vis {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Stagger siblings */
.rv-up:nth-child(2) { transition-delay: 0.05s; }
.rv-up:nth-child(3) { transition-delay: 0.10s; }
.rv-up:nth-child(4) { transition-delay: 0.15s; }
.rv-up:nth-child(5) { transition-delay: 0.20s; }

/* Hero entrance stagger */
.hero .h1-line:nth-child(1) { transition-delay: 0.15s; }
.hero .h1-line:nth-child(2) { transition-delay: 0.28s; }
.hero .h1-line:nth-child(3) { transition-delay: 0.41s; }
.hero .h1-line:nth-child(4) { transition-delay: 0.54s; }

/* Fallback for slow devices */
@keyframes autoShow {
  to { clip-path: inset(0); opacity: 1; transform: none; }
}

.rv, .rv-up { animation: autoShow 0s 3s forwards; }
.rv.vis, .rv-up.vis { animation: none; }

/* =====================
   DESKTOP — photo layout fixes
   Natural ratio works on mobile (single col)
   but desktop multi-col grids need cover + sizing
   ===================== */
@media (min-width: 961px) {
  /* Hero photo fills the column height */
  .hero-photo {
    flex: 1;
    min-height: 0;
  }
  .hero-photo img {
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
  }

  /* About — pill portrait, studio room landscape */
  .about-photo { aspect-ratio: 3 / 4; }
  .about-photo img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .about-room { aspect-ratio: 4 / 3; }
  .about-room img {
    height: 100%;
    object-fit: cover;
  }

  /* LDM skin care photos */
  .ldm-photos {
    grid-template-rows: 320px 200px;
  }
  .ldm-photo img {
    height: 100%;
    object-fit: cover;
  }

  /* PermPoint horizontal scroll photo cards */
  .pp-card-img { aspect-ratio: 3 / 4; }
  .pp-card-img img {
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
  .topbar { display: none; }
  .nav { top: 0; }
  .nav-links { display: none; }
  .burger { display: flex; }

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

  .hero-left {
    padding: 120px clamp(24px, 5vw, 48px) 48px;
    min-height: 60vw;
  }

  .hero-right {
    border-left: none;
    border-top: 1px solid var(--white-3);
  }

  .hero-right-inner {
    padding: 28px clamp(24px, 5vw, 48px) 48px;
  }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { margin: 0 auto; }

  .ldm-inner { grid-template-columns: 1fr; }
  .ldm-photos { display: none; }

  .train-cols { grid-template-columns: 1fr; gap: 40px; }

  .gal-grid { columns: 2; }

  .contact-split { grid-template-columns: 1fr; }
  .contact-right { min-height: 300px; }

  .srv-item { grid-template-columns: 56px 1fr auto 28px; }
}

@media (max-width: 600px) {
  .nav { padding: 12px 20px; }
  .logo-img { height: 40px; }

  .hero-h1 { font-size: clamp(3rem, 14vw, 5rem); }

  .hero-meta { flex-wrap: wrap; gap: 20px; justify-content: center; }

  .pp-h2 { font-size: clamp(3.5rem, 18vw, 6rem); }

  .gal-grid { columns: 1; }

  .srv-item {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .srv-item-left { display: none; }
  .srv-arrow { display: none; }

  .ft-inner { flex-direction: column; gap: 8px; }

}

/* =====================
   REDUCED MOTION
   ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .rv, .rv-up {
    clip-path: none;
    opacity: 1;
    transform: none;
    animation: none;
  }
  .ticker-track { animation: none; }
  .cursor { display: none !important; }
  body { cursor: auto !important; }
}
