@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@300;400;500&display=swap');

html {
  scroll-behavior: smooth;
}

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

:root {
  --wood-dark: #2C1A0E;
  --wood-mid: #5C3A1E;
  --wood-light: #A0714F;
  --sand: #F5EFE6;
  --cream: #FDFAF6;
  --accent: #8B5E3C;
  --text: #1A1008;
  --muted: #7A6254;
  --border: rgba(92, 58, 30, 0.12);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ─── NAVIGATION ─────────────────────────────────── */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  position: sticky;
  top: 0;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--border);
  z-index: 100;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--wood-dark);
}

.site-nav .nav-cta {
  background: var(--wood-dark);
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.site-nav .nav-cta:hover {
  background: var(--wood-mid) !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wood-dark);
  transition: all 0.3s;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 5rem 4rem 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--sand);
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease both;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wood-light);
  border: 0.5px solid var(--wood-light);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 4.2rem;
  line-height: 1.1;
  color: var(--wood-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  color: var(--wood-light);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: var(--wood-dark);
  color: var(--cream);
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--wood-mid);
  transform: translateY(-1px);
  color: var(--cream);
}

.btn-ghost {
  color: var(--wood-dark);
  font-size: 0.9rem;
  font-weight: 400;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.btn-ghost:hover {
  gap: 0.7rem;
  color: var(--wood-dark);
}

.hero-visual {
  position: static;
  z-index: 1;
}

.pallet-svg-wrap {
  width: 100%;
  max-width: 440px;
}

.hero-img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(245, 238, 228, 0.15) 0%,
    rgba(245, 238, 228, 0.55) 75%,
    rgba(245, 238, 228, 0.9) 100%
  );
}

.hero-building-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

/* ─── STATS ──────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.stat-item {
  padding: 2.5rem 3rem;
  border-right: 0.5px solid var(--border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--wood-dark);
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 400;
  margin-top: 0.3rem;
  display: block;
}

/* ─── SECTIONS ───────────────────────────────────── */
.section {
  padding: 5rem 4rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--wood-dark);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

/* ─── PRODUCTS ───────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--wood-light);
}

.product-img {
  background: var(--sand);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0.5px solid var(--border);
}

.product-body {
  padding: 1.25rem;
}

.product-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--wood-dark);
  margin-bottom: 0.4rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
}

.product-btn {
  font-size: 0.8rem;
  color: var(--wood-dark);
  border: 0.5px solid var(--wood-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 3px;
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.product-btn:hover {
  background: var(--wood-dark);
  color: var(--cream);
}

/* ─── WHY US ──────────────────────────────────────── */
.why-section {
  background: var(--wood-dark);
  padding: 5rem 4rem;
}

.why-section .section-eyebrow {
  color: rgba(253, 250, 246, 0.4);
}

.why-section .section-title {
  color: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-item {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.why-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--wood-light);
  display: block;
  margin-bottom: 0.75rem;
}

.why-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.why-text {
  font-size: 0.85rem;
  color: rgba(253, 250, 246, 0.55);
  line-height: 1.7;
  font-weight: 300;
}

.why-intro {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.why-intro p {
  font-size: 0.95rem;
  color: rgba(253, 250, 246, 0.7);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  text-align: justify;
  text-justify: inter-word;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.why-list li {
  font-size: 0.85rem;
  color: rgba(253, 250, 246, 0.55);
  line-height: 1.7;
  font-weight: 300;
  padding-left: 1rem;
  position: relative;
}

.why-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--wood-light);
}

/* ─── SERVICES ────────────────────────────────────── */
.services-section {
  padding: 5rem 4rem;
  background: var(--cream);
  border-top: 0.5px solid var(--border);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 3rem;
}

.services-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.services-block {
  border-top: 2px solid var(--wood-light);
  padding-top: 1.5rem;
}

.services-block p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 0.85rem;
  text-align: justify;
  text-justify: inter-word;
}

