/* ==========================================================================
   SRI LAXMI SAW MILL & TIMBER DEPOT — MASTER STYLESHEET
   ==========================================================================
   Structure of this file:
   1. Design tokens (colours, type, spacing) — edit these to re-theme the site
   2. Reset & base styles
   3. Reusable components (buttons, section headers, "growth ring" divider)
   4. Header & navigation
   5. Hero slider
   6. Products grid + gallery + lightbox
   7. About / Proprietor pages
   8. Locate Us / Contact Us
   9. Footer
   10. Floating WhatsApp + Scroll-to-top
   11. Animations
   12. Responsive breakpoints
   ========================================================================== */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS
   Change these values to update colours/fonts across the ENTIRE website.
------------------------------------------------------------------------- */
:root {
  /* Wood-tone palette, drawn from teak grain rather than a generic template */
  --color-espresso: #2b1c13;      /* deep walnut — header, dark sections */
  --color-espresso-2: #201509;    /* darker shade for gradients/overlays */
  --color-teak: #a85c2a;          /* primary accent — teak amber */
  --color-teak-dark: #8b4a21;     /* hover state for teak accent */
  --color-teak-light: #c9895a;    /* lighter teak, used on dark backgrounds */
  --color-gold: #c89b4c;          /* fine-line accent, borders, rings */
  --color-forest: #2e3d2c;        /* secondary accent — trust, WhatsApp green tie-in */
  --color-ivory: #f7f1e6;         /* main background */
  --color-ivory-soft: #fbf8f2;    /* card background */
  --color-charcoal: #241a10;      /* primary text */
  --color-charcoal-soft: #574434; /* secondary text */
  --color-line: rgba(43, 28, 19, 0.12); /* hairline borders */

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1280px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-soft: 0 10px 30px rgba(43, 28, 19, 0.10);
  --shadow-strong: 0 20px 50px rgba(20, 13, 8, 0.28);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  /* ====== EDIT ME: WhatsApp number & default quotation message ====== */
  --whatsapp-number: "919676586890";
}

/* -------------------------------------------------------------------------
   2. RESET & BASE STYLES
------------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-ivory);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-espresso);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* Visible keyboard focus for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-teak);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------------------------------------------------------
   3. REUSABLE COMPONENTS
------------------------------------------------------------------------- */

/* Section heading with eyebrow + "growth ring" ornament (signature motif) */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-teak-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-head .eyebrow .ring {
  width: 16px; height: 16px;
  border: 1.5px solid var(--color-teak-dark);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.section-head .eyebrow .ring::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--color-teak-dark);
  border-radius: 50%;
  opacity: 0.6;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--color-charcoal-soft);
  font-size: 1.02rem;
}

/* Growth-ring divider — echoes a sawn log cross-section between sections */
.ring-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 0;
  color: var(--color-gold);
}
.ring-divider::before, .ring-divider::after {
  content: "";
  height: 1px;
  width: 60px;
  background: var(--color-line);
}
.ring-divider svg { width: 26px; height: 26px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-teak);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--color-teak-dark); transform: translateY(-2px); box-shadow: var(--shadow-strong); }

.btn-outline {
  background: transparent;
  color: var(--color-ivory);
  border: 1.5px solid rgba(247, 241, 230, 0.55);
}
.btn-outline:hover { background: rgba(247, 241, 230, 0.12); border-color: var(--color-ivory); transform: translateY(-2px); }

.btn-dark {
  background: var(--color-espresso);
  color: var(--color-ivory);
}
.btn-dark:hover { background: var(--color-espresso-2); transform: translateY(-2px); }

/* Button ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(2.8); opacity: 0; }
}

/* Breadcrumb */
.breadcrumb {
  background: var(--color-ivory-soft);
  border-bottom: 1px solid var(--color-line);
  padding: 16px 0;
  font-size: 0.88rem;
  color: var(--color-charcoal-soft);
}
.breadcrumb a { color: var(--color-teak-dark); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; opacity: 0.6; }

/* Fade/slide-up reveal animation, triggered via JS on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------------------
   4. HEADER & NAVIGATION
------------------------------------------------------------------------- */
.top-bar {
  background: var(--color-espresso);
  color: rgba(247, 241, 230, 0.85);
  font-size: 0.82rem;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.top-bar .top-left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.top-bar a { transition: color var(--transition); }
.top-bar .top-left a:hover { color: var(--color-teak-light); }
.top-bar .top-left span { display: inline-flex; align-items: center; gap: 6px; }
.top-bar .top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-bar .top-right a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(247, 241, 230, 0.3);
  border-radius: 50%;
  transition: all var(--transition);
}
.top-bar .top-right a:hover {
  background: var(--color-teak);
  border-color: var(--color-teak);
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247, 241, 230, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-line);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-soft); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand .brand-mark {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-teak);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
/* Real logo image (assets/images/brand/logo.png) — replaces the text badge above */
.brand .brand-logo {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}
/* On the dark footer, give the logo a light backing chip so it stays legible
   regardless of the logo's own colours */
