/* ============================================================
   Sabita's Threading & Spa — Main Stylesheet
   Aesthetic: Refined Luxury · Warm Neutrals · Feminine Elegance
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── (semantic names kept; values are green-themed) */
:root {
  --gold:       #4A7C59;   /* primary sage green */
  --gold-light: #8FB69E;   /* soft sage */
  --gold-dark:  #2D5F3F;   /* deep forest */
  --blush:      #E4EDDF;   /* mint blush */
  --rose:       #6B9978;   /* muted moss */
  --cream:      #F7F9F4;   /* soft cream-mint */
  --ivory:      #EEF3E9;   /* ivory-mint */
  --warm-white: #FCFDFA;   /* near-white with green hint */
  --dark:       #1A2D22;   /* deep green-charcoal */
  --brown:      #2D5F3F;   /* aliased to deep forest */
  --text:       #1F3329;
  --text-light: #5C7264;
  --border:     rgba(74, 124, 89, 0.22);
  --shadow:     0 8px 40px rgba(26, 45, 34, 0.10);
  --shadow-lg:  0 20px 60px rgba(26, 45, 34, 0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Jost', sans-serif;

  --nav-h:  76px;
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  box-shadow: 0 6px 24px rgba(74, 124, 89, 0.40);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(74, 124, 89, 0.55);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}
.btn-white {
  background: white;
  color: var(--gold-dark);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.22);
}

