/* =============================================================
   REBEL WALLS & FLOORS — Luxury Dark Design System
   ============================================================= */

:root {
  /* Palette — deep forest green + gold (brand identity) */
  --bg:        #091510;
  --bg-2:      #0d1e15;
  --bg-3:      #143026;
  --surface:   rgba(11, 20, 15, 0.62);
  --surface-2: rgba(11, 20, 15, 0.74);

  --gold:        #c7a45c;
  --gold-bright: #e6cd93;
  --gold-deep:   #9c7c3c;
  --green:       #7fbf6a;
  --green-deep:  #2f5d2a;

  --ivory:  #f3efe6;
  --muted:  rgba(243, 239, 230, 0.62);
  --faint:  rgba(243, 239, 230, 0.40);
  --line:   rgba(243, 239, 230, 0.10);
  --line-2: rgba(199, 164, 92, 0.30);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--ivory);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.005em;
  color: var(--ivory);
}

h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow.center { justify-content: center; }

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 44ch;
}

.serif-accent { font-style: italic; color: var(--gold-bright); }
.muted { color: var(--muted); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Layout ---- */
.container   { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.container-sm{ max-width: 880px; margin: 0 auto; padding: 0 2rem; }
.container-xs{ max-width: 680px; margin: 0 auto; padding: 0 2rem; }

.section { padding: 7rem 0; }
.section-tight { padding: 4.5rem 0; }
.section-head { max-width: 620px; margin: 0 auto 3.5rem; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--muted); margin-top: 1rem; }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-lg { padding: 1.05rem 2.2rem; font-size: 0.98rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1409;
  box-shadow: 0 10px 30px -12px rgba(199, 164, 92, 0.6);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(199, 164, 92, 0.75);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-3px);
}

.btn-whatsapp { background: #25d366; color: #04360f; }
.btn-whatsapp:hover { background: #2ee06f; transform: translateY(-3px); box-shadow: 0 16px 34px -14px rgba(37,211,102,0.7); }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(9, 21, 16, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 2rem;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ivory);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-brand .brand-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ivory); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 0.62rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
}
.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--ivory);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 5.5rem 0;
  /* Layer order (bottom → top):
     [1] Room photo — bright wooden floor + plants
     [2] Dark gradient — preserves text readability (green-tinted)
     [3] Gold radial accent — brand warmth
  */
  background:
    radial-gradient(ellipse 80% 60% at 75% 30%, rgba(199,164,92,0.12), transparent 60%),
    linear-gradient(160deg, rgba(9,21,16,0.32) 0%, rgba(13,36,23,0.24) 55%, rgba(16,48,25,0.16) 100%),
    url('../images/hero-bg.jpg?v=1') center / cover no-repeat;
  background-color: #091510; /* fallback while image loads */
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(118deg, rgba(199,164,92,0.035) 0 1px, transparent 1px 46px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.04;
  margin-bottom: 1.6rem;
}
.hero-copy .lead { margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.hero-tag {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
}

.hero-figure { position: relative; }
.hero-figure .photo-slot { aspect-ratio: 4/5; }
.float-badge {
  position: absolute;
  left: -1.5rem;
  bottom: 2rem;
  background: rgba(9, 21, 16, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 1rem 1.4rem;
  text-align: center;
}
.float-badge .num { font-family: var(--font-display); font-size: 2rem; color: var(--gold-bright); line-height: 1; }
.float-badge .lbl { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.35rem; }

/* Stat strip */
.stat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.stat-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: 2.6rem 1.5rem;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
.stat-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-bright); line-height: 1; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 0.6rem; }

/* ---- Photo slot (image placeholder) ---- */
.photo-slot {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #241d14, #14100c);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(112deg, rgba(199,164,92,0.06) 0 2px, transparent 2px 26px);
}
.photo-slot .slot-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(199,164,92,0.25);
  pointer-events: none;
}
.photo-slot .slot-label {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem;
  color: var(--faint);
}
.photo-slot .slot-label .ico { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; opacity: 0.8; }
.photo-slot .slot-label .cap { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--muted); }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Grids ---- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ---- Luxury cards ---- */
.lux-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.lux-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  background: var(--surface-2);
}
.lux-card .ico {
  font-size: 1.6rem;
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  margin-bottom: 1.4rem;
  color: var(--gold-bright);
}
.lux-card .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  margin-bottom: 1.4rem;
}
.lux-card h3 { margin-bottom: 0.6rem; }
.lux-card p { color: var(--muted); font-size: 0.95rem; }
.lux-card.accent { border-left: 2px solid var(--gold); }
.lux-card.accent-green { border-left: 2px solid var(--green); }

