/* ============================================================
   IMPEX TILES — Main Stylesheet
   Luxury Surfaces & Bathrooms | Malawi
   ============================================================ */

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #A8882E;
  --charcoal:    #1A1A1A;
  --charcoal2:   #222222;
  --warm-white:  #F8F5F0;
  --stone:       #D4C9B5;
  --slate:       #5A5A5A;
  --cream:       #FAF7F2;
  --border:      rgba(201,168,76,0.22);
  --border-light:rgba(201,168,76,0.10);
  --shadow:      0 20px 60px rgba(26,26,26,0.12);
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.15);
  --transition:  all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 300;
  text-transform: uppercase;
}

/* ── NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 82px;
  transition: var(--transition);
}

.site-nav.scrolled {
  height: 70px;
  box-shadow: 0 4px 30px rgba(26,26,26,0.08);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.nav-logo .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 7px;
  color: var(--charcoal);
  line-height: 1;
}

.nav-logo .sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--charcoal);
  color: var(--gold-light);
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold); color: var(--charcoal); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--charcoal);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: 4px;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 28px; right: 32px;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Jost', sans-serif;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 15px 40px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); color: #fff; }

.btn-dark {
  display: inline-block;
  background: var(--charcoal);
  color: var(--gold-light);
  padding: 15px 40px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: var(--transition);
}
.btn-dark:hover { background: var(--gold); color: var(--charcoal); }

.btn-outline-gold {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 38px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--charcoal); }

.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(248,245,240,0.4);
  color: var(--warm-white);
  padding: 14px 38px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
  transition: var(--transition);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  transition: color 0.3s;
}
.btn-text::after { content: '→'; transition: transform 0.3s; }
.btn-text:hover { color: var(--gold); }
.btn-text:hover::after { transform: translateX(4px); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.left { text-align: left; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow.center { justify-content: center; }

.eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--charcoal);
}

.section-title.light { color: var(--warm-white); }
.section-title em { font-style: italic; color: var(--slate); }
.section-title.light em { color: var(--gold-light); }

.divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-top: 22px;
}

.divider.center { margin: 22px auto 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 380px;
  background: var(--charcoal);
  display: flex;
  align-items: flex-end;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: attr(data-title);
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 220px;
  font-weight: 600;
  color: rgba(255,255,255,0.025);
  right: -20px;
  bottom: -30px;
  letter-spacing: 8px;
  white-space: nowrap;
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.breadcrumb a, .breadcrumb span {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(248,245,240,0.4);
  font-weight: 300;
  transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(248,245,240,0.2); }
.breadcrumb .current { color: var(--gold); }

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
}

.page-hero h1 em { font-style: italic; color: var(--gold-light); }

/* ── FOOTER ── */
.site-footer {
  background: #111;
  padding: 90px 80px 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 7px;
  color: var(--warm-white);
  line-height: 1;
  margin-bottom: 5px;
}

.footer-brand .logo-sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 300;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(248,245,240,0.38);
  line-height: 1.85;
  font-weight: 300;
  max-width: 290px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248,245,240,0.4);
  font-size: 13px;
  letter-spacing: 0;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  font-weight: 400;
}

.footer-col li { margin-bottom: 13px; }

.footer-col a {
  font-size: 14px;
  color: rgba(248,245,240,0.4);
  font-weight: 300;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(248,245,240,0.22);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

.footer-bottom-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(248,245,240,0.2);
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

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

.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--stone);
  position: relative;
  display: block;
  width: 100%;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.product-card:hover .product-img img { transform: scale(1.06); }
.product-img svg { width: 100%; height: 100%; transition: transform 0.7s ease; }
.product-card:hover .product-img svg { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 500;
}

.product-info {
  padding: 24px 28px 30px;
  border-top: 2px solid var(--border);
}

.product-cat {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
  font-weight: 300;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 18px;
}

.product-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  display: inline-block;
}

.product-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideRight {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── UTILITIES ── */
.container { max-width: 1340px; margin: 0 auto; padding: 0 80px; }
.text-gold { color: var(--gold); }
.text-light { color: rgba(248,245,240,0.55); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .site-nav { padding: 0 40px; }
  .container { padding: 0 40px; }
  .site-footer { padding: 70px 40px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .page-hero { padding: 48px 40px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 24px; }
  .site-footer { padding: 56px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { height: 280px; padding: 36px 24px; }
  .page-hero::before { font-size: 80px; }
}

/* ── REAL IMAGE SUPPORT ── */
.mosaic-tile img,
.cat-card img,
.featured-img img,
.product-img img,
.coll-img img,
.tile-item img,
.bath-intro-imgs img,
.bath-hero-img img,
.hw-intro-visual img,
.about-visual-main img,
.showroom-map img,
.coll-hero-img img,
.finish-img img,
.marble-banner-imgs img,
.cat-hardware-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.mosaic-tile:hover img,
.cat-card:hover img,
.product-card:hover .product-img img,
.coll-card:hover .coll-img img,
.tile-item:hover img {
  transform: scale(1.06);
}

/* ── GLOBAL IMAGE FIXES ── */
/* Ensure all image containers enforce their height via aspect-ratio */
.product-img,
.coll-img,
.tile-item,
.cat-card,
.mosaic-tile,
.bath-hero-img,
.about-visual-main,
.showroom-map,
.featured-img,
.coll-hero-img,
.hw-intro-visual {
  overflow: hidden;
  position: relative;
}

/* All images inside these containers fill correctly */
.product-img > img,
.coll-img > img,
.tile-item > img,
.cat-card > img,
.mosaic-tile > img,
.bath-hero-img > img,
.about-visual-main > img,
.showroom-map > img,
.featured-img > img,
.coll-hero-img > img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Tile gallery info overlay text always readable */
.tile-info-name { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 22px; font-weight: 300; 
  color: #fff; 
  margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.tile-info-detail { 
  font-size: 11px; letter-spacing: 2px; 
  text-transform: uppercase; 
  color: var(--gold); 
  font-weight: 300;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Tile hover overlay - always dark enough */
.tile-info-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,0);
  display: flex; align-items: flex-end;
  padding: 22px; transition: background 0.4s;
}
.tile-item:hover .tile-info-overlay { background: rgba(26,26,26,0.82); }

/* Swatch labels always visible */
.finish-swatches { display: flex; gap: 12px; margin-bottom: 36px; align-items: center; flex-wrap: wrap; }

.swatch {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.35);
  cursor: pointer; transition: all 0.3s;
  flex-shrink: 0;
  outline: 1px solid rgba(0,0,0,0.15);
}

.swatch.active {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
  transform: scale(1.12);
}

.swatch:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.2);
  transform: scale(1.08);
}

