/* ============================================================
   GlowNest — Main Stylesheet
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap");

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --yellow: #ffd74b;
  --orange: #ffa52f;
  --brown: #5a3521;
  --brown-mid: #7a4a2e;
  --white: #ffffff;
  --off-white: #fdf9f5;
  --light-gray: #eee8e1;
  --muted: #777777;
  --dark: #1a1a1a;
  --whatsapp: #25d366;
  --font: "Manrope", sans-serif;
  --max-width: 1240px;
  --shadow-sm: 0 2px 12px rgba(90, 53, 33, 0.06);
  --shadow-md: 0 8px 32px rgba(90, 53, 33, 0.12);
  --shadow-lg: 0 16px 52px rgba(90, 53, 33, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: all 0.25s ease;
}

/* ── RESET ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  outline: none;
}

/* ── TOPBAR ───────────────────────────────────────────────── */
.gn-topbar {
  background: var(--brown);
  color: var(--yellow);
  text-align: center;
  padding: 9px 0;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  overflow: hidden;
}

.gn-topbar-inner {
  display: inline-flex;
  gap: 48px;
  animation: ticker 26s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  0% {
    transform: translateX(60vw);
  }
  100% {
    transform: translateX(-100%);
  }
}

.gn-topbar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gn-topbar-inner svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.gn-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow 0.3s;
  isolation: isolate;
}

.gn-navbar.scrolled {
  box-shadow: 0 2px 24px rgba(90, 53, 33, 0.12);
}

.gn-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.gn-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.gn-logo-text {
  font-weight: 900;
  font-size: 24px;
  color: var(--brown);
  letter-spacing: -0.5px;
}

.gn-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Partner bar */
.gn-partner-bar {
  border-top: 1px solid #e5e7eb;
  border-bottom: 2px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  height: 32px;
}

.gn-partner-label {
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Nav links */
.gn-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gn-nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.gn-nav-link:hover,
.gn-nav-link.active {
  color: var(--orange);
}

.gn-nav-link.active {
  border-bottom-color: var(--orange);
}

/* Dropdown */
.gn-dropdown {
  position: relative;
}

.gn-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
  padding: 8px 0;
  min-width: 230px;
  z-index: 100;
}

.gn-dropdown:hover .gn-dropdown-menu {
  display: block;
}

.gn-dd-label {
  padding: 6px 18px 3px;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.gn-dd-item {
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  transition: var(--transition);
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gn-dd-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--muted);
}

.gn-dd-item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}

.gn-dd-item:hover {
  background: var(--off-white);
  color: var(--orange);
  border-left-color: var(--orange);
}

.gn-dd-item:hover svg {
  color: var(--orange);
}

.gn-dd-divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 7px 0;
}

.gn-dd-soon {
  font-size: 9.5px;
  font-weight: 800;
  background: var(--yellow);
  color: var(--brown);
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: auto;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Nav CTA */
/* Nav actions (search + whatsapp) */
.gn-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
  flex-shrink: 0;
}

/* Search */
.gn-search {
  position: relative;
}

.gn-search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown);
  display: flex;
  align-items: center;
  padding: 4px;
  transition: var(--transition);
}

.gn-search-toggle:hover {
  color: var(--orange);
}

.gn-search-bar {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: var(--white);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  width: 240px;
}

.gn-search-bar.open {
  display: flex;
}

.gn-search-input {
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--brown);
  background: transparent;
  width: 100%;
}

.gn-search-input::placeholder {
  color: #9ca3af;
}

.gn-search-bar svg {
  color: #9ca3af;
  flex-shrink: 0;
}

/* WhatsApp button */
.gn-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  transition: var(--transition);
  flex-shrink: 0;
}

.gn-wa-btn:hover {
  color: var(--orange);
}

/* Divider between actions */
.gn-actions-divider {
  display: block;
  width: 1px;
  height: 22px;
  background: #d1d5db;
  flex-shrink: 0;
}

