/* ── VARIABLES ── */
:root {
  --tan:       #E3C586;
  --tan2:      #f0d898;
  --tan-dim:   rgba(227,197,134,0.12);
  --tan-border:rgba(227,197,134,0.2);
  --black:     #111010;
  --black2:    #181716;
  --black3:    #1f1e1c;
  --black4:    #252320;
  --white:     #faf8f4;
  --muted:     #888070;
  --border:    rgba(255,255,255,0.07);
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-g:  0 8px 40px rgba(227,197,134,0.18);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  letter-spacing: 0.2px;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.1; }

a { text-decoration: none; color: inherit; }

img { display: block; width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── INTRO ── */
#intro {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.7s ease;
}
#intro.hidden { opacity: 0; pointer-events: none; }

.intro-inner { text-align: center; }

.intro-scissors {
  font-size: 2.5rem;
  color: var(--tan);
  display: block;
  margin-bottom: 1rem;
  animation: spinIn 0.8s ease forwards;
}
@keyframes spinIn {
  from { opacity:0; transform:rotate(-45deg) scale(0.5); }
  to   { opacity:1; transform:rotate(0deg) scale(1); }
}

.intro-logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--tan);
  letter-spacing: 6px;
  opacity: 0;
  animation: introFade 1.4s ease 0.3s forwards;
}

.intro-line {
  width: 0;
  height: 1px;
  background: var(--tan);
  margin: 1rem auto 0;
  animation: lineGrow 0.8s ease 0.8s forwards;
}
@keyframes lineGrow { to { width: 120px; } }

@keyframes introFade {
  0%   { opacity:0; transform:translateY(10px); }
  60%  { opacity:1; transform:translateY(0); }
  100% { opacity:1; }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 80px;
  background: rgba(17,16,16,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.35s ease;
}
.navbar.scrolled {
  height: 64px;
  background: rgba(17,16,16,0.97);
  border-bottom-color: var(--tan-border);
}

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex; align-items: center; gap: 0.6rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--tan-dim);
  border: 1px solid var(--tan-border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem;
  color: var(--tan);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}

.nav-links {
  list-style: none;
  display: flex; gap: 2rem; align-items: center;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--tan); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 100%; height: 1px;
  background: var(--tan);
}

.nav-book-btn {
  flex-shrink: 0;
  background: var(--tan);
  color: var(--black);
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.nav-book-btn:hover { background: var(--tan2); box-shadow: var(--shadow-g); }

.nav-mobile-book { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--tan);
  display: block; transition: 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: url('image2.jpg') center/cover no-repeat;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(17,16,16,0.93) 0%, rgba(17,16,16,0.7) 55%, rgba(17,16,16,0.4) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 9rem 6% 6rem;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--tan-border);
  color: var(--tan);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s ease 1.8s both;
}
.tag-dot {
  width: 6px; height: 6px;
  background: var(--tan); border-radius: 50%;
  animation: breathe 2s infinite;
}
@keyframes breathe {
  0%,100% { opacity:1; } 50% { opacity:0.3; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 2s both;
}
.hero-title em {
  font-style: italic; font-weight: 400;
  color: var(--tan);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 2.5rem;
  max-width: 44ch;
  animation: fadeUp 0.8s ease 2.2s both;
}
.hero-sub strong { color: var(--tan); font-weight: 600; }

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  animation: fadeUp 0.8s ease 2.4s both;
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--tan);
  color: var(--black);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 0.22s;
  font-family: 'DM Sans', sans-serif;
  border: 2px solid var(--tan);
  position: relative; overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--tan2); border-color: var(--tan2); transform: translateY(-2px); box-shadow: var(--shadow-g); }

.btn-outline-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  padding: 1rem 1.6rem;
  border-radius: 4px;
  font-size: 0.88rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-outline-hero:hover { border-color: var(--tan-border); color: var(--tan); }

.hero-scarcity {
  margin-top: 1.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  animation: fadeUp 0.8s ease 2.6s both;
}

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 6%;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, rgba(227,197,134,0.6), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { transform: scaleY(1); opacity:1; }
  50% { transform: scaleY(0.4); opacity:0.3; }
}

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

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.stats-container {
  max-width: 900px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
}
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700; color: var(--tan);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-top: 0.4rem;
}
.stat-divider {
  width: 1px; height: 50px;
  background: var(--border);
}

/* ── ABOUT ── */
.about {
  padding: 8rem 0;
  background: var(--black);
}
.about-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrap img {
  height: 550px; object-fit: cover;
  border-radius: var(--radius);
  filter: brightness(0.85);
  transition: filter 0.3s;
}
.about-img-wrap:hover img { filter: brightness(0.95); }
.about-img-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: var(--tan);
  color: var(--black);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  display: block; line-height: 1;
}
.badge-lbl {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  line-height: 1.4;
}

