/* =============================================
   KUSHIONKRAFT — Premium Seating Solutions
   Style Sheet v2.0 | Mobile-First Responsive
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --cream:       #f7f3ed;
  --warm-white:  #fdfcfa;
  --dark:        #1a1916;
  --charcoal:    #2d2b27;
  --gold:        #b8935a;
  --gold-light:  #d4aa72;
  --text:        #2d2b27;
  --muted:       #7a7670;
  --border:      #e4ddd4;
  --card-bg:     #ffffff;
  --wa-green:    #25D366;
  --call-blue:   #1a73e8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 1px 4px rgba(26,25,22,.06), 0 2px 8px rgba(26,25,22,.04);
  --shadow-md:   0 4px 16px rgba(26,25,22,.08), 0 1px 4px rgba(26,25,22,.05);
  --shadow-lg:   0 12px 40px rgba(26,25,22,.12), 0 4px 12px rgba(26,25,22,.07);

  --transition:  all .28s cubic-bezier(.4,0,.2,1);
  --max-w:       1200px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { font-size: 1rem; color: var(--muted); line-height: 1.75; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

/* === LAYOUT UTILITIES === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1200px) { .container { padding: 0 2.5rem; } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-header p { margin-top: .75rem; }

.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* === TOP BAR === */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  text-align: center;
  padding: .45rem 1rem;
  letter-spacing: .04em;
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--gold-light); }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,252,250,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

@media (min-width: 1024px) { .header-inner { height: 72px; } }

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.site-logo img {
  height: 40px;
  width: auto;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -.02em;
}
.logo-text span { color: var(--gold); }

/* Desktop Nav */
.main-nav {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 1024px) { .main-nav { display: flex; } }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .75rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(184,147,90,.08);
}
.nav-link svg { width: 12px; height: 12px; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: .55rem .9rem;
  font-size: .85rem;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--cream); color: var(--gold); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.btn-call-sm {
  display: none;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  background: var(--dark);
  color: #fff;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-call-sm:hover { background: var(--charcoal); color: var(--gold-light); }
@media (min-width: 640px) { .btn-call-sm { display: flex; } }

.btn-wa-sm {
  display: none;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-wa-sm:hover { filter: brightness(1.1); }
@media (min-width: 768px) { .btn-wa-sm { display: flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.hamburger:hover { background: var(--cream); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 5rem 1.5rem 6rem;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); background: var(--cream); }

.mobile-sub {
  padding-left: 1rem;
  display: none;
}
.mobile-sub.open { display: block; }
.mobile-sub a {
  display: block;
  padding: .65rem 1rem;
  font-size: .9rem;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-sub a:hover { color: var(--gold); }

.mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--dark);
  color: #fff;
}
.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,25,22,.2);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,147,90,.3);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--wa-green);
  color: #fff;
}
.btn-wa:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}

.btn-call {
  background: var(--call-blue);
  color: #fff;
}
.btn-call:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.2rem; font-size: .8rem; }
.btn-full { width: 100%; }

/* === STICKY CTA BAR (Mobile) === */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
@media (min-width: 1024px) { .sticky-cta { display: none; } }

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
}
.sticky-cta-btn:first-child {
  background: var(--wa-green);
  border-right: 1px solid rgba(255,255,255,.15);
}
.sticky-cta-btn:last-child { background: var(--dark); }
.sticky-cta-btn:hover { filter: brightness(1.1); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1916 0%, #2d2b27 60%, #3d3830 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,147,90,.15) 0%, transparent 60%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(184,147,90,.12) 1px, transparent 0);
  background-size: 32px 32px;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 60%);
  z-index: 1;
}
@media (min-width: 768px) { .hero-image img { opacity: .55; } }
@media (min-width: 1024px) { .hero-image img { opacity: .7; } }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 5rem 0 8rem;
}

.hero h1 {
  color: #fff;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero h1 strong {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
}

.hero-desc {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
}
.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* === MARQUEE STRIP === */
.marquee-strip {
  background: var(--gold);
  padding: .7rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.marquee-item::after {
  content: '✦';
  color: rgba(255,255,255,.5);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === CATEGORY GRID === */
.categories {
  background: var(--cream);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(6, 1fr); } }

.category-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  padding: 1.5rem 1rem;
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.category-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  transition: var(--transition);
}
.category-card:hover .category-icon {
  background: var(--gold);
}
.category-card h4 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .2rem;
}
.category-card p {
  font-size: .75rem;
  color: var(--muted);
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 50px;
}

.product-info {
  padding: .9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-info h3 {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .3rem;
}
.product-price {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .75rem;
}
.product-price span {
  font-size: .75rem;
  font-weight: 400;
  color: var(--muted);
}

.product-actions {
  display: flex;
  gap: .5rem;
  margin-top: auto;
}
.btn-enquire {
  flex: 1;
  padding: .5rem .75rem;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  transition: var(--transition);
}
.btn-enquire:hover { background: var(--gold); }
.btn-enquire-wa {
  padding: .5rem .75rem;
  background: var(--wa-green);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn-enquire-wa:hover { filter: brightness(1.1); }

/* === FILTER BAR === */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .45rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,147,90,.07);
}

