/* ============================================================
   Henna Nashville — Main Stylesheet
   ============================================================ */

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

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

:root {
  --rose:       #D96868;
  --rose-deep:  #D96868;
  --blush:      #F7EEE9;
  --blush-mid:  #F0DDD5;
  --petal:      #FBF5F0;
  --mauve:      #9E6E6E;
  --mauve-dark: #7A5050;
  --dusty:      #C4A09A;
  --cream:      #FEFAF7;
  --ink:        #3B2828;
  --ink-soft:   #6B4F4F;
  --border:     rgba(212,144,138,0.2);
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(ellipse 800px 600px at 10% 20%, rgba(232,196,196,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 600px 800px at 90% 80%, rgba(212,144,138,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(254,250,247,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 4rem;
  box-shadow: 0 2px 24px rgba(158,110,110,0.06);
}
.logo { font-family: 'Italiana', serif; font-size: 1.5rem; color: var(--ink); letter-spacing: 0.04em; text-decoration: none; }
.logo span { color: var(--rose-deep); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--rose-deep); }
.nav-cta { background: var(--rose-deep) !important; color: white !important; padding: 0.55rem 1.4rem; border-radius: 50px; font-weight: 500 !important; }
.nav-cta:hover { background: var(--mauve-dark) !important; }

/* Mobile Nav Toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; z-index: 1; padding-top: 90px; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 4rem 3rem 4rem 4rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--blush-mid); border: 1px solid var(--border); border-radius: 50px; padding: 0.35rem 1rem; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mauve); width: fit-content; margin-bottom: 1.8rem; }
.hero-badge::before { content: '✿'; font-size: 0.8rem; color: var(--rose-deep); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 400; line-height: 1.1; color: var(--ink); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--rose-deep); }
.hero-sub { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.9; max-width: 500px; margin-bottom: 2.5rem; }
.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--rose-deep); color: white; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.9rem 2rem; border-radius: 50px; text-decoration: none; border: none; cursor: pointer; transition: background 0.3s, transform 0.2s; }
.btn-primary:hover { background: var(--mauve-dark); transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--mauve); font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.9rem 1.5rem; border-radius: 50px; text-decoration: none; border: 1.5px solid var(--rose); transition: all 0.3s; }
.btn-ghost:hover { border-color: var(--rose-deep); color: var(--rose-deep); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 500; color: var(--rose-deep); }
.stat-l { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dusty); font-weight: 500; }

.hero-right { padding: 2rem 4rem 2rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; }
.hero-img { overflow: hidden; border-radius: 20px; position: relative; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.hero-img:hover img { transform: scale(1.04); }
.hero-img.tall { grid-row: span 2; }

/* ============================================================
   STRIP / MARQUEE
   ============================================================ */
.strip { background: var(--rose-deep); padding: 0.9rem 0; overflow: hidden; position: relative; z-index: 1; }
.strip-track { display: flex; white-space: nowrap; animation: slide 28s linear infinite; }
.strip-item { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.85); padding: 0 2.5rem; flex-shrink: 0; }
.strip-dot { color: rgba(255,255,255,0.4); font-style: normal; }
@keyframes slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { position: relative; z-index: 1; }
.section-wrap { padding: 6rem 4rem; }
.section-label { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 0.9rem; }
.section-label::before { content: '✿'; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.15; color: var(--ink); }
.section-title em { font-style: italic; color: var(--rose-deep); }
.section-sub { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.9; max-width: 520px; margin-top: 1rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-col { position: relative; }
.about-main-img { width: 100%; height: 560px; object-fit: cover; border-radius: 24px; }
.about-float-card { position: absolute; bottom: -1.5rem; left: -1.5rem; background: white; border-radius: 18px; padding: 1.4rem 1.8rem; box-shadow: 0 12px 48px rgba(158,110,110,0.14); display: flex; align-items: center; gap: 1.2rem; min-width: 220px; }
.float-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--blush-mid); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.float-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; color: var(--rose-deep); line-height: 1; }
.float-label { font-size: 0.72rem; color: var(--dusty); letter-spacing: 0.06em; margin-top: 0.15rem; }
.about-float-badge { position: absolute; top: 1.5rem; right: -1.5rem; background: var(--rose-deep); color: white; border-radius: 16px; padding: 1rem 1.3rem; text-align: center; box-shadow: 0 8px 32px rgba(212,144,138,0.35); }
.badge-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 500; line-height: 1; }
.badge-text { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; margin-top: 0.2rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 2rem; }
.feat-card { background: var(--blush); border-radius: 16px; padding: 1.3rem; border: 1px solid var(--border); transition: box-shadow 0.3s; }
.feat-card:hover { box-shadow: 0 8px 32px rgba(212,144,138,0.12); }
.feat-icon { font-size: 1.3rem; margin-bottom: 0.5rem; }
.feat-title { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; color: var(--mauve-dark); margin-bottom: 0.3rem; }
.feat-text { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-bg { background: var(--blush); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.svc-card { background: white; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(158,110,110,0.14); }
.svc-img { width: 100%; height: 220px; object-fit: cover; display: block; }
.svc-body { padding: 1.6rem; }
.svc-tag { display: inline-block; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose-deep); background: var(--blush-mid); border-radius: 50px; padding: 0.25rem 0.8rem; margin-bottom: 0.8rem; }
.svc-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 0.7rem; }
.svc-desc { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.75; }
.svc-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.chip { font-weight: 500; font-size: 0.65rem; letter-spacing: 0.06em; color: var(--mauve); border: 1px solid var(--rose); border-radius: 50px; padding: 0.2rem 0.65rem; }
.svc-footer { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.svc-note { font-size: 0.72rem; color: var(--dusty); }
.svc-arrow { width: 32px; height: 32px; border-radius: 50%; background: var(--blush-mid); display: flex; align-items: center; justify-content: center; color: var(--rose-deep); font-size: 0.9rem; transition: background 0.3s; text-decoration: none; }
.svc-card:hover .svc-arrow { background: var(--rose-deep); color: white; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 12px; }
.g-card { border-radius: 18px; overflow: hidden; position: relative; cursor: pointer; }
.g-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-card:hover img { transform: scale(1.07); }
.g-card.tall { grid-row: span 2; }
.g-card.wide { grid-column: span 2; }
.g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(59,40,40,0.5) 0%, transparent 50%); opacity: 0; transition: opacity 0.4s; display: flex; align-items: flex-end; padding: 1.2rem; }
.g-card:hover .g-overlay { opacity: 1; }
.g-label { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-style: italic; color: white; }