/* ── Divider ── */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}
.ornament-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ornament-icon { color: var(--gold); font-size: 14px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(252, 253, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 2px 16px rgba(26, 45, 34, 0.04);
  transition: background 0.4s, box-shadow 0.4s, height 0.3s;
}
.navbar.scrolled {
  background: rgba(252, 253, 250, 0.98);
  box-shadow: 0 2px 24px rgba(26, 45, 34, 0.10);
  height: 64px;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  transition: color 0.3s;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }

.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--warm-white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 999;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-nav-cta { margin-top: 20px; width: 100%; text-align: center; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1519415387722-a1c3bbef716c?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  filter: blur(8px);
  transform: scale(1.10);
}
.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(26,45,34,0.78) 0%,
    rgba(45,95,63,0.62) 45%,
    rgba(74,124,89,0.42) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(143,182,158,0.20) 0%, transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  margin: 0 auto 0 calc((100vw - 1200px)/2 + 24px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(143,182,158,0.20);
  border: 1px solid rgba(143,182,158,0.40);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-stats {
  position: absolute;
  bottom: 40px;
  left: max(24px, calc((100vw - 1200px)/2 + 24px));
  display: flex;
  gap: 40px;
  z-index: 2;
}
.hero-stat {
  text-align: center;
  color: white;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Hero info badge (right side) ── */
.hero-info {
  position: absolute;
  right: max(32px, calc((100vw - 1200px)/2 + 24px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(10, 30, 18, 0.55);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 28px 26px;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
}
.hero-info-item:first-child { padding-top: 0; }
.hero-info-item:last-child  { padding-bottom: 0; }
.hero-info-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.hero-info-icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.hero-info-icon--green {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
}
.hero-info-icon--amber {
  background: rgba(255, 200, 100, 0.18);
  border: 1px solid rgba(255,200,100,0.35);
  color: #ffd070;
}
.hero-info-label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: white;
  line-height: 1.3;
  margin-bottom: 4px;
}
.hero-info-sub {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  letter-spacing: 0.2px;
}
@media (max-width: 1100px) { .hero-info { display: none; } }

/* ============================================================
   SECTION SPACING
   ============================================================ */
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.section-dark { background: var(--dark); color: white; }
.section-cream { background: var(--cream); }
.section-ivory { background: var(--ivory); }
.section-blush { background: var(--blush); }

/* ============================================================
   ABOUT PREVIEW (HOME)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid var(--warm-white);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 20px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--ivory);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-feature:hover {
  background: white;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.about-feature-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
  flex-shrink: 0;
}
.about-feature-text {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

/* ============================================================
   SERVICES HIGHLIGHT
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.service-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,45,34,0.07);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  group: true;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  transform: rotate(-5deg) scale(1.1);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-price {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  transition: gap 0.2s;
}
.service-card-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.why-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.why-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
  border-color: rgba(143,182,158,0.4);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(143,182,158,0.28), rgba(143,182,158,0.10));
  border: 1px solid rgba(143,182,158,0.32);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 22px;
  flex-shrink: 0;
}
.why-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.why-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-wrap {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}
.testimonials-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: 100%;
  padding: 0 10%;
}
.testimonial-inner {
  background: white;
  border-radius: 28px;
  padding: 52px 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-inner::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold-light);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 40px;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}
.testimonial-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.testimonial-date {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-light);
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--gold);
  color: white;
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   GALLERY (3x2 grid, mirrors the 6 service categories)
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
  margin-top: 60px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,45,34,0.72), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(45,95,63,0.94), rgba(26,45,34,0.96)),
    url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?auto=format&fit=crop&w=1400&q=80') center/cover;
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(143,182,158,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner h2 em { color: var(--gold-light); font-style: italic; }
.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  margin-bottom: 40px;
  position: relative;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 28px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 28px 24px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-wrap {
  background: linear-gradient(135deg, var(--blush), var(--ivory));
  border-radius: 28px;
  padding: 60px;
  text-align: center;
  border: 1px solid var(--border);
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 32px auto 0;
}
.newsletter-input {
  flex: 1;
  padding: 14px 24px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}
.footer-logo-text span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 400;
}
.footer-desc { font-size: 0.92rem; line-height: 1.8; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 0.92rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link:hover { color: white; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  align-items: flex-start;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: 13px; }
.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.footer-hour {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-hour:last-child { border-bottom: none; }
.hour-day { color: rgba(255,255,255,0.55); }
.hour-time { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: white !important; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-book {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 990;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(74,124,89,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  transform: translateY(100px);
  opacity: 0;
}
.float-book.visible {
  transform: translateY(0);
  opacity: 1;
}
.float-book:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(74,124,89,0.65); }

.float-call {
  position: fixed;
  bottom: 32px;
  left: 28px;
  z-index: 990;
  background: white;
  color: var(--gold-dark);
  width: 52px; height: 52px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: var(--transition);
  border: 2px solid var(--border);
  display: none;
}
.float-call:hover { background: var(--gold); color: white; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background:
    linear-gradient(160deg, rgba(26,45,34,0.84) 0%, rgba(45,95,63,0.68) 100%),
    url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1400&q=80') center/cover;
  padding: 160px 24px 80px;
  text-align: center;
  color: white;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb i { font-size: 8px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-section { padding: 100px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img-wrap { position: relative; }
.story-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.story-img-badge {
  position: absolute;
  bottom: 32px;
  right: -32px;
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  max-width: 160px;
}
.story-img-badge i { font-size: 28px; color: var(--gold); margin-bottom: 8px; }
.story-img-badge p { font-family: var(--font-ui); font-size: 11px; color: var(--text-light); line-height: 1.5; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
  font-size: 18px;
  flex-shrink: 0;
}
.value-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.value-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* Heritage / Nepal section */
.heritage-section {
  background: var(--dark);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.heritage-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(143,182,158,0.14) 0%, transparent 70%);
}
.heritage-content { max-width: 700px; }
.heritage-content .section-title { color: white; }
.heritage-content .section-sub { color: rgba(255,255,255,0.65); }

/* Heritage grid — image stretches to match content height */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.heritage-img-wrap {
  display: flex;
  width: 100%;
}
.heritage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  min-height: 480px;
}
@media (max-width: 1024px) {
  .heritage-grid { grid-template-columns: 1fr; gap: 50px; }
  .heritage-img { aspect-ratio: 4/5; height: auto; min-height: 0; }
}

/* Story section image — matches content height */
.story-section .story-grid { align-items: stretch; }
.story-section .story-img-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.story-section .story-img {
  flex: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 1024px) {
  .story-section .story-img-wrap { min-height: 0; }
  .story-section .story-img { aspect-ratio: 3/4; height: auto; }
}
.heritage-list { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.heritage-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(143,182,158,0.22);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.heritage-list-item:hover { background: rgba(255,255,255,0.08); }
.heritage-list-item i { color: var(--gold); font-size: 18px; margin-top: 2px; }
.heritage-list-item p { font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.7; }

/* ============================================================
   MEET THE OWNER (About Page)
   ============================================================ */
.owner-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.owner-img-wrap {
  width: 100%;
}
.owner-img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(26, 45, 34, 0.15);
}
.owner-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  margin: 14px 0 6px;
}
.owner-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-dark);
  margin-bottom: 24px;
}
.owner-bio-short {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-light);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}
/* When the last card is alone in its row (odd total count),
   span it full-width but cap it to one-column width, centered */