/* ---- Feature list ---- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.7rem 1.5rem;
  list-style: none;
  margin: 1.6rem 0;
}
.feature {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.95rem;
}
.feature::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ---- Product blocks ---- */
.pill-nav { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 3.5rem; }
.pill {
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.pill:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(199,164,92,0.07); }

.product-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3rem;
  margin-bottom: 2rem;
  scroll-margin-top: 100px;
  transition: border-color 0.4s var(--ease);
}
.product-block:hover { border-color: var(--line-2); }
.product-block > h3 { font-size: 2rem; font-weight: 500; margin-bottom: 0.4rem; }
.product-block .tagline { color: var(--gold-bright); font-weight: 400; font-style: italic; font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 1rem; }
.product-block h4 { margin: 1.6rem 0 0.6rem; color: var(--gold); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-body); }
.product-block p { color: var(--muted); }

/* ---- Specs table ---- */
.specs { width: 100%; border-collapse: collapse; margin: 1.2rem 0; }
.specs th, .specs td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.92rem; vertical-align: top; }
.specs th { width: 34%; color: var(--gold-bright); font-weight: 500; font-family: var(--font-body); }
.specs td { color: var(--muted); }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 12rem 0 5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(199,164,92,0.12), transparent 65%),
    linear-gradient(160deg, rgba(9,21,16,0.42) 0%, rgba(13,36,23,0.34) 100%),
    url('../images/hero-bg.jpg?v=1') center / cover no-repeat;
  background-color: #091510; /* fallback */
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(118deg, rgba(199,164,92,0.03) 0 1px, transparent 1px 46px);
  pointer-events: none;
}
.page-hero .container-sm { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 500; margin-bottom: 1rem; }
.page-hero p { color: var(--muted); font-size: 1.1rem; font-weight: 300; }

/* ---- Alt sections ---- */
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---- Green promise ---- */
.green {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(127,191,106,0.12), transparent 60%),
    linear-gradient(160deg, #0c0e0a, #101a0e);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.green-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: center; }
.green .eyebrow { color: var(--green); }
.green .eyebrow::before { background: var(--green); }
.green-steps { display: grid; gap: 1rem; margin-top: 2rem; }
.green-step { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
.green-step .step-num { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--green); color: var(--green); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; }
.green-step h4 { margin-bottom: 0.2rem; }
.green-step p { color: var(--muted); font-size: 0.9rem; }
.green-visual { text-align: center; }
.green-visual .emblem { font-size: 6rem; margin-bottom: 1rem; }
.green-visual p { font-family: var(--font-display); font-size: 1.5rem; color: var(--ivory); margin-bottom: 1.6rem; line-height: 1.3; }

/* ---- FAQ ---- */
.faq-group { margin-bottom: 3rem; }
.faq-group > .eyebrow { margin-bottom: 1.4rem; }
.faq-list { display: grid; gap: 0.7rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); transition: border-color 0.3s var(--ease); }
.faq-item.open { border-color: var(--line-2); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 1.6rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
  text-align: left; color: var(--ivory);
  transition: color 0.25s var(--ease);
}
.faq-question:hover { color: var(--gold-bright); }
.faq-question .arrow { flex-shrink: 0; color: var(--gold); font-size: 0.7rem; transition: transform 0.35s var(--ease); }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-item.open .faq-answer { max-height: 900px; }
.faq-answer-inner { padding: 0 1.6rem 1.5rem; color: var(--muted); font-size: 0.95rem; }
.faq-answer-inner strong { color: var(--ivory); font-weight: 600; }
.faq-answer-inner em { color: var(--gold-bright); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.info-card { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1rem; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.info-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.info-ico { flex-shrink: 0; width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.info-card h4 { margin-bottom: 0.3rem; }
.info-card p { color: var(--muted); font-size: 0.93rem; }
.info-card a { color: var(--gold-bright); text-decoration: none; font-weight: 500; }
.info-card a:hover { text-decoration: underline; }

.socials { display: flex; gap: 0.8rem; margin: 1.5rem 0; }
.social { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; text-decoration: none; transition: all 0.3s var(--ease); }
.social:hover { border-color: var(--gold); background: rgba(199,164,92,0.1); transform: translateY(-3px); }

.brands { margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.brands h4 { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.brand-tag { border: 1px solid var(--line); border-radius: 50px; padding: 0.4rem 1rem; font-size: 0.82rem; color: var(--muted); }

.map-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 1.8rem; }
.map-wrap iframe { width: 100%; height: 320px; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }

/* ---- Forms ---- */
.form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--faint); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,164,92,0.12);
}
.form-group select option { background: var(--bg-2); color: var(--ivory); }

/* ---- Gallery ---- */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 3rem; }
.filter-btn { padding: 0.55rem 1.25rem; border: 1px solid var(--line); border-radius: 50px; background: none; color: var(--muted); font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.03em; cursor: pointer; transition: all 0.25s var(--ease); }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold-bright); background: rgba(199,164,92,0.07); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.gallery-card { transition: transform 0.4s var(--ease); }
.gallery-card:hover { transform: translateY(-5px); }
.gallery-card .photo-slot { aspect-ratio: 4/3; }
.gallery-cap { margin-top: 0.9rem; font-size: 0.9rem; color: var(--muted); }
.gallery-cap strong { color: var(--ivory); font-weight: 500; display: block; font-family: var(--font-display); font-size: 1.05rem; }

