/* ===================================================================
   Anand Band — Black & Gold Theme (logo palette)
=================================================================== */

:root {
  --bg: #faf6e8;
  --bg-alt: #f0e6cc;
  --bg-card: #fffef8;
  --bg-dark: #0a0a0a;
  --ink: #0a0a0a;
  --ink-soft: #1f1a14;
  --muted: #6b5d48;
  --maroon: #0a0a0a;
  --maroon-light: #2a2a2a;
  --maroon-dark: #000000;
  --gold: #d4af37;
  --gold-light: #ffd700;
  --gold-bright: #fee140;
  --gold-dark: #b8860b;
  --tan: #d2b48c;
  --border: rgba(10, 10, 10, 0.1);
  --border-strong: rgba(212, 175, 55, 0.4);
  --shadow: 0 8px 30px rgba(10, 10, 10, 0.08);
  --shadow-hover: 0 16px 40px rgba(10, 10, 10, 0.14);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
  --radius: 10px;
  --radius-lg: 14px;
  --maxw: 1140px;
  --head: "Playfair Display", Georgia, serif;
  --display: "Cinzel", Georgia, serif;
  --body: "Poppins", "Segoe UI", sans-serif;
  --black: var(--ink);
  --black-soft: var(--bg-alt);
  --black-card: var(--bg-card);
  --cream: var(--bg);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--head); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px; border-radius: 8px; font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.6px; text-transform: uppercase; cursor: pointer; border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: var(--gold-light);
  border: 1px solid var(--gold-dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #000, var(--maroon-dark));
  color: var(--gold-bright);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
}
.btn-outline {
  background: transparent; color: var(--maroon);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.btn-dark { background: var(--bg-card); color: var(--maroon); border: 1px solid var(--border); box-shadow: var(--shadow); }
.btn-dark:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }

/* Section helpers */
.section { padding: 72px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.eyebrow {
  display: inline-block; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; font-size: 0.75rem; color: var(--maroon); margin-bottom: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: "◆"; font-size: 0.45rem; vertical-align: middle; margin: 0 10px; color: var(--gold);
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--maroon); }
.section-head p { color: var(--muted); margin-top: 12px; }
.gold-line {
  width: 80px; height: 3px; margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold-light), var(--gold-dark), transparent);
}

/* ========== BRAND HEADER ========== */
.brand-header {
  background: rgba(255, 254, 248, 0.98);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 4px 24px rgba(58, 46, 40, 0.06);
}
.brand-header::after {
  content: "";
  position: absolute; bottom: -1px; left: 0;
  width: 40%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--maroon-light), var(--gold), transparent);
  animation: headerLineSweep 4s ease-in-out infinite;
}
@keyframes headerLineSweep {
  0% { left: -40%; opacity: 0.4; }
  50% { opacity: 1; }
  100% { left: 100%; opacity: 0.4; }
}

.brand-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.brand-identity {
  display: flex; align-items: center; gap: 18px; flex: 1; min-width: 0;
  transition: transform 0.35s ease;
}
.brand-identity:hover { transform: translateY(-1px); }

.brand-logo {
  width: 104px;
  height: 104px;
  min-width: 104px;
  padding: 2px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: contrast(1.15) saturate(1.1) drop-shadow(0 2px 8px rgba(58, 46, 40, 0.12));
  animation: logoGlow 3s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% { filter: contrast(1.15) saturate(1.1) drop-shadow(0 2px 8px rgba(58, 46, 40, 0.12)); }
  50% { filter: contrast(1.15) saturate(1.1) drop-shadow(0 4px 14px rgba(166, 61, 82, 0.2)); }
}

.brand-text { position: relative; }

.brand-title {
  font-family: var(--head);
  font-size: clamp(1.85rem, 5vw, 3.35rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    110deg,
    var(--maroon) 0%,
    var(--maroon-light) 25%,
    var(--gold-light) 50%,
    var(--maroon-light) 75%,
    var(--maroon) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: titleShimmer 3.5s linear infinite, titlePulse 2.8s ease-in-out infinite;
}
@keyframes titleShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 220% center; }
}
@keyframes titlePulse {
  0%, 100% { filter: drop-shadow(0 2px 6px rgba(166, 61, 82, 0.2)); }
  50% { filter: drop-shadow(0 4px 12px rgba(212, 160, 60, 0.35)); }
}

