/* =============================================
   MS. NAILS — Stylesheet
   ============================================= */

/* === RESET + ROOT === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --forest:    #1C3A2F;
  --forest-mid:#2A5240;
  --gold:      #C8A86B;
  --gold2:     #E8D0A0;
  --cream:     #F7F3EE;
  --cream2:    #EDE8E0;
  --parchment: #FAF7F3;
  --ink:       #1A1512;
  --ink-soft:  #5C5040;
  --white:     #FFFFFF;
  --fd: 'Cormorant Garamond', serif;
  --fb: 'Jost', sans-serif;
  --tr: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--fb);
  background: var(--parchment);
  color: var(--ink);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* === CUSTOM CURSOR === */
.cur {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
}

.cur-r {
  width: 28px;
  height: 28px;
  border: 0.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.32s ease, width 0.3s ease, height 0.3s ease;
  opacity: 0.4;
}

/* === NAVIGATION === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 10px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.5s ease, border-color 0.4s ease;
}

nav.scrolled {
  background: rgba(6, 12, 9, 0.55);
  backdrop-filter: blur(32px) saturate(200%) brightness(0.95);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(0.95);
  padding: 6px 56px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.2);
}

/* When the dark photo slide is active, the nav BAR stays transparent —
   only the nav elements (links pill + book button) get the glass treatment. */
nav.on-dark-slide:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

/* No background on the whole container — chips live on each individual item */
nav.on-dark-slide:not(.scrolled) .nav-links {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  gap: 10px;
}

/* Each nav link becomes its own faint green glass chip with black text */
nav.on-dark-slide:not(.scrolled) .nav-links a {
  color: #000000;
  background: rgba(232, 226, 215, 0.55);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 0.5px solid rgba(28, 58, 47, 0.22);
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 14px rgba(0, 0, 0, 0.15);
}

nav.on-dark-slide:not(.scrolled) .nav-links a:hover {
  color: var(--forest);
  background: rgba(232, 226, 215, 0.78);
}

nav.on-dark-slide:not(.scrolled) .nav-links a::after { display: none; }

nav.on-dark-slide:not(.scrolled) .nav-book {
  color: #000000;
  border: 0.5px solid rgba(28, 58, 47, 0.22);
  background: rgba(232, 226, 215, 0.55);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

nav.on-dark-slide:not(.scrolled) .nav-book:hover {
  background: #000000;
  color: var(--white);
  border-color: #000000;
}

/* Swap logo to white over the dark slide */
nav.on-dark-slide:not(.scrolled) .nav-logo-img--dark { display: none; }
nav.on-dark-slide:not(.scrolled) .nav-logo-img--light { display: block; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
}

/* Two logos: green at top (transparent nav), white when scrolled (glass nav) */
.nav-logo-img--light { display: none; }
nav.scrolled .nav-logo-img--dark { display: none; }
nav.scrolled .nav-logo-img--light { display: block; }

/* Removed nav-logo-text — logo carries the brand */
.nav-logo-text { display: none; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  transition: color var(--tr);
  position: relative;
}

nav.scrolled .nav-links a { color: rgba(255, 255, 255, 0.92); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 0.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--tr);
  transform-origin: left;
}

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

nav.scrolled .nav-links a:hover { color: var(--white); }

.nav-book {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  background: transparent;
  border: 0.5px solid rgba(0, 0, 0, 0.55);
  padding: 11px 26px;
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}

.nav-book:hover {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

nav.scrolled .nav-book {
  color: var(--white);
  border-color: rgba(200, 168, 107, 0.55);
  background: rgba(200, 168, 107, 0.18);
}

nav.scrolled .nav-book:hover {
  background: rgba(200, 168, 107, 0.35);
  border-color: var(--gold);
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 201;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.32s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Carousel slide — stacked, cross-faded */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 0s linear 1.1s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 0s linear 0s;
  z-index: 1;
}

.hero-slide.is-active .hero-content {
  animation: heroContentIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroContentIn {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.5fr 1fr 0.75fr;
  gap: 2px;
}

.hero-img-col {
  overflow: hidden;
  position: relative;
}

.hero-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* Staggered vertical offset — creates wave rhythm */
.hero-img-col:nth-child(odd)  { padding-top: 7%; }
.hero-img-col:nth-child(even) { padding-bottom: 7%; }
.hero-img-col:nth-child(3)    { padding-top: 0; padding-bottom: 0; }


.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0) 20%),
    radial-gradient(ellipse 58% 52% at 50% 54%, rgba(0,0,0,0.58) 0%, transparent 100%);
  pointer-events: none;
}