.section-label {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--tan); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.section-label::before { content:''; width:20px; height:1px; background:var(--tan); }

.section-title-left {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; margin-bottom: 1.2rem;
}
.section-title-left em { font-style:italic; color:var(--tan); font-weight:400; }

.about-p {
  font-size: 0.95rem; color: var(--muted); line-height: 1.85;
  margin-bottom: 1rem; max-width: 46ch;
}

.about-pillars { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.pillar {
  display: flex; gap: 1rem; align-items: flex-start;
}
.pillar-icon {
  color: var(--tan); font-size: 0.7rem; flex-shrink: 0; margin-top: 0.3rem;
}
.pillar h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 600; color: var(--white);
  margin-bottom: 0.2rem;
}
.pillar p { font-size: 0.83rem; color: var(--muted); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-title-center {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; color: var(--tan);
  letter-spacing: -0.02em; margin-bottom: 0.8rem;
}

.section-sub-center {
  font-size: 0.95rem; color: var(--muted);
  max-width: 50ch; margin: 0 auto; line-height: 1.75;
}

/* ── SERVICES ── */
.services {
  padding: 8rem 0;
  background: var(--black2);
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--tan-border);
  box-shadow: var(--shadow-g);
  background: var(--black4);
}

.featured-service {
  border-color: var(--tan-border);
  background: linear-gradient(145deg, rgba(227,197,134,0.07), var(--black3));
}
.featured-service-label {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--tan); color: var(--black);
  font-size: 0.65rem; font-weight: 700;
  padding: 0.22rem 0.8rem; border-radius: 2px;
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

.service-icon-wrap {
  width: 60px; height: 60px;
  background: var(--tan-dim);
  border: 1px solid var(--tan-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.service-emoji { font-size: 1.5rem; }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.83rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.2rem;
}
.service-from {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600;
  color: var(--tan);
  border: 1px solid var(--tan-border);
  padding: 0.28rem 0.75rem; border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ── PRICING ── */
.pricing {
  padding: 8rem 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.pricing-wrap {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 2.5rem; align-items: start;
}

.pricing-table {
  border: 1px solid var(--tan-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  gap: 1rem;
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item:hover { background: var(--tan-dim); }

.pi-left {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.92rem; color: rgba(255,255,255,0.8);
}
.pi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted); flex-shrink: 0;
}
.featured-dot { background: var(--tan); }
.vip-dot { background: var(--tan); box-shadow: 0 0 6px rgba(227,197,134,0.5); }

.featured-item { background: var(--tan-dim); }
.vip-item .pi-left { font-weight: 500; }

.pi-tag {
  background: var(--tan-dim);
  color: var(--tan);
  font-size: 0.7rem; font-weight: 600;
  padding: 0.15rem 0.5rem; border-radius: 2px;
  margin-left: 0.4rem;
}
.pi-tag-sm { font-size: 0.78rem; color: var(--muted); }

.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--tan); white-space: nowrap;
}

/* Pricing CTA box */
.pricing-cta-box {
  background: var(--black2);
  border: 1px solid var(--tan-border);
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky; top: 6rem;
}
.pcta-badge {
  display: inline-block;
  background: var(--tan-dim);
  color: var(--tan);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.28rem 0.8rem; border-radius: 2px;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.pricing-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.7rem;
}
.pricing-cta-box p {
  font-size: 0.85rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.4rem;
}
.pcta-note {
  font-size: 0.75rem; color: var(--muted);
  text-align: center; margin-top: 0.9rem; margin-bottom: 0 !important;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 8rem 0;
  background: var(--black2);
  border-top: 1px solid var(--border);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.test-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s, transform 0.25s;
}
.test-card:hover { border-color: var(--tan-border); transform: translateY(-4px); }

.test-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; line-height: 1;
  color: var(--tan); opacity: 0.25;
  position: absolute; top: 1rem; right: 1.5rem;
  font-weight: 900;
}

.rating {
  color: var(--tan); font-size: 0.85rem;
  letter-spacing: 3px; margin-bottom: 1rem;
  display: block;
}

.testimonial-text {
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  line-height: 1.8; font-style: italic;
  margin-bottom: 1.5rem;
}

.test-author {
  display: flex; align-items: center; gap: 0.75rem;
}
.test-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--tan-dim);
  border: 1px solid var(--tan-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1rem;
  color: var(--tan); flex-shrink: 0;
}
.test-name {
  display: block; font-size: 0.88rem; font-weight: 600; color: var(--white);
}
.test-location {
  display: block; font-size: 0.75rem; color: var(--muted);
}

