/* ============================================================
   HAIRBYSTACY — STYLE.CSS
   Warm neutrals · Boutique salon · Mobile-first
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --cream:        #FAF7F2;
  --cream-dark:   #EDE8DF;
  --gold:         #C8A882;
  --gold-light:   #E8D4B0;
  --gold-dark:    #9F7A4E;
  --charcoal:     #2C2C2C;
  --charcoal-mid: #555555;
  --charcoal-lt:  #888888;
  --dark:         #1B1512;
  --white:        #FFFFFF;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --nav-h:    72px;
  --wrap:     1160px;
  --pad:      24px;
  --radius:   8px;
  --radius-lg:16px;
  --shadow:   0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:0 8px 48px rgba(0,0,0,0.12);
  --ease:     0.3s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; }
p  { font-size: 1rem; color: var(--charcoal-mid); line-height: 1.8; }

/* ---------- LAYOUT ---------- */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- LABELS & HEADERS ---------- */
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.label-light { color: var(--gold-light); }

.sec-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}
.sec-header h2 { margin: 8px 0 16px; }
.sec-header p  { font-size: 0.97rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,130,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-lg { padding: 16px 40px; font-size: 0.9rem; }

/* ---------- NAVBAR ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 900;
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(27, 21, 18, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-city {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: color var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}
.nav-book { flex-shrink: 0; }
.nav-book-btn { padding: 10px 22px; font-size: 0.78rem; }

/* Social icons in nav */
.nav-social {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: rgba(255,255,255,0.58);
  transition: color var(--ease), background var(--ease);
}
.nav-social-link:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}
.nav-social-link svg { display: block; }
.nav-social-mobile { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--ease);
  transform-origin: center;
}
.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); }
.nav-cta-mobile { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark);
  background-image: url('images/5_image.png');
  background-size: cover;
  background-position: center 15%;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 16, 8, 0.78) 0%,
    rgba(30, 16, 8, 0.60) 50%,
    rgba(30, 16, 8, 0.45) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) var(--pad) 80px;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 36px;
  backdrop-filter: blur(6px);
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
a.hero-badge:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.3);
}
.hero-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 3px;
}
.star-dim { opacity: 0.38; }
.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.28);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.15); }
}

/* ---------- WELCOME ---------- */
.welcome {
  padding: 100px 0;
  background: var(--white);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-text h2 { margin: 8px 0 20px; }
.welcome-text p  { margin-bottom: 18px; }
.welcome-text .btn { margin-top: 12px; }
.welcome-img { position: relative; }
.welcome-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.welcome-img::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg);
  z-index: 0;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 100px 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.svc-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1;
}
.svc-card h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--charcoal);
}
.svc-card ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.svc-card li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--charcoal-mid);
  line-height: 1.4;
}
.svc-card li span:first-child { flex: 1; }
.price {
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
  font-size: 0.83rem;
}
.svc-note {
  text-align: center;
  font-size: 0.87rem;
  color: var(--charcoal-lt);
}
.svc-note a { color: var(--gold); font-weight: 700; }

.svc-footnote {
  font-size: 0.75rem;
  color: var(--charcoal-lt);
  margin-top: 14px;
  font-style: italic;
  line-height: 1.5;
}

/* Products row */
.products-row {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.products-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.products-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.88rem;
}
.product-name { color: var(--charcoal-mid); }
.product-item .price { font-size: 0.88rem; }

/* Student discount + policies */
.svc-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.student-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gold-light);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.student-icon {
  color: var(--gold-dark);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.student-badge strong { color: var(--charcoal); }
.booking-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.82rem;
  color: var(--charcoal-lt);
}
.booking-policies span { white-space: nowrap; }

/* Dual booking buttons */
.book-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.booking-note {
  font-size: 0.78rem;
  color: var(--charcoal-lt);
  font-style: italic;
  margin-top: 2px;
  margin-bottom: 0;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 14px;
  margin-bottom: 48px;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.g-item:hover img { transform: scale(1.06); }

/* Always-visible placeholder badge */
.g-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.45);
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}
/* Hover overlay */
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 8, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
  z-index: 3;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 9px 18px;
  border-radius: 4px;
  background: rgba(0,0,0,0.3);
}
.gallery-cta { text-align: center; }
.gallery-ig {
  text-align: center;
  font-size: 0.82rem;
  color: var(--charcoal-lt);
  margin-bottom: 28px;
}
.gallery-ig a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--ease);
}
.gallery-ig a:hover { color: var(--gold); }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.testi-quote {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.testi-text {
  font-size: 0.93rem;
  color: var(--charcoal-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--charcoal); }
.testi-stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 2px; }
.testi-source { font-size: 0.72rem; color: var(--charcoal-lt); margin-top: 2px; }