/* === SLIDE 2 — Grab Your Discount === */
.hero-slide--offer {
  background: #EFE7DC;
}

/* Background image — natural cover, no extra zoom so the title doesn't dominate */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-veil--offer {
  background:
    linear-gradient(to bottom,
      rgba(239, 231, 220, 0) 55%,
      rgba(60, 38, 26, 0.22) 100%);
}

/* CTA anchored at the very bottom of the slide.
   Use double-class selector to beat the later .hero-content rule. */
.hero-content.hero-content--offer {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 480px;
  padding: 0 24px;
  z-index: 5;
  top: auto;
}

/* Slide 1 (Surprise yourself) — content also anchored at the bottom for
   visual consistency with the discount slide. */
.hero-slide:not(.hero-slide--offer) .hero-content {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 780px;
  z-index: 5;
  top: auto;
}

/* The base hero-content animation uses transform: translateY which doesn't
   conflict with left:0/right:0/margin:auto centering, but make a dedicated
   opacity-only animation for the offer slide so nothing can hide the button. */
.hero-slide.hero-slide--offer.is-active .hero-content--offer {
  animation: heroOfferFadeIn 0.9s ease-out both;
}

@keyframes heroOfferFadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* Metallic bronze CTA — picks up the rose-gold/bronze of the title in the image.
   Matches the dimensions of the base .btn-p (Book an Appointment) exactly. */
.btn-p.btn-p--gold {
  background: linear-gradient(135deg,
    #4F2F1B 0%,
    #8C6A3F 22%,
    #D4A07A 48%,
    #8C6A3F 74%,
    #4F2F1B 100%);
  color: #FDEDD3;
  border: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 215, 0.55),
    inset 0 -1px 0 rgba(40, 22, 12, 0.35),
    0 10px 28px rgba(92, 58, 34, 0.4);
  padding: 16px 38px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-shadow: 0 1px 2px rgba(40, 22, 12, 0.5);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.btn-p.btn-p--gold:hover {
  background: linear-gradient(135deg,
    #5E3A22 0%,
    #A07C4E 22%,
    #E8BE93 48%,
    #A07C4E 74%,
    #5E3A22 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 215, 0.7),
    0 18px 50px rgba(92, 58, 34, 0.55);
}

/* === CAROUSEL DOTS === */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
}

/* The slide needs a hit area for swipe but should not block vertical scroll */
.hero { touch-action: pan-y; }

.hero-dot {
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.32);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--tr), width var(--tr);
  position: relative;
}

.hero-dot::after {
  content: '';
  position: absolute;
  inset: -10px -4px;
}

.hero-dot:hover { background: rgba(255, 255, 255, 0.6); }
.hero-dot.is-active { background: var(--gold); width: 56px; }

/* Darker dots when the cream offer slide is the active one */
.hero-slide--offer.is-active ~ .hero-dots .hero-dot { background: rgba(60, 38, 26, 0.28); }
.hero-slide--offer.is-active ~ .hero-dots .hero-dot:hover { background: rgba(60, 38, 26, 0.55); }
.hero-slide--offer.is-active ~ .hero-dots .hero-dot.is-active { background: #8C6A3F; }

/* Lift the dots above whichever slide's bottom-anchored content is active */
.hero-slide--offer.is-active ~ .hero-dots { bottom: 96px; }
.hero-slide.is-active:not(.hero-slide--offer) ~ .hero-dots { bottom: 308px; }

/* === CAROUSEL ARROWS (Tesla-style, bottom-right; offset so WhatsApp FAB sits in the corner) === */
.hero-nav {
  position: absolute;
  bottom: 28px;
  right: 104px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--tr), border-color var(--tr), color var(--tr), transform var(--tr);
  padding: 0;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
}