/* ---- CTA band ---- */
.cta-band {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(199,164,92,0.16), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.cta-band h2 { font-weight: 500; margin-bottom: 1rem; }
.cta-band p { color: var(--muted); margin-bottom: 2.4rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: 5rem 0 2.5rem; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 3rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory); margin-bottom: 1rem; }
.footer-brand span { color: var(--gold); }
.footer p { color: var(--muted); font-size: 0.9rem; }
.footer h4 { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: grid; gap: 0.7rem; }
.footer-links a, .footer-links li { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.25s var(--ease); }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom { max-width: var(--maxw); margin: 3.5rem auto 0; padding: 1.8rem 2rem 0; border-top: 1px solid var(--line); text-align: center; color: var(--faint); font-size: 0.82rem; }

/* ---- WhatsApp float ---- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 998;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; text-decoration: none;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,0.6);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 14px 36px -6px rgba(37,211,102,0.75); }
.whatsapp-tooltip { position: absolute; right: 70px; white-space: nowrap; background: var(--bg-3); color: var(--ivory); border: 1px solid var(--line); padding: 0.5rem 0.9rem; border-radius: 6px; font-size: 0.8rem; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---- Scroll reveal ---- */
.animate-on-scroll { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.animate-on-scroll.in { opacity: 1; transform: none; }
.animate-on-scroll.in > *:nth-child(2) { transition-delay: 0.05s; }

/* Hero entrance */
.hero-copy > *, .hero-figure { animation: rise 0.9s var(--ease) both; }
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.19s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.26s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.33s; }
.hero-figure { animation-delay: 0.3s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-figure { max-width: 460px; }
  .float-badge { left: auto; right: 1rem; }
  .green-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(9, 21, 16, 0.98);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.1rem; }
  .menu-toggle { display: flex; }
  .section { padding: 5rem 0; }
  .product-block { padding: 2rem 1.5rem; }
}

@media (max-width: 560px) {
  .container, .container-sm, .container-xs { padding: 0 1.3rem; }
  .grid-2, .grid-3, .grid-4, .grid-auto { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-items: center; }
  .hero-actions .btn { flex: 1; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-on-scroll { opacity: 1; transform: none; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* =============================================================
   Nav right group + Free Consultation button (now a <button>)
   ============================================================= */
.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1409;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 22px -10px rgba(199, 164, 92, 0.55);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(199, 164, 92, 0.72); filter: brightness(1.04); }

/* =============================================================
   Product accordion (home page)
   ============================================================= */
.prod-acc { display: grid; gap: 0.9rem; max-width: 980px; margin: 0 auto; }
.prod-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  scroll-margin-top: 100px;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.prod-item:hover { border-color: var(--line-2); }
.prod-item.open { border-color: var(--line-2); background: var(--surface-2); }
.prod-head {
  width: 100%;
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.35rem 1.7rem;
  background: none; border: none; cursor: pointer; text-align: left;
  color: var(--ivory);
}
.prod-ico {
  flex-shrink: 0;
  font-size: 1.45rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2); border-radius: 50%;
}
.prod-titles { display: flex; flex-direction: column; gap: 0.28rem; flex: 1; min-width: 0; }
.prod-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; line-height: 1.15; transition: color 0.25s var(--ease); }
.prod-tag { font-size: 0.88rem; color: var(--muted); font-weight: 300; }
.prod-head:hover .prod-name { color: var(--gold-bright); }
.prod-arrow { flex-shrink: 0; color: var(--gold); font-size: 0.9rem; transition: transform 0.35s var(--ease); }
.prod-item.open .prod-arrow { transform: rotate(180deg); }

.prod-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.prod-item.open .prod-panel { grid-template-rows: 1fr; }
.prod-panel-inner { overflow: hidden; padding: 0 1.7rem; }
.prod-panel-inner::after { content: ''; display: block; height: 1.7rem; }
.prod-panel-inner .feature-list { margin-top: 0.4rem; }

/* =============================================================
   Free Consultation modal (Google Form overlay)
   ============================================================= */
