/* ===================================================================
   NAILED & GO — Luxury Editorial Nail Atelier
   =================================================================== */

:root {
  /* ---- Color tokens ---- */
  --ink:        #0A0A0A;
  --ink-soft:   #141014;
  --burgundy:   #4A0E17;
  --wine:       #6B1220;
  --wine-light: #8A1B2C;
  --blush:      #EFC6D2;
  --ivory:      #F6F2EE;
  --ivory-dim:  #E8E1D9;
  --chrome:     #C9CDD3;
  --chrome-dark:#7C828B;
  --magenta:    #FF2D7A;
  --magenta-soft: rgba(255,45,122,0.35);

  /* ---- Type ---- */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- Layout ---- */
  --container: 1400px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 4px;
  --radius-md: 14px;
  --radius-lg: 28px;

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  height: -webkit-fill-available;
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button, input, select, textarea { font: inherit; color: inherit; -webkit-tap-highlight-color: transparent; }
button { -webkit-appearance: none; appearance: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
* { -webkit-tap-highlight-color: transparent; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--magenta); color: var(--ivory); }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}

/* ===================== GRAIN TEXTURE ===================== */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===================== PRELOADER ===================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s var(--ease-out);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__mark {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 44px);
  letter-spacing: 0.18em;
  color: var(--ivory);
  opacity: 0;
  animation: preloaderPulse 1.4s var(--ease-soft) forwards;
}
@keyframes preloaderPulse {
  0% { opacity: 0; letter-spacing: 0.4em; }
  60% { opacity: 1; }
  100% { opacity: 1; letter-spacing: 0.18em; }
}

/* ===================== CUSTOM CURSOR ===================== */
.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--magenta);
  pointer-events: none;
  z-index: 9980;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-soft), height 0.25s var(--ease-soft), background 0.25s;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot { display: block; }
}
.cursor-dot.is-hover {
  width: 46px;
  height: 46px;
  background: var(--magenta-soft);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

/* ===================== TYPE UTILITIES ===================== */
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  padding: 0 var(--gutter);
  text-align: center;
}
.section-head--light { color: var(--ink); }

.section-head__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 18px;
}
.section-head__eyebrow--light { color: var(--magenta); }

.section-head__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section-head__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--blush);
}
.section-head--light .section-head__title em { color: var(--wine); }

.section-head__copy {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(246,242,238,0.65);
}
.section-head--light .section-head__copy { color: rgba(10,10,10,0.6); }

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 6vw, 64px);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 38px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--magenta), var(--wine-light));
  color: var(--ivory);
  box-shadow: 0 8px 30px -8px rgba(255,45,122,0.55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px rgba(255,45,122,0.7);
}

.btn--primary-dark {
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 8px 30px -10px rgba(10,10,10,0.4);
}
.btn--primary-dark:hover { transform: translateY(-2px); background: var(--wine); }

.btn--ghost {
  background: rgba(246,242,238,0.06);
  border-color: rgba(246,242,238,0.35);
  color: var(--ivory);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(246,242,238,0.14);
  border-color: rgba(246,242,238,0.6);
}

.btn--line {
  background: transparent;
  border-color: rgba(246,242,238,0.4);
  color: var(--ivory);
  margin-top: 8px;
}
.btn--line:hover { border-color: var(--magenta); color: var(--magenta); }

.btn--line-dark {
  background: transparent;
  border-color: rgba(10,10,10,0.3);
  color: var(--ink);
}
.btn--line-dark:hover { border-color: var(--wine); color: var(--wine); }

.btn--block { width: 100%; }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.4s var(--ease-soft), backdrop-filter 0.4s, padding 0.4s var(--ease-soft);
}
.site-header.is-scrolled {
  background: rgba(10,10,10,0.78);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgba(246,242,238,0.08);
}

.masthead {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.masthead__logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  font-weight: 500;
  grid-column: 2;
  justify-self: center;
}