/* Mobile menu toggle — hidden on desktop */
.gn-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.gn-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.gn-footer {
  background: var(--brown);
  padding-top: 60px;
}

.gn-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 52px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.gn-footer-brand {
}

.gn-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gn-footer-logo-text {
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.gn-footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 255px;
}

.gn-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.gn-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.65);
}

.gn-social-btn svg {
  width: 16px;
  height: 16px;
}

.gn-social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.gn-footer-col h5 {
  color: var(--yellow);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 20px;
}

.gn-footer-link {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  cursor: pointer;
  transition: var(--transition);
  display: block;
}

.gn-footer-link:hover {
  color: var(--orange);
}

.gn-footer-link.muted {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.gn-footer-link.muted small {
  color: var(--yellow);
  opacity: 0.7;
}

.gn-footer-contact {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 2.2;
}

.gn-footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gn-footer-contact svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--orange);
}

.gn-footer-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-weight: 800;
  font-size: 14px;
  margin-top: 18px;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.gn-footer-wa svg {
  width: 18px;
  height: 18px;
}

.gn-footer-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.gn-footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 8px;
}

.gn-footer-bottom span {
  color: rgba(255, 255, 255, 0.32);
  font-size: 13px;
}

/* ── SECTION COMMONS ──────────────────────────────────────── */
.section-eyebrow {
  color: var(--orange);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
  display: block;
}

.section-h2 {
  color: var(--brown);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 440px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.max-w {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pad-section {
  padding: 80px 24px;
}

.pad-section-sm {
  padding: 64px 24px;
}

.bg-white {
  background: var(--white);
}
.bg-offwhite {
  background: var(--off-white);
}
.bg-brown {
  background: var(--brown);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 34px;
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(255, 165, 47, 0.38);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-brown {
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 13px 30px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-brown:hover {
  background: var(--orange);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  padding: 14px 34px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-wa {
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 13px 26px;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.28);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
}

.btn-wa svg,
.btn-primary svg,
.btn-brown svg,
.btn-ghost svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── HERO SLIDER ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  display: none;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-text {
  max-width: 640px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 75, 0.15);
  border: 1px solid rgba(255, 215, 75, 0.5);
  border-radius: 20px;
  padding: 6px 18px;
  margin-bottom: 26px;
}

.slide-badge span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.slide-badge svg {
  width: 14px;
  height: 14px;
  color: var(--yellow);
}

.slide-h1 {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.slide-h1 strong {
  color: var(--yellow);
}

.slide-p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 480px;
}

.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.dot.active {
  background: var(--yellow);
  width: 28px;
  border-radius: 4px;
}

.hero-arrows {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  padding: 0 20px;
}

.arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: var(--transition);
}

.arrow svg {
  width: 20px;
  height: 20px;
}

.arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--brown);
  padding: 28px 24px;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  color: var(--yellow);
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
}

.stat-lbl {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 7px;
}

/* ── EXPLORE RANGE ────────────────────────────────────────── */
.range-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

.range-item {
  flex: 0 0 calc(100% / 8);
  padding: 28px 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border-radius: var(--radius-lg);
}

.range-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.3s ease;
}

.range-icon svg {
  width: 34px;
  height: 34px;
  color: var(--brown);
  transition: color 0.3s ease;
}

.range-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.range-item:hover .range-icon {
  background: #5a3521;
}

.range-item:hover .range-icon svg {
  color: var(--white);
}

.range-item:hover .range-icon img {
  filter: brightness(0) invert(1);
}

/* Dots — hidden on desktop, shown on mobile via responsive.css */
.range-dots {
  display: none;
}

.range-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  transition: var(--transition);
  line-height: 1.3;
}

.range-soon {
  font-size: 9px;
  font-weight: 800;
  background: var(--yellow);
  color: var(--brown);
  border-radius: 4px;
  padding: 2px 7px;
  margin-top: 6px;
  display: inline-block;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* ── EXPERIENCE SECTION ───────────────────────────────────── */
.experience {
  position: relative;
  height: 86vh;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.exp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 4, 2, 0.72);
}