.footer-brand .brand-logo-wrap {
  background: var(--color-ivory);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-brand .brand-logo-wrap .brand-logo { height: 46px; }
.brand .brand-text h1 {
  font-size: 1.28rem;
  letter-spacing: 0.01em;
}
.brand .brand-text .tagline {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teak-dark);
  font-weight: 600;
}

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-charcoal);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  background: var(--color-teak);
  transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { color: var(--color-teak-dark); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 12px 24px; font-size: 0.86rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 600;
}
.nav-toggle span {
  height: 2px;
  background: var(--color-espresso);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   5. HERO SLIDER
------------------------------------------------------------------------- */
.hero-slider {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--color-espresso);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero-slide.active img { transform: scale(1); }

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32,21,9,0.55) 0%, rgba(32,21,9,0.30) 45%, rgba(32,21,9,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  padding: 0 8vw;
  max-width: 900px;
}
.hero-content .eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-teak-light);
  margin-bottom: 18px;
}
.hero-content h2 {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  color: #fff;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(247, 241, 230, 0.16);
  border: 1px solid rgba(247, 241, 230, 0.4);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.hero-nav:hover { background: var(--color-teak); border-color: var(--color-teak); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-indicators {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 10px;
}
.hero-indicators button {
  width: 34px; height: 4px;
  background: rgba(247,241,230,0.4);
  border-radius: 2px;
  transition: all var(--transition);
}
.hero-indicators button.active { background: var(--color-teak-light); width: 46px; }

/* Intro strip below hero */
.intro-strip {
  background: var(--color-ivory-soft);
  border-bottom: 1px solid var(--color-line);
  padding: 22px 0;
}
.intro-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.intro-strip .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-charcoal-soft);
}
.intro-strip .item svg { width: 20px; height: 20px; color: var(--color-teak); flex-shrink: 0; }

/* -------------------------------------------------------------------------
   6. PRODUCTS GRID + GALLERY + LIGHTBOX
------------------------------------------------------------------------- */
.section { padding: 100px 0; }
.section.alt { background: var(--color-ivory-soft); }
.section.dark {
  background: linear-gradient(160deg, var(--color-espresso) 0%, var(--color-espresso-2) 100%);
  color: var(--color-ivory);
}
.section.dark h2, .section.dark h3 { color: var(--color-ivory); }
.section.dark .section-head p { color: rgba(247,241,230,0.72); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 340px;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.product-card img {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover img { transform: scale(1.08); }
.product-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(32,21,9,0.85) 0%, rgba(32,21,9,0.10) 55%, transparent 100%);
  z-index: 1;
}
.product-card-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px;
  color: #fff;
}
.product-card-content h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.product-card-content p { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin-bottom: 14px; }
.product-card-content .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-teak-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-card-content .arrow-link svg {
  width: 16px; height: 16px;
  transition: transform var(--transition);
}
.product-card:hover .arrow-link svg { transform: translateX(6px); }

/* Photo gallery (B.T Full Colour Indian Teak Wood - Tiger Grains) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .zoom-badge {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(32,21,9,0.55);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}
.gallery-item:hover .zoom-badge { opacity: 1; transform: scale(1); }
.gallery-item .zoom-badge svg { width: 16px; height: 16px; }

.gallery-more {
  text-align: center;
  margin-top: 44px;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(15, 10, 6, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-inner {
  position: relative;
  max-width: 90vw; max-height: 86vh;
}
.lightbox-inner img {
  max-width: 90vw; max-height: 86vh;
  width: auto; height: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.94);
  opacity: 0;
  transition: all 0.35s ease;
}
.lightbox.open .lightbox-inner img { transform: scale(1); opacity: 1; }
.lightbox-caption {
  text-align: center;
  color: rgba(247,241,230,0.85);
  margin-top: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(247,241,230,0.12);
  border: 1px solid rgba(247,241,230,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--color-teak); border-color: var(--color-teak); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* -------------------------------------------------------------------------
   7. ABOUT / PROPRIETOR
------------------------------------------------------------------------- */
.about-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}
.about-text {
  max-width: 820px;
  margin: 50px auto 0;
}
.about-text p { margin-bottom: 20px; color: var(--color-charcoal-soft); font-size: 1.03rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-text .lede {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-espresso);
  font-style: italic;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 60px 0;
}
.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--color-ivory-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}
.stat-card .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-teak);
  margin-bottom: 6px;
}
.stat-card .label {
  font-size: 0.86rem;
  color: var(--color-charcoal-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proprietor-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
.proprietor-photo-wrap {
  position: relative;
}
.proprietor-photo-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}
.proprietor-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.proprietor-text .role {
  color: var(--color-teak-dark);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: block;
}
.proprietor-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.proprietor-text p { color: var(--color-charcoal-soft); margin-bottom: 18px; }
.proprietor-contact {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* -------------------------------------------------------------------------
   8. LOCATE US / CONTACT US
------------------------------------------------------------------------- */
.map-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--color-line);
}
.map-embed-wrap iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-card-list { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--color-ivory-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--color-teak); transform: translateX(6px); box-shadow: var(--shadow-soft); }
.contact-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-teak);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .icon-wrap svg { width: 22px; height: 22px; }
.contact-card h4 { font-size: 1.02rem; margin-bottom: 4px; }
.contact-card p, .contact-card a.value { color: var(--color-charcoal-soft); font-size: 0.94rem; }
.contact-card a.value:hover { color: var(--color-teak-dark); }

