/* ==============================================
   DESIGN TOKENS
   ============================================== */
:root {
  --color-ivory:      #F8F5F0;
  --color-pearl:      #FFFCF8;
  --color-linen:      #EDE8E1;
  --color-stone:      #C4BAB0;
  --color-driftwood:  #9A8E82;
  --color-walnut:     #6B5D50;
  --color-charcoal:   #3A322B;
  --color-night:      #1E1915;
  --color-rose:       #C4978A;
  --color-rose-light: #E8CBC3;
  --color-rose-glow:  rgba(196, 151, 138, 0.12);
  --color-copper:     #B8876E;
  --color-gold:       #D4B896;
  --bg-primary:     var(--color-ivory);
  --bg-elevated:    var(--color-pearl);
  --bg-dark:        var(--color-night);
  --text-primary:   var(--color-night);
  --text-secondary: var(--color-walnut);
  --text-muted:     var(--color-driftwood);
  --text-on-dark:   var(--color-ivory);
  --accent:         var(--color-rose);
  --accent-light:   var(--color-rose-light);
  --border:         var(--color-linen);
  --border-subtle:  rgba(0, 0, 0, 0.06);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --sp-2xs: 0.25rem;
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 8rem;
  --max-w:  1280px;
  --nav-h:  68px;
  --shadow-sm:   0 1px 3px rgba(30,25,21,0.04);
  --shadow-md:   0 4px 20px rgba(30,25,21,0.07);
  --shadow-lg:   0 12px 40px rgba(30,25,21,0.12);
  --shadow-card: 0 2px 12px rgba(30,25,21,0.06);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ==============================================
   RESET
   ============================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.25rem, 3vw, 2rem); }

/* Lazy image fade-in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s ease;
}
img[loading="lazy"].img-loaded {
  opacity: 1;
}

/* ==============================================
   LOADER
   ============================================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-night);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader__logo {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.loader__logo img { display: block; }
#loader.ready .loader__logo { opacity: 1; transform: translateY(0); }

/* ==============================================
   GRAIN OVERLAY
   ============================================== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* Custom cursor removed — using native cursor */
#cursor, #cursor-ring { display: none; }

/* ==============================================
   FLOATING BOOK BUTTON
   ============================================== */
#float-book {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.5rem;
  background: var(--color-night);
  color: var(--color-ivory);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(30,25,21,0.28);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}
#float-book.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#float-book:hover {
  background: var(--color-charcoal);
  box-shadow: 0 12px 40px rgba(30,25,21,0.36);
}
#float-book .dot {
  width: 7px; height: 7px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* ==============================================
   ANIMATIONS
   ============================================== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroImageReveal {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.85s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.35s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.42s; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.49s; }
.reveal-stagger > .reveal:nth-child(9) { transition-delay: 0.56s; }

/* Word-by-word split text */
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.split-word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.split-word.visible span { opacity: 1; transform: translateY(0); }

/* ==============================================
   NAVIGATION
   ============================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(248,245,240,0.82);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(248,245,240,0.97);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
}
.nav__logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.nav__logo:hover { opacity: 0.78; }
.nav__logo img {
  height: 36px;
  width: auto;
  max-width: 160px;
  display: block;
}
.loader__logo img {
  height: 120px;
  width: auto;
  max-width: 520px;
  display: block;
  mix-blend-mode: screen;
}
.footer__brand img {
  height: 60px;
  width: auto;
  max-width: 280px;
  display: block;
  mix-blend-mode: screen;
}
.nav__menu { display: flex; align-items: center; gap: var(--sp-lg); list-style: none; }
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.nav__link:hover,
.nav__link.active { color: var(--text-primary); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 1.3rem;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.nav__cta:hover {
  background: var(--color-charcoal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.btn:hover::before { transform: translateX(0); }
.btn--primary {
  padding: 0.95rem 1.9rem;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border: 2px solid var(--bg-dark);
  transition: background 0.3s, border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}
.btn--primary:hover {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--ghost {
  padding: 0.95rem 1.9rem;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
  transition: border-color 0.3s, transform 0.25s, background 0.3s;
}
.btn--ghost:hover {
  border-color: var(--color-stone);
  background: rgba(30,25,21,0.04);
  transform: translateY(-2px);
}
.btn--gold {
  padding: 0.95rem 1.9rem;
  background: var(--color-gold);
  color: var(--color-night);
  border: 2px solid var(--color-gold);
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
}
.btn--gold:hover {
  background: #c8a880;
  border-color: #c8a880;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,184,150,0.4);
}
.btn__arrow { transition: transform 0.3s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ==============================================
   SECTION UTILITIES
   ============================================== */