.consult-modal { position: fixed; inset: 0; z-index: 2000; display: none; }
.consult-modal.open { display: block; }
.consult-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 12, 9, 0.82);
  backdrop-filter: blur(6px);
  animation: consultFade 0.3s var(--ease);
}
.consult-dialog {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, calc(100vw - 2rem));
  height: min(90vh, 880px);
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  box-shadow: 0 30px 90px -24px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  animation: consultRise 0.4s var(--ease);
}
.consult-close {
  position: absolute; top: 0.55rem; right: 0.65rem; z-index: 2;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(9, 21, 16, 0.72);
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--ivory); font-size: 1.6rem; line-height: 1; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.35s var(--ease);
}
.consult-close:hover { background: var(--gold); color: #1a1409; transform: rotate(90deg); }
.consult-frame { width: 100%; height: 100%; background: #fff; }
.consult-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@keyframes consultFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes consultRise { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }

@media (max-width: 768px) {
  /* keep the CTA in the bar next to the hamburger */
  .nav-right { gap: 0.8rem; }
}
@media (max-width: 560px) {
  .nav-cta { padding: 0.5rem 0.9rem; font-size: 0.72rem; letter-spacing: 0.05em; }
  .prod-head { padding: 1.1rem 1.2rem; gap: 0.9rem; }
  .prod-ico { width: 44px; height: 44px; font-size: 1.25rem; }
  .prod-name { font-size: 1.2rem; }
  .prod-panel-inner { padding: 0 1.2rem; }
}

/* =============================================================
   Products two-column split (desktop) — products left, patterns + green right
   ============================================================= */
.products-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }

/* full-width intro heading spanning the whole section */
.products-intro { margin-bottom: 3rem; text-align: center; }
.products-intro h2 { font-size: clamp(2.3rem, 4.4vw, 3.7rem); font-weight: 500; line-height: 1.04; }
.products-intro p { color: var(--muted); margin-top: 1rem; font-weight: 300; max-width: 62ch; margin-left: auto; margin-right: auto; }

.products-left > .eyebrow,
.products-right > .eyebrow { margin-bottom: 1.4rem; }
.products-left .prod-acc,
.products-right .prod-acc { max-width: none; margin: 0; }

/* bigger product icons */
.prod-ico { width: 60px; height: 60px; font-size: 1.95rem; }

.products-right { display: grid; gap: 0; align-content: start; }
.side-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; }
.side-block > h3 { font-size: 1.7rem; font-weight: 500; margin-bottom: 0.5rem; line-height: 1.15; }
.side-lead { color: var(--muted); font-weight: 300; font-size: 0.95rem; }
.side-sub { margin: 2rem 0 0; color: var(--gold); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }

.pattern-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.3rem; }
.pattern-grid .lux-card { padding: 1.3rem; }
.pattern-grid .lux-card:hover { transform: none; }
.pattern-grid .lux-card .ico { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 0.9rem; }
.pattern-grid .lux-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.pattern-grid .lux-card p { font-size: 0.85rem; }

.green-side { background: radial-gradient(ellipse at 85% 0%, rgba(127,191,106,0.13), transparent 62%), var(--surface); border-color: rgba(127,191,106,0.22); }
.green-eyebrow { color: var(--green); }
.green-eyebrow::before { background: var(--green); }
.green-side .green-steps { margin: 1.4rem 0 1.6rem; }

@media (max-width: 960px) {
  .products-split { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 560px) {
  .pattern-grid { grid-template-columns: 1fr; }
  .prod-ico { width: 52px; height: 52px; font-size: 1.6rem; }
  .side-block { padding: 1.5rem; }
}

@media (min-width: 961px) {
  .products-left { position: sticky; top: 96px; align-self: start; }
}

/* Green promise — shown in full (no dropdown) */
.green-card {
  background: radial-gradient(ellipse at 85% 0%, rgba(127,191,106,0.13), transparent 62%), var(--surface);
  border: 1px solid rgba(127,191,106,0.22);
  border-radius: var(--radius);
  padding: 2rem;
}
.green-card-head { display: flex; align-items: center; gap: 1rem; }
.green-card-head h3 { font-size: 1.5rem; font-weight: 500; line-height: 1.15; }
.green-card-lead { margin-top: 1.2rem; color: var(--muted); }
.green-card .green-steps { margin: 1.4rem 0 1.6rem; }

/* wooden-flooring + greenery backdrop — fixed full-viewport layer (reliable on mobile) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(9, 21, 16, 0.55), rgba(9, 21, 16, 0.55)),
    url('../images/wood-green.jpg') center / cover no-repeat;
}

/* frosted-glass panels so content stays readable over the photo backdrop */
.lux-card, .prod-item, .green-card, .faq-item, .info-card, .product-block, .stat-strip {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