.hero-arrow:active { transform: scale(0.94); }

/* Darker arrows on the cream offer slide */
.hero-slide--offer.is-active ~ .hero-nav .hero-arrow {
  background: rgba(60, 38, 26, 0.08);
  border-color: rgba(60, 38, 26, 0.3);
  color: rgba(60, 38, 26, 0.75);
}

.hero-slide--offer.is-active ~ .hero-nav .hero-arrow:hover {
  background: rgba(60, 38, 26, 0.18);
  border-color: rgba(60, 38, 26, 0.55);
  color: #3C261A;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
}

.hero-eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: rgba(200, 168, 107, 0.72);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  color: #FFFFFF;
}

.hero-sub {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.52);
  max-width: 320px;
  margin: 0 auto 52px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn-p {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--forest);
  border: none;
  padding: 16px 38px;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr);
}

.btn-p:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
}

.btn-g {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--tr);
}

.btn-g:hover { color: #FFFFFF; }

.btn-gl {
  width: 28px;
  height: 0.5px;
  background: currentColor;
  transition: width var(--tr);
}

.btn-g:hover .btn-gl { width: 44px; }

/* === MARQUEE STRIP === */
.marquee-strip {
  background: var(--forest);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}

.marquee-item {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 168, 107, 0.75);
  padding: 0 32px;
  font-weight: 400;
}

.marquee-dot { color: rgba(200, 168, 107, 0.35); padding: 0; }

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

/* === STORY === */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
}

.story-photo {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.story-content {
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 72px;
}

.story-eyebrow {
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.story-title {
  font-family: var(--fd);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.story-title em { font-style: italic; color: var(--gold); }

.story-body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.95;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}

.story-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(200, 168, 107, 0.4);
  padding: 7px 18px;
  font-weight: 400;
}

/* === DIFFERENTIATORS === */
.diff-section {
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.diff-item {
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
  transition: background var(--tr);
}

.diff-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.7s ease;
}

.diff-item:hover::before { width: 100%; }
.diff-item:hover { background: rgba(42, 82, 64, 0.35); }

.diff-num {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(200, 168, 107, 0.55);
  margin-bottom: 28px;
  font-weight: 400;
}

.diff-title {
  font-family: var(--fd);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}

.diff-title em { font-style: italic; color: var(--gold); }

.diff-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.95;
  letter-spacing: 0.03em;
  max-width: 380px;
}

.diff-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(200, 168, 107, 0.35);
  padding: 6px 16px;
  margin-top: 28px;
  font-weight: 400;
}

.diff-coming {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: 6px 18px;
  margin-top: 28px;
  font-weight: 400;
}

/* === SERVICES === */
.services {
  padding: 56px 72px;
  background-color: #E8E1D6;
  background-image: url('/images/graphics/background-texture.webp');
  background-repeat: repeat;
  background-size: 520px;
}

.services-banner {
  position: relative;
  width: calc(100% + 144px);
  margin: 4px -72px 4px;
  overflow: hidden;
}

.services-banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.banner-offer-item {
  flex: 0 1 220px;
  text-align: center;
  padding: 0 20px;
}

.banner-offer-label {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 12px;
}

.banner-offer-text {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.85;
  font-weight: 400;
}

.banner-offer-divider {
  width: 0.5px;
  height: 80px;
  background: rgba(28, 58, 47, 0.3);
  flex-shrink: 0;
  margin: 0 12px;
}

.services-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 4px;
}

.services-intro .sec-title {
  font-size: clamp(44px, 6vw, 80px);
}

.sec-eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 18px;
  font-weight: 400;
}

.sec-title {
  font-family: var(--fd);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}

.sec-title em { font-style: italic; color: var(--forest); }

.services-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.9;
  letter-spacing: 0.03em;
  max-width: 560px;
  text-align: center;
}

.offer-heading {
  text-align: center;
  margin-bottom: 8px;
}

.offer-title {
  font-family: var(--fd);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
}

.offer-title em { font-style: italic; color: var(--forest); }