/* ============================================================
   WHY US
   ============================================================ */
.why-bg { background: var(--blush); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }
.why-card { background: white; border-radius: 22px; padding: 2rem 1.5rem; border: 1px solid var(--border); text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(158,110,110,0.12); }
.why-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--blush-mid); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1.2rem; }
.why-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.6rem; }
.why-text { font-size: 0.81rem; color: var(--ink-soft); line-height: 1.75; }

/* ============================================================
   AFTERCARE
   ============================================================ */
.aftercare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 3rem; }
.ac-col { display: flex; flex-direction: column; gap: 0.9rem; }
.ac-col-head { background: var(--blush-mid); border-radius: 16px; padding: 1rem 1.4rem; display: flex; align-items: center; gap: 0.7rem; }
.ac-col-head.dos { border-left: 3px solid #A8C5A0; }
.ac-col-head.donts { border-left: 3px solid var(--rose-deep); }
.ac-col-head-icon { font-size: 1.1rem; }
.ac-col-head-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink); }
.ac-card { background: white; border-radius: 14px; padding: 1rem 1.3rem; border: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start; }
.ac-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; margin-top: 1px; }
.dos .ac-icon { background: rgba(168,197,160,0.2); color: #5A9050; }
.donts .ac-icon { background: rgba(212,144,138,0.15); color: var(--rose-deep); }
.ac-card-title { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mauve-dark); margin-bottom: 0.25rem; }
.ac-card-text { font-size: 0.81rem; color: var(--ink-soft); line-height: 1.65; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-bg { background: var(--blush); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.faq-img { width: 100%; height: 440px; object-fit: cover; border-radius: 24px; position: sticky; top: 6rem; }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.faq-card { background: white; border-radius: 16px; border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.3s; }
.faq-card.open { box-shadow: 0 8px 32px rgba(158,110,110,0.1); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 1rem; }
.faq-q-text { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink); font-weight: 400; }
.faq-q-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--blush-mid); display: flex; align-items: center; justify-content: center; color: var(--rose-deep); font-size: 1rem; flex-shrink: 0; transition: transform 0.3s, background 0.3s; }
.faq-card.open .faq-q-icon { transform: rotate(45deg); background: var(--rose-deep); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 1.4rem; }
.faq-card.open .faq-a { max-height: 200px; padding: 0 1.4rem 1.2rem; }
.faq-a p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.8; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking-bg { background: linear-gradient(135deg, var(--rose-deep) 0%, var(--mauve-dark) 100%); }
.booking-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.booking-bg .section-label { color: rgba(255,255,255,0.7); }
.booking-bg .section-label::before { color: rgba(255,255,255,0.5); }
.booking-bg .section-title { color: white; }
.booking-bg .section-title em { color: rgba(255,255,255,0.75); }
.booking-desc { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.9; margin-top: 1.2rem; }
.contact-cards { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.contact-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 0.9rem 1.2rem; display: flex; align-items: center; gap: 0.9rem; }
.cc-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.cc-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.15rem; }
.cc-val { font-size: 0.85rem; color: white; }