.section { padding: clamp(3rem, 8vw, var(--sp-3xl)) 0; }
.section--alt { background: var(--bg-elevated); }
.section--linen { background: var(--color-linen); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }

.section-head { text-align: center; margin-bottom: clamp(2rem, 5vw, var(--sp-xl)); }
.section-head__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-sm);
}
.section-head__tag::before,
.section-head__tag::after { content: ''; width: 20px; height: 1.5px; background: var(--accent); }
.section--dark .section-head__tag { color: var(--color-gold); }
.section--dark .section-head__tag::before,
.section--dark .section-head__tag::after { background: var(--color-gold); }
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: var(--sp-xs);
}
.section-head__sub {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}
.section--dark .section-head__sub { color: rgba(248,245,240,0.5); }

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background: var(--bg-elevated);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 72% 10%, var(--color-rose-glow) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(212,184,150,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 14%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--color-linen) 25%, var(--color-linen) 75%, transparent);
  opacity: 0.45;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: var(--sp-xl);
  align-items: center;
  padding-block: var(--sp-2xl);
  position: relative;
}
.hero__content { animation: heroFadeUp 1s cubic-bezier(0.25,0.46,0.45,0.94) 0.2s both; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-md);
}
.hero__tag::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--accent);
  animation: lineGrow 0.8s ease 0.8s both;
  transform-origin: left;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 4.8rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.01em;
}
.hero__title em { font-style: italic; color: var(--color-walnut); font-weight: 400; }
.hero__desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 450px;
  margin-bottom: var(--sp-lg);
}
.hero__actions { display: flex; align-items: center; gap: var(--sp-sm); }
.hero__visual {
  position: relative;
  animation: heroImageReveal 1.3s cubic-bezier(0.25,0.46,0.45,0.94) 0.15s both;
}
.hero__img-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  clip-path: inset(0 round var(--radius-md));
}
.hero__img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* Parallax wrapper — no GPU promotion here; clipping handled solely by hero__img-frame */
.hero__parallax { width: 100%; height: 100%; }
.hero__parallax img { height: 115%; width: 100%; object-fit: cover; }

.hero__visual::before {
  content: '';
  position: absolute;
  top: -14px; right: -14px;
  width: 55%; height: 55%;
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0;
  animation: heroFadeUp 1s ease 1s both;
}
.hero__badge {
  position: absolute;
  bottom: 24px; left: 20px;
  z-index: 2;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
  animation: floatBadge 4.5s ease-in-out 1.5s infinite;
  backdrop-filter: blur(8px);
}
.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.1;
}
/* Second floating pill */
.hero__pill {
  position: absolute;
  top: 28px; right: -16px;
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  animation: floatBadge 5s ease-in-out 2s infinite;
}

/* ==============================================
   MARQUEE BAND
   ============================================== */
.marquee-band {
  padding: 0;
  overflow: hidden;
  background: var(--color-night);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding: 18px 0;
}
.marquee-track .item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-lg);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,245,240,0.55);
  padding: 0 var(--sp-lg);
}
.marquee-track .item strong { color: var(--color-gold); }
.marquee-track .sep {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.7;
  flex-shrink: 0;
}