.offer-strip {
  display: flex;
  align-items: stretch;
  margin: 52px 0 56px;
  border-top: 0.5px solid rgba(28, 58, 47, 0.15);
  border-bottom: 0.5px solid rgba(28, 58, 47, 0.15);
}

.offer-item {
  flex: 1;
  padding: 44px 52px;
  position: relative;
}

.offer-num {
  font-family: var(--fd);
  font-size: clamp(64px, 8vw, 100px);
  font-weight: 300;
  color: rgba(28, 58, 47, 0.08);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  user-select: none;
}

.offer-divider {
  width: 0.5px;
  background: rgba(28, 58, 47, 0.15);
  margin: 32px 0;
}

.offer-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
  font-weight: 500;
}

.offer-text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.9;
  font-weight: 400;
  max-width: 360px;
}

.services-grid-heading {
  text-align: center;
  margin-top: 4px;
  margin-bottom: 4px;
  background: var(--forest);
  width: calc(100% + 144px);
  margin-left: -72px;
  margin-right: -72px;
  padding: 52px 72px;
}

.services-grid-heading .sec-eyebrow {
  color: var(--gold);
}

.services-grid-heading .services-grid-title {
  color: var(--white);
}

.services-grid-heading .services-grid-title em {
  color: var(--gold);
}

.services-grid-title {
  font-family: var(--fd);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 10px;
}

.services-grid-title em { font-style: italic; color: var(--forest); }

/* Bento grid — 3 cols, zigzag wide cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(28, 58, 47, 0.12);
}

/* Zigzag bento spans */
.svc-card:nth-child(1) { grid-column: span 2; }
.svc-card:nth-child(4) { grid-column: span 2; }
.svc-card:nth-child(5) { grid-column: 1 / span 2; }
.svc-card:nth-child(8) { grid-column: span 2; }
.svc-card:nth-child(9) { grid-column: 1 / -1; }

