/* ============================================================
   NAILED IT SALON — Warm Luxury Redesign
   Display: Cormorant Garamond | Body: Inter
   ============================================================ */

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

:root {
  --noir:      #141210;
  --noir-warm: #1E1A16;
  --ivory:     #FAF6F0;
  --ivory-2:   #F2EBE0;
  --gold:      #F8D26B;
  --gold-lt:   #FBE49B;
  --gold-dim:  rgba(248,210,107,0.18);
  --cream:     #EDD9AA;
  --text:      #211C16;
  --muted:     #8C7D6A;
  --border:    rgba(248,210,107,0.2);
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --nav-h:     70px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
address { font-style: normal; }

/* ── Type helpers ──────────────────────────────────────────── */
.label {
  display: block;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.label.light { color: var(--gold-lt); }

.heading-xl {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.02em;
}
.heading-xl.light { color: #fff; }
.heading-xl em { font-style: italic; color: var(--gold); }

.body-text {
  font-family: var(--f-body);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 500px;
}
.body-text.light { color: rgba(255,255,255,0.6); }

/* ── Petals ────────────────────────────────────────────────── */
.petals {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  overflow: hidden;
}
.p {
  position: absolute; top: -40px;
  border-radius: 0% 100% 0% 100% / 0% 100% 0% 100%;
  opacity: 0;
  animation: pfall linear infinite;
  background: radial-gradient(ellipse at 40% 35%, rgba(255,255,255,0.92) 50%, rgba(248,210,107,0.2) 100%);
}
.p1 { left: 6%;  width: 9px;  height: 9px;  animation-duration: 11s; animation-delay: 0s;   }
.p2 { left: 20%; width: 14px; height: 14px; animation-duration: 15s; animation-delay: 2.5s; }
.p3 { left: 40%; width: 8px;  height: 8px;  animation-duration: 9s;  animation-delay: 5s;   }
.p4 { left: 62%; width: 11px; height: 11px; animation-duration: 13s; animation-delay: 1.5s; }
.p5 { left: 80%; width: 16px; height: 16px; animation-duration: 12s; animation-delay: 4s;   }
.p6 { left: 93%; width: 7px;  height: 7px;  animation-duration: 8s;  animation-delay: 3s;   }

@keyframes pfall {
  0%   { transform: translateY(0) rotate(0deg) translateX(0);    opacity: 0; }
  8%   { opacity: 0.7; }
  50%  { transform: translateY(50vh) rotate(150deg) translateX(25px); }
  90%  { opacity: 0.35; }
  100% { transform: translateY(110vh) rotate(300deg) translateX(-15px); opacity: 0; }
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(20, 18, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  height: 100%;
  display: flex; align-items: center; gap: 40px;
}

/* Brand */
.brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; margin-right: auto;
}
.brand-badge {
  width: 40px; height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
  transition: transform 0.25s;
}
.brand:hover .brand-badge { transform: scale(1.06); }
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-name {
  font-family: var(--f-display);
  font-size: 1.1rem; font-weight: 500;
  color: #FAF6F0;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-tag {
  font-family: var(--f-body);
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(248,210,107,0.55);
  line-height: 1;
}

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-family: var(--f-body);
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(250,246,240,0.55);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Book button */
.btn-book {
  font-family: var(--f-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--noir);
  background: var(--gold);
  padding: 10px 26px;
  flex-shrink: 0;
  transition: background 0.22s, transform 0.22s;
}
.btn-book:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* Mobile */
.menu-toggle { display: none; }
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; margin-left: 12px;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle:checked ~ .burger span:first-child  { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
.menu-toggle:checked ~ .burger span:last-child   { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: rgba(20,18,16,0.98);
  flex-direction: column; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.menu-toggle:checked ~ .mobile-menu { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 2.2rem; font-style: italic; font-weight: 300;
  color: rgba(250,246,240,0.85);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: var(--gold); color: var(--noir);
  font-family: var(--f-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  white-space: nowrap; flex-shrink: 0;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(248,210,107,0.35);
}

.btn-outline {
  display: inline-flex; align-items: center;
  padding: 13px 30px;
  border: 1.5px solid rgba(250,246,240,0.3);
  color: rgba(250,246,240,0.75);
  font-family: var(--f-body);
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.08em;
  transition: border-color 0.22s, color 0.22s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline.light-outline {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.75);
}
.btn-outline.light-outline:hover { border-color: #fff; color: #fff; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  animation: hzoom 14s var(--ease) forwards;
}
@keyframes hzoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(
    165deg,
    rgba(20,18,16,0.15) 0%,
    rgba(20,18,16,0.5) 45%,
    rgba(20,18,16,0.88) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 72px 80px;
  max-width: 780px;
}
.eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(3.8rem, 8.5vw, 8rem);
  font-weight: 300;
  line-height: 1.02;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 0;
}
.hero-title .line { display: block; }
.hero-title .italic { font-style: italic; color: var(--cream); }

.hero-desc {
  font-family: var(--f-body);
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}

/* Floating badge on hero */
.hero-badge {
  position: absolute; bottom: 80px; right: 64px; z-index: 3;
  width: 100px; height: 100px;
  border: 1.5px solid var(--gold);
  background: rgba(20,18,16,0.6);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  animation: badgeSpin 20s linear infinite;
}
.hero-badge span:first-child {
  font-family: var(--f-display);
  font-size: 1.8rem; font-weight: 600;
  color: var(--cream);
  line-height: 1;
}
.hero-badge span:last-child {
  font-family: var(--f-body);
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-badge span { animation: badgeSpinReverse 20s linear infinite; }
@keyframes badgeSpinReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Hero entrance animations */
.v1 { animation: vup 0.9s var(--ease-out) 0.2s both; }
.v2 { animation: vup 0.9s var(--ease-out) 0.35s both; }
.v3 { animation: vup 0.9s var(--ease-out) 0.5s both; }
.v4 { animation: vup 0.9s var(--ease-out) 0.65s both; }
.v5 { animation: vup 0.9s var(--ease-out) 0.8s both; }
.v6 { animation: vup 0.9s var(--ease-out) 0.95s both; }
@keyframes vup {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Intro Strip ───────────────────────────────────────────── */
.intro-strip {
  background: var(--noir-warm);
  border-bottom: 1px solid var(--border);
}
.strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 40px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-family: var(--f-body);
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250,246,240,0.4);
}
.strip-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: 0.5; flex-shrink: 0;
}

/* ── About ─────────────────────────────────────────────────── */
.about {
  background: var(--ivory);
  padding: 100px 40px;
}
.about-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-photo {
  position: relative; overflow: hidden;
}
.about-photo img {
  width: 100%; height: 640px;
  object-fit: cover; object-position: center top;
  transition: transform 0.8s var(--ease);
}
.about-photo:hover img { transform: scale(1.03); }
.about-photo-tag {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--gold);
  color: var(--noir);
  font-family: var(--f-body);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 18px;
}
.about-copy {
  display: flex; flex-direction: column; gap: 20px;
}
.about-stats {
  display: flex; gap: 0; margin-top: 12px;
  border-top: 1px solid rgba(248,210,107,0.2);
  padding-top: 32px;
}
.astat {
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(248,210,107,0.15);
  margin-right: 24px;
}
.astat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.astat b {
  font-family: var(--f-display);
  font-size: 2.2rem; font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.astat span {
  font-family: var(--f-body);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

/* ── Services ──────────────────────────────────────────────── */
.services {
  background: var(--noir-warm);
  padding: 100px 40px;
}
.services-top {
  max-width: 1280px; margin: 0 auto 64px;
}
.services-top .heading-xl { color: #FAF6F0; }

.services-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.svc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
}
.svc-card:hover { background: rgba(248,210,107,0.05); border-color: rgba(248,210,107,0.45); }

.svc-img-wrap {
  width: 100%; height: 220px; overflow: hidden;
}
.svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.06); }
.svc-img-portrait { height: 380px; background: var(--noir-warm); }
.svc-img-portrait img { object-fit: contain; object-position: center; }

.svc-img-dark { background: rgba(0,0,0,0.3); }
.svc-no-img {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, rgba(30,26,22,0.95), rgba(20,18,16,0.98));
}
.svc-no-img svg { width: 72px; height: 72px; }
.svc-no-img span {
  font-family: var(--f-display);
  font-size: 1rem; font-style: italic; font-weight: 300;
  color: rgba(250,246,240,0.35);
}

.svc-info {
  padding: 28px 32px 32px;
  position: relative;
}
.svc-label {
  position: absolute; top: 28px; right: 32px;
  font-family: var(--f-body);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold); opacity: 0.6;
}
.svc-info h3 {
  font-family: var(--f-display);
  font-size: 1.7rem; font-weight: 400;
  color: #FAF6F0;
  margin-bottom: 10px;
  line-height: 1.15;
  transition: color 0.2s;
}
.svc-card:hover .svc-info h3 { color: var(--gold-lt); }
.svc-info p {
  font-family: var(--f-body);
  font-size: 0.86rem; font-weight: 300;
  line-height: 1.75;
  color: rgba(250,246,240,0.45);
  margin-bottom: 18px;
}
.svc-tag {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(248,210,107,0.35);
  padding: 5px 12px;
}

/* ── Gallery ───────────────────────────────────────────────── */
.gallery { background: var(--ivory-2); padding: 100px 0 0; }
.gallery-head {
  max-width: 1280px; margin: 0 auto 56px; padding: 0 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 520px;
  gap: 3px;
}
.g { position: relative; overflow: hidden; cursor: zoom-in; }
.g-tall { grid-row: span 1; }
.g img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.g:hover img { transform: scale(1.07); }
figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 56px 24px 22px;
  background: linear-gradient(to top, rgba(20,18,16,0.75), transparent);
  font-family: var(--f-display);
  font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}