.exp-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}

.exp-eyebrow {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.exp-eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--orange);
  display: block;
  flex-shrink: 0;
}

.exp-h2 {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -2.5px;
  margin-bottom: 26px;
}

.exp-h2 em {
  color: var(--yellow);
  font-style: normal;
  display: block;
}

.exp-p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.82;
  max-width: 500px;
  margin-bottom: 36px;
}

.exp-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.exp-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 8px 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.exp-pill strong {
  color: var(--yellow);
  font-weight: 900;
}

.exp-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.exp-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.exp-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 165, 47, 0.15);
  border-radius: var(--radius-sm);
}

.exp-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.exp-card-h {
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 5px;
}

.exp-card-p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.55;
}

/* ── HOT PICKS APPLE SLIDER ───────────────────────────────── */
.hp-slider-section { padding-bottom: 48px; }

.hp-slider-header {
  max-width: var(--max-width);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.hp-slider-header .section-h2 {
  margin-bottom: 0;
}

/* Carousel + flanking arrows */
.hp-carousel-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(90,53,33,0.18);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.hp-arrow-btn svg { width: 18px; height: 18px; stroke: var(--brown); }
.hp-arrow-btn:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: scale(1.08);
}
.hp-arrow-btn:hover svg { stroke: var(--white); }

/* override ap-carousel padding for this section */
.hp-slider-section .ap-carousel {
  flex: 1;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 12px 4px 20px;
  gap: 24px;
}

.hp-slide-card {
  min-width: 280px;
  width: 280px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(90,53,33,0.07);
  transition: transform 0.4s cubic-bezier(0.25,0.1,0.25,1),
              box-shadow 0.4s cubic-bezier(0.25,0.1,0.25,1);
}
.hp-slide-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(90,53,33,0.14);
}

.hp-slide-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f5f0eb;
}
.hp-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  padding: 18px;
  box-sizing: border-box;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.hp-slide-card:hover .hp-slide-img img {
  transform: scale(1.05);
}
.hp-slide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(245,240,235,0.5) 100%);
  pointer-events: none;
}

.hp-slide-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
}

/* dot style override — use brand color */
.hp-slider-section .ap-carousel-dots { margin-top: 8px; }
.hp-slider-section .ap-carousel-dot { background: var(--brown); }

/* ── HOT PICKS (legacy grid styles kept for fallback) ─────── */
.hp-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.hp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--light-gray);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}


.hp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.hp-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hp-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(90, 53, 33, 0.12);
}

.hp-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--brown);
  border-radius: 5px;
  padding: 4px 11px;
  font-size: 10.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hp-tag svg {
  width: 12px;
  height: 12px;
}

.hp-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hp-cat {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.hp-name {
  color: var(--brown);
  font-weight: 800;
  font-size: 16.5px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.hp-feats {
  list-style: none;
  margin-bottom: 18px;
  flex: 1;
}

.hp-feats li {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
  margin-bottom: 5px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.hp-feats li svg {
  width: 13px;
  height: 13px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.hp-cta {
  width: 100%;
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  font-weight: 800;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hp-cta svg {
  width: 15px;
  height: 15px;
}
.hp-cta:hover {
  background: var(--orange);
}

/* ── BRAND BANNER ─────────────────────────────────────────── */
.brand-banner {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(90, 53, 33, 0.9) 0%,
    rgba(90, 53, 33, 0.4) 60%,
    transparent 100%
  );
}

.bb-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.bb-h {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 46px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 460px;
}

.bb-p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 360px;
}

/* ── GET IN TOUCH ─────────────────────────────────────────── */
.git-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.git-info-h {
  color: var(--brown);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  line-height: 1.15;
}

.git-info-p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 30px;
}

.git-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.git-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
}

.git-card-icon {
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--light-gray);
}

.git-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.git-lbl {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.git-val {
  color: var(--brown);
  font-weight: 700;
  font-size: 15px;
}

.git-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--light-gray);
}