.form-box { background: white; border-radius: 28px; padding: 2.5rem; box-shadow: 0 24px 80px rgba(59,40,40,0.2); }
.form-box-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--ink); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.9rem; }
.form-field label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mauve); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea { background: var(--blush); border: 1.5px solid transparent; border-radius: 12px; color: var(--ink); padding: 0.75rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 300; outline: none; transition: border-color 0.3s, background 0.3s; width: 100%; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--rose-deep); background: white; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--dusty); }
.form-field textarea { height: 90px; resize: none; }
.form-submit { width: 100%; background: var(--rose-deep); color: white; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 1rem; border: none; border-radius: 14px; cursor: pointer; transition: background 0.3s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--mauve-dark); }
.form-success { display: none; margin-top: 1rem; text-align: center; font-size: 0.85rem; color: var(--rose-deep); background: var(--blush); border-radius: 12px; padding: 1rem; }
.form-error-msg { display: none; margin-top: 1rem; text-align: center; font-size: 0.85rem; color: #c0392b; background: #fde8e8; border-radius: 12px; padding: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--ink); color: rgba(255,255,255,0.7); position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; padding: 5rem 4rem 4rem; }
.footer-logo { font-family: 'Italiana', serif; font-size: 1.7rem; color: white; text-decoration: none; display: block; margin-bottom: 1rem; }
.footer-logo span { color: var(--rose-deep); }
.footer-tagline { font-size: 0.82rem; line-height: 1.8; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer-col-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: white; margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--rose-deep); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 4rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.73rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }

/* ============================================================
   ADMIN NOTICE STYLES
   ============================================================ */