/* ==============================================
   STATS STRIP
   ============================================== */
.stats-strip {
  padding: var(--sp-xl) 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: var(--sp-md) var(--sp-lg);
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num .plus { color: var(--accent); }
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==============================================
   SERVICE CARDS
   ============================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 2vw, var(--sp-md));
}
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
}
.service-card__img {
  aspect-ratio: 4 / 5;
  clip-path: inset(0 round var(--radius-md) var(--radius-md) 0 0);
  position: relative;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover .service-card__img img { transform: scale(1.07); }

/* Gradient overlay on image */
.service-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,25,21,0.35) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover .service-card__img::after { opacity: 1; }

.service-card__price-tag {
  position: absolute;
  top: var(--sp-sm); right: var(--sp-sm);
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: background 0.3s;
  line-height: 1;
}
.service-card:hover .service-card__price-tag { background: var(--accent); }
.service-card__price-tag--consult {
  background: var(--accent);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.9rem;
}
.service-card__body { padding: var(--sp-md); }
.service-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--sp-2xs);
  line-height: 1.3;
}
.service-card__duration {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-xs);
}
.service-card__desc {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: var(--sp-md);
}
.service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0;
  transition: color 0.3s ease, gap 0.3s ease;
  text-decoration: none;
}
.service-card__btn:hover { color: var(--color-copper); gap: 10px; }
.service-card__btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
.service-card__btn:hover svg { transform: translateX(2px); }

/* ==============================================
   ABOUT
   ============================================== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-xl);
  align-items: center;
}
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--sp-md);
}
.about__tag::before { content: ''; width: 28px; height: 1.5px; background: var(--color-gold); }
.about__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--sp-md);
}
.about__text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.92;
  color: rgba(248,245,240,0.73);
  margin-bottom: var(--sp-sm);
}
.about__socials { display: flex; gap: var(--sp-sm); margin-top: var(--sp-lg); }
.about__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(248,245,240,0.15);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.about__social-link:hover {
  border-color: var(--color-gold);
  background: rgba(248,245,240,0.06);
  transform: translateY(-3px);
}
.about__social-link svg { width: 16px; height: 16px; fill: rgba(248,245,240,0.55); transition: fill 0.3s; }
.about__social-link:hover svg { fill: var(--color-gold); }

/* ==============================================
   GALLERY
   ============================================== */
.gallery-grid { columns: 3; column-gap: var(--sp-sm); }
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--sp-sm);
  position: relative;
  cursor: zoom-in;
  clip-path: inset(0 round var(--radius-md));
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,25,21,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-md);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }
/* Zoom icon overlay */
.gallery-item__zoom {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; transform: scale(1); }
.gallery-item__zoom svg { width: 16px; height: 16px; stroke: #fff; }

/* ==============================================
   LIGHTBOX
   ============================================== */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(15,12,9,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: var(--sp-md);
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img {
  max-width: min(90vw, 900px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
#lightbox.open img { transform: scale(1); }
#lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
#lightbox-close:hover { background: rgba(255,255,255,0.2); }
#lightbox-nav {
  position: absolute;
  bottom: 24px;
  left: 50%; transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.lb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s, transform 0.3s;
}
.lb-dot.active { background: var(--color-gold); transform: scale(1.4); }

/* ==============================================
   REVIEWS CAROUSEL
   ============================================== */
.reviews-section { }
.reviews-section .section-head__sub {
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: var(--sp-xs);
}
.reviews-carousel {
  margin-top: var(--sp-lg);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}
.reviews-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.review-card {
  flex-shrink: 0;
  /* width set by JS to match carousel exactly */
  padding: var(--sp-lg) clamp(var(--sp-md), 8vw, var(--sp-xl));
  background: var(--bg-elevated);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: var(--sp-sm);
}
.review-stars {
  font-size: 1.4rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-align: center;
}
.review-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
  quotes: none;
}
.review-author {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}
.reviews-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.reviews-btn:hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-on-dark);
}
.reviews-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.reviews-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-stone);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.reviews-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .review-text { font-size: 0.95rem; }
  .review-stars { font-size: 1.1rem; }
  .reviews-controls { gap: var(--sp-sm); margin-top: var(--sp-md); }
  .reviews-btn { width: 40px; height: 40px; font-size: 1rem; }
}
@media (max-width: 400px) {
  .review-text { font-size: 0.9rem; }
  .reviews-dots { gap: 6px; }
  .reviews-dot { width: 7px; height: 7px; }
}