.brand-title::after {
  content: "";
  position: absolute; left: 0; bottom: -8px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), transparent);
  transform: scaleX(0.35);
  transform-origin: left;
  animation: titleUnderline 2.5s ease-in-out infinite alternate;
}
@keyframes titleUnderline {
  0% { transform: scaleX(0.35); opacity: 0.5; }
  100% { transform: scaleX(1); opacity: 1; }
}

.brand-sub {
  font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--muted); margin-top: 12px;
  animation: subFade 3s ease-in-out infinite;
}
@keyframes subFade {
  0%, 100% { color: var(--muted); letter-spacing: 5px; }
  50% { color: var(--maroon); letter-spacing: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-header::after,
  .brand-logo,
  .brand-title,
  .brand-title::after,
  .brand-sub { animation: none; }
  .brand-title { filter: drop-shadow(0 2px 6px rgba(166, 61, 82, 0.2)); }
}

.brand-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.brand-nav a {
  padding: 8px 14px; font-size: 0.88rem; font-weight: 500;
  color: var(--ink-soft); border-radius: 4px; transition: color 0.2s, background 0.2s;
  position: relative;
}
.brand-nav a:hover, .brand-nav a.active { color: var(--maroon); }
.brand-nav a.active::after {
  content: ""; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--maroon);
}
.brand-nav .nav-cta {
  padding: 10px 22px; margin-left: 6px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: #fff !important; font-weight: 700; border-radius: 6px;
  white-space: nowrap;
}
.brand-nav .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(166, 61, 82, 0.3); }
.brand-nav .nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px; position: relative; z-index: 1200;
}
.hamburger span { width: 26px; height: 2px; background: var(--maroon); transition: 0.3s; }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(58, 46, 40, 0.55);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1095;
}
.nav-backdrop.show { opacity: 1; visibility: visible; }

.nav-close {
  display: none;
}

/* ========== BANNER SLIDER ========== */
.banner-section { padding: 0; }
.banner-slider { position: relative; overflow: hidden; background: var(--bg-alt); }
.banner-track { display: flex; transition: transform 0.6s ease; }
.banner-slide {
  min-width: 100%; position: relative; height: clamp(280px, 50vw, 520px);
}
.banner-slide img { width: 100%; height: 100%; object-fit: cover; }
.banner-slide .banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgb(8 8 8 / 30%) 0%, rgb(8 8 8 / 28%) 42%, rgb(8 8 8 / 9%) 72%, rgba(8, 8, 8, 0.2) 100%);
  display: flex; align-items: center;
}
.banner-overlay .container { width: 92%; max-width: var(--maxw); margin: 0 auto; }
.banner-content {
  max-width: 580px;
  margin: 0;
  padding: 48px 0;
  text-align: left;
}
.banner-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.banner-eyebrow::before {
  content: "◆"; font-size: 0.45rem; margin-right: 10px; color: var(--gold-dark);
}
.banner-content h2 {
  font-family: var(--head);
  font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.banner-content h2 span {
  color: var(--gold-light);
  background: linear-gradient(120deg, var(--gold-light), #f6e2a9 55%, var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.banner-content p {
  color: #c8bdb0;
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
}
.banner-content .btn { padding: 13px 28px; font-size: 0.85rem; }

.banner-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.banner-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.35); cursor: pointer; transition: 0.3s;
}
.banner-dots button.active { background: var(--gold); transform: scale(1.2); }
.banner-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: rgba(8,8,8,0.7); color: var(--gold-light); font-size: 1.2rem;
  cursor: pointer; transition: 0.25s;
}
.banner-arrow:hover { background: var(--gold); color: var(--black); }
.banner-arrow.prev { left: 16px; }
.banner-arrow.next { right: 16px; }

/* ========== SERVICE CARDS (home + services page) ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: block;
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--maroon-light);
  box-shadow: 0 18px 40px rgba(166, 61, 82, 0.12);
}
.service-card-img { height: 180px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(58, 46, 40, 0.35));
}
.service-card-body { padding: 20px 18px 22px; }
.service-card-body h3 { color: var(--maroon); font-size: 1.15rem; margin-bottom: 8px; }
.service-card-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
.service-card-body .price-tag {
  display: inline-block; margin-top: 12px; padding: 4px 12px;
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--gold-dark); font-size: 0.78rem; font-weight: 600; letter-spacing: 1px;
}
.service-card .view-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  color: var(--maroon); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}

/* ========== MEDIA GALLERY (images + videos) ========== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.media-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-card);
  aspect-ratio: 4/3; box-shadow: var(--shadow);
}
.media-card img, .media-card video { width: 100%; height: 100%; object-fit: cover; }
.media-card .media-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 16px;
  background: linear-gradient(transparent, rgba(8,8,8,0.9));
  opacity: 0; transition: opacity 0.35s;
}
.media-card:hover .media-overlay { opacity: 1; }
.media-card .media-type {
  position: absolute; top: 12px; right: 12px; padding: 4px 10px;
  background: var(--maroon); color: #fff; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px;
}
.media-card .media-overlay h4 { color: #fff; font-size: 1rem; }
.media-card .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(10, 10, 10, 0.88); color: #fff;
  display: grid; place-items: center; font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* ========== ABOUT / SPLIT ========== */