.g:hover figcaption { opacity: 1; transform: translateY(0); }
.g::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color 0.35s;
}
.g:hover::after { border-color: rgba(248,210,107,0.5); }

/* ── Team ──────────────────────────────────────────────────── */
.team {
  position: relative; min-height: 620px;
  display: flex; align-items: center;
  overflow: hidden;
}
.team-img-wrap {
  position: absolute; inset: 0; overflow: hidden;
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,18,16,0.92) 0%,
    rgba(20,18,16,0.7) 50%,
    rgba(20,18,16,0.2) 100%
  );
}
.team-text {
  position: relative; z-index: 2;
  padding: 80px 80px;
  max-width: 580px;
  display: flex; flex-direction: column; gap: 24px;
}
.mt { margin-top: 8px; }

/* ── Testimonials ──────────────────────────────────────────── */
.testi { background: var(--ivory); padding: 112px 40px; }
.testi-head { max-width: 1280px; margin: 0 auto 64px; }
.google-rating {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; flex-wrap: wrap;
}
.google-rating svg { flex-shrink: 0; }
.gr-score {
  font-family: var(--f-display); font-size: 1.6rem; font-weight: 600;
  color: var(--text); line-height: 1;
}
.gr-stars { color: #FBBC05; font-size: 0.85rem; letter-spacing: 2px; }
.gr-count { font-size: 0.78rem; color: var(--muted); font-family: var(--f-body); }
.gr-link {
  font-size: 0.72rem; font-family: var(--f-body); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); border-bottom: 1px solid currentColor;
  text-decoration: none; margin-left: 4px;
}
.gr-link:hover { opacity: 0.75; }
.testi-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.tcard {
  background: var(--ivory-2);
  border: 1px solid rgba(248,210,107,0.12);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.tcard:hover {
  border-color: rgba(248,210,107,0.45);
  transform: translateY(-4px);
}
.tcard-stars {
  font-size: 0.78rem; color: var(--gold);
  letter-spacing: 3px;
}
.tcard blockquote {
  font-family: var(--f-display);
  font-size: 1.1rem; font-style: italic; font-weight: 400;
  line-height: 1.7; color: var(--text);
  flex: 1;
}
.tcard-author {
  display: flex; flex-direction: column; gap: 3px;
  padding-top: 20px;
  border-top: 1px solid rgba(248,210,107,0.15);
}
.tcard-author b {
  font-family: var(--f-body);
  font-size: 0.84rem; font-weight: 600;
  color: var(--text);
}
.tcard-author span {
  font-family: var(--f-body);
  font-size: 0.72rem; font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── CTA Band ──────────────────────────────────────────────── */
.cta-band {
  position: relative; min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(0.35) saturate(0.6);
}
.cta-cover {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,18,16,0.4) 0%,
    rgba(20,18,16,0.55) 100%
  );
}
.cta-body {
  position: relative; z-index: 2;
  padding: 80px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.cta-body .heading-xl {
  font-size: clamp(3rem, 6vw, 5.5rem);
}
.cta-btns {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; justify-content: center;
  margin-top: 12px;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact { background: var(--ivory); padding: 112px 40px; }
.contact-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 40px; }
.contact-details {
  display: flex; flex-direction: column; gap: 0;
}
.cd {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(248,210,107,0.12);
}
.cd-k {
  font-family: var(--f-body);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
}
.cd span:not(.cd-k),
.cd a {
  font-family: var(--f-body);
  font-size: 0.95rem; font-weight: 300;
  color: var(--text);
  transition: color 0.2s;
}
.cd a:hover { color: var(--gold); }
.hours-h {
  font-family: var(--f-display);
  font-size: 1.25rem; font-weight: 500;
  color: var(--text); margin-bottom: 14px;
}
table { width: 100%; border-collapse: collapse; }
td {
  font-family: var(--f-body);
  font-size: 0.88rem; font-weight: 300;
  color: var(--muted); padding: 10px 0;
  border-bottom: 1px solid rgba(248,210,107,0.08);
}
td:last-child {
  text-align: right;
  color: var(--text); font-weight: 400;
}
.map-wrap { overflow: hidden; border: 1px solid rgba(248,210,107,0.15); }
.map-wrap iframe { display: block; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--noir);
  border-top: 1px solid var(--border);
}
.footer-top {
  max-width: 1280px; margin: 0 auto;
  padding: 56px 40px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(248,210,107,0.1);
}
.footer-top .brand-name { font-size: 1rem; }
.footer-links {
  display: flex; gap: 32px;
}
.footer-links a {
  font-family: var(--f-body);
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(250,246,240,0.35);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 24px 40px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.footer-bottom address,
.footer-bottom p {
  font-family: var(--f-body);
  font-size: 0.72rem; font-weight: 300;
  color: rgba(250,246,240,0.25);
  letter-spacing: 0.04em;
}
.footer-bottom a:hover { color: var(--gold); }

/* ── Floating WhatsApp ─────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s;
}
.wa-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}
.wa-pulse {
  position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid #25D366; opacity: 0;
  animation: waring 2.6s ease-out infinite;
}
@keyframes waring {
  0%   { transform: scale(0.85); opacity: 0.75; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ── Scroll reveal ─────────────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }
.rd5 { transition-delay: 0.5s; }
.r.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 0 24px; gap: 24px; }
  .nav-links, .btn-book { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo img { height: 480px; }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 320px;
  }
  .g:last-child { grid-column: span 2; }

  .team-text { padding: 60px 40px; max-width: 560px; }

  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid .tcard:last-child { grid-column: span 2; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .hero-content { padding: 0 40px 72px; }
  .hero-badge { right: 32px; bottom: 72px; }
}

@media (max-width: 768px) {
  .hero-content { padding: 0 24px 64px; max-width: 100%; }
  .hero-title { font-size: clamp(3rem, 11vw, 5rem); }
  .hero-badge { display: none; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  .intro-strip .strip-inner { padding: 14px 24px; gap: 14px; }

  .about { padding: 72px 24px; }
  .about-stats { flex-wrap: wrap; gap: 24px; }

  .services { padding: 72px 24px; }
  .services-top { margin-bottom: 40px; }

  .gallery { padding: 72px 0 0; }
  .gallery-head { padding: 0 24px; margin-bottom: 40px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .g, .g-tall { height: 280px; }
  .g:last-child { grid-column: span 1; }

  .team-text { padding: 56px 24px; }
  .team { min-height: 520px; }

  .testi { padding: 72px 24px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-grid .tcard:last-child { grid-column: span 1; }

  .cta-body { padding: 72px 24px; }
  .cta-btns { flex-direction: column; width: 100%; max-width: 320px; }
  .cta-btns .btn-primary,
  .cta-btns .btn-outline { width: 100%; justify-content: center; }

  .contact { padding: 72px 24px; }

  .footer-top { padding: 48px 24px 36px; flex-direction: column; align-items: flex-start; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 480px) {
  :root { --nav-h: 62px; }
  .nav { padding: 0 20px; }
  .hero-content { padding: 0 20px 56px; }
}

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .r, .v1,.v2,.v3,.v4,.v5,.v6 { opacity: 1; transform: none; animation: none; }
}

@media print {
  .wa-fab, .petals, .nav-wrap { display: none; }
  body { background: #fff; color: #000; }
}