/* Base card */
.svc-card {
  padding: 52px 44px;
  transition: background 0.45s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Sweep line */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.svc-card:hover::before { transform: scaleX(1); }

/* ── ODD cards: warm cream default → green on hover ── */
.svc-card:nth-child(odd) {
  background: #E8E1D6;
}
.svc-card:nth-child(odd)::before { background: var(--forest); }

.svc-card:nth-child(odd) .svc-num  { color: rgba(28, 58, 47, 0.13); }
.svc-card:nth-child(odd) .svc-name { color: #0D0D0D; }
.svc-card:nth-child(odd) .svc-desc { color: #2E2416; }

.svc-card:nth-child(odd):hover                { background: #445C3A; }
.svc-card:nth-child(odd):hover .svc-num       { color: rgba(255, 255, 255, 0.1); }
.svc-card:nth-child(odd):hover .svc-name      { color: var(--white); }
.svc-card:nth-child(odd):hover .svc-desc      { color: rgba(255, 255, 255, 0.72); }
.svc-card:nth-child(odd):hover .svc-coming    { color: var(--gold); border-color: rgba(200,168,107,0.5); }

/* ── EVEN cards: green default → cream on hover ── */
.svc-card:nth-child(even) {
  background: var(--forest);
}
.svc-card:nth-child(even)::before { background: var(--gold); }

.svc-card:nth-child(even) .svc-num  { color: rgba(255, 255, 255, 0.09); }
.svc-card:nth-child(even) .svc-name { color: var(--white); }
.svc-card:nth-child(even) .svc-desc { color: rgba(255, 255, 255, 0.6); }

.svc-card:nth-child(even):hover                { background: var(--parchment); }
.svc-card:nth-child(even):hover .svc-num       { color: rgba(28, 58, 47, 0.07); }
.svc-card:nth-child(even):hover .svc-name      { color: var(--ink); }
.svc-card:nth-child(even):hover .svc-desc      { color: var(--ink-soft); }
.svc-card:nth-child(even):hover .svc-coming    { color: var(--forest); border-color: rgba(28,58,47,0.35); }

.svc-illus {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  opacity: 0.88;
}

/* Oversized watermark number — editorial accent */
.svc-num {
  font-family: var(--fd);
  font-size: clamp(72px, 9vw, 104px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  transition: color 0.45s ease;
  user-select: none;
}

.svc-name {
  font-family: var(--fd);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  transition: color 0.45s ease;
}

.svc-desc {
  font-size: 15px;
  line-height: 1.95;
  font-weight: 500;
  max-width: 420px;
  letter-spacing: 0.02em;
  transition: color 0.45s ease;
}

.svc-coming {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(200, 168, 107, 0.45);
  padding: 5px 14px;
  margin-top: 14px;
  font-weight: 400;
  transition: all 0.45s ease;
}

/* Quote card — full-width, follows odd (cream) then inverts to green */
.svc-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 48px;
}

.svc-quote::before { display: none; }

.svc-quote p {
  font-family: var(--fd);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  transition: color 0.45s ease;
}


/* === HOW IT WORKS === */
.how {
  padding: 48px 72px;
  background: var(--parchment);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 100vh;
}

.how .sec-title { font-weight: 400; text-align: center; }
.how .sec-eyebrow { font-weight: 600; text-align: center; display: block; }

.how-steps { margin-top: clamp(18px, 2.5vh, 36px); }

.how-step {
  display: flex;
  gap: 32px;
  margin-bottom: clamp(14px, 2vh, 36px);
}

.how-step-n {
  font-family: var(--fd);
  font-size: clamp(52px, 5.5vw, 72px);
  font-weight: 300;
  color: rgba(28, 58, 47, 0.18);
  line-height: 1;
  min-width: 56px;
  transition: color var(--tr);
}

.how-step:hover .how-step-n { color: var(--forest); }

.how-step-title {
  font-family: var(--fd);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}

.how-step-desc {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.9;
}

.how-right {
  position: relative;
  background: var(--forest);
  height: clamp(380px, 72vh, 780px);
  overflow: hidden;
}

.how-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.45;
}

.how-caption-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 48px;
  background: linear-gradient(to top, rgba(28, 58, 47, 0.98) 0%, rgba(28, 58, 47, 0.3) 100%);
}

.how-caption {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
}

.how-caption span { color: var(--gold); }

/* === BOOKING === */
.booking {
  padding: 56px 72px;
  background: var(--cream2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.booking-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin: 26px 0 40px;
  letter-spacing: 0.03em;
}

.booking-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.booking-form {
  background: var(--parchment);
  padding: 44px 38px;
  border: 0.5px solid rgba(28, 58, 47, 0.14);
}

.booking-form h3 {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 30px;
}

.fgrp { margin-bottom: 20px; }

.flbl {
  display: block;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 9px;
  font-weight: 400;
}

.finp {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 0.5px solid rgba(28, 58, 47, 0.22);
  background: none;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--ink);
  font-weight: 300;
  outline: none;
  cursor: pointer;
  transition: border-color var(--tr);
}

.finp::placeholder { color: rgba(92, 80, 64, 0.38); }
.finp:focus { border-color: var(--forest); }

.fsel {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 0.5px solid rgba(28, 58, 47, 0.22);
  background: none;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--ink);
  font-weight: 300;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: border-color var(--tr);
}

.fsel:focus { border-color: var(--forest); }

.btn-sub {
  width: 100%;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--forest);
  border: none;
  padding: 17px;
  cursor: pointer;
  margin-top: 10px;
  transition: background var(--tr), transform var(--tr);
}

.btn-sub:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
}

/* === FOOTER === */
footer {
  background: var(--forest);
  padding: 76px 72px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.foot-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 0.9;
}

.foot-logo-text {
  font-family: var(--fd);
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
}

.foot-tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.85;
  max-width: 230px;
  letter-spacing: 0.03em;
}

.foot-col h4 {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.foot-col ul { list-style: none; }

.foot-col li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 10px;
  transition: color var(--tr);
  font-weight: 300;
  cursor: pointer;
}

.foot-col li a {
  color: inherit;
  text-decoration: none;
}

.foot-col li:hover { color: var(--white); }

.foot-btm {
  background: var(--forest);
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  padding: 20px 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.08em;
}

