/* ==========================================================================
   Wood Landscape — shared stylesheet
   Brand: cream background, brown/gold accents, Poppins typeface.
   ========================================================================== */

:root {
  --cream: #FBF7F1;
  --ink: #3A2415;
  --brown-mid: #5A3620;
  --brown-mid-dark: #3A2415;
  --accent: #B06B39;
  --accent-hover: #8F5329;
  --gold: #D9A25F;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --shadow-sm: 0 6px 18px rgba(90, 54, 32, 0.06);
  --shadow-md: 0 8px 24px rgba(90, 54, 32, 0.08);
  --shadow-lg: 0 16px 34px rgba(90, 54, 32, 0.16);
  --radius-lg: 24px;
  --container-max: 1400px;
}

/* ---------------------------------------------------------------------- */
/* Reset & base                                                            */
/* ---------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--cream);
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
button { font-family: 'Poppins', sans-serif; }
input, textarea { font-family: 'Poppins', sans-serif; }
input::placeholder, textarea::placeholder { color: rgba(58, 36, 21, 0.45); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brown-mid);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  z-index: 999;
}
.skip-link:focus {
  left: 0;
}

/* ---------------------------------------------------------------------- */
/* Layout helpers                                                          */
/* ---------------------------------------------------------------------- */
.container { max-width: var(--container-max); margin: 0 auto; width: 100%; }
.section { padding: 90px 64px; }
.section-tight { padding: 64px; }
.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  display: block;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 14px;
}
.section-title {
  font-size: 28px;
  color: var(--brown-mid);
  margin: 10px 0 0;
  font-weight: 700;
}
.section-link {
  cursor: pointer;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}
.center-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ---------------------------------------------------------------------- */
/* Header / nav                                                           */
/* ---------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 56px;
  border-bottom: 1px solid rgba(90, 54, 32, 0.12);
  box-shadow: 0 2px 14px rgba(90, 54, 32, 0.05);
  flex-wrap: wrap;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: repeating-linear-gradient(115deg, #8A5A34, #8A5A34 4px, #B06B39 4px, #B06B39 8px);
  box-shadow: 0 4px 10px rgba(90, 54, 32, 0.25);
  flex: none;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name-group { display: flex; flex-direction: column; }
.brand-name {
  font-size: 21px;
  font-weight: 800;
  color: var(--brown-mid);
  letter-spacing: 0.3px;
  line-height: 1;
}
.brand-name span { color: var(--accent); }
.brand-tag {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 3px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.nav-list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.nav-list a {
  cursor: pointer;
  font-size: 13.5px;
  color: var(--brown-mid);
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-list a:hover { color: var(--accent); }
.nav-list a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
  border-bottom-color: var(--accent);
}
.btn-catalog-desktop {
  background: var(--accent);
  color: var(--cream);
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12.5px;
  cursor: pointer;
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-catalog-desktop:hover { background: var(--accent-hover); transform: translateY(-1px); }

.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(90, 54, 32, 0.2);
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mobile-nav-toggle span {
  width: 20px; height: 2px;
  background: var(--brown-mid);
  border-radius: 2px;
}

.mobile-nav-scrim {
  position: fixed; inset: 0;
  background: rgba(58, 36, 21, 0.45);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.mobile-nav-panel {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 280px;
  max-width: 82vw;
  background: var(--cream);
  z-index: 200;
  box-shadow: -8px 0 30px rgba(90, 54, 32, 0.2);
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.mobile-nav-scrim.is-open { opacity: 1; visibility: visible; }
.mobile-nav-panel.is-open { transform: translateX(0); }
html.nav-open body { overflow: hidden; }

.mobile-nav-close-row { display: flex; justify-content: flex-end; margin-bottom: 20px; }
.mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: none;
  background: #F1E6D8;
  color: var(--brown-mid);
  font-size: 18px;
  cursor: pointer;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav-list li { list-style: none; }
.mobile-nav-list a {
  display: block;
  padding: 12px 8px;
  font-size: 16px;
  color: var(--brown-mid);
  font-weight: 500;
  cursor: pointer;
  border-bottom: 1px solid rgba(90, 54, 32, 0.08);
}
.mobile-nav-list a[aria-current="page"] { color: var(--accent); font-weight: 700; }
.mobile-nav-catalog-btn {
  margin-top: 20px;
  background: var(--accent);
  color: var(--cream);
  border: none;
  padding: 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
}
.mobile-nav-wa-btn {
  margin-top: 12px;
  text-align: center;
  background: var(--whatsapp);
  color: var(--white);
  padding: 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 860px) {
  .nav-list, .btn-catalog-desktop { display: none !important; }
  .mobile-nav-toggle { display: flex !important; }
  .site-header { padding: 14px 20px; }
}
@media (min-width: 861px) {
  .mobile-nav-toggle { display: none !important; }
}

/* ---------------------------------------------------------------------- */
/* Buttons (generic)                                                       */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 15px 32px;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-primary { background: var(--accent); color: var(--cream); }
.btn-primary:hover { background: var(--accent-hover); color: var(--cream); }
.btn-light { background: var(--cream); color: var(--brown-mid); }
.btn-light:hover { background: var(--gold); color: var(--brown-mid); }
.btn-outline {
  background: none;
  border: 2px solid var(--brown-mid);
  color: var(--brown-mid);
  padding: 12px 26px;
  font-size: 13px;
}
.btn-outline:hover { background: var(--brown-mid); color: var(--cream); }
.btn-dark { background: var(--brown-mid); color: var(--cream); padding: 10px 22px; font-size: 13px; }
.btn-dark:hover { background: var(--brown-mid-dark); color: var(--cream); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ---------------------------------------------------------------------- */
/* Media / image slot boxes                                                */
/* ---------------------------------------------------------------------- */
.media-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #EFE3D3;
}
.media-box img { width: 100%; height: 100%; object-fit: cover; }
.media-rect { border-radius: 0; }
.media-rounded { border-radius: 16px; }
.media-rounded-lg { border-radius: 22px; }
.media-circle { border-radius: 999px; }

