/* Anand Band — Home page */

/* No mobile drawer on index */
.home-no-drawer .brand-nav,
.home-no-drawer .nav-backdrop,
.home-no-drawer .home-hamburger { display: none !important; }

body.inner-page .home-header-row2,
body.inner-page .home-header-row3 {
  display: none;
}
body.inner-page .home-header-row1 {
  border-bottom: none;
  padding-bottom: 10px;
}
body.inner-page .home-nav-bar {
  border-top: 1px solid var(--border);
}

/* Keep header on all inner pages */
body.home-no-drawer .home-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0;
  border-image: none;
}
body.home-no-drawer.inner-page .home-nav-bar {
  display: flex !important;
}

/* ========== Header ========== */
.home-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0;
  text-align: center;
  position: relative;
}
.home-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 10%, rgba(201, 169, 97, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.03) 0%, transparent 40%);
  pointer-events: none;
}
.home-header .container { position: relative; z-index: 1; }

.home-header-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

/* Row 1 */
.home-header-row1 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 0 12px;
  border-bottom: 1px solid var(--border);
}
.home-logo-sm {
  justify-self: start;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(145deg, var(--gold-dark), var(--brand-bg-soft), var(--gold-dark));
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.home-logo-sm:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.home-logo-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  background: #111;
  border: 2px solid var(--gold-dark);
}
.home-om-wrap {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.home-om {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
}
.home-since {
  justify-self: end;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--ink-soft);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 24px;
}

/* Row 2 */
.home-header-row2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 0 16px;
}
.home-title-block {
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 16px 48px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.home-title-block::before,
.home-title-block::after {
  content: "◆";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.5rem;
  color: var(--gold-dark);
  pointer-events: none;
  line-height: 1;
  background: none;
  opacity: 0.7;
}
.home-title-block::before { left: 16px; }
.home-title-block::after { right: 16px; }
.home-brand-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}
.home-brand-link:hover .home-title {
  filter: none;
}
.home-title {
  font-family: var(--display);
  font-size: clamp(2rem, 7.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: clamp(5px, 2vw, 13px);
  line-height: 1.05;
  margin: 0;
  background: linear-gradient(
    135deg,
    #e5e0d5 0%,
    #c9a961 40%,
    #d4bc7a 55%,
    #a68b4b 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-title-line {
  display: block;
  width: min(260px, 75%);
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), transparent);
  border-radius: 2px;
}

/* Row 3 */
.home-header-row3 {
  padding: 6px 0 22px;
}
.home-logo-lg {
  display: inline-grid;
  place-items: center;
  width: clamp(140px, 30vw, 210px);
  height: clamp(140px, 30vw, 210px);
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(145deg, var(--gold-dark), var(--brand-bg-soft), var(--gold-dark));
  box-shadow: var(--shadow),
    0 0 0 6px var(--bg),
    0 0 0 7px var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.home-logo-lg:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-hover),
    0 0 0 6px var(--bg),
    0 0 0 7px var(--gold-dark);
}
.home-logo-lg img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
  border: 4px solid #1a1a1a;
  display: block;
}

/* Nav bar — always visible, no sidebar */
.home-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 12px 16px;
  margin: 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
}
.home-nav-bar a {
  padding: 9px 16px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.home-nav-bar a:hover {
  color: var(--gold-light);
  background: rgba(201, 169, 97, 0.08);
}
.home-nav-bar a.active {
  color: var(--gold-light);
  font-weight: 600;
  background: rgba(201, 169, 97, 0.1);
  box-shadow: inset 0 -2px 0 var(--gold-dark);
}
.home-nav-cta {
  margin-left: 4px;
  background: var(--brand-bg-soft) !important;
  color: var(--gold-light) !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border: 1px solid var(--border-strong) !important;
  box-shadow: none;
}
.home-nav-cta:hover {
  background: var(--bg-elevated) !important;
  color: var(--gold-bright) !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px);
}

