/* ================================================================
   ELITE BATH CARE v2 — style.css
   Colors: Pista Green (#4A7C59 dark / #B2D8C4 mid / #EAF4EE light)
           Rose Gold (#C9956C) — accent only
           White (#FFFFFF) — main background
           Charcoal (#1C1C1C) — body text
   ================================================================ */

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

:root {
  --green-dark:   #3D6B4F;
  --green-mid:    #4A7C59;
  --green-soft:   #B2D8C4;
  --green-bg:     #EAF4EE;
  --green-contact:#2E5E42;
  --rose:         #C9956C;
  --rose-light:   #dbb99a;
  --rose-dark:    #a07040;
  --white:        #FFFFFF;
  --charcoal:     #1C1C1C;
  --charcoal-2:   #2E2E2E;
  --text:         #3A3A3A;
  --muted:        #777;
  --wa-green:     #25D366;
  --nav-h:        76px;
  --ff-serif:     'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --ff-display:   'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --ff-sans:      'Lato', 'Inter', sans-serif;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:   all 0.4s var(--ease);
  --shadow-sm:    0 4px 20px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-sans); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.75; }
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 36px; }

/* ---------- SHARED ELEMENTS ---------- */
.section-label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.section-label.centered { text-align: center; }

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-heading.centered { text-align: center; }

.rose-divider {
  height: 2px;
  width: 56px;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
  border-radius: 2px;
  margin-bottom: 30px;
}
.rose-divider.centered { margin-left: auto; margin-right: auto; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.18s; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: var(--green-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-elite {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--rose);
}
.logo-bath {
  font-family: var(--ff-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #fff;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose);
  transition: width 0.35s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--green-dark);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s ease;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-drawer.open { max-height: 400px; padding: 12px 0; }
.nav-drawer li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-drawer a {
  display: block;
  padding: 16px 36px;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-drawer a:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroKen 10s ease-in-out forwards;
}
@keyframes heroKen {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28,28,28,0.62) 0%, rgba(28,28,28,0.40) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: fadeUp 1.1s var(--ease) forwards;
  opacity: 0;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--rose);
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
  margin-bottom: 22px;
}
.hero-divider-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-light), transparent);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-family: var(--ff-sans);
  font-size: clamp(0.72rem, 1.5vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 12px;
}
.hero-tagline {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  margin-bottom: 42px;
}
.hero-tagline em { font-style: italic; }
.btn-hero {
  display: inline-block;
  padding: 17px 52px;
  background: var(--green-mid);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1.5px solid var(--rose);
  border-radius: 1px;
  transition: var(--transition);
}
.btn-hero:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,149,108,0.35);
}

/* ================================================================
   ABOUT
   ================================================================ */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text {
  border-left: 3px solid var(--rose);
  padding-left: 36px;
}
.about-text .section-label { margin-bottom: 10px; }
.about-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}
.about-body strong { color: var(--charcoal); font-weight: 700; }
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.pillar {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pillar-dot { color: var(--rose); font-size: 0.7rem; }

.about-image { position: relative; }
.img-slot {
  height: 500px;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.img-slot .real-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-placeholder-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green-bg), var(--green-soft));
  border: 2px dashed var(--green-soft);
  color: var(--charcoal-2);
  text-align: center;
  gap: 6px;
}
.img-placeholder-inner span { font-size: 2.2rem; }
.img-placeholder-inner p { font-family: var(--ff-serif); font-size: 1.1rem; }
.img-placeholder-inner small { font-size: 0.75rem; color: var(--muted); }

.about-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--charcoal);
  color: #fff;
  padding: 20px 28px;
  border-left: 3px solid var(--rose);
  box-shadow: var(--shadow-md);
}
.badge-sub {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 4px;
}
.badge-main {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
}

/* ================================================================
   BRANDS MARQUEE
   ================================================================ */
.brands-marquee {
  padding: 100px 0 110px;
  background: var(--green-bg);
  overflow: hidden;
  position: relative;
}
.brands-marquee .section-heading {
  margin-bottom: 14px;
}
.brands-marquee .rose-divider {
  margin-bottom: 50px;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}
/* Fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--green-bg) 0%, transparent 100%);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--green-bg) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  flex-shrink: 0;
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.marquee-item:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-color: var(--rose-light);
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: filter 0.35s ease, opacity 0.35s ease;
}
.marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 960px) {
  .brands-marquee { padding: 80px 0 90px; }
  .marquee-item { width: 150px; height: 75px; padding: 12px 18px; }
  .marquee-track { gap: 40px; }
  .marquee-wrapper::before,
  .marquee-wrapper::after { width: 60px; }
}
@media (max-width: 600px) {
  .brands-marquee { padding: 60px 0 70px; }
  .marquee-item { width: 130px; height: 65px; padding: 10px 14px; }
  .marquee-track { gap: 28px; animation-duration: 20s; }
  .marquee-wrapper::before,
  .marquee-wrapper::after { width: 36px; }
}

/* ================================================================
   COLLECTIONS
   ================================================================ */
.collections {
  padding: 120px 0;
  background: var(--green-bg);
}
.section-subtext {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 64px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid var(--rose);
}
.product-card:hover {
  background: var(--green-mid);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img-wrap {
  height: 260px;
  overflow: hidden;
  background: var(--green-bg);
}
.card-img { height: 260px; transition: transform 0.6s ease; }
.product-card:hover .card-img { transform: scale(1.06); }
.card-body { padding: 24px 26px; }
.card-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  transition: color 0.35s ease;
}
.product-card:hover .card-name { color: #fff; }
.card-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
  transition: color 0.35s ease;
}
.product-card:hover .card-desc { color: rgba(255,255,255,0.78); }
.card-cta {
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  transition: color 0.35s ease, letter-spacing 0.35s ease;
}
.product-card:hover .card-cta { color: var(--rose-light); letter-spacing: 0.2em; }

/* ================================================================
   QUOTE STRIP
   ================================================================ */
.quote-strip {
  padding: 88px 0;
  background: var(--charcoal);
  text-align: center;
}
.the-quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--green-soft);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.55;
}
.the-cite {
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery {
  padding: 120px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
  margin-bottom: 36px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 250px;
  cursor: pointer;
}
.gal-wide { grid-column: 1 / 3; min-height: 360px; }
.gal-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.gal-item:hover .gal-img { transform: scale(1.05); }
.gal-placeholder {
  width: 100%; height: 100%; min-height: 250px;
  background: linear-gradient(135deg, var(--green-bg), var(--green-soft));
  border: 2px dashed var(--green-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; text-align: center; color: var(--charcoal-2);
}
.gal-placeholder span { font-size: 2rem; }
.gal-placeholder p { font-family: var(--ff-serif); font-size: 1rem; }
.gal-placeholder small { font-size: 0.73rem; color: var(--muted); }
.gal-hover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,107,79,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 20px 22px;
  border: 2px solid transparent;
  transition: opacity 0.4s ease, border-color 0.4s ease;
}
.gal-item:hover .gal-hover-overlay { opacity: 1; border-color: var(--rose); }
.gal-hover-overlay span {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: #fff;
}
.gallery-cta-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
}
.inline-link { color: var(--rose); font-weight: 700; transition: color 0.3s ease; }
.inline-link:hover { color: var(--rose-dark); }

/* ---------- SHOWROOM TOUR (VERTICAL VIDEO) ---------- */
.showroom-tour-container {
  max-width: 480px;
  margin: 0 auto 80px;
  text-align: center;
}
.tour-header {
  margin-bottom: 30px;
}
.tour-badge {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(201,149,108,0.3);
}
.tour-desc {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
}
.video-frame {
  position: relative;
  background: var(--charcoal);
  padding: 12px;
  border-radius: 40px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,149,108,0.4);
  aspect-ratio: 464 / 832;
  overflow: hidden;
  margin: 0 auto;
}
.video-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
}
.tour-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-bg), var(--green-soft));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--charcoal-2);
  padding: 40px;
}
.video-fallback span { font-size: 3rem; opacity: 0.8; }
.video-fallback p { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 600; }
.video-fallback small { font-size: 0.85rem; color: var(--muted); line-height: 1.4; }

.video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}