/* Prevent white swatch from being invisible on light backgrounds */
.swatch[style*="F8F5F0"],
.swatch[style*="fff"],
.swatch[style*="white"] {
  border-color: rgba(26,26,26,0.25) !important;
  outline: 1px solid rgba(26,26,26,0.1);
}
.swatch[style*="F8F5F0"].active,
.swatch[style*="F8F5F0"]:hover {
  border-color: var(--gold) !important;
}

/* Black swatch always visible with white outline ring */
.swatch[style*="1A1A1A"] {
  border-color: rgba(255,255,255,0.45) !important;
  outline: 1px solid rgba(0,0,0,0.3);
}
.swatch[style*="1A1A1A"].active,
.swatch[style*="1A1A1A"]:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
}

/* Product link text always readable */
.product-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  display: inline-block;
  font-weight: 400;
}
.product-link:hover { color: var(--gold); border-color: var(--gold); }

/* Nav strip buttons larger */
.bath-nav-btn { font-size: 12px !important; }

/* Coll card category text visible */
.coll-cat { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 300; }
.coll-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; color: var(--charcoal); margin-bottom: 10px; line-height: 1.25; }
.coll-desc { font-size: 13px; color: var(--slate); line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.coll-spec strong { display: block; color: var(--charcoal); font-weight: 500; font-size: 11px; margin-bottom: 3px; }
.coll-spec { font-size: 11px; color: rgba(90,90,90,0.75); letter-spacing: 0.5px; font-weight: 300; }


/* ══════════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE — Complete Overhaul
   Tested breakpoints: 480px, 640px, 768px, 1024px
   ══════════════════════════════════════════════════ */

/* ── BASE MOBILE (≤ 480px) ── */
@media (max-width: 480px) {

  /* Navigation */
  .site-nav { padding: 0 20px; height: 68px; }
  .nav-logo .brand { font-size: 20px; letter-spacing: 4px; }
  .nav-logo .sub { display: none; }
  .announcement-bar { font-size: 11px; letter-spacing: 0.5px; padding: 10px 16px; }

  /* Mobile menu bigger tap targets */
  .mobile-menu a { font-size: 32px; gap: 28px; }
  .mobile-close { font-size: 32px; top: 24px; right: 24px; }

  /* Buttons full width on mobile */
  .btn-primary, .btn-dark, .btn-outline-gold, .btn-outline-light {
    width: 100%; text-align: center; padding: 16px 24px; font-size: 13px;
  }

  /* Page hero smaller */
  .page-hero { height: 220px; padding: 28px 20px; }
  .page-hero h1 { font-size: 36px; }
  .page-hero::before { font-size: 60px; }
  .breadcrumb { display: none; }

  /* Sections tighter padding */
  .site-footer { padding: 48px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-social { gap: 12px; }
  .footer-social a { width: 42px; height: 42px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  /* Section header */
  .section-title { font-size: 30px; }
  .eyebrow { font-size: 11px; }

  /* Product cards single column */
  .products-grid, .bath-section-grid, .tiles-detail-grid, .hw-grid { grid-template-columns: 1fr !important; }
}

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

  /* ── INDEX ── */
  .hero { grid-template-columns: 1fr; min-height: unset; }
  .hero-left { padding: 64px 24px 56px; min-height: unset; }
  .hero-title { font-size: 42px; }
  .hero-desc { font-size: 14px; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; gap: 14px; }
  .hero-actions .btn-primary, .hero-actions .btn-outline-light { width: 100%; text-align: center; }
  .hero-right { min-height: 300px; }
  .hero-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 50% 50%; height: 300px; }
  .mosaic-tile.tall { grid-row: span 2; }
  .mosaic-label { font-size: 10px; padding: 4px 8px; bottom: 12px; left: 12px; }

  .categories { padding: 56px 24px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
  .cat-name { font-size: 20px; }
  .cat-tag { font-size: 9px; }

  .marquee-strip { padding: 14px 0; }
  .marquee-item { font-size: 10px; padding: 0 28px; }

  .featured { grid-template-columns: 1fr; }
  .featured-img { min-height: 280px; }
  .featured-content { padding: 52px 24px; }
  .featured-content p { font-size: 13px; margin-bottom: 32px; }

  .stats-band { padding: 40px 24px; grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat-num { font-size: 48px; }
  .stat-lbl { font-size: 10px; }

  .products-preview { padding: 56px 24px; }
  .products-grid { grid-template-columns: 1fr; gap: 20px; }

  .testimonials { padding: 64px 24px; }
  .t-quote { font-size: 20px; }
  .t-author { font-size: 11px; }

  .cta-band { padding: 64px 24px; grid-template-columns: 1fr; gap: 32px; }
  .cta-band h2 { font-size: 32px; }
  .cta-band-actions { flex-direction: column; gap: 12px; }
  .cta-band-actions .btn-primary, .cta-band-actions .btn-outline-gold { width: 100%; text-align: center; }

  /* ── COLLECTIONS ── */
  .collections-intro { padding: 48px 24px 36px; }
  .filter-bar { padding: 0 24px 36px; gap: 8px; }
  .filter-btn { padding: 9px 16px; font-size: 11px; }
  .collections-grid { padding: 0 24px 64px; grid-template-columns: 1fr; gap: 20px; }
  .coll-hero { grid-template-columns: 1fr; }
  .coll-hero-img { min-height: 240px; }
  .coll-hero-content { padding: 48px 24px; }

  /* ── TILES ── */
  .tiles-intro { padding: 56px 24px; grid-template-columns: 1fr; gap: 36px; }
  .tiles-types { grid-template-columns: repeat(3,1fr); }
  .tile-type-btn { padding: 18px 12px; }
  .tile-type-name { font-size: 10px; letter-spacing: 1.5px; }
  .tiles-grid { grid-template-columns: 1fr 1fr; }
  .tiles-detail { padding: 56px 24px; }
  .tiles-detail-grid { grid-template-columns: 1fr; gap: 20px; }
  .finishes { grid-template-columns: 1fr; }
  .finish-side { padding: 48px 24px; }
  .marble-banner { grid-template-columns: 1fr; padding: 56px 24px; gap: 36px; }
  .marble-banner-imgs { grid-template-columns: 1fr 1fr; }
  .marble-banner-imgs > div:first-child { margin-top: 0; }

  /* ── BATHROOM ── */
  .bath-intro { padding: 56px 24px; grid-template-columns: 1fr; gap: 36px; }
  .bath-nav-strip { padding: 0 16px; }
  .bath-nav-btn { padding: 18px 14px; font-size: 11px !important; letter-spacing: 1.5px; }
  .bath-section { padding: 56px 24px; }
  .bath-section-grid { grid-template-columns: 1fr; gap: 20px; }
  .bath-hero-product { grid-template-columns: 1fr; }
  .bath-hero-img { min-height: 300px; }
  .bath-hero-content { padding: 48px 24px; }
  .bath-specs-list li { font-size: 13px; gap: 12px; }
  .bath-specs-list li strong { min-width: 90px; }
  .finish-swatches { margin-bottom: 28px; }
  .bath-hero-content .btn-primary,
  .bath-hero-content .btn-outline-light { width: 100%; text-align: center; }

  /* ── HARDWARE ── */
  .hw-intro { padding: 56px 24px; grid-template-columns: 1fr; gap: 36px; }
  .hw-categories-grid { padding: 56px 24px; grid-template-columns: 1fr 1fr; }
  .hw-cat-block { padding: 28px 22px; }
  .hw-cat-title { font-size: 18px; }
  .hw-cat-desc { font-size: 12px; }
  .hw-products { padding: 56px 24px; }
  .hw-grid { grid-template-columns: 1fr; gap: 20px; }
  .hw-featured { grid-template-columns: 1fr; padding: 56px 24px; gap: 36px; }
  .hw-featured-list { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hw-brands { padding: 48px 24px; }
  .brands-strip { flex-wrap: wrap; }
  .brand-item { min-width: 120px; padding: 24px 16px; font-size: 11px; }

  /* ── SHOWROOMS ── */
  .showrooms-intro { padding: 48px 24px 32px; }
  .showrooms-grid { grid-template-columns: 1fr; }
  .showroom-map { height: 240px; }
  .showroom-body { padding: 36px 24px; }
  .showroom-city { font-size: 36px; }
  .showroom-details { grid-template-columns: 1fr; gap: 24px; }
  .showroom-actions { flex-direction: column; gap: 12px; }
  .showroom-actions .btn-dark,
  .showroom-actions .btn-outline-gold { width: 100%; text-align: center; }
  .showroom-experience { grid-template-columns: 1fr; padding: 56px 24px; gap: 36px; }
  .exp-features { grid-template-columns: 1fr 1fr; gap: 16px; }
  .exp-feat { padding: 20px 18px; }
  .showroom-cta { padding: 56px 24px; grid-template-columns: 1fr; }
  .showroom-cta h2 { font-size: 30px; }

  /* ── ABOUT ── */
  .about-story { padding: 56px 24px; grid-template-columns: 1fr; gap: 40px; }
  .about-visual-accent { width: 160px; height: 160px; right: 0; bottom: -16px; padding: 20px; }
  .about-visual-accent .num { font-size: 40px; }
  .about-values { padding: 56px 24px; }
  .values-grid { grid-template-columns: 1fr; gap: 3px; }
  .value-card { padding: 36px 28px; }
  .about-team { padding: 56px 24px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .team-name { font-size: 18px; }
  .about-malawi { padding: 56px 24px; grid-template-columns: 1fr; gap: 40px; }
  .malawi-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .malawi-stat .n { font-size: 36px; }

  /* ── CONTACT ── */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-side { padding: 56px 24px; }
  .contact-info-side { padding: 56px 24px; }
  .contact-form-side h2 { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-locations { gap: 32px; }
  .contact-hours { padding: 20px; }
  .contact-faq { padding: 56px 24px; }
  .faq-grid { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer { padding: 56px 24px 32px; }
}

/* ── TABLET (641px – 1024px) ── */
@media (min-width: 641px) and (max-width: 1024px) {

  .hero-left { padding: 72px 48px; }
  .hero-title { font-size: 52px; }
  .hero-right { min-height: 420px; }

  .categories, .products-preview, .testimonials, .cta-band { padding: 72px 48px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }

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

  .stats-band { padding: 56px 48px; grid-template-columns: repeat(4,1fr); }

  .collections-intro, .filter-bar { padding-left: 48px; padding-right: 48px; }
  .collections-grid { padding: 0 48px 80px; grid-template-columns: repeat(2,1fr); }
  .coll-hero { grid-template-columns: 1fr 1fr; }

  .tiles-intro { padding: 72px 48px; }
  .tiles-detail { padding: 72px 48px; }
  .tiles-detail-grid { grid-template-columns: repeat(2,1fr); }
  .finishes { grid-template-columns: 1fr 1fr; }
  .marble-banner { padding: 72px 48px; grid-template-columns: 1fr 1fr; gap: 48px; }

  .bath-intro { padding: 72px 48px; }
  .bath-section { padding: 72px 48px; }
  .bath-section-grid { grid-template-columns: repeat(2,1fr); }
  .bath-hero-content { padding: 56px 48px; }

  .hw-intro { padding: 72px 48px; }
  .hw-categories-grid { padding: 72px 48px; grid-template-columns: repeat(4,1fr); }
  .hw-products { padding: 72px 48px; }
  .hw-grid { grid-template-columns: repeat(2,1fr); }
  .hw-featured { padding: 72px 48px; }
  .hw-brands { padding: 56px 48px; }

  .showrooms-grid { grid-template-columns: 1fr 1fr; }
  .showroom-body { padding: 40px 36px; }
  .showroom-experience { padding: 72px 48px; grid-template-columns: 1fr 1fr; }
  .exp-features { grid-template-columns: 1fr 1fr; }
  .showroom-cta { padding: 72px 48px; }

  .about-story { padding: 72px 48px; grid-template-columns: 1fr 1fr; gap: 56px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .about-malawi { padding: 72px 48px; grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-side { padding: 64px 48px; }
  .contact-info-side { padding: 64px 40px; }
  .faq-grid { grid-template-columns: 1fr 1fr; }

  .site-footer { padding: 72px 48px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── TOUCH-FRIENDLY IMPROVEMENTS (all mobile) ── */
@media (max-width: 1024px) {

  /* Bigger tap targets */
  .nav-links a, .footer-col a, .product-link { min-height: 44px; display: inline-flex; align-items: center; }
  .btn-primary, .btn-dark, .btn-outline-gold, .btn-outline-light { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; }

  /* Remove hover-only effects on touch */
  .product-card:hover { transform: none; box-shadow: none; }
  .product-card:active { transform: translateY(-2px); box-shadow: var(--shadow); }

  /* Swatches bigger on touch */
  .swatch { width: 42px !important; height: 42px !important; }

  /* Scrollable nav strip on mobile */
  .bath-nav-strip { -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .bath-nav-strip::-webkit-scrollbar { display: none; }

  /* Filter bar wraps nicely */
  .filter-bar { flex-wrap: wrap; }
  .filter-btn { min-height: 44px; }

  /* Tile gallery 2-col on tablet */
  .tiles-grid { grid-template-columns: repeat(2,1fr) !important; }
}


/* ══════════════════════════════════════════════════
   HOMEPAGE — front-page.php styles
   ══════════════════════════════════════════════════ */

.hero {
  height: 100vh; min-height: 680px;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  background: var(--charcoal);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 100px 80px;
  position: relative; overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute; top: -120px; left: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left::after {
  content: '';
  position: absolute; bottom: 70px; right: 70px;
  width: 130px; height: 130px;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 50%;
}

.hero-eyebrow {
  font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px; font-weight: 300;
  display: flex; align-items: center; gap: 14px;
  animation: fadeUp 0.9s ease both; animation-delay: 0.1s;
}
.hero-eyebrow::before { content:''; display:block; width:40px; height:1px; background:var(--gold); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 5.5vw, 82px);
  font-weight: 300; color: var(--warm-white);
  line-height: 1.08; margin-bottom: 30px;
  animation: fadeUp 0.9s ease both; animation-delay: 0.25s;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-desc {
  font-size: 14px; line-height: 2;
  color: rgba(248,245,240,0.55);
  font-weight: 300; max-width: 400px;
  margin-bottom: 52px; letter-spacing: 0.4px;
  animation: fadeUp 0.9s ease both; animation-delay: 0.4s;
}

.hero-actions {
  display: flex; gap: 22px; align-items: center;
  animation: fadeUp 0.9s ease both; animation-delay: 0.55s;
}

.hero-right { position: relative; overflow: hidden; }

.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 60% 40%;
  height: 100%; gap: 3px;
}

.mosaic-tile { position: relative; overflow: hidden; }
.mosaic-tile.tall { grid-row: span 2; }
.mosaic-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s ease; }
.mosaic-tile:hover img { transform: scale(1.07); }
.mosaic-tile::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(26,26,26,0.55) 0%, transparent 100%);
  pointer-events: none;
}
.mosaic-label {
  position: absolute; bottom: 18px; left: 18px;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: #fff;
  font-weight: 400; z-index: 2;
  background: rgba(26,26,26,0.6);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
}

/* ── CATEGORIES ── */
.categories { padding: 110px 80px; background: var(--warm-white); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 3px;
}

.cat-card {
  position: relative; overflow: hidden;
  cursor: pointer; aspect-ratio: 3/4;
  display: block;
}

.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cat-card:hover img { transform: scale(1.07); }

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.3) 55%, rgba(26,26,26,0.05) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 30px;
  transition: background 0.4s;
}
.cat-card:hover .cat-overlay { background: linear-gradient(to top, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.35) 60%, rgba(201,168,76,0.04) 100%); }
.cat-tag { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 300; }
.cat-name { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; color: var(--warm-white); line-height: 1.2; margin-bottom: 14px; }
.cat-cta { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(248,245,240,0.6); transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
.cat-cta::after { content: '→'; }
.cat-card:hover .cat-cta { color: var(--gold); }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--charcoal);
  padding: 18px 0; overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(248,245,240,0.35);
  padding: 0 48px; font-weight: 300; flex-shrink: 0;
}
.marquee-sep { color: var(--gold); opacity: 0.5; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FEATURED ── */
.featured {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.featured-img { position: relative; overflow: hidden; background: #D4C9B5; min-height: 500px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-content {
  background: var(--charcoal);
  padding: 100px 80px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.featured-content p {
  font-size: 14px; line-height: 2;
  color: rgba(248,245,240,0.5);
  font-weight: 300; max-width: 440px;
  margin-bottom: 44px; letter-spacing: 0.4px;
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--gold);
  padding: 64px 80px;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 40px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px; font-weight: 300;
  color: var(--charcoal); line-height: 1;
  margin-bottom: 10px;
}
.stat-lbl {
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(26,26,26,0.6); font-weight: 400;
}

/* ── PRODUCTS PREVIEW ── */
.products-preview { padding: 110px 80px; background: var(--cream); }
.products-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 26px; margin-top: 64px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 110px 80px; background: var(--charcoal);
  text-align: center;
}
.t-slider { max-width: 820px; margin: 0 auto; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeIn 0.6s ease; }
.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300; font-style: italic;
  color: var(--warm-white); line-height: 1.65;
  margin-bottom: 36px;
}
.t-author { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.t-dots { display: flex; justify-content: center; gap: 10px; margin-top: 44px; }
.t-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(248,245,240,0.15); cursor: pointer; transition: background 0.3s; border: none; }
.t-dot.active { background: var(--gold); }

/* ── CTA BAND ── */
.cta-band {
  padding: 110px 80px;
  background: var(--cream);
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
  border-top: 1px solid var(--border);
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300; line-height: 1.2;
  color: var(--charcoal);
}
.cta-band h2 em { font-style: italic; color: var(--slate); }
.cta-band-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── HOMEPAGE RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-left { padding: 80px 40px; min-height: 60vh; }
  .hero-right { min-height: 400px; }
  .hero-mosaic { height: 400px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .featured { grid-template-columns: 1fr; }
  .featured-content { padding: 70px 40px; }
  .stats-band { grid-template-columns: repeat(2,1fr); padding: 56px 40px; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .cta-band { grid-template-columns: 1fr; padding: 70px 40px; }
  .categories, .products-preview, .testimonials { padding: 70px 40px; }
}

@media (max-width: 640px) {
  .hero-left { padding: 64px 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary, .hero-actions .btn-outline-light { width: 100%; text-align: center; }
  .hero-right { min-height: 280px; }
  .hero-mosaic { height: 280px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: column; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .stat-num { font-size: 44px; }
  .categories, .products-preview, .testimonials, .cta-band { padding: 56px 24px; }
}


/* ══════════════════════════════════════════════════
   INNER PAGE BASE STYLES
   Showrooms, Contact, About, Tiles, Bathroom, Hardware
   ══════════════════════════════════════════════════ */

/* ── SHOWROOMS ── */
.showrooms-intro { padding: 80px 80px 56px; background: var(--warm-white); max-width: 780px; }
.showrooms-intro p { font-size: 15px; line-height: 2; color: var(--slate); font-weight: 300; }

.showrooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--stone); }

.showroom-card { background: var(--cream); position: relative; overflow: hidden; }

.showroom-map { height: 340px; position: relative; overflow: hidden; background: var(--charcoal); }
.showroom-map img { width: 100%; height: 100%; object-fit: cover; display: block; }

.showroom-body { padding: 56px 64px; }

.showroom-city { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--charcoal); line-height: 1; margin-bottom: 8px; }
.showroom-city em { font-style: italic; color: var(--gold); }

.showroom-tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--slate); margin-bottom: 40px; font-weight: 300; }

.showroom-details { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 44px; }

.detail-block h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 400; }
.detail-block p, .detail-block address { font-size: 14px; line-height: 1.85; color: var(--slate); font-weight: 300; font-style: normal; }
.detail-block a { color: var(--charcoal); transition: color 0.3s; }
.detail-block a:hover { color: var(--gold); }

.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; font-size: 13px; color: var(--slate); padding: 8px 0; border-bottom: 1px solid var(--border-light); font-weight: 300; }
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child { color: var(--charcoal); font-weight: 400; }

.showroom-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.showroom-experience { padding: 110px 80px; background: var(--charcoal); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.exp-features { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; }
.exp-feat { padding: 28px; border: 1px solid var(--border-light); transition: border-color 0.3s; }
.exp-feat:hover { border-color: var(--gold); }
.exp-feat-icon { font-size: 24px; margin-bottom: 14px; }
.exp-feat-name { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--warm-white); margin-bottom: 6px; font-weight: 400; }
.exp-feat-desc { font-size: 13px; color: rgba(248,245,240,0.38); font-weight: 300; line-height: 1.65; }

.showroom-cta { padding: 100px 80px; background: var(--gold); display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.showroom-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,4vw,52px); font-weight: 300; color: var(--charcoal); }
.showroom-cta h2 em { font-style: italic; color: rgba(26,26,26,0.6); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 80vh; }
.contact-form-side { padding: 90px 80px; background: var(--cream); }
.contact-info-side { padding: 90px 72px; background: var(--charcoal); position: relative; overflow: hidden; }
.contact-info-side::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%); pointer-events: none; }