.masthead__nav {
  display: none;
  grid-column: 2;
  justify-self: center;
  gap: 36px;
}
.masthead__nav a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,242,238,0.78);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.masthead__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--magenta);
  transition: right 0.35s var(--ease-out);
}
.masthead__nav a:hover { color: var(--ivory); }
.masthead__nav a:hover::after { right: 0; }

.masthead__cta {
  grid-column: 4;
  justify-self: end;
  display: none;
  padding: 11px 24px;
  border-radius: 999px;
  background: rgba(246,242,238,0.08);
  border: 1px solid rgba(246,242,238,0.3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.masthead__cta:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  transform: translateY(-1px);
}

@media (min-width: 880px) {
  .masthead { grid-template-columns: auto auto 1fr auto; }
  .masthead__logo { grid-column: 1; justify-self: start; }
  .masthead__nav { display: flex; grid-column: 2; justify-self: start; margin-left: 12px; }
  .masthead__cta { display: inline-flex; grid-column: 4; }
  .nav-toggle { display: none; }
}

/* nav toggle (mobile hamburger) */
.nav-toggle {
  grid-column: 1;
  justify-self: start;
  background: none;
  border: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 600;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.35s var(--ease-out), opacity 0.25s, top 0.35s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.is-active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* mobile fullscreen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(28px, 9vw, 42px);
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid rgba(246,242,238,0.1);
  color: var(--ivory);
}
.mobile-menu__wa {
  margin-top: 36px;
  display: inline-flex;
  align-self: flex-start;
  color: var(--magenta);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (min-width: 880px) { .mobile-menu { display: none; } }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
  transform: scale(1.08);
  animation: heroKenBurns 18s var(--ease-soft) forwards;
  filter: saturate(1.08) contrast(1.05);
}
@keyframes heroKenBurns {
  0% { transform: scale(1.14); }
  100% { transform: scale(1.0); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.15) 22%, rgba(10,10,10,0.35) 55%, rgba(10,10,10,0.92) 100%),
    linear-gradient(90deg, rgba(74,14,23,0.55) 0%, rgba(10,10,10,0.1) 45%, transparent 70%);
}

.hero__coverline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 100px var(--gutter) 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,242,238,0.75);
}
.hero__coverline--bottom {
  padding: 0 var(--gutter) 36px;
  margin-top: auto;
  align-items: flex-end;
}
.hero__coverline span {
  white-space: nowrap;
}
.hero__coverline--bottom span:last-child {
  text-align: right;
  white-space: normal;
  max-width: 46vw;
  padding-right: 74px; /* clears the floating WhatsApp button on desktop */
}
.hero__coverline--single { justify-content: flex-end; }
@media (max-width: 560px) {
  .hero__coverline { padding-top: 88px; font-size: 9.5px; letter-spacing: 0.1em; }
  .hero__coverline--bottom { padding-bottom: 24px; }
  .hero__coverline--bottom span:last-child { max-width: 38vw; line-height: 1.4; padding-right: 0; }
}
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.scroll-cue i {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, var(--magenta), transparent);
  display: inline-block;
  animation: scrollCue 1.8s var(--ease-soft) infinite;
}
@keyframes scrollCue {
  0% { transform: scaleY(0.3); opacity: 0.3; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.3; transform-origin: bottom; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) 56px;
  margin-top: -40px;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.3s forwards;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(58px, 14vw, 156px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero__headline .line {
  display: block;
  overflow: hidden;
}
.hero__headline .line span,
.hero__headline .line {
  opacity: 0;
  transform: translateY(110%);
  animation: lineUp 1s var(--ease-out) forwards;
}
.hero__headline .line:nth-child(1) { animation-delay: 0.45s; }
.hero__headline .line:nth-child(2) { animation-delay: 0.62s; }
.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--blush);
}
@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  max-width: 460px;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: rgba(246,242,238,0.78);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.85s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1.05s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 880px) {
  .hero__content { max-width: 760px; }
}

