/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,238,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217,207,186,0.6);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -18px rgba(24,20,15,0.4); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.logo span { color: var(--gold); }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--stone);
  transition: transform 0.2s ease, background 0.2s ease;
}
.icon-btn:hover { transform: translateY(-2px); background: var(--sand-soft); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn span.long { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ivory);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 16px 0;
  font-family: var(--font-display); font-size: 1.3rem;
  border-bottom: 1px solid var(--stone);
}
.mobile-nav-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(24,20,15,0.15), rgba(24,20,15,0.72)), var(--ink);
}
.hero video, .hero .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(24,20,15,0.05) 0%, rgba(24,20,15,0.55) 65%, rgba(24,20,15,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 0 56px;
  color: var(--ivory);
  width: 100%;
}
.hero-content h1 { color: var(--ivory); max-width: 780px; }
.hero-content .eyebrow { color: var(--gold-soft); }
.hero-content p.lead { color: rgba(250,246,238,0.85); max-width: 560px; font-size: 1.08rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 40px; }
.hero .stat-row .stat-pill { background: rgba(24,20,15,0.35); border-color: rgba(255,255,255,0.15); }
.hero .stat-row .num { color: var(--ivory); }
.hero .stat-row .label { color: rgba(250,246,238,0.65); }

/* ============ Campaign strip ============ */
.campaign-strip {
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-soft) 100%);
  padding: 64px 0;
}
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.campaign-card {
  background: rgba(250,246,238,0.06);
  border: 1px solid rgba(203,171,116,0.35);
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--ivory);
}
.campaign-card .badge {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-soft); border: 1px solid var(--gold-soft);
  border-radius: 100px; padding: 4px 12px; margin-bottom: 14px;
}
.campaign-card h3 { color: var(--ivory); }
.campaign-card .price-row { display: flex; align-items: baseline; gap: 10px; margin: 14px 0 20px; }
.campaign-card .price { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-soft); }
.campaign-card .old-price { text-decoration: line-through; opacity: 0.5; font-size: 0.95rem; }

/* ============ Service cards ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.service-card {
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .body { padding: 22px 24px 26px; }
.service-card .icon-badge {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--sand-soft); display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--gold);
}
.service-card .read-more { font-weight: 700; color: var(--gold); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }

/* ============ Why us ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.why-card { padding: 30px 24px; text-align: center; }
.why-card .icon-badge {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--sand-soft), var(--sand));
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}

/* ============ Before/After ============ */
.ba-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.ba-filter button {
  padding: 9px 18px; border-radius: 100px; border: 1px solid var(--stone);
  background: transparent; cursor: pointer; font-weight: 600; font-size: 0.85rem;
}
.ba-filter button.active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.ba-slider .ba-after, .ba-slider .ba-before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba-slider .ba-before-wrap img { width: 200%; max-width: none; height: 100%; object-fit: cover; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--ivory); cursor: ew-resize;
  transform: translateX(-50%);
}
.ba-handle::after {
  content: '⟷'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%; background: var(--ivory);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card); font-size: 1rem;
}
.ba-label { position: absolute; bottom: 12px; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(24,20,15,0.6); color: var(--ivory); padding: 4px 10px; border-radius: 100px; }
.ba-label.left { left: 12px; } .ba-label.right { right: 12px; }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }

/* ============ Testimonials ============ */
.testimonial-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testimonial-card { padding: 26px; }
.testimonial-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-card .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-card .who img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testimonial-card .who .name { font-weight: 700; font-size: 0.9rem; }
.testimonial-card .who .g { font-size: 0.75rem; color: var(--ink-soft); opacity: 0.7; }

/* ============ Gallery ============ */
.gallery-grid { columns: 3 260px; column-gap: 18px; }
.gallery-grid figure { break-inside: avoid; margin: 0 0 18px; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: zoom-in; }
.gallery-grid img { width: 100%; transition: transform 0.5s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.lightbox { position: fixed; inset: 0; background: rgba(24,20,15,0.92); z-index: 300; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; top: 24px; right: 30px; color: var(--ivory); font-size: 2rem; background: none; border: none; cursor: pointer; }

/* ============ Blog ============ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 22px 24px; }
.blog-card .meta { font-size: 0.78rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }

/* ============ FAQ ============ */
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 1.1rem; gap: 20px;
}
.faq-q .plus { transition: transform 0.3s ease; color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding-bottom: 22px; color: var(--ink-soft); }

/* ============ Appointment form ============ */
.appt-section { background: var(--sand-soft); border-radius: var(--radius-lg); padding: 56px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--stone); background: var(--white); font-family: var(--font-body); font-size: 0.95rem;
}
.field textarea { resize: vertical; min-height: 100px; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } .appt-section { padding: 32px 22px; } }
.form-msg { margin-top: 14px; font-weight: 600; }
.form-msg.ok { color: #2f7d4f; } .form-msg.err { color: #b3403f; }

/* ============ Contact ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info-item .icon-badge { width: 42px; height: 42px; border-radius: 50%; background: var(--sand-soft); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.map-frame { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============ Footer ============ */
.site-footer { background: var(--ink); color: rgba(250,246,238,0.75); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-grid h4 { color: var(--ivory); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-grid .logo { color: var(--ivory); }
.footer-links a { display: block; padding: 6px 0; font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { opacity: 0.75; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============ Floating action buttons ============ */
.float-actions { position: fixed; right: 22px; bottom: 22px; z-index: 150; display: flex; flex-direction: column; gap: 12px; }
.float-actions a {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft); color: var(--white);
}
.float-actions .wa { background: #25D366; }
.float-actions .tel { background: var(--ink); }

/* ============ Breadcrumb ============ */
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); opacity: 0.8; padding: 18px 0; }
.breadcrumb a:hover { color: var(--gold); }

/* Page hero (inner pages) */
.page-hero { padding: 64px 0 40px; background: var(--sand-soft); text-align: center; }