.hn-notice { background: var(--blush); border: 1px solid var(--border); border-radius: 8px; padding: 0.8rem 1.2rem; font-size: 0.85rem; color: var(--ink-soft); margin: 1rem 0; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Nav */
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.9rem 2rem; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 5rem 2rem 3rem; }
  .hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
  .hero-stats { gap: 2rem; }

  /* About */
  .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-col { max-width: 560px; margin: 0 auto; width: 100%; }
  .about-main-img { height: 420px; }
  .about-float-badge { right: 1rem; }

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

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-card.wide { grid-column: span 2; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; }
  .faq-img { display: none; }

  /* Booking */
  .booking-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { padding: 1.5rem 2rem; }

  /* General */
  .section-wrap { padding: 4rem 2rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  /* Nav */
  nav { padding: 1rem 1.2rem; }
  nav.scrolled { padding: 0.8rem 1.2rem; }
  .nav-links {
    display: none;
    position: fixed; inset: 0; top: 62px;
    background: rgba(254,250,247,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    z-index: 199;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-links a { font-size: 0.9rem; padding: 0.3rem 0; }
  .nav-cta { width: fit-content; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-left { padding: 5.5rem 1.2rem 3rem; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 0.88rem; margin-bottom: 1.8rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .btn-primary, .btn-ghost { justify-content: center; padding: 0.9rem 1.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; margin-top: 2rem; padding-top: 1.5rem; }
  .stat-n { font-size: 1.6rem; }

  /* Strip */
  .strip { padding: 0.75rem 0; }
  .strip-item { font-size: 0.85rem; padding: 0 1.5rem; }

  /* Section commons */
  .section-wrap { padding: 3rem 1.2rem; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .section-sub { font-size: 0.85rem; }

  /* About */
  .about-wrap { gap: 2rem; }
  .about-img-col { max-width: 100%; }
  .about-main-img { height: 280px; }
  .about-float-card {
    position: static;
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(158,110,110,0.1);
    min-width: auto;
    width: 100%;
  }
  .about-float-badge { top: 0.75rem; right: 0.75rem; padding: 0.7rem 1rem; }
  .badge-num { font-size: 1.4rem; }
  .about-features { grid-template-columns: 1fr; gap: 0.7rem; }
  .feat-card { padding: 1rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .svc-img { height: 200px; }
  .svc-body { padding: 1.2rem; }

  /* Gallery */
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 8px; }
  .g-card.tall, .g-card.wide { grid-row: auto; grid-column: auto; }
  .gallery-grid .g-card:first-child { grid-column: span 2; height: 200px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .why-card { padding: 1.5rem 1.2rem; text-align: left; display: flex; gap: 1rem; align-items: flex-start; }
  .why-icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }

  /* Aftercare */
  .aftercare-grid { grid-template-columns: 1fr; }
  .ac-card { padding: 0.9rem 1rem; }

  /* FAQ */
  .faq-list { gap: 0.5rem; }
  .faq-q { padding: 1rem 1.1rem; }
  .faq-q-text { font-size: 0.9rem; }
  .faq-a p { font-size: 0.82rem; }

  /* Booking */
  .section-wrap.booking-wrap { padding: 3rem 1.2rem; }
  .form-box { padding: 1.5rem 1.2rem; border-radius: 20px; }
  .form-box-title { font-size: 1.1rem; margin-bottom: 1.2rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-field input, .form-field select, .form-field textarea { font-size: 16px; /* prevents iOS auto-zoom */ padding: 0.7rem 0.9rem; }
  .form-submit { padding: 0.9rem; font-size: 0.8rem; }
  .contact-cards { gap: 0.5rem; }
  .contact-card { padding: 0.75rem 1rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.2rem 2.5rem; }
  .footer-bottom { padding: 1.2rem 1.2rem; flex-direction: column; gap: 0.4rem; text-align: center; font-size: 0.68rem; }
  .footer-tagline { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — SMALL PHONES (≤380px)
   ============================================================ */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-grid .g-card:first-child { grid-column: 1; height: 200px; }
  .g-card.tall, .g-card.wide { grid-row: auto; grid-column: auto; }
  .hero-stats { gap: 1rem; }
  .stat-n { font-size: 1.4rem; }
}