/* ===================================================================
   MARQUEE STRIP
   =================================================================== */
.marquee {
  background: var(--wine);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 5;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: marqueeScroll 32s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 2.4vw, 22px);
  white-space: nowrap;
  color: var(--blush);
}
.marquee__track span:nth-child(odd) { color: rgba(239,198,210,0.5); font-style: normal; font-size: 0.7em; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================================================================
   COLLECTIONS
   =================================================================== */
.collections {
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  background: var(--ink);
}

.collection-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  isolation: isolate;
}
.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
}
.collection-card:hover img { transform: scale(1.08); filter: saturate(1.15); }

.collection-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.15) 45%, rgba(10,10,10,0.92) 100%);
  transition: background 0.5s;
}
.collection-card:hover .collection-card__veil {
  background: linear-gradient(180deg, rgba(74,14,23,0.15) 0%, rgba(10,10,10,0.3) 45%, rgba(10,10,10,0.96) 100%);
}

.collection-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px;
  z-index: 2;
}
.collection-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--magenta);
  margin-bottom: 8px;
}
.collection-card__body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 500;
  margin-bottom: 8px;
}
.collection-card__body p {
  font-size: 13.5px;
  color: rgba(246,242,238,0.7);
  line-height: 1.5;
  max-width: 30ch;
}
.collection-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.collection-card__cta i { transition: transform 0.3s; font-style: normal; }
.collection-card:hover .collection-card__cta { opacity: 1; transform: translateY(0); }
.collection-card:hover .collection-card__cta i { transform: translateX(4px); }

.collection-card--lg { grid-column: span 2; aspect-ratio: 16/10; }
.collection-card--wide { grid-column: span 2; aspect-ratio: 16/9; }

@media (min-width: 720px) {
  .collection-grid { grid-template-columns: repeat(4, 1fr); }
  .collection-card--lg { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .collection-card--wide { grid-column: span 4; aspect-ratio: 21/9; }
  .collection-card:not(.collection-card--lg):not(.collection-card--wide) { aspect-ratio: 3/4; }
}

/* ===================================================================
   PORTFOLIO MASONRY
   =================================================================== */
.portfolio {
  background: var(--ivory);
  color: var(--ink);
  padding: clamp(80px, 12vw, 140px) 0;
}

.masonry {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  column-count: 1;
  column-gap: 16px;
}
@media (min-width: 640px) { .masonry { column-count: 2; } }
@media (min-width: 1024px) { .masonry { column-count: 3; } }

.masonry__item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.masonry__item img,
.masonry__item video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease-out);
  aspect-ratio: 1/1;
  object-fit: cover;
  background: var(--ink);
}
.masonry__item--tall img,
.masonry__item--tall video { aspect-ratio: 4/5; }
.masonry__item--wide img,
.masonry__item--wide video { aspect-ratio: 16/10; }

.masonry__item:hover img,
.masonry__item:hover video { transform: scale(1.06); }

.masonry__play {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10,10,10,0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s var(--ease-out);
}
.masonry__play svg {
  width: 13px;
  height: 13px;
  fill: var(--ivory);
  margin-left: 2px;
}
.masonry__item:hover .masonry__play { opacity: 0; }

.masonry__item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.78) 100%);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  transition: opacity 0.45s var(--ease-out);
}
.masonry__item:hover figcaption {
  opacity: 1;
}
.masonry__name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ivory);
  margin-bottom: 6px;
}
.masonry__ask {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(246,242,238,0.92);
  padding: 9px 16px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translateY(8px);
  transition: transform 0.45s var(--ease-out) 0.05s, background 0.3s;
}
.masonry__item:hover .masonry__ask { transform: translateY(0); }
.masonry__ask:hover { background: var(--magenta); color: var(--ivory); }

/* ===================================================================
   WHY NAILED & GO
   =================================================================== */
.why {
  background: var(--ink);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  position: relative;
}
.why::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246,242,238,0.15), transparent);
}