.contact-form-side h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,3.5vw,50px); font-weight: 300; color: var(--charcoal); margin-bottom: 10px; line-height: 1.15; }
.contact-form-side h2 em { font-style: italic; color: var(--slate); }
.contact-form-side > p { font-size: 14px; color: var(--slate); font-weight: 300; line-height: 1.8; margin-bottom: 48px; }

.form-group { margin-bottom: 26px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; font-weight: 400; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; background: var(--warm-white); border: 1px solid var(--border); font-family: 'Jost', sans-serif; font-size: 14px; color: var(--charcoal); font-weight: 300; outline: none; transition: border-color 0.3s; -webkit-appearance: none; appearance: none; border-radius: 0; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 140px; resize: vertical; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A5A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-submit-btn { width: 100%; padding: 16px; background: var(--charcoal); color: var(--gold-light); font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 400; cursor: pointer; border: none; transition: var(--transition); margin-top: 8px; }
.form-submit-btn:hover { background: var(--gold); color: var(--charcoal); }

.contact-info-side h3 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--warm-white); margin-bottom: 10px; line-height: 1.2; }
.contact-info-side h3 em { font-style: italic; color: var(--gold-light); }
.contact-info-side > p { font-size: 14px; color: rgba(248,245,240,0.45); font-weight: 300; line-height: 1.85; margin-bottom: 48px; }