.foot-soc { display: flex; gap: 22px; }

.foot-soc a {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color var(--tr);
}

.foot-soc a:hover { color: var(--gold); }

/* === FADE-UP ANIMATION === */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

/* =============================================
   RESPONSIVE — Mobile First
   ============================================= */

@media (max-width: 900px) {
  nav          { padding: 8px 32px; }
  nav.scrolled { padding: 6px 32px; }
  .nav-links   { gap: 22px; }
  .nav-book    { display: none; }
}

@media (max-width: 768px) {

  /* Nav */
  nav {
    padding: 6px 18px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  nav.scrolled {
    padding: 4px 18px;
    background: rgba(8, 14, 10, 0.97);
  }

  .nav-hamburger span { background: #000000; }
  nav.scrolled .nav-hamburger span { background: var(--white); }
  nav.on-dark-slide:not(.scrolled) .nav-hamburger span { background: var(--white); }

  .nav-brand     { gap: 10px; flex: 1; }
  .nav-logo-img  { width: 72px; height: 72px; }

  /* Hamburger button — styled as a proper button */
  .nav-book      { display: none; }
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: rgba(200, 168, 107, 0.12);
    border: 0.5px solid rgba(200, 168, 107, 0.4);
    border-radius: 4px;
    padding: 10px 12px;
    cursor: pointer;
    z-index: 203;
    flex-shrink: 0;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.32s ease;
    transform-origin: center;
  }

  .nav-hamburger.open {
    background: rgba(200, 168, 107, 0.2);
    border-color: var(--gold);
  }

  /* Full-screen overlay menu */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: #0A140E;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 44px;
    z-index: 202;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-family: var(--fd);
    font-size: 34px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
  }

  .nav-links a:hover { color: var(--gold); }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero-img-col:nth-child(4),
  .hero-img-col:nth-child(5) { display: none; }
  .hero-img-col:nth-child(odd)  { padding-top: 5%; }
  .hero-img-col:nth-child(even) { padding-bottom: 5%; }
  .hero-img-col:nth-child(3)    { padding: 0; }
  .hero-content  { padding: 0 20px; }
  .hero-title    { font-size: clamp(38px, 10vw, 58px); }
  .hero-sub      { font-size: 13px; max-width: 320px; }

  /* Hero — offer slide on tablet */
  .hero-bg { object-position: center 32%; }
  .hero-content.hero-content--offer { bottom: 16px; }
  .hero-slide--offer.is-active ~ .hero-dots { bottom: 80px; }
  .hero-dots { bottom: 22px; }
  .hero-nav  { bottom: 16px; right: 86px; }
  .hero-arrow { width: 36px; height: 36px; }

  /* Story */
  .story                { grid-template-columns: 1fr; height: auto; }
  .story-photo          { height: 60vw; min-height: 280px; }
  .story-content        { padding: 52px 24px; }

  /* Diff */
  .diff-section         { grid-template-columns: 1fr; }
  .diff-item            { padding: 52px 24px; }

  /* Services */
  .services             { padding: 36px 20px; }
  .services-intro       { grid-template-columns: 1fr; gap: 24px; }
  .services-grid-heading { width: 100%; margin-left: 0; margin-right: 0; padding: 40px 20px; }
  /* Banner — move text below image on mobile */
  .services-banner      { width: 100%; margin: 4px 0; }
  .banner-overlay       { position: static; flex-direction: column; gap: 28px; padding: 32px 20px; background: rgba(232, 225, 214, 0.95); }
  .banner-offer-item    { flex: 1 1 auto; text-align: center; padding: 0; }
  .banner-offer-label   { font-size: 12px; }
  .banner-offer-text    { font-size: 14px; }
  .banner-offer-divider { width: 60px; height: 0.5px; margin: 0 auto; }
  .services-grid        { grid-template-columns: 1fr; }
  .svc-card:nth-child(1),
  .svc-card:nth-child(4),
  .svc-card:nth-child(5),
  .svc-card:nth-child(8),
  .svc-card:nth-child(9) { grid-column: span 1; }
  .svc-card  { padding: 36px 24px; }
  .svc-num   { font-size: 52px; margin-bottom: 4px; }


  /* How */
  .how                  { grid-template-columns: 1fr; padding: 36px 20px; gap: 24px; height: auto; overflow: visible; }
  .how-right            { height: 56vw; min-height: 280px; }

  /* Booking */
  .booking              { grid-template-columns: 1fr; padding: 36px 20px; gap: 24px; }
  .booking-form         { padding: 32px 24px; }

  /* Footer */
  footer                { grid-template-columns: 1fr 1fr; padding: 56px 20px; gap: 28px; }
  .foot-btm             { padding: 18px 20px; flex-direction: column; gap: 12px; text-align: center; }

  /* Cursor */
  .cur, .cur-r          { display: none; }
  body                  { cursor: auto; }
  button, a             { cursor: pointer; }
}