.why__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 960px) {
  .why__grid { grid-template-columns: 0.85fr 1.15fr; gap: 80px; }
}

.why__intro { align-self: start; }
@media (min-width: 960px) {
  .why__intro {
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
  }
}
.why__intro .section-head__eyebrow { margin-bottom: 18px; }
.why__intro .section-head__title { text-align: left; margin-bottom: 22px; }
.why__lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(246,242,238,0.7);
  margin-bottom: 28px;
  max-width: 46ch;
}

.why__list { display: flex; flex-direction: column; }
.why__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(246,242,238,0.1);
}
.why__row:first-child { padding-top: 0; }
.why__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--magenta);
}
.why__row h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 500;
  margin-bottom: 10px;
}
.why__row p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(246,242,238,0.62);
  max-width: 56ch;
}

/* ===================================================================
   REVIEWS
   =================================================================== */
.reviews {
  background: var(--ink);
  padding: clamp(60px, 10vw, 100px) 0 clamp(80px, 12vw, 130px);
}

.reviews__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 var(--gutter) 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 auto;
  width: min(82vw, 340px);
  scroll-snap-align: start;
  background: linear-gradient(165deg, rgba(246,242,238,0.06), rgba(246,242,238,0.02));
  border: 1px solid rgba(246,242,238,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.review-card__photo {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.review-card__body { padding: 24px; }
.review-card__stars {
  color: var(--magenta);
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 14px;
}
.review-card__body p {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(246,242,238,0.88);
  margin-bottom: 18px;
}
.review-card__name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blush);
}

/* ===================================================================
   INSTAGRAM
   =================================================================== */
.instagram {
  background: var(--ivory);
  color: var(--ink);
  padding: clamp(80px, 12vw, 140px) 0;
}
.instagram__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 720px) { .instagram__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .instagram__grid { grid-template-columns: repeat(6, 1fr); } }

.ig-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.ig-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.ig-card:hover img { transform: scale(1.1); }

.ig-card__veil {
  position: absolute;
  inset: 0;
  background: rgba(74,14,23,0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s var(--ease-out);
}
.ig-card:hover .ig-card__veil { opacity: 1; }

.ig-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  width: 100%;
}
.ig-card__btn {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(246,242,238,0.92);
  color: var(--ink);
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.ig-card__btn--wa { background: var(--magenta); color: var(--ivory); }
.ig-card__btn:hover { background: var(--ivory); color: var(--wine); }

/* ===================================================================
   INQUIRY / BOOKING
   =================================================================== */
.inquiry {
  position: relative;
  padding: clamp(90px, 14vw, 160px) var(--gutter);
  overflow: hidden;
}
.inquiry__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,45,122,0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(107,18,32,0.55), transparent 50%),
    linear-gradient(165deg, var(--burgundy), var(--ink) 60%);
  z-index: 0;
}
.inquiry__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.inquiry__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.inquiry__title em { font-style: italic; color: var(--blush); }
.inquiry__sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(246,242,238,0.72);
  max-width: 46ch;
  margin: 0 auto 48px;
}

.inquiry-form {
  text-align: left;
  background: rgba(246,242,238,0.05);
  border: 1px solid rgba(246,242,238,0.14);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.inquiry-form__row { margin-bottom: 20px; }
.inquiry-form__row label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 9px;
}
.inquiry-form__row input,
.inquiry-form__row select,
.inquiry-form__row textarea {
  width: 100%;
  background: rgba(10,10,10,0.35);
  border: 1px solid rgba(246,242,238,0.16);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--ivory);
  font-size: 16px;
  transition: border-color 0.3s, background 0.3s;
}
.inquiry-form__row input::placeholder,
.inquiry-form__row textarea::placeholder { color: rgba(246,242,238,0.35); }
.inquiry-form__row input:focus,
.inquiry-form__row select:focus,
.inquiry-form__row textarea:focus {
  border-color: var(--magenta);
  background: rgba(10,10,10,0.5);
  outline: none;
}
.inquiry-form__row select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23EFC6D2' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.inquiry-form__row textarea { resize: vertical; min-height: 90px; }

