/* ===== WoodDeluxe — Dark Luxury ===== */

:root {
  --bg: #ebe4d4;
  --bg-raised: #d8cfc4;
  --bg-raised-2: #c9bfb1;
  --wood: #7c8f88;
  --wood-light: #9cada5;
  --brass: #1d3825;
  --brass-light: #2b4f34;
  --text: #241f19;
  --text-muted: #5c5347;
  --text-faint: #8c8275;
  --border: rgba(36, 31, 25, 0.12);

  --hero-overlay-1: rgba(20, 16, 10, 0.55);
  --hero-overlay-2: rgba(20, 16, 10, 0.25);
  --hero-overlay-3: rgba(10, 8, 5, 0.88);

  --font-serif: "WD Serif", Georgia, "Times New Roman", serif;
  --font-sans: "WD Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius: 4px;
  --transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@font-face {
  font-family: "WD Serif";
  src: local("Georgia");
  font-display: swap;
}

@font-face {
  font-family: "WD Sans";
  src: local("Segoe UI");
  font-display: swap;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
}
.page-hero .eyebrow::before,
.section-head .eyebrow::before,
.catalog-box .eyebrow::before {
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.section--raised {
  background:
    radial-gradient(circle at 12% 8%, rgba(29, 56, 37, 0.07), transparent 45%),
    radial-gradient(circle at 88% 92%, rgba(29, 56, 37, 0.06), transparent 45%),
    var(--bg-raised);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  position: relative;
  display: inline-block;
}

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--transition), transform var(--transition);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 2px 10px -4px rgba(20, 20, 15, 0.15);
}
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brass); color: #f5f9f7; }
.btn--primary:hover { background: var(--brass-light); box-shadow: 0 10px 24px -8px rgba(29, 56, 37, 0.5); }
.btn--outline {
  border-color: var(--border);
  color: var(--text);
  background: var(--bg);
  box-shadow: 0 2px 8px -6px rgba(20, 20, 15, 0.1);
}
.btn--outline:hover { border-color: var(--brass); color: var(--brass); box-shadow: 0 10px 22px -10px rgba(20, 20, 15, 0.18); }
.btn--outline .btn-icon { color: var(--brass); }
.btn--whatsapp { background: linear-gradient(135deg, #2fe07a, #1fb855); color: #06210f; }
.btn--whatsapp:hover { background: linear-gradient(135deg, #3bef88, #25d366); box-shadow: 0 12px 26px -8px rgba(37, 211, 102, 0.55); }
.btn--full { width: 100%; justify-content: center; }
.nav-call.btn--outline { background: transparent; box-shadow: none; padding: 10px 18px; }

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--wood), var(--brass));
  z-index: 110;
  transition: width 0.1s linear;
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--brass); color: var(--brass); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}
.logo span { color: var(--brass); }
.brand { display: flex; align-items: center; }
.logo-img { height: 54px; width: auto; transition: filter 0.4s ease, height 0.4s ease; }
.site-header.scrolled .logo-img { height: 44px; }
.site-header:not(.scrolled) .logo-img { filter: brightness(0) invert(1); }
.footer-logos { display: flex; align-items: center; gap: 18px; margin-bottom: 4px; flex-wrap: wrap; }
.footer-logo-img { height: 64px; width: auto; margin-bottom: 0; }
.footer-logo-img--partner { height: 40px; }
.footer-logos-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.partner-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
  margin-left: 4px;
  border-left: 1px solid var(--border);
}
.site-header:not(.scrolled) .partner-badge { border-left-color: rgba(255,255,255,0.25); }
.partner-badge span {
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: var(--text-faint);
  line-height: 1.2;
  max-width: 70px;
}
.site-header:not(.scrolled) .partner-badge span { color: rgba(255,255,255,0.75); }
.partner-logo-img { height: 20px; width: auto; }
.site-header:not(.scrolled) .partner-logo-img { filter: brightness(0) invert(1); }
.footer-social { display: flex; gap: 16px; margin-top: 14px; }
.footer-social a { margin-bottom: 0; font-size: 0.82rem; }
.showroom-social { display: flex; gap: 14px; }
.showroom-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.showroom-social a:hover { border-color: var(--brass); color: var(--brass); }
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}
.main-nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 20px; }