.tint { background: var(--black-soft); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); border: 1px solid var(--border); }
.split-media .badge {
  position: absolute; bottom: -20px; right: 20px;
  background: var(--bg-card); border: 2px solid var(--maroon-light);
  padding: 16px 22px; border-radius: var(--radius); text-align: center;
  box-shadow: var(--shadow);
}
.split-media .badge strong { font-family: var(--head); font-size: 2rem; color: var(--maroon); display: block; }
.split-media .badge span { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.split-content h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--maroon); margin-bottom: 16px; }
.split-content p { color: var(--muted); margin-bottom: 14px; }
.feature-list { display: grid; gap: 12px; margin: 22px 0 28px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; }
.feature-list .tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light)); color: #fff; display: grid; place-items: center;
  font-size: 0.7rem; font-weight: 700;
}

/* ========== STATS BAND ========== */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
  padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-band .num { font-family: var(--head); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--maroon); }
.stats-band .lbl { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ========== TRUST BADGES ========== */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.trust-item {
  text-align: center; padding: 28px 18px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.trust-item .icon { font-size: 2rem; margin-bottom: 12px; }
.trust-item h4 { color: var(--maroon); font-size: 0.95rem; margin-bottom: 6px; }
.trust-item p { color: var(--muted); font-size: 0.82rem; }

/* ========== TESTIMONIALS ========== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
}
.testi-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testi-card p { color: var(--muted); font-style: italic; font-size: 0.92rem; margin-bottom: 18px; }
.testi-author strong { color: var(--maroon); display: block; }
.testi-author span { font-size: 0.82rem; color: var(--muted); }

/* ========== CTA ========== */
.cta-band {
  text-align: center; padding: 70px 0;
  background: linear-gradient(135deg, #f5f0dc, #faf6e8, #fffef8);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--maroon); margin-bottom: 12px; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 28px; }
.cta-phone {
  font-family: var(--head); font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--maroon); margin: 20px 0; letter-spacing: 2px;
}
.cta-phone a { color: var(--maroon); }

/* ========== PAGE BANNER (inner pages) ========== */
.page-banner {
  padding: 48px 0 40px; text-align: center;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-bottom: 2px solid var(--gold-dark);
}
.page-banner h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--maroon); margin-bottom: 10px; }
.breadcrumb { color: var(--muted); font-size: 0.88rem; }
.breadcrumb a:hover { color: var(--maroon); }

/* ========== SERVICE DETAIL PAGE ========== */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.detail-slider {
  position: relative; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--bg-alt);
}
.detail-slider-track { display: flex; transition: transform 0.55s ease; }
.detail-slide { min-width: 100%; }
.detail-slide img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.detail-slider-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.detail-slider-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.45); cursor: pointer; transition: 0.25s;
}
.detail-slider-dots button.active { background: var(--gold); transform: scale(1.15); }
.detail-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: rgba(8,8,8,0.65); color: var(--gold-light); font-size: 1.25rem; line-height: 1;
  cursor: pointer; transition: 0.25s;
}
.detail-slider-arrow:hover { background: var(--gold); color: var(--black); }
.detail-slider-arrow.prev { left: 12px; }
.detail-slider-arrow.next { right: 12px; }
.detail-image { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.detail-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.detail-content h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--maroon); margin-bottom: 8px; }
.detail-content .detail-tagline { color: var(--gold-dark); font-size: 1rem; margin-bottom: 20px; }
.detail-content .detail-price {
  display: inline-block; padding: 8px 18px; margin-bottom: 22px;
  background: var(--bg-alt); border: 1px solid var(--maroon-light);
  color: var(--maroon); font-weight: 700; font-size: 1.1rem;
}
.detail-content p { color: var(--muted); margin-bottom: 24px; line-height: 1.75; }
.detail-features h3, .detail-includes h3 {
  color: var(--maroon); font-size: 1.1rem; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.detail-features ul, .detail-includes ul { margin-bottom: 28px; }
.detail-features li, .detail-includes li {
  padding: 8px 0; color: var(--muted); display: flex; gap: 10px; align-items: center;
}
.detail-features li::before, .detail-includes li::before {
  content: "♪"; color: var(--gold); font-size: 0.8rem;
}
.detail-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }

.subcategory-grid { margin-top: 20px; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.info-card {
  display: flex; gap: 14px; padding: 20px; margin-bottom: 14px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card .ic { font-size: 1.4rem; flex-shrink: 0; }
.info-card h4 { color: var(--maroon); margin-bottom: 4px; }
.info-card p { color: var(--muted); font-size: 0.9rem; }
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; margin-bottom: 6px; color: var(--ink); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--bg-alt);
  color: var(--ink); font-family: var(--body); font-size: 0.92rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--maroon-light);
  box-shadow: 0 0 0 3px rgba(166, 61, 82, 0.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-alert { padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; display: none; font-size: 0.9rem; }
.form-alert.success { display: block; background: #e8f5ec; border: 1px solid #4a9d62; color: #2d6a3e; }
.form-alert.error { display: block; background: #fce8e8; border: 1px solid var(--maroon-light); color: #8b2e3f; }
.map-wrap { margin-top: 50px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; }

/* ========== GALLERY PAGE ========== */
.gallery-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 20px; border-radius: 4px; border: 1px solid var(--border);
  background: transparent; color: var(--muted); cursor: pointer; font-family: var(--body);
  font-size: 0.88rem; transition: 0.25s;
}
.filter-btn.active, .filter-btn:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 240px; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px;
  background: linear-gradient(transparent, rgba(58, 46, 40, 0.85));
  color: #fff; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.5px; transform: translateY(100%); transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(180deg, var(--bg-alt), #e8dcc4);
  border-top: 2px solid var(--gold-dark); padding: 56px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 40px; }
.footer h4 { color: var(--maroon); font-size: 1rem; margin-bottom: 16px; }
.footer p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img {
  width: 72px; height: 72px; min-width: 72px;
  padding: 0; object-fit: contain;
  background: transparent; border: none;
  filter: contrast(1.12) drop-shadow(0 1px 4px rgba(58, 46, 40, 0.1));
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--muted); font-size: 0.88rem; transition: color 0.2s, padding 0.2s; }
.footer-links a:hover { color: var(--maroon); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; color: var(--muted); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--maroon); background: var(--bg-card);
  transition: 0.25s;
}
.social a:hover { background: var(--maroon); color: var(--gold-light); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 18px 0; text-align: center;
  font-size: 0.82rem; color: var(--muted);
}

/* ========== WHATSAPP ========== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4); transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { display: block; }

/* ========== REVEAL ========== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: none; }

/* ========== HOME PAGE (wireframe layout) — legacy; header lives in home.css ========== */
.home-hero-brand {
  text-align: center;
  padding: 12px 16px 22px;
}
.home-hero-logo {
  width: clamp(100px, 22vw, 150px);
  height: auto;
  max-height: 150px;
  margin: 0 auto 12px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(58, 46, 40, 0.12));
}
.home-hero-title {
  font-family: var(--head);
  font-size: clamp(1.85rem, 6.5vw, 3rem);
  letter-spacing: clamp(3px, 1.5vw, 8px);
  background: linear-gradient(135deg, var(--maroon), var(--gold-dark), var(--maroon));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  line-height: 1.1;
}
.home-hero-tagline {
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}
.home-nav-divider {
  color: rgba(166, 61, 82, 0.25);
  user-select: none;
  font-weight: 300;
  font-size: 0.85rem;
}
.home-page .home-hamburger { display: none; }
.home-page .brand-nav { display: none; }

.home-section-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--maroon);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.home-services { padding-top: 40px; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) {
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
  }
}
@media (min-width: 1024px) {
  .category-grid { gap: 22px; }
}

.category-box {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow);
}
.category-box:hover {
  transform: translateY(-4px);
  border-color: var(--maroon-light);
  box-shadow: 0 12px 28px rgba(166, 61, 82, 0.14);
}
.category-box-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.category-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-box:hover .category-box-img img { transform: scale(1.06); }
.category-box h3 {
  font-size: 0.92rem;
  color: var(--maroon);
  margin: 0;
  padding: 12px 8px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3px;
}
@media (min-width: 600px) {
  .category-box h3 { font-size: 1rem; padding: 14px 10px; }
}