.service-page-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 14px);   /* 14px = half the 28px gap */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.service-page-card {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-page-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-page-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-page-card:hover::before { transform: scaleX(1); }
.spc-header { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.spc-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blush), rgba(212,150,122,0.3));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--rose);
  transition: var(--transition);
  flex-shrink: 0;
}
.service-page-card:hover .spc-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: white;
}
.spc-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
}
.spc-header .price-tag {
  margin-left: auto;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.spc-desc { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.spc-items { display: flex; flex-direction: column; gap: 10px; }
.spc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: 10px;
  font-size: 0.92rem;
}
.spc-item-name { color: var(--text); }
.spc-item-price { color: var(--gold-dark); font-weight: 600; font-family: var(--font-ui); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(26,45,34,0.05);
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blush), rgba(212,150,122,0.25));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--rose);
  flex-shrink: 0;
}
.contact-card h4 { font-family: var(--font-ui); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.contact-card p, .contact-card a { font-family: var(--font-display); font-size: 1.1rem; color: var(--dark); }

.contact-form-wrap {
  background: white;
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-form-wrap .sub { font-size: 0.95rem; color: var(--text-light); margin-bottom: 36px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: white;
}
.form-textarea { resize: vertical; min-height: 120px; }
.map-wrap { margin-top: 60px; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered children */
.stagger-children > *:nth-child(1) { transition-delay: 0.0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE 3-COL GRID UTILITY
   (Used for Philosophy cards on About page and Info cards on Contact page.
    Must be a CSS class — NOT inline — so media queries can override it.)
   ============================================================ */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .grid-3col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Reduce card padding on mobile for these two sections */
  .grid-3col > [style*="padding:40px"],
  .grid-3col > [style*="padding:32px"] {
    padding: 28px 22px !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid, .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-wrap { max-width: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .owner-grid { grid-template-columns: 1fr; gap: 50px; }
  .owner-img-wrap { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .float-call { display: flex; }

  /* Hero — was wasting 160px of empty bottom space */
  .hero-content { margin: 0; padding: calc(var(--nav-h) + 50px) 24px 70px; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { position: static; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; padding: 0 24px 50px; }
  .hero-scroll { display: none; }

  /* Page hero on inner pages — was using 160px top before nav shrank to 64px */
  .page-hero { padding: 110px 20px 60px; }
  .page-hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }

  /* Heavy desktop section padding scaled down */
  .section { padding: 70px 0; }
  .story-section { padding: 70px 0; }
  .heritage-section { padding: 70px 0; }
  .cta-banner { padding: 70px 24px; }
  .owner-section { padding: 70px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  /* Reset centering on mobile — all cards full width */
  .service-page-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .testimonial-card { padding: 0 4%; }
  .testimonial-inner { padding: 36px 28px; }
  .testimonial-text { font-size: 1.1rem; }

  /* Testimonial author row — Google/Yelp badge wraps below name on tight screens */
  .testimonial-author { flex-wrap: wrap; gap: 14px; }
  .testimonial-author > div[style*="margin-left:auto"] {
    margin-left: 0 !important;
  }

  .newsletter-form { flex-direction: column; }
  .story-img-badge { right: 0; }
  .about-img-accent { display: none; }
  .about-badge { left: 0; }
  .float-book { padding: 12px 18px; font-size: 11px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .newsletter-wrap { padding: 40px 24px; }
  .hero-stat-num { font-size: 1.5rem; }

  /* Service-page cards — 40px desktop padding too tight on mobile */
  .service-page-card { padding: 28px 22px; }
  .spc-header { flex-wrap: wrap; gap: 12px; }
  .spc-header .price-tag { margin-left: 0; }

  /* Why-cards — reduce inner spacing on mobile */
  .why-card { padding: 24px; gap: 18px; }
  .why-icon { width: 48px; height: 48px; font-size: 18px; }

  /* Heritage list rows — tighter padding */
  .heritage-list-item { padding: 16px; }
}

@media (max-width: 480px) {
  /* Tighter container padding on tiny phones */
  .container { padding: 0 16px; }

  /* Hero readability on very small screens */
  .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-sub { font-size: 1rem; }
  .hero-content { padding: calc(var(--nav-h) + 30px) 16px 60px; }

  /* Page hero scaling */
  .page-hero { padding: 100px 16px 50px; }
  .page-hero h1 { font-size: 1.9rem; line-height: 1.2; }
  .page-hero p { font-size: 1rem; }

  /* Section titles scale down */
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Service highlight cards */
  .section { padding: 60px 0; }
  .service-card-body { padding: 22px; }
  .service-card-img { height: 170px; }

  /* Gallery — single column with controlled height */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }

  /* Service page cards — even tighter on tiny screens */
  .spc-header { flex-wrap: wrap; }
  .spc-header .price-tag { margin-left: 0; }
  .service-page-card { padding: 24px 18px; }
  .spc-item { padding: 10px 12px; font-size: 0.88rem; }

  /* Floating buttons — pull in slightly */
  .float-book { bottom: 20px; right: 16px; padding: 10px 16px; font-size: 10px; }
  .float-call { bottom: 20px; left: 16px; width: 46px; height: 46px; font-size: 18px; }

  /* Testimonial smaller */
  .testimonial-inner { padding: 28px 22px; }
  .testimonial-inner::before { font-size: 6rem; left: 20px; }
  .testimonial-text { font-size: 1rem; }

  /* Newsletter compact */
  .newsletter-wrap { padding: 32px 20px; }

  /* CTA banner tighter */
  .cta-banner { padding: 60px 16px; }
  .cta-banner h2 { font-size: 1.7rem; }
  .cta-banner p { font-size: 1rem; }

  /* Footer-bottom centered for narrow screens */
  .footer-bottom { font-size: 11px; flex-direction: column; text-align: center; gap: 8px; }

  /* Owner section tighter */
  .owner-name { font-size: 2rem; }
  .owner-title { font-size: 1.05rem; }

  /* Heritage / story padding */
  .heritage-section, .story-section, .owner-section { padding: 60px 0; }

  /* About-badge on home page Our Story — keep readable */
  .about-badge { padding: 16px 20px; }
  .about-badge-num { font-size: 2rem; }

  /* Map shorter on tiny screens */
  .map-wrap { height: 280px; }

  /* Contact card padding */
  .contact-card { padding: 22px; }
}