/* ── GALLERY ── */
.gallery {
  padding: 8rem 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.gallery-caption {
  font-size: 0.88rem; color: var(--tan);
  text-align: center; margin-top: -0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%; min-height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.gallery-item::after {
  content: '🔍';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: rgba(17,16,16,0);
  transition: background 0.3s;
  opacity: 0;
}
.gallery-item:hover::after {
  background: rgba(17,16,16,0.4);
  opacity: 1;
}

/* ── CONTACT ── */
.contact {
  padding: 8rem 0;
  background: var(--black2);
  border-top: 1px solid var(--border);
}

.contact-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 5rem; align-items: start;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--white);
  line-height: 1; margin: 1rem 0;
}
.contact-title em { font-style: italic; color: var(--tan); font-weight: 400; }

.contact-sub {
  font-size: 0.95rem; color: var(--muted); line-height: 1.8;
  max-width: 44ch; margin-bottom: 2.5rem;
}

.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.ci-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
}
.ci-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--tan-dim);
  border: 1px solid var(--tan-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--tan); font-size: 0.9rem;
  margin-top: 0.1rem;
}
.ci-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--tan); margin-bottom: 0.25rem;
}
.ci-item p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.ci-item p a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.ci-item p a:hover { color: var(--tan); }

/* Booking card */
.book-card {
  background: var(--black3);
  border: 1px solid var(--tan-border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky; top: 6rem;
}
.book-card-header {
  background: var(--tan);
  color: var(--black);
  padding: 1.1rem 1.6rem;
  font-size: 0.88rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}
.book-card-body { padding: 1.8rem; }
.book-card-sub {
  font-size: 0.85rem; color: var(--muted);
  margin-bottom: 1.5rem; line-height: 1.7;
}

.service-selector { margin-bottom: 1.5rem; }
.service-selector label {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--tan); display: block; margin-bottom: 0.75rem;
}
.service-options {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.svc-opt {
  background: var(--black4);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.65);
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  font-size: 0.8rem; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.svc-opt:hover { border-color: var(--tan-border); color: var(--tan); }
.svc-opt.active { background: var(--tan-dim); border-color: var(--tan); color: var(--tan); }

.book-wa-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}
.book-reassure {
  font-size: 0.75rem; color: var(--muted); text-align: center;
}

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  width: 56px; height: 56px;
  bottom: 2rem; right: 2rem;
  background: #1f1f1f;
  color: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 400;
  transition: all 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  background: #25D366;
  color: #fff;
  animation: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
@keyframes waPulse {
  0%,100% { transform:scale(1); }
  50% { transform:scale(1.05); }
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 3rem 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 2rem;
}
.footer-brand {
  display: flex; align-items: center; gap: 0.75rem;
}
.footer-logo-mark {
  width: 40px; height: 40px;
  background: var(--tan-dim);
  border: 1px solid var(--tan-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--tan);
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--white);
  letter-spacing: 1px;
}
.footer-tagline {
  font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 0.15rem;
}
.footer-links {
  display: flex; gap: 1.8rem; flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.82rem; color: var(--muted); transition: color 0.2s;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500;
}
.footer-links a:hover { color: var(--tan); }

.footer-socials {
  display: flex; gap: 1rem;
}
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--tan-border); color: var(--tan); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 24px;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.75rem; color: var(--muted);
}
.footer-bottom a { color: var(--tan); transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 0.8; }

/* ── SCROLL REVEAL ── */
.will-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   RESPONSIVE — FULL MOBILE FIX
   ══════════════════════════════ */

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-wrap img { height: 340px; }
  .about-p { max-width: 100%; }

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

  .pricing-wrap { grid-template-columns: 1fr; }
  .pricing-cta-box { position: static; }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .book-card { position: static; }
}