.contact-locations { display: flex; flex-direction: column; gap: 44px; margin-bottom: 48px; }
.contact-location h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 400; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 11px; }
.contact-detail-icon { font-size: 14px; margin-top: 1px; flex-shrink: 0; opacity: 0.6; }
.contact-detail-text { font-size: 13px; color: rgba(248,245,240,0.45); font-weight: 300; line-height: 1.7; }
.contact-detail-text a { color: rgba(248,245,240,0.55); transition: color 0.3s; }
.contact-detail-text a:hover { color: var(--gold); }

.contact-hours { display: flex; flex-direction: column; gap: 8px; padding: 24px; border: 1px solid var(--border-light); margin-bottom: 36px; }
.contact-hours h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 400; }
.contact-hours-row { display: flex; justify-content: space-between; font-size: 13px; color: rgba(248,245,240,0.4); font-weight: 300; }
.contact-hours-row span:last-child { color: rgba(248,245,240,0.65); }

.contact-socials { display: flex; gap: 12px; }
.contact-social { width: 42px; height: 42px; border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; color: rgba(248,245,240,0.35); font-size: 12px; font-weight: 300; transition: var(--transition); }
.contact-social:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }

.contact-faq { padding: 90px 80px; background: var(--warm-white); }
.faq-item { padding: 36px; border: 1px solid var(--border); cursor: pointer; transition: border-color 0.3s; }
.faq-item:hover { border-color: var(--gold); }
.faq-q { font-size: 15px; font-weight: 400; color: var(--charcoal); margin-bottom: 12px; line-height: 1.4; }
.faq-a { font-size: 13px; color: var(--slate); font-weight: 300; line-height: 1.8; }