@media (max-width: 380px) {
  .nav-logo-text { display: none; }
}

/* Dots are removed globally — arrows handle navigation everywhere */
.hero-dots { display: none !important; }

@media (max-width: 600px) {
  /* === SLIDE 2 — Grab Your Discount === */
  .hero-slide--offer .hero-bg { display: none; }

  .hero-slide--offer {
    background-image: url('/images/graphics/ms nails mobile hero.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: #EFE7DC;
  }

  /* Veil is subtle — image already has cream space at the bottom */
  .hero-veil--offer {
    background: linear-gradient(to bottom,
      rgba(239, 231, 220, 0) 70%,
      rgba(60, 38, 26, 0.15) 100%);
  }

  /* === SLIDE 1 — Surprise yourself ===
     Replace the 5-image grid with the dedicated portrait collage that already
     bakes in the title + subtitle. Only the buttons remain on top. */
  .hero-slide:not(.hero-slide--offer) .hero-grid { display: none; }
  .hero-slide:not(.hero-slide--offer) .hero-veil { display: none; }
  .hero-slide:not(.hero-slide--offer) .hero-title,
  .hero-slide:not(.hero-slide--offer) .hero-sub { display: none; }

  .hero-slide:not(.hero-slide--offer) {
    background-image: url('/images/hero/916 disc phone final.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: #1A1512;
  }

  .hero-content.hero-content--offer { bottom: 24px; }
  .hero-slide:not(.hero-slide--offer) .hero-content { bottom: 24px; }

  /* Arrows: bottom-left on phones (FAB takes bottom-right) */
  .hero-nav   { bottom: 16px; left: 16px; right: auto; }
  .hero-arrow { width: 34px; height: 34px; }
}

@media (max-width: 480px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-img-col:nth-child(3),
  .hero-img-col:nth-child(4),
  .hero-img-col:nth-child(5) { display: none; }
  .hero-img-col:nth-child(1) { padding-top: 0; }
  .hero-img-col:nth-child(2) { padding-bottom: 0; }
  .hero-slide--offer .hero-bg { display: none; }
  .hero-slide--offer {
    background-image: url('/images/graphics/ms nails mobile hero.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: #EFE7DC;
  }
  .hero-content.hero-content--offer { bottom: 24px; padding: 0 16px; }
  .hero-title  { font-size: clamp(34px, 11vw, 50px); }
  .hero-sub    { font-size: 12px; margin-bottom: 36px; }
  .dscnt-panel { padding: 36px 20px 28px; }
  .dscnt-title { font-size: clamp(26px, 7vw, 36px); }
  .dscnt-desc  { font-size: 12px; margin-bottom: 22px; }
  .dscnt-code  { font-size: clamp(28px, 8vw, 40px); padding: 14px 8px; margin: 18px 0 12px; }
  .affiliate-strip { padding: 22px 18px; }
  .affiliate-strip p { font-size: 13px; line-height: 1.5; }
  footer       { grid-template-columns: 1fr; }
}

/* Tiny screens — keep FAB tucked, dots clear of it */
@media (max-width: 360px) {
  .wa-fab { width: 50px; height: 50px; bottom: 14px; right: 14px; }
  .wa-fab svg { width: 22px; height: 22px; }
  .hero-content.hero-content--offer { bottom: 24px; }
  .hero-slide--offer.is-active ~ .hero-dots { bottom: 142px; }
  .hero-dots { bottom: 92px; gap: 10px; }
  .hero-dot { width: 28px; }
  .hero-dot.is-active { width: 44px; }
}

/* === FORM FEEDBACK (Laravel) === */
.is-error { border-color: #c97b7b !important; }
.ferr { display: block; font-size: 0.78rem; color: #c97b7b; margin-top: 0.3rem; }
.flbl-opt { font-size: 0.75rem; color: #888; font-weight: 400; }
.finp-hint { display: block; font-size: 0.78rem; color: #888; margin-top: 0.3rem; }
.finp-hint a { color: inherit; text-decoration: underline; }

/* === DISCOUNT MODAL === */
.dscnt-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.dscnt-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}

.dscnt-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 12, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.dscnt-panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--parchment);
  padding: 52px 48px 44px;
  border: 0.5px solid rgba(200, 168, 107, 0.25);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  max-height: 92vh;
  overflow-y: auto;
}

.dscnt-modal.is-open .dscnt-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.dscnt-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 6px 10px;
  transition: color var(--tr);
}

.dscnt-close:hover { color: var(--forest); }

.dscnt-eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 400;
}

.dscnt-title {
  font-family: var(--fd);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--forest);
  margin-bottom: 14px;
}

.dscnt-title em { font-style: italic; color: var(--gold); }

.dscnt-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.dscnt-form .fgrp { margin-bottom: 16px; }
.dscnt-form .btn-sub { width: 100%; margin-top: 8px; }

.dscnt-note {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 14px;
  opacity: 0.7;
}

/* Success state — after a claim is generated */
.dscnt-success {
  text-align: center;
  padding: 8px 0 6px;
}

.dscnt-code {
  font-family: 'Courier New', monospace;
  font-size: clamp(36px, 6vw, 52px);
  letter-spacing: 0.08em;
  color: var(--forest);
  margin: 22px 0 14px;
  padding: 16px 12px;
  border: 0.5px dashed rgba(200, 168, 107, 0.55);
  background: rgba(200, 168, 107, 0.06);
}

.dscnt-success-msg {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.dscnt-success .btn-sub { width: 100%; }

.dscnt-form .ferr {
  display: block;
  font-size: 11px;
  color: #c25b5b;
  margin-top: 6px;
}
.dscnt-form .finp.is-error { border-color: #c25b5b; }
/* === TOAST NOTIFICATION === */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: #0e1e0b;
  border: 1px solid #c9a96e;
  color: #f5f0e8;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: toastIn 0.4s ease;
  max-width: 90vw;
}
.toast button {
  background: none;
  border: none;
  color: #c9a96e;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}
.toast-hide {
  animation: toastOut 0.4s ease forwards;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to   { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* === BUTTON FIXES === */
.btn-p, .btn-g { text-decoration: none; }

/* === FOOTER BOOK NOW === */
footer .foot-col a[href*="booking"] {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96e;
  border: 1px solid #c9a96e;
  padding: 8px 18px;
  text-decoration: none;
  transition: background var(--tr), color var(--tr);
  margin-top: 4px;
}
footer .foot-col a[href*="booking"]:hover {
  background: #c9a96e;
  color: #0e1e0b;
}

/* === AFFILIATE STRIP === */
.affiliate-strip {
  background: #0e1e0b;
  text-align: center;
  padding: 28px 20px;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}
.affiliate-strip p {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
}
.affiliate-strip a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,168,107,0.5);
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
}
.affiliate-strip a:hover {
  color: var(--gold2);
  border-color: var(--gold);
}

/* === FLOATING WHATSAPP BUTTON === */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.12);
  z-index: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.wa-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.12);
  animation: waPulse 2.2s ease-out infinite;
}

.wa-fab:hover {
  background: #f5f5f5;
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.18),
    0 4px 10px rgba(0, 0, 0, 0.14);
}

@keyframes waPulse {
  0%   { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 768px) {
  .wa-fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-fab svg { width: 24px; height: 24px; }
}