.services-block p:last-child {
  margin-bottom: 0;
}

.services-block strong {
  color: var(--wood-dark);
  font-weight: 600;
}

/* ─── TRANSPORT HIGHLIGHT ─────────────────────────── */
.transport-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 0.5px solid var(--border);
}

.transport-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 340px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.transport-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform 0.5s ease;
}

.transport-img-wrap:hover .transport-img {
  transform: scale(1.03);
}

.transport-text .section-eyebrow {
  color: var(--wood-light);
}

.transport-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--wood-dark);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}

.transport-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.transport-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.transport-list li {
  font-size: 0.9rem;
  color: var(--wood-dark);
  font-weight: 500;
  padding-left: 1.2rem;
  position: relative;
}

.transport-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--wood-light);
  font-weight: 700;
}

/* ─── CONTACT ─────────────────────────────────────── */
.contact-section {
  padding: 5rem 4rem;
  background: var(--wood-dark);
}

.contact-section .section-eyebrow {
  color: rgba(253, 250, 246, 0.4);
}

.contact-section .section-title {
  color: var(--cream);
}

.contact-header {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.contact-header .section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.contact-desc {
  color: rgba(253, 250, 246, 0.6);
  font-weight: 300;
  line-height: 1.8;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-address h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.contact-address address {
  font-style: normal;
  font-size: 0.95rem;
  color: rgba(253, 250, 246, 0.6);
  line-height: 1.8;
  font-weight: 300;
}

.contact-phone {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-phone:hover {
  color: var(--wood-light);
}

.contact-phone-note {
  font-size: 0.78rem;
  color: rgba(253, 250, 246, 0.4);
  margin-top: 0.2rem;
}

.contact-email {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--wood-light);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-email:hover {
  color: var(--wood-light);
  border-color: transparent;
}

.contact-phone--mobile {
  margin-top: 0.5rem;
}

.contact-hours {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(253, 250, 246, 0.12);
}

.contact-hours-title {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.contact-hours-days {
  font-size: 0.88rem;
  color: rgba(253, 250, 246, 0.6);
  margin-bottom: 0.2rem;
}

.contact-hours-time {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--wood-light);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(253, 250, 246, 0.1);
  color: rgba(253, 250, 246, 0.7);
  border: 1px solid rgba(253, 250, 246, 0.2);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--wood-light);
  color: var(--cream);
  border-color: var(--wood-light);
  transform: translateY(-2px);
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 6px;
  display: block;
}

.contact-form-wrap {
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.contact-success {
  color: #3B6D11;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 0.5px solid var(--border);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--sand);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input[type="email"]:focus {
  border-color: var(--wood-light);
}

.contact-form .btn-primary {
  width: 100%;
  text-align: center;
}

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  padding: 2rem 4rem;
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-location {
  font-size: 0.82rem;
  color: var(--muted);
}

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

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .site-header { padding: 1.5rem 2rem; }
  .hero { padding: 4rem 2rem; gap: 2rem; }
  .hero h1 { font-size: 3rem; }
  .section { padding: 4rem 2rem; }
  .why-section { padding: 4rem 2rem; }
  .contact-section { padding: 4rem 2rem; }
  .site-footer { padding: 2rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header { padding: 1rem 1.5rem; }

  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 0.5px solid var(--border);
    padding: 1.5rem;
  }

  .site-nav.open { display: block; }

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .hero::before { display: none; }

  .hero h1 { font-size: 2.6rem; }

  .hero-actions { justify-content: center; }

  .hero-visual { display: none; }
  .hero-img-wrap { display: none; }

  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 0.5px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .section { padding: 3rem 1.5rem; }
  .products-grid { grid-template-columns: 1fr; }

  .why-section { padding: 3rem 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .services-section { padding: 3rem 1.5rem; }
  .services-body { grid-template-columns: 1fr; }
  .transport-highlight { grid-template-columns: 1fr; gap: 2rem; }
  .transport-img-wrap { height: 240px; }

  .contact-section { padding: 3rem 1.5rem; }
  .contact-body { grid-template-columns: 1fr; gap: 2rem; }
  .contact-map iframe { height: 200px; }

  .site-footer {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1.5rem;
  }
}

/* ─── PRODUCT GALLERY ─────────────────────────────── */
.gallery-section .section-header {
  align-items: center;
}

.gallery-filter {
  display: flex;
  gap: 0.5rem;
}

.filter-btn {
  background: none;
  border: 0.5px solid var(--border);
  color: var(--muted);
  padding: 0.4rem 1rem;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--wood-light);
  color: var(--wood-dark);
}

.filter-btn.active {
  background: var(--wood-dark);
  border-color: var(--wood-dark);
  color: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: var(--wood-light);
  box-shadow: 0 12px 32px rgba(44, 26, 14, 0.08);
}

.gallery-card.hidden {
  display: none;
}

.gallery-img {
  position: relative;
  background: var(--sand);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0.5px solid var(--border);
  overflow: hidden;
}

.gallery-img svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-img--custom {
  background: #F0EAE0;
}

.gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--wood-mid);
  border: 0.5px solid var(--border);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  z-index: 2;
}