/* ── ABOUT ── */
.about-story { padding: 100px 80px; background: var(--warm-white); display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: center; }
.about-story p { font-size: 14px; line-height: 2.1; color: var(--slate); font-weight: 300; margin-bottom: 22px; }
.about-visual { position: relative; }
.about-visual-main { aspect-ratio: 4/5; overflow: hidden; background: var(--stone); }
.about-visual-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-visual-accent { position: absolute; bottom: -30px; right: -30px; width: 200px; height: 200px; border: 1px solid var(--gold); background: var(--cream); display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 28px; text-align: center; }
.about-visual-accent .num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--charcoal); line-height: 1; }
.about-visual-accent .lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 300; margin-top: 6px; }

.about-values { padding: 110px 80px; background: var(--charcoal); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 64px; }
.value-card { background: rgba(255,255,255,0.03); padding: 50px 40px; border: 1px solid var(--border-light); transition: border-color 0.3s; }
.value-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.value-num { font-family: 'Cormorant Garamond', serif; font-size: 60px; font-weight: 300; color: rgba(201,168,76,0.18); line-height: 1; margin-bottom: 20px; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--warm-white); margin-bottom: 14px; }
.value-desc { font-size: 13px; color: rgba(248,245,240,0.4); line-height: 1.85; font-weight: 300; }