.git-form h3 {
  color: var(--brown);
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 24px;
}

/* ── CTA STRIP ────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(100deg, var(--brown) 0%, var(--brown-mid) 100%);
  padding: 64px 24px;
}

.cta-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 8px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  margin: 0;
}

/* ── PRODUCT CARDS ────────────────────────────────────────── */
.products-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.products-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}

.products-grid-2col .prod-gallery {
  aspect-ratio: 4 / 3;
}
.products-grid-2col .prod-gallery-slide img {
  object-fit: contain;
  background: #f5f0eb;
}

.prod-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--light-gray);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.prod-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.prod-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(90, 53, 33, 0.12);
}

.prod-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-name {
  color: var(--brown);
  font-weight: 800;
  font-size: 17.5px;
  margin-bottom: 12px;
}

.prod-feats {
  list-style: none;
  margin-bottom: auto;
  padding-bottom: 18px;
}

.prod-feats li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 7px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.prod-feats li svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}



.prod-cta {
  width: 100%;
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 13px 0;
  font-weight: 800;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}

.prod-cta svg {
  width: 15px;
  height: 15px;
}
.prod-cta:hover {
  background: var(--orange);
}

/* ── LANDSCAPE PRODUCT CARD ─────────────────────────────── */
.products-grid-landscape {
  grid-template-columns: repeat(2, 1fr);
}

.prod-card-landscape {
  display: flex;
  flex-direction: column;
}

.prod-card-landscape .prod-gallery {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.prod-card-landscape .prod-body {
  display: flex;
  flex-direction: column;
  padding: 28px 28px;
}

.prod-card-landscape .prod-feats {
  flex: 1;
}

/* ── PRODUCT IMAGE GALLERY ───────────────────────────────── */
.prod-gallery {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f0eb;
}

.prod-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.prod-gallery-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background: #f5f0eb;
}

.prod-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  image-orientation: from-image;
  display: block;
}

.prod-gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(90, 53, 33, 0.06);
  pointer-events: none;
}

.prod-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--light-gray);
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.25s, background 0.25s, transform 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.prod-gallery-btn svg {
  width: 16px;
  height: 16px;
}

.prod-gallery-btn.prev { left: 10px; }
.prod-gallery-btn.next { right: 10px; }

.prod-card:hover .prod-gallery-btn {
  opacity: 1;
}

.prod-gallery-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.prod-gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.prod-gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(90,53,33,0.15);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.prod-gallery-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.25);
}

.prod-gallery-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(90,53,33,0.72);
  color: white;
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  z-index: 3;
  backdrop-filter: blur(4px);
}

/* Hide gallery controls for single-image cards */
.prod-gallery[data-count="1"] .prod-gallery-btn,
.prod-gallery[data-count="1"] .prod-gallery-dots,
.prod-gallery[data-count="1"] .prod-gallery-counter {
  display: none;
}

/* Portrait-oriented product images (e.g. fans shot vertically) */
.prod-card-landscape .prod-gallery.prod-gallery-portrait,
.prod-gallery.prod-gallery-portrait {
  aspect-ratio: 4 / 3 !important;
}
.prod-card-landscape .prod-gallery.prod-gallery-portrait .prod-gallery-slide img,
.prod-gallery.prod-gallery-portrait .prod-gallery-slide img {
  object-fit: contain !important;
  background: #f5f0eb;
}

/* ── BLOG CARDS ───────────────────────────────────────────── */
.blog-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(90, 53, 33, 0.1);
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-body {
  padding: 22px;
}

.blog-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-meta svg {
  width: 13px;
  height: 13px;
  color: var(--orange);
}