.quote-panel {
  background: linear-gradient(160deg, var(--color-espresso) 0%, var(--color-espresso-2) 100%);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: var(--color-ivory);
}
.quote-panel h3 { color: var(--color-ivory); font-size: 1.6rem; margin-bottom: 12px; }
.quote-panel p { color: rgba(247,241,230,0.75); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(247,241,230,0.85);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(247,241,230,0.25);
  background: rgba(247,241,230,0.07);
  color: var(--color-ivory);
  font-family: var(--font-body);
  font-size: 0.94rem;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(247,241,230,0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-teak-light);
  background: rgba(247,241,230,0.12);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.quote-panel .btn-primary { width: 100%; justify-content: center; }

/* -------------------------------------------------------------------------
   9. FOOTER
------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-espresso);
  color: rgba(247, 241, 230, 0.72);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247,241,230,0.12);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-text h1, .footer-brand .brand-text .tagline { color: var(--color-ivory); }
.footer-brand .brand-text .tagline { color: var(--color-teak-light); }
.footer-brand p { color: rgba(247,241,230,0.6); font-size: 0.92rem; max-width: 340px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(247,241,230,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--color-teak); border-color: var(--color-teak); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 {
  color: var(--color-ivory);
  font-size: 1rem;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 0.92rem; transition: color var(--transition), padding-left var(--transition); }
.footer-col a:hover { color: var(--color-teak-light); padding-left: 4px; }

.footer-col address { font-style: normal; font-size: 0.92rem; margin-bottom: 16px; line-height: 1.8; }
.footer-col .foot-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.92rem; align-items: flex-start; }
.footer-col .foot-contact-item svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; color: var(--color-teak-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(247,241,230,0.5);
}

/* -------------------------------------------------------------------------
   10. FLOATING WHATSAPP + SCROLL-TO-TOP
------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp-float .wa-tooltip {
  background: var(--color-espresso);
  color: var(--color-ivory);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.whatsapp-float .wa-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.4s infinite;
  flex-shrink: 0;
}
.whatsapp-float .wa-btn svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 8px 24px rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 24px rgba(37,211,102,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(37,211,102,0.4); }
}

.scroll-top {
  position: fixed;
  right: 26px; bottom: 100px;
  z-index: 890;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-espresso);
  color: var(--color-ivory);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--color-teak); }
.scroll-top svg { width: 18px; height: 18px; }

/* Only show WhatsApp tooltip text on larger screens */
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; flex-direction: row-reverse; }
  .whatsapp-float .wa-btn { width: 54px; height: 54px; }
  .scroll-top { right: 16px; bottom: 84px; width: 42px; height: 42px; }
}

/* -------------------------------------------------------------------------
   11. PAGE BANNER (used on interior pages instead of full hero slider)
------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  padding: 90px 0 70px;
  background: linear-gradient(160deg, var(--color-espresso) 0%, var(--color-espresso-2) 100%);
  color: var(--color-ivory);
  text-align: center;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border: 1px solid rgba(200,155,76,0.18);
  border-radius: 50%;
  top: -220px; right: -160px;
}
.page-banner::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border: 1px solid rgba(200,155,76,0.14);
  border-radius: 50%;
  bottom: -180px; left: -120px;
}
.page-banner .eyebrow {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-teak-light);
  margin-bottom: 14px;
}
.page-banner h1 { color: var(--color-ivory); font-size: clamp(2rem, 4.4vw, 3rem); }
.page-banner p { color: rgba(247,241,230,0.72); max-width: 560px; margin: 14px auto 0; }

/* -------------------------------------------------------------------------
   12. RESPONSIVE BREAKPOINTS
------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .top-bar .top-left span:nth-child(3) { display: none; } /* hide address on top bar for tablet */
  .main-nav { display: none; }
  .header-cta .btn span.long { display: none; }
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--color-ivory);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 550;
    padding: 100px 34px 34px;
  }
  .main-nav.open { display: block; transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 26px; }

  .contact-grid { grid-template-columns: 1fr; }
  .proprietor-block { grid-template-columns: 1fr; }
  .proprietor-photo-wrap { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-row { grid-template-columns: 1fr; }
  .hero-slider { height: 78vh; min-height: 480px; }
  .hero-content { padding: 0 6vw; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-bar .top-left span:nth-child(2) { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-nav { width: 40px; height: 40px; }
  .hero-prev { left: 10px; } .hero-next { right: 10px; }
}