.gallery-badge--dark {
  background: var(--wood-dark);
  color: var(--cream);
  border-color: var(--wood-dark);
}

.gallery-badge--accent {
  background: var(--wood-light);
  color: var(--cream);
  border-color: var(--wood-light);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 14, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-quote-btn {
  background: var(--cream);
  color: var(--wood-dark);
  padding: 0.7rem 1.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  transform: translateY(6px);
}

.gallery-card:hover .gallery-quote-btn {
  transform: translateY(0);
}

.gallery-quote-btn:hover {
  background: var(--sand);
}

.gallery-body {
  padding: 1.4rem 1.5rem;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 0.5px solid var(--border);
}

.gallery-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--wood-dark);
}

.gallery-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
}

.gallery-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.spec-label {
  color: var(--muted);
  font-weight: 400;
}

.spec-value {
  color: var(--wood-dark);
  font-weight: 500;
}

.gallery-cta {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--wood-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--wood-light);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.gallery-cta:hover {
  color: var(--wood-light);
  border-color: transparent;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-section .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .gallery-img { height: 200px; }
}

/* ─── SIMPLE GALLERY ──────────────────────────────── */
.simple-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.simple-card {
  display: flex;
  flex-direction: column;
  border: 0.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.simple-card:hover {
  transform: translateY(-4px);
  border-color: var(--wood-light);
  box-shadow: 0 10px 28px rgba(44,26,14,0.07);
}

.simple-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--sand);
  overflow: hidden;
}

.simple-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.simple-img img.svg-product {
  object-fit: contain;
  padding: 1.5rem;
  mix-blend-mode: multiply;
  filter: sepia(12%) contrast(0.88) brightness(1.1);
}

.simple-card:hover .simple-img img {
  transform: scale(1.03);
}

/* Placeholder shown when no image is uploaded yet */
.simple-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--sand);
  color: var(--muted);
}

.simple-img img[src] ~ .simple-img-placeholder {
  display: none;
}

.simple-img-placeholder span {
  font-size: 2.5rem;
  opacity: 0.4;
}

.simple-img-placeholder small {
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--wood-light);
  background: rgba(160,113,79,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}

.simple-caption {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.simple-caption h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--wood-dark);
  margin-bottom: 0.5rem;
}

.simple-caption p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .simple-gallery { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ─── CONTACT FORM (expanded) ─────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--wood-dark);
  letter-spacing: 0.3px;
}

.form-required {
  color: var(--wood-light);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 0.5px solid var(--border);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  background: var(--sand);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6254' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--wood-light);
  box-shadow: 0 0 0 3px rgba(160, 113, 79, 0.12);
}