.home-about-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.home-about-content p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.96rem;
  line-height: 1.8;
}
.home-about-content strong { color: var(--maroon); }

.home-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* Category detail page */
.category-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.category-detail-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, border-color 0.3s;
}
.category-detail-card:hover {
  transform: translateY(-4px);
  border-color: var(--maroon-light);
}
.category-detail-img { height: 180px; overflow: hidden; }
.category-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.category-detail-body { padding: 18px; }
.category-detail-body h3 { color: var(--maroon); font-size: 1.05rem; margin-bottom: 8px; }
.category-detail-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .split, .detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 721px) {
  .brand-nav {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    box-shadow: none;
    overflow: visible;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    background: transparent;
  }
  .nav-close { display: none !important; }
  .nav-backdrop { display: none !important; }
  .hamburger { display: none !important; }
  .brand-nav a {
    display: inline-block;
    width: auto;
    border-bottom: none;
    padding: 8px 14px;
    font-size: 0.88rem;
    border-left: none;
  }
  .brand-nav a.active {
    padding-left: 14px;
    border-left: none;
  }
  .brand-nav a.active::after { display: block; }
  .brand-nav .nav-cta {
    display: inline-flex;
    width: auto;
    margin: 0 0 0 6px;
    padding: 10px 22px;
  }
  .home-page .brand-nav { display: none !important; }
  .home-page .home-hamburger { display: none !important; }
  .home-page .home-nav-bar { display: flex; }
}

@media (max-width: 720px) {
  body:not(.home-no-drawer) .home-nav-bar { display: none; }
  .home-header-meta { display: none; }
  body:not(.home-no-drawer).home-page .home-hamburger {
    display: flex;
    position: static;
    flex-shrink: 0;
    z-index: 1002;
  }
  body:not(.home-no-drawer).home-page .brand-nav { display: flex; }
  .home-header .container { position: relative; }
  .home-about-split { grid-template-columns: 1fr; gap: 32px; }
  .home-testi-grid { grid-template-columns: 1fr; }
  .home-cta-inner { flex-direction: column; text-align: center; }
  .home-cta-actions { justify-content: center; }
  .home-intro { padding: 36px 0 40px; }
  body.nav-open { overflow: hidden; }
  .brand-header {
    position: relative;
    z-index: 1001;
  }
  .brand-top { flex-wrap: nowrap; overflow: visible; position: static; }
  .brand-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 88vw);
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: none;
    margin: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    padding: 20px 24px 32px;
    gap: 0;
    border-left: 1px solid var(--border);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.35s ease;
    box-shadow: -12px 0 40px rgba(58, 46, 40, 0.18);
    z-index: 1100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: visible;
    pointer-events: auto;
  }
  .brand-nav.open { transform: translate3d(0, 0, 0); }
  .nav-close {
    display: grid; place-items: center;
    align-self: flex-end;
    width: 44px; height: 44px; padding: 0; margin-bottom: 20px;
    border: 1px solid var(--maroon-light); border-radius: 50%;
    background: var(--bg-alt); color: var(--maroon);
    font-size: 1.75rem; line-height: 1; cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
  }
  .nav-close:hover { background: var(--maroon); color: #fff; }
  .brand-nav a {
    display: block;
    width: 100%;
    padding: 14px 4px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .brand-nav a.active::after { display: none; }
  .brand-nav a.active {
    color: var(--maroon);
    font-weight: 600;
    padding-left: 8px;
    border-left: 3px solid var(--maroon);
  }
  .brand-nav .nav-cta {
    display: block;
    width: 100%;
    margin: 20px 0 0;
    padding: 14px 22px;
    text-align: center;
  }
  .hamburger { display: flex; z-index: 1101; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .brand-logo {
    width: 84px; height: 84px; min-width: 84px;
  }
  .brand-title { font-size: clamp(1.5rem, 6vw, 2rem); letter-spacing: 2px; }
  .brand-sub { font-size: 0.62rem; letter-spacing: 3px; margin-top: 8px; }
  .section { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .banner-slide { height: clamp(440px, 68vh, 580px); }
  .banner-content { padding: 40px 0 56px; }
  .banner-content h2 { font-size: 1.65rem; }
  .banner-dots { bottom: 28px; }
  .banner-arrow { display: none; }
}
@media (max-width: 480px) {
  .banner-slide { height: clamp(480px, 72vh, 620px); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 20px; }
}