@media (max-width: 768px) {
  .showroom-tour-container {
    max-width: 100%;
    padding: 0 20px;
  }
  .video-frame {
    max-width: 320px;
  }
}

/* ================================================================
   OWNER
   ================================================================ */
.owner {
  padding: 120px 0;
  background: var(--green-bg);
}
.owner-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.owner-photo-wrap { margin-bottom: 0; }
.owner-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--rose);
  box-shadow: 0 0 0 8px rgba(201,149,108,0.15), var(--shadow-md);
  position: relative;
}
.owner-photo {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
}
.owner-photo-placeholder {
  width: 100%; height: 100%;
  background: var(--green-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; color: var(--charcoal-2);
}
.owner-photo-placeholder span { font-size: 3rem; }
.owner-photo-placeholder p { font-family: var(--ff-serif); font-size: 0.95rem; }

.owner-divider-top, .owner-divider-bottom {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  margin: 6px 0;
}
.owner-name {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.owner-title {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose);
  font-weight: 400;
}
.owner-quote {
  margin-top: 6px;
  font-family: var(--ff-serif);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--charcoal-2);
  line-height: 1.7;
  max-width: 420px;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  padding: 120px 0;
  background: var(--green-contact);
}
.contact .section-heading { color: #fff; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 44px 32px;
  transition: var(--transition);
}
.contact-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: var(--rose);
}
.cc-icon { font-size: 2rem; margin-bottom: 18px; }
.cc-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
}
.cc-address {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  letter-spacing: 0.06em;
  font-variant: small-caps;
  margin-bottom: 20px;
}
.cc-link {
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  transition: letter-spacing 0.3s ease, color 0.3s ease;
}
.cc-link:hover { color: var(--rose-light); letter-spacing: 0.2em; }
.cc-body {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 22px;
}
.btn-wa-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--wa-green);
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 30px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-wa-contact:hover {
  background: var(--wa-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.4);
}
.hours-table { margin-bottom: 16px; }
.hr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
}
.hr-time { font-weight: 700; color: #fff; }
.cc-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--charcoal);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.footer-logo-text { display: flex; flex-direction: column; gap: 3px; }
.fl-elite { font-family: var(--ff-serif); font-size: 1.6rem; font-weight: 700; letter-spacing: 0.12em; color: var(--rose); }
.fl-bath { font-family: var(--ff-sans); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.38em; text-transform: uppercase; color: #fff; }
.footer-tagline { font-family: var(--ff-serif); font-style: italic; font-size: 1rem; color: var(--rose-light); margin-bottom: 12px; }
.footer-address {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-variant: small-caps;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-phone {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rose-light);
  margin-top: 6px;
  transition: color 0.3s ease;
}
.footer-phone:hover { color: var(--rose); }
.footer-col-h {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--green-soft); }
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 30px;
  transition: var(--transition);
  margin-bottom: 12px;
}
.footer-wa:hover { filter: brightness(1.1); transform: translateY(-2px); }
.footer-enquiry { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-style: italic; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 998;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 3s ease-in-out infinite;
  opacity: 0;
}
.wa-float.visible { opacity: 1; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,0.70), 0 0 0 10px rgba(37,211,102,0.12); }
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 12px 44px rgba(37,211,102,0.6); }
.wa-tooltip {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--charcoal);
  border-right: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ================================================================
   RESPONSIVE — 960px
   ================================================================ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .img-slot, .store-slot { height: 380px; }
  .about-badge { bottom: -12px; left: 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-wide { grid-column: 1 / 3; }
}

/* ================================================================
   RESPONSIVE — 600px (Mobile)
   ================================================================ */
@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 4rem); letter-spacing: 0.06em; }
  .hero-subtitle { font-size: 0.65rem; letter-spacing: 0.2em; }
  .hero-tagline { font-size: 1.3rem; }
  .btn-hero { padding: 14px 36px; font-size: 0.72rem; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-wide { grid-column: 1 / 2; min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .about, .collections, .gallery, .owner, .contact, .quote-strip { padding: 80px 0; }
  .about-text { padding-left: 20px; border-left-width: 2px; }
  .owner-circle { width: 170px; height: 170px; }
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}