.contact-form input.field-error,
.contact-form textarea.field-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.field-error-msg {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.2rem;
}

.form-send-error {
  font-size: 0.88rem;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: 4px;
  padding: 0.7rem 1rem;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ─── MAP BLOCKED PLACEHOLDER ─────────────────────── */
#map-wrap {
  width: 100%;
  height: 260px;
  position: relative;
}

#map-frame {
  width: 100%;
  height: 260px;
}

.map-blocked {
  width: 100%;
  height: 260px;
  background: rgba(253, 250, 246, 0.06);
  border: 1px dashed rgba(253, 250, 246, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-blocked p {
  font-size: 0.88rem;
  color: rgba(253, 250, 246, 0.5);
  line-height: 2;
}

.map-blocked .btn-ghost {
  color: var(--wood-light);
  font-size: 0.85rem;
}

/* ─── INSTALAÇÕES ────────────────────────────────── */
.instalacoes-section {
  background: var(--sand) url("../images/fundo_exporpal.png") repeat;
  padding: 5rem 4rem;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.instalacoes-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

/* — Left column — */
.instalacoes-info {
  display: flex;
  flex-direction: column;
}

.instalacoes-title {
  margin-bottom: 1.25rem;
}

.instalacoes-title em {
  font-style: normal;
  color: var(--wood-light);
}

.instalacoes-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.instalacoes-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.instalacoes-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--border);
}

.instalacoes-feature:first-child {
  border-top: 0.5px solid var(--border);
}

.instalacoes-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood-light);
  margin-top: 2px;
}

.instalacoes-feature-icon svg {
  width: 20px;
  height: 20px;
}

.instalacoes-feature-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--wood-dark);
  margin-bottom: 0.35rem;
  font-weight: 400;
}

.instalacoes-feature-body p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

/* — Right column: carousel — */
.instalacoes-carousel-col {
  position: relative;
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--wood-dark);
  box-shadow: 0 16px 48px rgba(44, 26, 14, 0.14);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Image: cover crop + unified colour treatment */
.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.03) contrast(1.08) saturate(0.84);
}

/* Bottom gradient + caption */
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.4rem 0.9rem;
  background: linear-gradient(to top, rgba(44, 26, 14, 0.62) 0%, transparent 100%);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.88);
  pointer-events: none;
}

/* Prev / Next buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(253, 250, 246, 0.28);
  background: rgba(44, 26, 14, 0.32);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding: 0;
}

.carousel-btn:hover {
  background: rgba(44, 26, 14, 0.6);
  border-color: rgba(253, 250, 246, 0.55);
  transform: translateY(-50%) scale(1.06);
}

.carousel-btn--prev { left: 1rem; }
.carousel-btn--next { right: 1rem; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(253, 250, 246, 0.4);
  transition: background 0.25s, transform 0.25s;
}

.carousel-dot.is-active {
  background: var(--cream);
  transform: scale(1.3);
}

/* — Responsive — */
@media (max-width: 1024px) {
  .instalacoes-section { padding: 4rem 2rem; }
  .instalacoes-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  .instalacoes-section { padding: 3rem 1.5rem; }
  .instalacoes-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .instalacoes-intro { max-width: 100%; }
}

/* ─── COOKIE BANNER ───────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--wood-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 999;
  flex-wrap: wrap;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(253, 250, 246, 0.75);
  font-weight: 300;
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.cookie-btn--primary {
  background: var(--wood-light);
  color: var(--cream);
}

.cookie-btn--primary:hover {
  background: var(--accent);
}

.cookie-btn--ghost {
  background: transparent;
  color: rgba(253, 250, 246, 0.6);
  border: 1px solid rgba(253, 250, 246, 0.2);
}

.cookie-btn--ghost:hover {
  color: var(--cream);
  border-color: rgba(253, 250, 246, 0.5);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }
}