.blog-title {
  color: var(--brown);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.blog-excerpt {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-read {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-read svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.blog-card:hover .blog-read svg {
  transform: translateX(4px);
}

/* ── PRESS CARDS ──────────────────────────────────────────── */
.press-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.press-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.press-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.press-img {
  height: 195px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.press-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(90, 53, 33, 0.14);
}

.press-body {
  padding: 22px;
}
.press-date {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 9px;
}
.press-title {
  color: var(--brown);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 10px;
}
.press-exc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
  margin-bottom: 14px;
}
.press-read {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
}

/* ── SHOP BY SPACE / HOTSPOTS ─────────────────────────────── */
.hotspot {
  position: absolute;
  z-index: 10;
  transform: translate(-50%, -50%);
}

.pin-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brown);
  border: 3px solid var(--white);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(90, 53, 33, 0.35);
}

.pin-btn svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.hotspot:hover .pin-btn,
.hotspot.open .pin-btn {
  background: var(--orange);
}

.hotspot.open .pin-btn svg {
  transform: rotate(45deg);
}

.pin-card {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--light-gray);
  width: 200px; /* Reduced width since no text */
  overflow: hidden;
  z-index: 20;
  animation: pinPop 0.22s ease;
}

.pin-card.pin-left {
  left: auto;
  right: 0;
  transform: none;
}

@keyframes pinPop {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.pin-card.pin-left {
  animation: pinPopL 0.22s ease;
}

@keyframes pinPopL {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pin-card.visible {
  display: block;
}

.pin-img {
  height: 200px; /* Taller image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.pin-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}

.pin-cta {
  width: 100%;
  background: var(--brown);
  color: var(--white);
  border-radius: 7px;
  padding: 9px 0;
  font-weight: 800;
  font-size: 12.5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}

.pin-cta svg {
  width: 13px;
  height: 13px;
}
.pin-cta:hover {
  background: var(--orange);
}

/* ── COMING SOON ──────────────────────────────────────────── */
.coming-soon-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--off-white) 0%, #fff8e8 100%);
  padding: 80px 24px;
}

.cs-box {
  text-align: center;
  max-width: 540px;
}

.cs-icon {
  width: 80px;
  height: 80px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.cs-icon svg {
  width: 38px;
  height: 38px;
  color: var(--brown);
}

.cs-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--brown);
  border-radius: 5px;
  padding: 5px 18px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 22px;
}

.cs-box h1 {
  color: var(--brown);
  font-size: clamp(30px, 5vw, 50px);
  margin-bottom: 14px;
}

.cs-box p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.cs-notify {
  display: flex;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 28px;
}

.cs-notify input {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--light-gray);
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--dark);
  transition: border-color 0.2s;
}

.cs-notify input:focus {
  border-color: var(--orange);
  outline: none;
}

.cs-notify button {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  font-weight: 700;
  font-size: 14.5px;
  transition: var(--transition);
}

.cs-notify button:hover {
  background: var(--brown);
}

/* ── FORM STYLES ──────────────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--light-gray);
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  display: block;
}

.form-input:focus {
  border-color: var(--orange);
  outline: none;
}

.form-input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.form-submit {
  width: 100%;
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 15px 0;
  font-weight: 800;
  font-size: 15px;
  font-family: var(--font);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.form-submit:hover {
  background: var(--orange);
}

.success-msg {
  display: none;
  text-align: center;
  padding: 40px 24px;
}

/* ── BUTTON — OUTLINE ─────────────────────────────────────── */
.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
  border-radius: var(--radius-sm);
  padding: 13px 30px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
}

.btn-outline svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── SHOP BY SPACE ────────────────────────────────────────── */
.shop-by-space {
  background: var(--off-white);
  padding: 80px 24px;
}