/* ---------- ABOUT ---------- */
.about {
  padding: 100px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.about-img { position: relative; }
.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-text h2 { margin: 8px 0 24px; }
.about-text p  { margin-bottom: 16px; }
.about-stats {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  margin: 24px 0 30px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-n {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.c-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.c-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
.c-text h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 5px;
}
.c-text p {
  font-size: 0.93rem;
  color: var(--charcoal-mid);
  line-height: 1.6;
  margin: 0;
}
.c-phone {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  transition: color var(--ease);
}
.c-phone:hover { color: var(--gold); }
.hours-note {
  font-size: 0.8rem !important;
  color: var(--gold-dark) !important;
  font-style: italic;
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-map iframe { display: block; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-tel {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 600;
}
.footer-tel:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.68);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--ease);
}
.footer-social-link:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(200,168,130,0.08);
}
.footer-social-link svg { flex-shrink: 0; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer-col .f-hours-note {
  font-size: 0.78rem;
  color: rgba(200,168,130,0.65);
  font-style: italic;
}
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom a {
  color: rgba(200,168,130,0.65);
  font-weight: 700;
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- FADE-IN ANIMATIONS ---------- */
.fi {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fi.in {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger for grid children */
.services-grid  .fi:nth-child(1),
.testi-grid     .fi:nth-child(1),
.gallery-grid   .fi:nth-child(1) { transition-delay: 0.05s; }
.services-grid  .fi:nth-child(2),
.testi-grid     .fi:nth-child(2),
.gallery-grid   .fi:nth-child(2) { transition-delay: 0.15s; }
.services-grid  .fi:nth-child(3),
.testi-grid     .fi:nth-child(3),
.gallery-grid   .fi:nth-child(3) { transition-delay: 0.25s; }
.services-grid  .fi:nth-child(4),
.gallery-grid   .fi:nth-child(4) { transition-delay: 0.35s; }
.gallery-grid   .fi:nth-child(5) { transition-delay: 0.45s; }
.gallery-grid   .fi:nth-child(6) { transition-delay: 0.55s; }

/* ---------- RESPONSIVE — 1024px ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { gap: 56px; }
}

/* ---------- RESPONSIVE — 768px ---------- */
@media (max-width: 768px) {
  /* Hamburger */
  .hamburger   { display: flex; }
  .nav-book    { display: none; }
  .nav-social  { display: none; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    inset-inline: 0;
    background: rgba(27, 21, 18, 0.98);
    flex-direction: column;
    align-items: center;
    padding: 20px 0 28px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--ease);
    backdrop-filter: blur(12px);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.95rem;
    border-radius: 0;
  }
  .nav-cta-mobile {
    display: list-item;
    margin-top: 12px;
  }
  .nav-social-mobile { display: list-item; margin-top: 4px; }
  .nav-social-mobile-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding: 10px 0 6px;
  }
  .nav-social-mobile-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color var(--ease);
  }
  .nav-social-mobile-links a:hover { color: var(--gold-light); }

  /* Sections */
  .welcome, .services, .gallery,
  .testimonials, .about, .contact { padding: 72px 0; }

  /* Welcome */
  .welcome-grid { grid-template-columns: 1fr; gap: 48px; }
  .welcome-img::before { display: none; }
  .welcome-img img { height: 360px; }

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

  /* Gallery — 2 col, no spanning */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  /* Make placeholder badge always visible on mobile */
  .g-overlay { opacity: 1; background: rgba(18,12,8,0.45); }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img img { height: 380px; }
  .about-stats { gap: 24px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sec-header { margin-bottom: 40px; }
}

/* ---------- RESPONSIVE — 480px ---------- */
@media (max-width: 480px) {
  :root { --pad: 18px; }

  h1 { font-size: 2.1rem; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; text-align: center; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .about-stats  { flex-wrap: wrap; gap: 16px; }
  .about-stats .stat { min-width: 40%; }
}