/* === FEATURES STRIP === */
.features-strip {
  background: var(--dark);
  padding: 3rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-item {
  text-align: center;
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
  display: block;
}
.feature-item h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .3rem;
}
.feature-item p {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
}

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: #fff;
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 90px;
}
.about-image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
}
.about-image-badge span {
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}

.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1.25rem; }

.about-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.5rem 0;
}
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.about-list-icon {
  width: 22px;
  height: 22px;
  background: rgba(184,147,90,.12);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .7rem;
  margin-top: .15rem;
}
.about-list-item p {
  font-size: .9rem;
  margin: 0;
  color: var(--charcoal);
}

/* === CTA SECTION === */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(184,147,90,.12) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.6); max-width: 500px; margin: 0 auto 2.5rem; }

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* === TESTIMONIALS === */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: .92rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
}
.testimonial-role {
  font-size: .78rem;
  color: var(--muted);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--dark);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,147,90,.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.55); max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.25rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: rgba(255,255,255,.25); }

/* === ABOUT PAGE === */
.about-page .value-cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .about-page .value-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .about-page .value-cards { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
}
.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.value-card h4 {
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--dark);
}
.value-card p { font-size: .85rem; }

/* === FOOTER === */
.site-footer {
  background: #111110;
  color: rgba(255,255,255,.65);
  padding-bottom: 70px; /* space for sticky CTA on mobile */
}
@media (min-width: 1024px) { .site-footer { padding-bottom: 0; } }

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .logo-text { color: #fff; font-size: 1.6rem; }
.footer-brand .logo-text span { color: var(--gold-light); }
.footer-brand p {
  margin-top: .75rem;
  font-size: .88rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .88rem;
}
.footer-contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .15rem;
}
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-cta-btns {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.25rem;
}
.footer-cta-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
}
.footer-cta-btn.wa { background: var(--wa-green); }
.footer-cta-btn.call { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.footer-cta-btn:hover { filter: brightness(1.12); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a { color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* === PAGINATION === */
.pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page-btn.active, .page-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,147,90,.07);
}

/* === NOTICE BAR === */
.notice-bar {
  background: rgba(184,147,90,.1);
  border: 1px solid rgba(184,147,90,.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 2rem;
  font-size: .88rem;
  color: var(--charcoal);
}
.notice-bar-icon { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: .1s; }
.animate-delay-2 { transition-delay: .2s; }
.animate-delay-3 { transition-delay: .3s; }
.animate-delay-4 { transition-delay: .4s; }

/* === MISC === */
.divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.tag {
  display: inline-block;
  padding: .25rem .65rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .05em;
}

/* === PRODUCT DETAIL ENHANCEMENTS === */
.product-count {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.product-count strong { color: var(--dark); }

/* Scroll to top */
#scrollTop {
  position: fixed;
  bottom: 80px;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
  font-size: 1rem;
}
#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--gold); transform: translateY(-2px); }
@media (min-width: 1024px) { #scrollTop { bottom: 1.5rem; right: 1.5rem; } }

/* =============================================
   MATTRESS PRODUCT CARDS — Responsive
   ============================================= */

/* Outer wrapper */
.mattress-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Inner grid — stacked on mobile, side-by-side from 640 px */
.mattress-card-inner {
  display: grid;
  grid-template-columns: 1fr;          /* mobile: full width stack */
}
@media (min-width: 640px) {
  .mattress-card-inner {
    grid-template-columns: 240px 1fr;  /* tablet: image | content */
  }
}
@media (min-width: 900px) {
  .mattress-card-inner {
    grid-template-columns: 300px 1fr;  /* desktop: wider image panel */
  }
}

/* Image panel */
.mattress-card-img {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 200px;
  position: relative;
}
.mattress-card-img img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  width: auto;
  height: auto;
}

/* On mobile make image panel shorter */
@media (max-width: 639px) {
  .mattress-card-img {
    min-height: 160px;
    padding: 1.25rem;
  }
  .mattress-card-img img {
    max-height: 150px;
  }
}

/* Badge inside image panel */
.mattress-card-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 50px;
}

/* Content panel */
.mattress-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 640px) {
  .mattress-card-body {
    padding: 2rem;
  }
}

/* Feature list inside card */
.mattress-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .mattress-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mattress-features li {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .82rem;
  color: var(--charcoal);
  list-style: none;
}
.mattress-features li .tick {
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* CTA row inside card */
.mattress-card-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.mattress-card-ctas .btn {
  flex: 1 1 140px;
}

/* Page hero sub-nav pill strip */
.mattress-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.mattress-subnav a {
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.1);
  transition: var(--transition);
  white-space: nowrap;
}
.mattress-subnav a.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.mattress-subnav a:hover:not(.active) {
  background: rgba(255,255,255,.18);
  color: #fff;
}

/* Mattress brand intro box */
.mattress-brand-intro {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .mattress-brand-intro {
    padding: 2rem 2.5rem;
    flex-wrap: nowrap;
  }
}
.mattress-brand-intro .icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.mattress-brand-intro h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.mattress-brand-intro p {
  font-size: .88rem;
}