.room-tabs {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.room-tab {
  padding: 11px 26px;
  border-radius: 30px;
  border: 1.5px solid var(--light-gray);
  background: var(--white);
  color: var(--brown);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
}

.room-tab:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.room-tab.active {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}

.room-scene {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.room-scene img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(90, 53, 33, 0.94) 0%,
    rgba(90, 53, 33, 0.55) 45%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 52px;
  width: 100%;
}

.page-hero h1 {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.page-hero h1 strong {
  color: var(--yellow);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.breadcrumb span {
  color: var(--yellow);
}

.breadcrumb svg {
  width: 13px;
  height: 13px;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

/* ── PRODUCT CATEGORY INTRO ───────────────────────────────── */
.cat-intro {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cat-intro-text .section-eyebrow {
  margin-bottom: 12px;
}

.cat-intro-text h2 {
  color: var(--brown);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cat-intro-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.cat-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
}

.cat-badge svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
  flex-shrink: 0;
}

.cat-intro-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--off-white);
}

.cat-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FAQ SECTION ──────────────────────────────────────────── */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--orange);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
}

.faq-q h3 {
  color: var(--brown);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.4;
}

.faq-q svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
  background: var(--white);
}

.faq-item.open .faq-a {
  display: block;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── LEGACY SECTION (centered single-grid) ────────────────── */
.legacy-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Image banner */
.legacy-img-block {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.legacy-img-block img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.legacy-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,4,2,0.75) 0%, rgba(8,4,2,0.18) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
}

.legacy-img-overlay .section-eyebrow {
  color: var(--yellow);
  margin-bottom: 10px;
}

.legacy-h {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0;
}

/* Centered body text */
.legacy-body {
  text-align: center;
  max-width: 680px;
}

.legacy-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.legacy-body p:last-child { margin-bottom: 0; }

.legacy-body a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Stats row */
.legacy-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  flex-wrap: wrap;
}

.legacy-stat {
  flex: 1;
  text-align: center;
  min-width: 120px;
}

.legacy-stat-num {
  color: var(--brown);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1;
  margin-bottom: 6px;
}

.legacy-stat-lbl {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legacy-stat-divider {
  width: 1px;
  height: 44px;
  background: var(--light-gray);
  flex-shrink: 0;
  margin: 0 8px;
}

/* CTA row */
.legacy-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── CRAFTED IN BILASPUR (Overlay Layout) ───────────────── */
.bilaspur-hero {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.bilaspur-hero img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.bilaspur-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,4,2,0.85) 0%, rgba(8,4,2,0.6) 50%, rgba(8,4,2,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
  text-align: center;
}

.bilaspur-heading {
  max-width: 680px;
  margin: 0 auto 36px;
}

.bilaspur-heading .section-eyebrow {
  margin-bottom: 12px;
}

.bilaspur-heading .legacy-h {
  margin-bottom: 16px;
}

.bilaspur-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0;
}

/* 3 Cards Row */
.bilaspur-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.bilaspur-glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.bilaspur-glass-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 215, 75, 0.4);
  transform: translateY(-4px);
}

.bilaspur-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 215, 75, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.bilaspur-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--yellow);
}

.bilaspur-glass-card h4 {
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 8px;
}

.bilaspur-glass-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

.about-grid-text .section-eyebrow {
  margin-bottom: 14px;
}

.about-grid-text h2 {
  color: var(--brown);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-grid-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
  margin-bottom: 18px;
}

.about-grid-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--off-white);
}

.about-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About pillars list */
.about-pillars {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-pillars li {
  padding: 16px 20px;
  background: var(--offwhite);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.about-pillars li strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}

/* Family leadership grid */
.family-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.family-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--offwhite);
  border-radius: 12px;
}

.family-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  letter-spacing: .02em;
}

.family-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}

.family-role {
  font-size: 13px;
  color: #888;
}

@media (max-width: 900px) {
  .family-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .family-grid { grid-template-columns: 1fr 1fr; }
}

/* Mission / Vision cards */
.mv-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.mv-card.mission {
  background: var(--brown);
}
.mv-card.vision {
  background: linear-gradient(135deg, var(--orange) 0%, #e88a1a 100%);
}

.mv-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}

.mv-top-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;
}