.about-team { padding: 110px 80px; background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 64px; }
.team-card { text-align: center; }
.team-img { aspect-ratio: 1; overflow: hidden; background: var(--stone); margin-bottom: 22px; }
.team-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--charcoal); margin-bottom: 5px; }
.team-role { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 300; }

.about-malawi { padding: 110px 80px; background: var(--warm-white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-malawi p { font-size: 14px; line-height: 2.1; color: var(--slate); font-weight: 300; margin-bottom: 22px; }
.malawi-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.malawi-stat { padding: 30px; border: 1px solid var(--border); }
.malawi-stat .n { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--charcoal); line-height: 1; }
.malawi-stat .l { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 300; margin-top: 6px; }

/* ── TILES PAGE ── */
.tiles-intro { padding: 80px 80px 56px; background: var(--warm-white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tiles-intro p { font-size: 14px; line-height: 2; color: var(--slate); font-weight: 300; }
.tiles-types { background: var(--charcoal); display: grid; grid-template-columns: repeat(5,1fr); border-bottom: 1px solid var(--border-light); }
.tile-type-btn { padding: 26px 20px; text-align: center; cursor: pointer; border: none; background: none; border-right: 1px solid var(--border-light); transition: background 0.3s; font-family: 'Jost', sans-serif; }
.tile-type-btn:last-child { border-right: none; }
.tile-type-btn:hover, .tile-type-btn.active { background: rgba(201,168,76,0.1); }
.tile-type-icon { font-size: 22px; margin-bottom: 10px; }
.tile-type-name { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(248,245,240,0.5); font-weight: 300; }
.tile-type-btn.active .tile-type-name, .tile-type-btn:hover .tile-type-name { color: var(--gold); }
.tiles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; padding: 3px; background: var(--stone); }
.tile-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; background: var(--stone); }
.tile-item img, .tile-item svg { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.tile-item:hover img, .tile-item:hover svg { transform: scale(1.08); }
.tile-info-overlay { position: absolute; inset: 0; background: rgba(26,26,26,0); display: flex; align-items: flex-end; padding: 22px; transition: background 0.4s; }
.tile-item:hover .tile-info-overlay { background: rgba(26,26,26,0.82); }
.tile-info-text { opacity: 0; transform: translateY(10px); transition: all 0.4s; }
.tile-item:hover .tile-info-text { opacity: 1; transform: translateY(0); }
.tiles-detail { padding: 100px 80px; background: var(--cream); }
.tiles-detail-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 60px; }
.finishes { display: grid; grid-template-columns: 1fr 1fr; background: var(--charcoal); min-height: 500px; }
.finish-side { padding: 90px 80px; display: flex; flex-direction: column; justify-content: center; }
.finish-side:first-child { border-right: 1px solid var(--border-light); }
.finish-side p { font-size: 14px; line-height: 2; color: rgba(248,245,240,0.5); font-weight: 300; margin-bottom: 30px; max-width: 380px; }
.marble-banner { padding: 100px 80px; background: var(--warm-white); display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.marble-banner-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.marble-banner-imgs > div { aspect-ratio: 3/4; overflow: hidden; }
.marble-banner-imgs > div img { width: 100%; height: 100%; object-fit: cover; display: block; }
.marble-banner-imgs > div:first-child { margin-top: 40px; }

/* ── BATHROOM PAGE ── */
.bath-intro { padding: 90px 80px; background: var(--charcoal); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.bath-intro p { font-size: 14px; line-height: 2; color: rgba(248,245,240,0.5); font-weight: 300; max-width: 460px; margin-bottom: 36px; }
.bath-intro-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.bath-intro-imgs > div { overflow: hidden; }
.bath-intro-imgs > div:first-child { aspect-ratio: 3/4; }
.bath-intro-imgs > div:last-child { aspect-ratio: 3/4; margin-top: 48px; }
.bath-intro-imgs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bath-nav-strip { background: var(--warm-white); padding: 0 80px; display: flex; gap: 0; border-bottom: 1px solid var(--border); overflow-x: auto; }
.bath-nav-btn { padding: 22px 28px; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--slate); font-weight: 300; cursor: pointer; border: none; background: none; white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.3s; font-family: 'Jost', sans-serif; }
.bath-nav-btn:hover, .bath-nav-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.bath-section { padding: 90px 80px; }
.bath-section:nth-child(even) { background: var(--warm-white); }
.bath-section:nth-child(odd) { background: var(--cream); }
.bath-section-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.bath-hero-product { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: var(--charcoal); overflow: hidden; }
.bath-hero-img { overflow: hidden; min-height: 480px; }
.bath-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bath-hero-content { padding: 80px; display: flex; flex-direction: column; justify-content: center; }
.bath-hero-content p { font-size: 14px; line-height: 2; color: rgba(248,245,240,0.5); font-weight: 300; margin-bottom: 36px; max-width: 400px; }
.bath-specs-list { list-style: none; margin-bottom: 36px; }
.bath-specs-list li { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border-light); font-size: 13px; }
.bath-specs-list li strong { color: var(--gold); font-weight: 400; min-width: 100px; letter-spacing: 0.5px; }
.bath-specs-list li span { color: rgba(248,245,240,0.55); font-weight: 300; }

/* ── HARDWARE PAGE ── */
.hw-intro { padding: 90px 80px; background: var(--charcoal); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hw-intro p { font-size: 14px; line-height: 2; color: rgba(248,245,240,0.5); font-weight: 300; max-width: 460px; margin-bottom: 36px; }
.hw-categories-grid { padding: 90px 80px; background: var(--warm-white); display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.hw-cat-block { background: var(--charcoal); padding: 44px 36px; border: 1px solid var(--border-light); cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; text-decoration: none; display: block; }
.hw-cat-block:hover { border-color: var(--gold); background: #222; }
.hw-cat-block::after { content: '→'; position: absolute; bottom: 28px; right: 28px; color: var(--gold); opacity: 0; transition: opacity 0.3s; font-size: 18px; }
.hw-cat-block:hover::after { opacity: 1; }
.hw-cat-icon { font-size: 32px; margin-bottom: 20px; }
.hw-cat-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--warm-white); margin-bottom: 10px; }
.hw-cat-desc { font-size: 12px; color: rgba(248,245,240,0.4); line-height: 1.7; font-weight: 300; }
.hw-products { padding: 90px 80px; background: var(--cream); }
.hw-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.hw-featured { background: var(--charcoal); padding: 90px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hw-featured-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.hw-feat-item { background: rgba(255,255,255,0.04); border: 1px solid var(--border-light); padding: 24px; transition: border-color 0.3s; }
.hw-feat-item:hover { border-color: var(--gold); }
.hw-feat-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: rgba(201,168,76,0.3); margin-bottom: 8px; }
.hw-feat-name { font-size: 13px; color: rgba(248,245,240,0.7); font-weight: 400; margin-bottom: 4px; }
.hw-feat-detail { font-size: 12px; color: rgba(248,245,240,0.35); font-weight: 300; }
.hw-brands { padding: 70px 80px; background: var(--warm-white); }
.brands-strip { display: flex; gap: 0; flex-wrap: wrap; border: 1px solid var(--border); }
.brand-item { flex: 1; min-width: 140px; padding: 34px 16px; text-align: center; border-right: 1px solid var(--border); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(26,26,26,0.35); font-weight: 300; transition: color 0.3s, background 0.3s; }
.brand-item:last-child { border-right: none; }
.brand-item:hover { color: var(--gold); background: rgba(201,168,76,0.03); }

/* ── INNER PAGE RESPONSIVE ── */
@media (max-width: 1100px) {
  .showrooms-intro { padding: 60px 40px 40px; }
  .showrooms-grid { grid-template-columns: 1fr; }
  .showroom-body { padding: 44px 40px; }
  .showroom-experience { grid-template-columns: 1fr; padding: 70px 40px; gap: 48px; }
  .showroom-cta { grid-template-columns: 1fr; padding: 70px 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-side { padding: 70px 40px; }
  .contact-info-side { padding: 70px 40px; }
  .contact-faq { padding: 70px 40px; }
  .about-story { grid-template-columns: 1fr; padding: 70px 40px; gap: 48px; }
  .about-values { padding: 70px 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-team { padding: 70px 40px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .about-malawi { grid-template-columns: 1fr; padding: 70px 40px; gap: 40px; }
  .tiles-intro { grid-template-columns: 1fr; padding: 60px 40px; }
  .tiles-detail { padding: 70px 40px; }
  .tiles-detail-grid { grid-template-columns: repeat(2,1fr); }
  .finishes { grid-template-columns: 1fr; }
  .finish-side { padding: 56px 40px; }
  .marble-banner { grid-template-columns: 1fr; padding: 70px 40px; }
  .bath-intro { grid-template-columns: 1fr; padding: 60px 40px; }
  .bath-section { padding: 70px 40px; }
  .bath-section-grid { grid-template-columns: repeat(2,1fr); }
  .bath-hero-product { grid-template-columns: 1fr; }
  .bath-hero-content { padding: 56px 40px; }
  .hw-intro { grid-template-columns: 1fr; padding: 60px 40px; }
  .hw-categories-grid { grid-template-columns: repeat(2,1fr); padding: 60px 40px; }
  .hw-products { padding: 70px 40px; }
  .hw-grid { grid-template-columns: repeat(2,1fr); }
  .hw-featured { grid-template-columns: 1fr; padding: 70px 40px; }
  .hw-brands { padding: 56px 40px; }
}

@media (max-width: 640px) {
  .showrooms-intro { padding: 48px 24px 32px; }
  .showroom-body { padding: 36px 24px; }
  .showroom-details { grid-template-columns: 1fr; gap: 24px; }
  .showroom-actions { flex-direction: column; }
  .showroom-actions .btn-dark, .showroom-actions .btn-outline-gold { width: 100%; text-align: center; }
  .showroom-experience { padding: 56px 24px; }
  .exp-features { grid-template-columns: 1fr; }
  .showroom-cta { padding: 56px 24px; }
  .contact-form-side { padding: 56px 24px; }
  .contact-info-side { padding: 56px 24px; }
  .contact-faq { padding: 56px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .about-story { padding: 56px 24px; }
  .about-visual-accent { right: 0; bottom: -16px; width: 160px; height: 160px; padding: 20px; }
  .about-values { padding: 56px 24px; }
  .about-team { padding: 56px 24px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-malawi { padding: 56px 24px; }
  .malawi-stats { grid-template-columns: 1fr 1fr; }
  .tiles-intro { padding: 48px 24px; }
  .tiles-types { grid-template-columns: repeat(3,1fr); }
  .tiles-grid { grid-template-columns: 1fr 1fr; }
  .tiles-detail { padding: 56px 24px; }
  .tiles-detail-grid { grid-template-columns: 1fr; }
  .finish-side { padding: 48px 24px; }
  .marble-banner { padding: 56px 24px; }
  .marble-banner-imgs > div:first-child { margin-top: 0; }
  .bath-intro { padding: 48px 24px; }
  .bath-section { padding: 56px 24px; }
  .bath-section-grid { grid-template-columns: 1fr; }
  .bath-hero-content { padding: 48px 24px; }
  .hw-intro { padding: 48px 24px; }
  .hw-categories-grid { grid-template-columns: 1fr 1fr; padding: 48px 24px; }
  .hw-products { padding: 56px 24px; }
  .hw-grid { grid-template-columns: 1fr; }
  .hw-featured { padding: 56px 24px; }
  .hw-featured-list { grid-template-columns: 1fr; }
  .hw-brands { padding: 48px 24px; }
}