.lang-switch { display: flex; gap: 2px; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; padding: 2px; }
.lang-switch button {
  background: transparent;
  border: none;
  border-radius: 999px;
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  padding: 6px 8px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active { background: var(--brass); color: #f5f9f7; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--hero-overlay-1) 0%, var(--hero-overlay-2) 40%, var(--hero-overlay-3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  will-change: transform, opacity;
  color: #f8f4ec;
}
.hero-content .eyebrow { color: #a9c4bb; }
.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-bottom: 20px;
  color: #f8f4ec;
}
.hero-content p {
  color: rgba(248, 244, 236, 0.85);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
}

/* ===== Trust bar ===== */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.trust-item { padding: 40px 16px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-number {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--brass);
  display: block;
}
.trust-label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 4px; }

/* ===== Why Nolte ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.why-card {
  padding: 36px 28px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.why-card:hover { border-color: var(--wood); transform: translateY(-4px); }
.why-card .num {
  font-family: var(--font-serif);
  color: #fff;
  background: linear-gradient(135deg, var(--brass), var(--brass-light));
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Gallery ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--wood); color: var(--text); }
.filter-btn.active { background: var(--brass); border-color: var(--brass); color: #f5f9f7; }

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

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.projects-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px -8px rgba(20, 20, 15, 0.2);
}
.projects-item--wide { grid-column: span 2; }
.projects-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.projects-item:hover img { transform: scale(1.06); }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 0 0 rgba(139, 111, 71, 0);
  transition: box-shadow 0.4s ease;
}
.gallery-item:hover { box-shadow: 0 12px 40px -8px rgba(29, 56, 37, 0.25); }
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: #fff;
}
.gallery-caption strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; color: #fff; }
.gallery-caption span { font-size: 0.82rem; color: rgba(255,255,255,0.82); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 6, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius); }
.lightbox-caption { text-align: center; margin-top: 16px; color: rgba(255,255,255,0.75); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
  gap: 28px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding-bottom: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px -12px rgba(29, 56, 37, 0.18); }
.team-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  margin-bottom: 18px;
  filter: grayscale(0.3);
  transition: filter 0.4s ease;
}
.team-card:hover img { filter: grayscale(0); }
.team-card h3 { font-size: 1.05rem; padding: 0 16px; margin-bottom: 4px; }
.team-role { display: block; font-size: 0.78rem; color: var(--brass); margin-bottom: 10px; padding: 0 16px; }
.team-card p { font-size: 0.85rem; color: var(--text-muted); padding: 0 20px; }

/* ===== Nolte 3D planner embed ===== */
.planner-card {
  max-width: 1080px;
  margin: 0 auto 48px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.planner-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.planner-card p { color: var(--text-muted); font-size: 0.92rem; max-width: 560px; margin: 0 auto 24px; }
.planner-frame-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  background: #fff;
}
.planner-frame { width: 100%; height: 100%; border: 0; }

/* ===== Page hero (sub-pages) ===== */
.page-hero {
  padding: 180px 0 64px;
  text-align: center;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ===== Image banner ===== */
.image-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.image-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,10,0.3), rgba(20,16,10,0.58));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.image-banner-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  color: #f8f4ec;
  text-align: center;
  max-width: 780px;
  line-height: 1.4;
}

/* ===== Footer partner strip ===== */
.partner-strip {
  width: 100%;
  background: #15130f;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
.partner-strip-label {
  flex-shrink: 0;
  padding-left: 24px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.partner-strip-track-wrap {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.partner-strip-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: partner-scroll 18s linear infinite;
  animation-play-state: paused;
}
.partner-strip-track.marquee-ready { animation-play-state: running; }
.partner-strip-logo { height: 44px; width: auto; flex-shrink: 0; }
@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(var(--marquee-shift, -50%)); }
}
@media (prefers-reduced-motion: reduce) {
  .partner-strip-track { animation: none; }
}