/* Intro */
.home-intro {
  background: var(--bg-alt);
  padding: 48px 0 52px;
  text-align: center;
  color: #fff;
}
.home-intro-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
}
.home-intro-title {
  font-family: var(--head);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #fff;
}
.home-intro-title span { color: var(--gold-light); }
.home-intro-desc {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.home-section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}
.home-section-head p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 10px;
}
.home-section-title {
  font-family: var(--head);
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  color: var(--maroon);
  font-weight: 600;
  margin-top: 8px;
}
.home-section-title--left {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 16px;
}
.home-services {
  padding-top: 20px;
  padding-bottom: 64px;
}
.page-banner + .home-services { padding-top: 40px; }

/* Section tabs — between heading and description */
.services-section-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px auto 14px;
  padding: 10px 12px;
  max-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.services-section-tabs a {
  padding: 9px 18px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.88rem;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.services-section-tabs a:hover {
  color: var(--gold-light);
  background: rgba(201, 169, 97, 0.08);
}
.services-section-tabs a.active {
  color: var(--gold-light);
  font-weight: 600;
  background: rgba(201, 169, 97, 0.1);
  box-shadow: inset 0 -2px 0 var(--gold-dark);
}
@media (max-width: 599px) {
  .services-section-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 4px;
    padding: 8px 10px;
  }
  .services-section-tabs::-webkit-scrollbar { display: none; }
  .services-section-tabs a {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 600px) {
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
}

.category-box {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.category-box:hover { box-shadow: var(--shadow-hover); }
.category-box-img {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
}
.category-box-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(44, 36, 32, 0.78) 0%, rgba(44, 36, 32, 0.08) 55%, transparent 100%);
  transition: background 0.3s;
}
.category-box:hover .category-box-img::after {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.15) 60%, transparent 100%);
}
.category-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-box:hover .category-box-img img { transform: scale(1.07); }
.category-box-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  z-index: 1;
  font-family: var(--head);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.category-box h3 { display: none; }

.home-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.home-about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.home-about-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.home-about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--bg-card);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
}
.home-about-badge strong {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--maroon);
  line-height: 1;
  background: linear-gradient(135deg, var(--maroon), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-about-badge span {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.home-about-copy p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.home-about-copy p strong {
  color: var(--ink);
}
.home-about-list {
  margin: 20px 0 28px;
  display: grid;
  gap: 10px;
}
.home-about-list li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.home-about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.home-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.home-testimonials .testi-card {
  border-left: 3px solid var(--gold);
}
.home-testimonials .testi-card p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.home-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.home-cta h2 {
  font-family: var(--head);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--maroon);
  margin-bottom: 6px;
}
.home-cta p { color: var(--muted); font-size: 0.92rem; }
.home-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.home-cta-phone {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 1px;
}

.footer-brand-name {
  color: var(--maroon);
  font-family: var(--display);
  display: block;
  font-size: 1rem;
}
.footer-brand-sub {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
@media (max-width: 720px) {
  .home-header-row1 {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 12px 0 10px;
  }
  .home-logo-sm {
    width: 54px;
    height: 54px;
  }
  .home-om-wrap {
    width: 48px;
    height: 48px;
    justify-self: center;
  }
  .home-om { font-size: 1.45rem; }
  .home-since {
    font-size: 0.68rem;
    padding: 5px 10px;
    letter-spacing: 0.5px;
  }
  .home-header-row2 {
    gap: 8px;
    padding: 16px 8px 12px;
  }
  .home-title-block {
    padding: 12px 36px 10px;
  }
  .home-title-block::before { left: 10px; }
  .home-title-block::after { right: 10px; }
  .home-logo-lg {
    width: clamp(120px, 34vw, 170px);
    height: clamp(120px, 34vw, 170px);
  }
  .home-nav-bar {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 4px;
    padding: 12px 8px 14px;
  }
  .home-nav-bar::-webkit-scrollbar { display: none; }
  .home-nav-bar a {
    padding: 8px 12px;
    font-size: 0.82rem;
  }
  .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; }
}

/* ========== Products page (images only) ========== */
.products-section {
  padding-top: 48px;
  padding-bottom: 64px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 540px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}
@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}
.product-img-card {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  background: var(--bg-alt);
}
.product-img-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