.inquiry-form__note {
  margin-top: 16px;
  font-size: 12px;
  text-align: center;
  color: rgba(246,242,238,0.45);
  line-height: 1.5;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--ink);
  padding: clamp(56px, 8vw, 80px) var(--gutter) 28px;
  border-top: 1px solid rgba(246,242,238,0.08);
}
.site-footer__top {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.site-footer__logo {
  font-family: var(--font-display);
  font-size: 26px;
}
.site-footer__top p {
  font-size: 13px;
  color: rgba(246,242,238,0.5);
}
.site-footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246,242,238,0.08);
}
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(3, 1fr); } }
.site-footer__grid h4 {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 16px;
}
.site-footer__grid a, .site-footer__grid p {
  display: block;
  font-size: 14px;
  color: rgba(246,242,238,0.65);
  margin-bottom: 10px;
  line-height: 1.5;
}
.site-footer__grid a:hover { color: var(--magenta); }

.site-footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(246,242,238,0.4);
}
.site-footer__bottom span:last-child {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(239,198,210,0.6);
}

/* ===================================================================
   FLOATING WHATSAPP BUTTON
   =================================================================== */
.fab-wa {
  position: fixed;
  right: calc(clamp(16px, 3vw, 28px) + env(safe-area-inset-right));
  bottom: calc(clamp(86px, 10vw, 32px) + env(safe-area-inset-bottom));
  z-index: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.5);
  transition: width 0.4s var(--ease-out), border-radius 0.4s var(--ease-out), box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
  padding: 0;
  animation: fabPulse 2.6s ease-in-out infinite;
}
.fab-wa svg { width: 26px; height: 26px; flex: 0 0 26px; margin: 0 16px; }
.fab-wa__label {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.4s var(--ease-out);
}
.fab-wa:hover {
  width: 178px;
  border-radius: 999px;
  transform: translateY(-2px);
}
.fab-wa:hover .fab-wa__label { max-width: 140px; margin-right: 18px; }
.fab-wa:hover svg { margin-left: 16px; }

body.menu-open .fab-wa,
body.menu-open .sticky-book {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-soft), visibility 0.25s;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.45); }
  50% { box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0); }
}

@media (min-width: 880px) {
  .fab-wa { bottom: 28px; }
}

/* ===================================================================
   STICKY MOBILE BOOK BAR
   =================================================================== */
.sticky-book {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 650;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,10,10,0.9);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid rgba(246,242,238,0.1);
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}
.sticky-book.is-hidden { transform: translateY(110%); }
.sticky-book a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--magenta), var(--wine-light));
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (min-width: 880px) { .sticky-book { display: none; } }

/* ===================================================================
   EXIT INTENT MODAL
   =================================================================== */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,10,10,0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.exit-modal.is-open { opacity: 1; visibility: visible; }

.exit-modal__panel {
  position: relative;
  max-width: 420px;
  width: 100%;
  background: linear-gradient(165deg, var(--burgundy), var(--ink) 70%);
  border: 1px solid rgba(246,242,238,0.14);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 48px);
  text-align: center;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.45s var(--ease-out);
}
.exit-modal.is-open .exit-modal__panel { transform: scale(1) translateY(0); }

.exit-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(246,242,238,0.08);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: var(--ivory);
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}
.exit-modal__close:hover { background: rgba(246,242,238,0.2); }

.exit-modal__eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--blush);
  margin-bottom: 8px;
}
.exit-modal__panel h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 5vw, 30px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.exit-modal__panel p {
  font-size: 14.5px;
  color: rgba(246,242,238,0.68);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   UTIL
   =================================================================== */
@media (max-width: 540px) {
  .hero__headline { font-size: clamp(52px, 16vw, 80px); }
}