/* ==============================================
   FAQ
   ============================================== */
.faq__list { max-width: 780px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: var(--sp-md) 0;
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.3s;
}
.faq__question:hover { color: var(--color-walnut); }
.faq__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  color: var(--accent);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq__icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq__item.open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.25,0.46,0.45,0.94); }
.faq__item.open .faq__answer { max-height: 320px; }
.faq__answer p {
  padding-top: var(--sp-sm);
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ==============================================
   CTA BAND
   ============================================== */
.cta-band {
  padding: var(--sp-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,184,150,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: var(--sp-sm);
  color: var(--text-on-dark);
}
.cta-band__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(248,245,240,0.58);
  margin-bottom: var(--sp-lg);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  padding: var(--sp-xl) 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-top: 1px solid rgba(248,245,240,0.06);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-xl);
}
.footer__brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: var(--sp-xs); }
.footer__brand span { color: var(--color-gold); font-style: italic; }
.footer__tagline { font-size: 0.85rem; font-weight: 300; color: rgba(248,245,240,0.48); max-width: 280px; line-height: 1.65; }
.footer__links { display: flex; gap: var(--sp-lg); list-style: none; }
.footer__links a { font-size: 0.82rem; font-weight: 400; color: rgba(248,245,240,0.52); transition: color 0.3s; }
.footer__links a:hover { color: var(--text-on-dark); }
.footer__bottom {
  margin-top: var(--sp-lg);
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(248,245,240,0.06);
  text-align: center;
  font-size: 0.73rem;
  color: rgba(248,245,240,0.55);
}

/* ==============================================
   RESPONSIVE — TABLET
   ============================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n+1)::before { display: none; }
  .stat-item:nth-child(4)::before { display: block; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-top: var(--sp-xl); padding-bottom: var(--sp-xl); gap: var(--sp-lg); }
  .hero__desc { margin-inline: auto; }
  .hero__actions { justify-content: center; flex-wrap: wrap; }
  .hero__tag { justify-content: center; }
  .hero__visual { max-width: 380px; margin: 0 auto; }
  .hero__visual::before { display: none; }
  .hero__badge { left: 16px; right: auto; }
  .hero__pill { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .about__img-wrap { max-width: 380px; margin: 0 auto; }
  .footer__inner { flex-direction: column; gap: var(--sp-lg); }
}
@media (max-width: 640px) {
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--bg-primary);
    padding: var(--sp-md);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: var(--sp-sm);
  }
  /* Hero */
  .hero::after { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__img-frame { aspect-ratio: 3 / 4; }
  .hero__parallax img { height: 115%; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-xs); }
  .service-card__img { aspect-ratio: 1 / 1; }
  .service-card__body { padding: 1rem; }
  .service-card__name { font-size: 0.95rem; }
  .service-card__desc { font-size: 0.82rem; }
  .service-card__price-tag { font-size: 0.9rem; padding: 0.35rem 0.6rem; }

  /* About */
  .about__img-wrap { aspect-ratio: 4 / 5; max-width: 100%; }

  /* Gallery */
  .gallery-grid { columns: 2; column-gap: var(--sp-xs); }
  .gallery-item { margin-bottom: var(--sp-xs); }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer__links { flex-wrap: wrap; gap: var(--sp-sm); }

  /* Other */
  #float-book { display: none; }
  .btn { justify-content: center; }
}