/* ---------------------------------------------------------------------- */
/* Hero slider (home)                                                      */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 740px;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(58,36,21,0.62) 0%, rgba(58,36,21,0.4) 38%, rgba(58,36,21,0.14) 68%, rgba(58,36,21,0.05) 100%);
  display: flex;
  align-items: center;
  padding: 0 90px 0 64px;
  pointer-events: none;
  z-index: 2;
}
.hero-scrim .container { max-width: 1400px; }
.hero-copy { max-width: 560px; }
.hero-eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 2px; font-size: 12.5px; text-transform: uppercase; margin-bottom: 20px; display: block; }
.hero-title { font-size: 52px; font-weight: 800; color: var(--cream); max-width: 520px; margin: 0 0 20px; line-height: 1.18; }
.hero-subtitle { font-size: 16.5px; color: var(--cream); max-width: 440px; margin: 0 0 36px; opacity: 0.92; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; pointer-events: auto; flex-wrap: wrap; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 999px; border: none;
  background: rgba(251,247,241,0.25);
  color: var(--cream);
  font-size: 18px; cursor: pointer;
  z-index: 3;
}
.hero-arrow:hover { background: rgba(251,247,241,0.4); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
.hero-dots {
  position: absolute; bottom: 26px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 10px;
  z-index: 3;
}
.hero-dots button {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(251,247,241,0.5);
  border: none; cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.hero-dots button.is-active { width: 24px; background: var(--cream); }

@media (max-width: 860px) {
  .hero { height: 560px; }
  .hero-scrim { padding: 0 28px; align-items: flex-end; padding-bottom: 60px; }
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 14.5px; }
}
@media (max-width: 480px) {
  .hero { height: 500px; }
  .hero-title { font-size: 28px; }
}

/* ---------------------------------------------------------------------- */
/* Trust stats                                                            */
/* ---------------------------------------------------------------------- */
.trust-bar {
  padding: 34px 64px;
  background: var(--white);
  border-bottom: 1px solid rgba(90, 54, 32, 0.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-badge {
  min-width: 44px; height: 44px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-weight: 700; font-size: 17px;
  flex: none;
}
.trust-value { margin: 0; font-size: 15px; font-weight: 700; color: var(--brown-mid); }
.trust-label { margin: 2px 0 0; font-size: 12px; color: var(--ink); opacity: 0.7; }

@media (max-width: 860px) {
  .trust-bar { padding: 24px 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ---------------------------------------------------------------------- */
/* About teaser / two-column intro                                        */
/* ---------------------------------------------------------------------- */
.split {
  padding: 90px 64px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-reverse { grid-template-columns: 1fr 1.15fr; align-items: flex-start; }
.split h2 { font-size: 30px; color: var(--brown-mid); margin: 12px 0 18px; font-weight: 700; }
.split p { font-size: 15px; line-height: 1.8; color: var(--ink); opacity: 0.85; margin: 0 0 26px; }

@media (max-width: 900px) {
  .split, .split-reverse { grid-template-columns: 1fr; padding: 56px 24px; gap: 32px; }
}

/* ---------------------------------------------------------------------- */
/* Cards: services / garden concepts / catalog / project gallery          */
/* ---------------------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-9 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-body { padding: 20px; }
.card-body-lg { padding: 26px; }
.card-pad { padding: 32px; }

.icon-ring {
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 2.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-weight: 800; font-size: 17px;
  margin-bottom: 18px;
}
.card h3 { margin: 0 0 10px; font-size: 19px; color: var(--brown-mid); }
.card-summary { margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--ink); opacity: 0.75; }
.card-tagline { margin: 0; font-size: 12.5px; color: var(--accent); font-weight: 600; }
.card-desc { margin: 0 0 18px; font-size: 13.5px; line-height: 1.7; color: var(--ink); opacity: 0.75; }

.gallery-tile { border-radius: 16px; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.gallery-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

@media (max-width: 1024px) {
  .grid-3, .grid-9 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-9, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 56px 20px; }
  .section-tight { padding: 20px; }
}

/* ---------------------------------------------------------------------- */
/* Testimonials                                                           */
/* ---------------------------------------------------------------------- */
.testimonial-quote { margin: 0 0 22px; font-size: 14px; line-height: 1.8; color: var(--ink); opacity: 0.85; font-style: italic; }
.testimonial-foot { display: flex; align-items: center; gap: 12px; }
.avatar-initial {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(176,107,57,0.12);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-weight: 800; font-size: 16px;
  flex: none;
}
.testimonial-name { margin: 0; font-size: 13.5px; font-weight: 700; color: var(--brown-mid); }
.testimonial-role { margin: 2px 0 0; font-size: 12px; color: var(--ink); opacity: 0.65; }

/* ---------------------------------------------------------------------- */
/* CTA banner                                                             */
/* ---------------------------------------------------------------------- */
.cta-banner {
  background: var(--brown-mid);
  border-radius: var(--radius-lg);
  padding: 44px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-banner h3 { margin: 0 0 8px; font-size: 22px; color: var(--cream); font-weight: 700; }
.cta-banner p { margin: 0; font-size: 14px; color: var(--cream); opacity: 0.8; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-wrap { margin: 60px 0 0; }
.cta-wrap-outer { padding: 0 64px 90px; }

@media (max-width: 640px) {
  .cta-banner { padding: 30px 26px; }
  .cta-wrap-outer { padding: 0 20px 56px; }
}

/* ---------------------------------------------------------------------- */
/* Inner-page banner (About/Project/3D/Sketch/Garden/Catalog/Service/Contact) */
/* ---------------------------------------------------------------------- */
.page-banner {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.page-banner img { width: 100%; height: 100%; object-fit: cover; }
.page-banner-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58,36,21,0.28), rgba(58,36,21,0.6));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 90px;
}
.page-banner-eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 2px; font-size: 12px; text-transform: uppercase; }
.page-banner h1 { font-size: 44px; font-weight: 800; color: var(--cream); margin: 18px 0 0; max-width: 640px; line-height: 1.25; }

@media (max-width: 860px) {
  .page-banner { height: 340px; }
  .page-banner-scrim { padding: 0 24px; }
  .page-banner h1 { font-size: 30px; }
}

/* ---------------------------------------------------------------------- */
/* Breadcrumb                                                             */
/* ---------------------------------------------------------------------- */
.breadcrumb {
  padding: 18px 64px 0;
  font-size: 12.5px;
  color: var(--ink);
  opacity: 0.7;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
.breadcrumb [aria-current="page"] { color: var(--brown-mid); font-weight: 600; }

@media (max-width: 860px) { .breadcrumb { padding: 14px 20px 0; } }

/* ---------------------------------------------------------------------- */
/* Detail pages (garden / catalog)                                        */
/* ---------------------------------------------------------------------- */
.detail-wrap { padding: 40px 64px 100px; }
.back-link { cursor: pointer; color: var(--accent); font-weight: 600; font-size: 13px; }
.detail-title { font-size: 32px; color: var(--brown-mid); margin: 16px 0 8px; font-weight: 800; }
.detail-tagline { font-size: 14px; color: var(--accent); font-weight: 600; margin: 0 0 30px; }
.detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 50px;
}
.detail-split p { font-size: 15px; line-height: 1.85; color: var(--ink); opacity: 0.85; margin: 0; }
.detail-sub { font-size: 18px; color: var(--brown-mid); margin: 0 0 20px; }

@media (min-width: 901px) {
  .detail-split.about-split { grid-template-columns: 1fr 1.15fr; }
}

@media (max-width: 900px) {
  .detail-wrap { padding: 32px 20px 70px; }
  .detail-split { grid-template-columns: 1fr; gap: 26px; }
}

/* ---------------------------------------------------------------------- */
/* Facts grid (About)                                                     */
/* ---------------------------------------------------------------------- */
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex; gap: 14px; align-items: flex-start;
}
.fact-badge {
  min-width: 34px; height: 34px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-weight: 700; font-size: 13px;
  flex: none;
}
.fact-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); font-weight: 700; }
.fact-value { margin: 6px 0 0; font-size: 14px; color: var(--brown-mid); font-weight: 600; }

@media (max-width: 560px) { .facts-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------- */
/* Service process steps                                                  */
/* ---------------------------------------------------------------------- */
.process-block {
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 70px;
  align-items: center;
}
.process-block.alt { grid-template-columns: 1.3fr 0.85fr; background: #F6ECE0; }
.process-block.white { background: var(--white); }
.process-intro { display: flex; flex-direction: column; gap: 16px; }
.process-icon {
  width: 88px; height: 88px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.process-step-label { font-weight: 700; letter-spacing: 2px; font-size: 11.5px; text-transform: uppercase; }
.process-intro h2 { font-size: 26px; color: var(--brown-mid); margin: 0; font-weight: 700; }
.process-intro p { font-size: 14.5px; line-height: 1.75; color: var(--ink); opacity: 0.8; margin: 0; max-width: 360px; }

.timeline-step { position: relative; display: flex; gap: 18px; padding-bottom: 36px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  width: 38px; height: 38px;
  border-radius: 999px;
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  flex: none;
  position: relative;
  z-index: 1;
}
.timeline-step:not(:last-child) .timeline-num::before {
  content: '';
  position: absolute;
  top: 38px; left: 18px;
  width: 2px; height: 36px;
  background: rgba(90,54,32,0.3);
}
.timeline-body h4 { margin: 0 0 4px; font-size: 15.5px; color: var(--brown-mid); font-weight: 700; }
.timeline-body p { margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--ink); opacity: 0.75; }

@media (max-width: 900px) {
  .process-block, .process-block.alt { grid-template-columns: 1fr; padding: 40px 20px; gap: 30px; }
  .process-block.alt { display: flex; flex-direction: column-reverse; }
}

/* ---------------------------------------------------------------------- */
/* FAQ                                                                    */
/* ---------------------------------------------------------------------- */
.faq-section { padding: 70px 64px; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border-radius: 16px; padding: 22px 26px; box-shadow: var(--shadow-sm); }
.faq-item h4 { margin: 0 0 8px; font-size: 15px; color: var(--brown-mid); font-weight: 700; }
.faq-item p { margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--ink); opacity: 0.8; }

@media (max-width: 640px) { .faq-section { padding: 48px 20px; } }

/* ---------------------------------------------------------------------- */
/* Contact page                                                           */
/* ---------------------------------------------------------------------- */
.contact-grid {
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 26px 30px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-badge {
  min-width: 38px; height: 38px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-weight: 700; font-size: 14px;
  flex: none;
}
.contact-info-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); font-weight: 700; }
.contact-info-value { margin: 8px 0 0; font-size: 15px; line-height: 1.7; color: var(--brown-mid); }
.contact-info-value a { color: var(--brown-mid); }

.contact-form-card { background: var(--white); border-radius: 20px; padding: 34px; box-shadow: var(--shadow-md); }
.contact-form-card h2 { margin: 0 0 22px; font-size: 18px; color: var(--brown-mid); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-size: 12.5px; font-weight: 600; color: var(--brown-mid); margin-bottom: -10px; }
.contact-form input,
.contact-form textarea {
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(90, 54, 32, 0.18);
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  width: 100%;
}
.contact-form textarea { resize: vertical; }
.contact-form button {
  background: var(--brown-mid);
  color: var(--cream);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-form button:hover { background: var(--brown-mid-dark); }
.contact-form-note { margin: 0; font-size: 11.5px; color: var(--ink); opacity: 0.6; text-align: center; }
.form-status { font-size: 12.5px; color: var(--accent); font-weight: 600; min-height: 1em; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; padding: 32px 20px; gap: 30px; }
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                 */
/* ---------------------------------------------------------------------- */
.site-footer {
  background: var(--brown-mid);
  color: var(--cream);
  padding: 64px 56px 30px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand-mark {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 11px;
  overflow: hidden;
  background: repeating-linear-gradient(115deg, #D9A25F, #D9A25F 4px, #B06B39 4px, #B06B39 8px);
  flex: none;
}
.footer-brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-name { font-size: 20px; font-weight: 800; }
.footer-brand-name span { color: var(--gold); }
.footer-desc { margin: 0; font-size: 13px; line-height: 1.8; opacity: 0.75; max-width: 320px; }
.footer-heading { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.footer-links { margin: 16px 0 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--cream); opacity: 0.85; font-size: 13.5px; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-address { margin: 16px 0 0; font-size: 13.5px; line-height: 1.9; opacity: 0.85; }
.footer-bottom {
  border-top: 1px solid rgba(251, 247, 241, 0.15);
  padding-top: 22px;
  font-size: 12px;
  opacity: 0.6;
}

@media (max-width: 860px) {
  .site-footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------------------------------------------------------------------- */
/* Floating WhatsApp button                                               */
/* ---------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 999px;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  z-index: 60;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

@media (max-width: 480px) {
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}

/* ---------------------------------------------------------------------- */
/* Utility                                                                */
/* ---------------------------------------------------------------------- */
.text-center { text-align: center; }
.max-680 { max-width: 680px; margin: 0 auto; }
.mt-0 { margin-top: 0; }
.lead { font-size: 15px; line-height: 1.8; color: var(--ink); opacity: 0.75; }