/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {

  /* NAV */
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(17,16,16,0.98);
    backdrop-filter: blur(24px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2.2rem;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 450;
  }
  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
  }
  .nav-links li { opacity: 0; transform: translateX(20px); transition: opacity 0.3s ease, transform 0.3s ease; }
  .nav-links.active li:nth-child(1) { opacity:1; transform:translateX(0); transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { opacity:1; transform:translateX(0); transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { opacity:1; transform:translateX(0); transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { opacity:1; transform:translateX(0); transition-delay: 0.25s; }
  .nav-links.active li:nth-child(5) { opacity:1; transform:translateX(0); transition-delay: 0.3s; }
  .nav-links.active li:nth-child(6) { opacity:1; transform:translateX(0); transition-delay: 0.35s; }
  .nav-links.active li:nth-child(7) { opacity:1; transform:translateX(0); transition-delay: 0.4s; }
  .nav-links a { font-size: 1.3rem; letter-spacing: 0.06em; }

  .nav-book-btn { display: none; }
  .menu-toggle { display: flex; z-index: 500; position: relative; }
  .nav-mobile-book { display: flex; margin-top: 0.5rem; }

  /* HERO */
  .hero-content {
    padding: 7rem 5% 5rem;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(2.6rem, 11vw, 3.5rem);
    line-height: 1.0;
    margin-bottom: 1.2rem;
  }
  .hero-sub {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-outline-hero {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-scroll-hint { display: none; }

  /* STATS */
  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    justify-items: center;
  }
  .stat-divider { display: none; }
  .stat-item { min-width: unset; width: 100%; }

  /* ABOUT */
  .about { padding: 5rem 0; }
  .about-container { gap: 2.5rem; }
  .about-img-wrap img { height: 260px; }
  .about-img-badge {
    bottom: 1rem; right: 1rem;
    padding: 0.75rem 1rem;
  }
  .badge-num { font-size: 1.6rem; }
  .section-title-left { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .about-pillars { gap: 1rem; }

  /* SERVICES */
  .services { padding: 5rem 0; }
  .services-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .featured-service { margin-top: 0.6rem; }

  /* PRICING */
  .pricing { padding: 5rem 0; }
  .pricing-wrap { gap: 1.5rem; }
  .pricing-item {
    padding: 1rem 1.2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .pi-left {
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
  .pi-tag { display: none; } /* hide on mobile — too cramped */
  .price { font-size: 0.95rem; }
  .pricing-cta-box { padding: 1.5rem; }

  /* TESTIMONIALS */
  .testimonials { padding: 5rem 0; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .test-quote-mark { font-size: 3rem; }

  /* GALLERY */
  .gallery { padding: 5rem 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item img { min-height: 160px; }

  /* CONTACT */
  .contact { padding: 5rem 0; }
  .contact-container { gap: 2.5rem; }
  .contact-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .contact-sub { max-width: 100%; }
  .contact-info-list { gap: 1.2rem; }

  /* BOOKING CARD */
  .book-card-body { padding: 1.4rem; }
  .service-options { gap: 0.4rem; }
  .svc-opt { padding: 0.5rem 0.75rem; font-size: 0.78rem; }

  /* SECTION HEADERS */
  .section-header { margin-bottom: 2.5rem; }
  .section-title-center { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .section-sub-center { font-size: 0.88rem; }
  .section-label { font-size: 0.65rem; }

  /* FOOTER */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 2.5rem 24px;
    gap: 1.5rem;
  }
  .footer-links {
    justify-content: center;
    gap: 1.2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }
}

/* ── SMALL PHONE (≤480px) ── */
@media (max-width: 480px) {
  /* General section spacing */
  section { padding: 4.5rem 0; }

  /* Hero */
  .hero-content { padding: 6.5rem 5% 4rem; }
  .hero-title { font-size: clamp(2.2rem, 12vw, 2.8rem); }
  .hero-tag { font-size: 0.65rem; padding: 0.3rem 0.75rem; }
  .hero-scarcity { font-size: 0.75rem; }

  /* Stats — stack to 2 cols still, tighter */
  .stats-strip { padding: 2rem 0; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.68rem; }

  /* About */
  .about { padding: 4.5rem 0; }
  .about-img-wrap img { height: 220px; }
  .about-img-badge { padding: 0.6rem 0.85rem; }
  .badge-num { font-size: 1.3rem; }
  .badge-lbl { font-size: 0.62rem; }

  /* Services */
  .services { padding: 4.5rem 0; }
  .service-card { padding: 1.8rem 1.4rem; }

  /* Pricing */
  .pricing { padding: 4.5rem 0; }
  .pricing-item { padding: 0.9rem 1rem; }
  .pi-left { font-size: 0.82rem; }

  /* Gallery — single column */
  .gallery { padding: 4.5rem 0; }
  .gallery-grid { grid-template-columns: 1fr; gap: 0.6rem; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item img { min-height: 200px; }

  /* Contact */
  .contact { padding: 4.5rem 0; }
  .ci-icon { width: 34px; height: 34px; font-size: 0.8rem; }

  /* Booking card */
  .book-card-body { padding: 1.2rem; }
  .book-wa-btn { font-size: 0.85rem; padding: 0.9rem; }

  /* Footer */
  .footer-inner { padding: 2rem 20px; }
  .footer-links { gap: 1rem; }
  .footer-links a { font-size: 0.75rem; }

  /* WhatsApp float — smaller on small screens */
  .whatsapp-float {
    width: 50px; height: 50px;
    bottom: 1.2rem; right: 1.2rem;
    font-size: 1.4rem;
  }
}