.mv-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mv-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.mv-card h3 {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mv-card.vision h3 {
  color: rgba(255, 255, 255, 0.75);
}

.mv-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

/* Three Pillars — Full-width Slider */
.pillar-fw-carousel {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pillar-fw-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #181412 0%, #2a2624 100%);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.pillar-fw-img {
  width: 50%;
  flex-shrink: 0;
}

.pillar-fw-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pillar-fw-content {
  width: 50%;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillar-fw-content .mv-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 165, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-fw-content .mv-card-icon svg {
  width: 30px;
  height: 30px;
  color: var(--orange);
}

.pillar-fw-content h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.pillar-fw-content p {
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Values grid */
.values-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1.5px solid var(--light-gray);
  transition: var(--transition);
  text-align: center;
}

.value-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--brown);
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--orange);
}
.value-card:hover .value-icon svg {
  color: var(--white);
}

.value-card h4 {
  color: var(--brown);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-cards-grid {
  max-width: var(--max-width);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.contact-card h4 {
  color: var(--brown);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-card a {
  color: var(--orange);
  font-weight: 600;
}

/* ── PRESS PAGE ───────────────────────────────────────────── */
.feat-card {
  max-width: var(--max-width);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--light-gray);
  background: var(--white);
}

.feat-img {
  height: 380px;
  background-size: cover;
  background-position: center;
}

.feat-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-date {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feat-date svg {
  width: 13px;
  height: 13px;
  color: var(--orange);
  flex-shrink: 0;
}

.feat-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--brown);
  border-radius: 5px;
  padding: 4px 14px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.feat-body h2 {
  color: var(--brown);
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

.feat-body p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.78;
  margin-bottom: 26px;
}

.feat-body a {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feat-body a svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}
.feat-body a:hover svg {
  transform: translateX(4px);
}

/* Media kit strip */
.media-kit {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.media-kit h3 {
  color: var(--brown);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 8px;
}

.media-kit p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 480px;
}

/* ── FEATURE CARDS (homepage why-glownest) ────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feat-grid .feat-card {
  all: unset;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}

.feat-grid .feat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feat-grid .feat-icon {
  width: 52px;
  height: 52px;
  background: var(--offwhite);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-grid .feat-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--brown);
}

.feat-grid .feat-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--brown);
  line-height: 1.3;
  margin: 0;
}

.feat-grid .feat-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
}

/* ── WHY GLOWNEST — badge emblem row ─────────────────────── */
.why-section {
  background: var(--off-white);
  padding: 80px 24px;
}

.why-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.why-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
}

.why-badge {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 2px solid var(--brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px;
  box-sizing: border-box;
  transition: background .2s, border-color .2s;
}

.why-badge:hover {
  background: var(--brown);
}

.why-badge:hover svg {
  stroke: var(--white);
}

.why-badge:hover span {
  color: var(--white);
}

.why-badge svg {
  width: 30px;
  height: 30px;
  stroke: var(--brown);
  flex-shrink: 0;
  transition: stroke .2s;
}

.why-badge span {
  font-size: 10px;
  font-weight: 800;
  color: var(--brown);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color .2s;
}

.why-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin: 0;
}

.why-divider {
  width: 1px;
  height: 120px;
  background: var(--light-gray);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .why-inner {
    flex-direction: column;
    gap: 32px;
  }
  .why-divider {
    width: 80px;
    height: 1px;
  }
}

/* ═══════════════════════════════════════════════════════════════

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE  (≤ 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAVBAR: hamburger left · logo center · search right ── */
  .gn-nav-inner {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    height: 60px;
    padding: 0 14px;
  }

  .gn-menu-toggle {
    display: flex;
    grid-column: 1;
    justify-self: start;
    align-self: center;
  }

  .gn-logo {
    grid-column: 2;
    justify-self: center;
    align-self: center;
    display: flex;
    align-items: center;
  }

  .gn-logo-img {
    height: 32px;
    display: block;
  }

  /* Hide nav links by default, show on toggle */
  .gn-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: var(--shadow-md);
    z-index: 200;
  }

  .gn-nav-links.open { display: flex; }

  .gn-nav-link {
    padding: 13px 20px;
    border-bottom: none;
    border-radius: 0;
    font-size: 15px;
  }

  /* Products dropdown mobile accordion */
  .gn-dropdown { position: static; }

  .gn-dropdown > .gn-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .gn-dropdown-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    padding: 4px 0;
    min-width: 0;
    width: 100%;
  }

  .gn-dropdown.open .gn-dropdown-menu { display: block; }

  .gn-dd-item { padding: 11px 32px; }

  /* Right slot: show only search toggle, hide WA + divider */
  .gn-nav-actions {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    gap: 0;
  }

  .gn-wa-btn,
  .gn-actions-divider { display: none; }

  .gn-search-bar.open {
    right: 0;
    left: auto;
    width: 200px;
  }

  /* Partner bar */
  .gn-partner-bar { justify-content: center; }

  /* ── HERO ───────────────────────────────────────────────── */
  .hero {
    height: 60vw;
    min-height: 240px;
    max-height: 420px;
  }

  .slide {
    background-size: cover;
    background-position: center center;
  }

  .arrow { width: 36px; height: 36px; }
  .arrow svg { width: 16px; height: 16px; }

  /* ── STATS BAR ──────────────────────────────────────────── */
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-num { font-size: 28px; }

  /* ── SECTION SPACING ────────────────────────────────────── */
  .pad-section  { padding: 48px 14px; }
  .pad-section-sm { padding: 36px 14px; }
  .section-head { margin-bottom: 28px; }

  /* range handled in responsive.css */

  /* ── HOT PICKS — horizontal card slider ─────────────────── */
  .hp-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding-bottom: 8px;
  }

  .hp-grid::-webkit-scrollbar { display: none; }

  .hp-card {
    flex: 0 0 75vw;
    max-width: 300px;
  }

  /* ── THE GLOWNEST PROMISE — single compact row ───────────── */
  .why-section { padding: 44px 14px; }

  .why-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .why-item {
    flex: 1;
    padding: 0 10px;
    gap: 10px;
  }

  .why-badge {
    width: 72px;
    height: 72px;
    gap: 5px;
    padding: 10px;
  }

  .why-badge svg { width: 20px; height: 20px; }

  .why-badge span {
    font-size: 7.5px;
    letter-spacing: 0.02em;
  }

  .why-label {
    font-size: 11px;
    font-weight: 700;
  }

  .why-divider {
    width: 1px;
    height: 60px;
    flex-shrink: 0;
  }

  /* ── EXPERIENCE SECTION ─────────────────────────────────── */
  .experience { height: auto; padding: 52px 0; min-height: 0; }

  .exp-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }

  .exp-h2 {
    font-size: clamp(30px, 8vw, 48px);
    letter-spacing: -1px;
  }

  .exp-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* ── BRAND BANNER ───────────────────────────────────────── */
  .brand-banner { height: 260px; }

  /* ── GET IN TOUCH ───────────────────────────────────────── */
  .git-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .git-form { padding: 24px 18px; }

  /* ── CTA STRIP ──────────────────────────────────────────── */
  .cta-strip { padding: 44px 14px; }
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* ── PRODUCT PAGES ──────────────────────────────────────── */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* ── FOOTER ─────────────────────────────────────────────── */
  .gn-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  /* ── ABOUT ──────────────────────────────────────────────── */
  .family-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── SHOP BY SPACE ──────────────────────────────────────── */
  .room-tabs { flex-wrap: wrap; gap: 6px; justify-content: center; }
  .room-tab { font-size: 12px; padding: 6px 12px; }
}

/* ── SMALL MOBILE (≤ 420px) ─────────────────────────────── */
@media (max-width: 420px) {

  .hp-card { flex: 0 0 85vw; }

  .products-grid { grid-template-columns: 1fr; }

  .exp-cards { grid-template-columns: 1fr; }

  .gn-footer-inner { grid-template-columns: 1fr; gap: 24px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .cta-strip-inner { align-items: center; text-align: center; }
}
