/* ═══════════════════════════════════════════════════
   KUSHAL INTERIORS — Shared Stylesheet
   Covers: header, nav, strip, section helpers,
   buttons, page-hero, footer, float, animations
   ═══════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --cream: #F7F3EE;
  --warm-white: #FDFAF6;
  --charcoal: #1A1A18;
  --gold: #B8935A;
  --gold-light: #D4A96A;
  --mid: #5C5549;
  --border: #E0D9CF;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(247,243,238,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-wrap img { height: 52px; width: auto; }
.logo-text .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  letter-spacing: 0.5px; line-height: 1.1;
  color: var(--charcoal);
}
.logo-text .est {
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
}

/* ─── DESKTOP NAV ─── */
nav { display: flex; align-items: center; gap: 36px; }
nav a {
  font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  color: var(--mid); font-weight: 500;
  position: relative; transition: color 0.2s;
}
nav a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
nav a:hover { color: var(--charcoal); }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--charcoal); }
nav a.active::after { width: 100%; }
.nav-cta {
  padding: 9px 22px; background: var(--charcoal);
  color: #fff !important; border-radius: 2px;
  font-size: 12px; letter-spacing: 1.5px;
  transition: background 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--charcoal) !important; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  z-index: 1000;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE NAV PANEL ─── */
.mobile-nav {
  position: fixed;
  top: 89px; left: 0; right: 0; bottom: 0;
  background: var(--warm-white);
  z-index: 997;
  display: flex; flex-direction: column;
  padding: 32px 28px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 18px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500;
  color: var(--charcoal); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover { color: var(--gold); padding-left: 8px; }
.mobile-nav .mob-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--charcoal); color: #fff;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500;
  transition: background 0.25s;
  text-decoration: none;
}
.mobile-nav .mob-cta:hover { background: var(--gold); color: var(--charcoal); padding-left: 28px; }

/* ─── MARQUEE STRIP ─── */
.strip {
  padding: 14px 0;
  overflow: hidden; white-space: nowrap;
}
.strip-inner {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.strip-item {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; padding: 0 36px;
  font-weight: 500;
}
.strip.dark { background: var(--charcoal); }
.strip.dark .strip-item { color: rgba(255,255,255,0.85); }
.strip.dark .strip-dot { color: var(--gold); }
.strip.gold { background: var(--gold); }
.strip.gold .strip-item { color: var(--charcoal); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding-top: 88px;
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 100px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
}
.page-hero-inner.align-end { align-items: end; padding-bottom: 0; }
.page-hero-content { animation: fadeUp 0.9s ease both; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 500; line-height: 1.07;
  letter-spacing: -0.5px; margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-desc {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.55);
  font-weight: 300; max-width: 420px;
}
.page-hero-image {
  align-self: stretch; min-height: 400px;
  position: relative; animation: fadeIn 1.1s ease 0.2s both;
}
.page-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block; opacity: 0.5;
}
.page-hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--charcoal) 0%, transparent 40%);
}

/* ─── HERO CONTACT CARDS (contact + faq) ─── */
.hero-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; animation: fadeIn 1s ease 0.2s both;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 28px; text-decoration: none;
  transition: background 0.3s; display: block;
}
.hero-card:hover { background: rgba(184,147,90,0.12); }
.hero-card-icon { font-size: 26px; margin-bottom: 14px; }
.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600;
  color: #fff; margin-bottom: 8px;
}
.hero-card-body { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); font-weight: 300; }
.hero-card-link {
  display: inline-block; margin-top: 14px;
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-light); text-decoration: none;
}

/* ─── SECTION HELPERS ─── */
.section-eyebrow {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-eyebrow.center { justify-content: center; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500; line-height: 1.15; margin-bottom: 16px;
}
.section-body {
  font-size: 15px; line-height: 1.9;
  color: var(--mid); font-weight: 300; margin-bottom: 12px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--charcoal);
  color: #fff; text-decoration: none;
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: 2px;
  transition: background 0.25s; font-weight: 500;
}
.btn-primary:hover { background: var(--gold); color: var(--charcoal); }
.btn-primary.gold-bg { background: var(--gold); color: var(--charcoal); }
.btn-primary.gold-bg:hover { background: var(--gold-light); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 32px; border: 1px solid var(--charcoal);
  color: var(--charcoal); text-decoration: none;
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: 2px;
  transition: all 0.25s; font-weight: 500;
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-outline.light {
  border-color: rgba(255,255,255,0.3); color: #fff;
}
.btn-outline.light:hover { background: #fff; color: var(--charcoal); border-color: #fff; }

/* ─── CTA BAND (dark version shared by faq + products + about) ─── */
.cta-band {
  padding: 100px 60px; text-align: center;
}
.cta-band.dark {
  background: var(--charcoal); color: #fff;
}
.cta-band.dark .section-title { color: #fff; margin-bottom: 20px; }
.cta-band.dark .section-eyebrow { justify-content: center; color: var(--gold); }
.cta-band.dark .section-eyebrow::before { background: var(--gold); }
.cta-band-body {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.5); font-weight: 300;
  max-width: 520px; margin: 0 auto 40px;
}
.cta-band .btn-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* ─── SOCIAL LINKS ─── */
.social-links { display: flex; justify-content: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px; border: 1px solid var(--border);
  text-decoration: none; color: var(--charcoal);
  font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 2px;
  transition: all 0.25s;
}
.social-btn:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

/* ─── FOOTER ─── */
footer {
  background: #111110;
  color: rgba(255,255,255,0.85);
  padding: 72px 60px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}
.footer-brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 500; color: #fff; margin-bottom: 4px;
}
.footer-brand .est {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; display: block;
}
.footer-brand p {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,0.45); font-weight: 300; max-width: 260px;
}
.footer-col h5 {
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.5); text-decoration: none;
  margin-bottom: 10px; transition: color 0.2s; font-weight: 300;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.3);
}

/* ─── FLOAT BUTTONS ─── */
.float-group {
  position: fixed; bottom: 28px; right: 28px;
  display: flex; flex-direction: column; gap: 10px; z-index: 998;
}
.float-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 100px; text-decoration: none;
  font-size: 13px; font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.24); }
.float-wa { background: #25D366; color: #fff; }
.float-call { background: var(--charcoal); color: #fff; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes zoomOut {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ─── RESPONSIVE — SHARED ─── */
@media (max-width: 960px) {
  header { padding: 16px 24px; }
  nav { display: none; }
  .hamburger { display: flex; }

  .page-hero-inner { grid-template-columns: 1fr; padding: 60px 24px 60px; gap: 40px; }
  .page-hero-image { min-height: 260px; }
  .hero-cards { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  footer { padding: 60px 24px 28px; }

  .cta-band { padding: 80px 24px; }
}
@media (max-width: 600px) {
  .hero-cards { grid-template-columns: 1fr; }
}