/* ===== CTA band ===== */
.cta-band {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-band p { color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Testimonial carousel ===== */
.testimonial-carousel { max-width: 720px; margin: 0 auto; }
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-track .testimonial-card {
  flex: 0 0 100%;
  text-align: center;
}
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.testimonial-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.testimonial-dots button.active { background: var(--brass); transform: scale(1.3); }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}
.faq-icon { color: var(--brass); font-size: 1.3rem; transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: var(--text-muted); font-size: 0.92rem; padding-right: 40px; }

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-step { text-align: center; }
.process-step .step-num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--brass), var(--brass-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px -8px rgba(29, 56, 37, 0.45);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== Catalog ===== */
.quick-book {
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center;
  padding: 28px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.quick-book p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 18px; }

.catalog-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.catalog-box p { color: var(--text-muted); margin-bottom: 32px; }
.catalog-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.catalog-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
}
.catalog-form input:focus { outline: none; border-color: var(--brass); }

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.testimonial-card p:first-child {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 20px;
}
.testimonial-card p:first-child::before { content: "\201C"; color: var(--brass); }
.testimonial-card p:first-child::after { content: "\201D"; color: var(--brass); }
.testimonial-author { color: var(--text-faint); font-size: 0.85rem; }

/* ===== Showroom ===== */
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.showroom-info { display: flex; flex-direction: column; gap: 24px; }
.showroom-info h4 { font-size: 0.85rem; color: var(--brass); letter-spacing: 0.04em; margin-bottom: 4px; }
.showroom-info p { color: var(--text-muted); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.25) contrast(0.95); }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; color: var(--text-muted); }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 16px;
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--brass); }
.form-msg { grid-column: 1 / -1; font-size: 0.9rem; padding: 12px 16px; border-radius: var(--radius); display: none; }
.form-msg.show { display: block; }
.form-msg.success { background: rgba(37, 211, 102, 0.12); color: #6fe89f; }
.form-msg.error { background: rgba(220, 80, 80, 0.12); color: #f29a9a; }

/* ===== Footer ===== */
.site-footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 { font-size: 0.8rem; color: var(--brass); letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.78rem;
  color: var(--text-faint);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== Floating WhatsApp ===== */
.float-whatsapp {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 28px; height: 28px; fill: #06210f; }

/* ===== Legal pages ===== */
.legal-page { padding: 160px 0 100px; max-width: 760px; margin: 0 auto; }
.legal-page h1 { font-size: 2rem; margin-bottom: 24px; }
.legal-page h2 { font-size: 1.2rem; margin: 32px 0 12px; }
.legal-page p, .legal-page li { color: var(--text-muted); margin-bottom: 12px; }
.legal-page a { color: var(--brass-light); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .why-grid, .process-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .projects-item--wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .partner-badge { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn--outline.nav-call { display: none; }
  .logo-img { height: 42px; }
  .image-banner { height: 240px; }
  .partner-strip-label { display: none; }
  .partner-strip-logo { height: 32px; }

  .site-header.mobile-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    gap: 18px;
  }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .why-grid, .gallery-grid, .process-grid, .team-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .projects-item--wide { grid-column: span 1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .planner-card { padding: 20px; }
  .planner-frame-wrap { aspect-ratio: 4/5; }
  .page-hero { padding: 140px 0 48px; }
  .back-to-top { left: 16px; bottom: 88px; width: 42px; height: 42px; }
  .float-whatsapp { bottom: 88px; right: 16px; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust-item:nth-child(even) { border-right: none; }

  .showroom-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .catalog-form { flex-direction: column; }
  .catalog-form input, .catalog-form button { width: 100%; }

  .section { padding: 72px 0; }
}
