/* Shared layout for templates/brand-site.html — colors come from theme CSS variables */
body.brand-site, html {
  margin: 0;
  padding: 0;
  font-family: var(--brand-font, Poppins, Arial, sans-serif);
  color: var(--brand-text, #222);
  background: var(--brand-bg, #fff);
}

.announcement {
  background: var(--brand-announcement-bg, #5a3215);
  color: var(--brand-announcement-text, #fff);
  text-align: center;
  font-size: 14px;
  padding: 8px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: var(--brand-nav-bg, #fff);
  position: relative;
  z-index: 10;
}

.navbar .logo img { height: 70px; width: auto; }
.navbar ul { list-style: none; display: flex; gap: 40px; margin: 0; padding: 0; }
.navbar ul li { font-size: 18px; font-weight: 900; letter-spacing: 0.5px; }
.navbar ul li a { text-decoration: none; color: inherit; transition: color 0.25s; }
.navbar ul li a:hover, .navbar ul li a.nav-primary { color: var(--brand-primary, #5a3215); }
.navbar .icons { display: flex; gap: 25px; font-size: 22px; }

.hero {
  position: relative;
  height: 62vh;
  min-height: 480px;
  max-height: 680px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero video,
.hero .hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(65%);
}

.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; margin-bottom: 20px; line-height: 1.2; }

.intro-text { width: 100%; padding: 60px 6vw 40px; }
.intro-copy {
  margin: 0 auto;
  max-width: 1200px;
  font-size: 1.45em;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

.info-section {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-center img { width: 100%; max-width: 520px; display: block; margin: 0 auto; }
.info-right h2 { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.info-right p { font-size: 16px; line-height: 1.6; color: #333; margin-bottom: 24px; }

.feature-hero, .feature-hero-2 {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}

.feature-overlay, .feature-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

.feature-card {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 44px 38px;
  max-width: 360px;
  margin-left: 6vw;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.feature-card h3 { font-size: 24px; font-weight: 700; margin: 0 0 14px; }
.feature-card p { font-size: 15px; line-height: 1.6; color: #333; margin-bottom: 26px; }

.versatile-new { padding: 60px 6vw; background: var(--brand-section-bg, #f7f4f0); }
.versatile-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.versatile-visual img { width: 100%; border-radius: 8px; }
.versatile-copy h3 { font-size: 26px; margin-bottom: 12px; }
.versatile-copy p { font-size: 16px; line-height: 1.6; color: #333; }

.reviews-section { padding: 60px 6vw 80px; text-align: center; }
.reviews-section h2 { font-size: 28px; margin-bottom: 8px; }
.reviews-subtitle { color: #666; margin-bottom: 32px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.review-card img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; }
.review-meta { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 12px 0; }
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-primary, #6b3f23); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.name { font-size: 13px; font-weight: 600; }
.review-text { font-size: 13px; color: #444; line-height: 1.5; }
.stars { color: #ebbf20; font-size: 14px; }

.site-footer {
  background: var(--brand-footer-bg, #000);
  color: var(--brand-footer-text, #fff);
  padding: 80px 6vw;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.site-footer h4 { font-size: 13px; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.08em; }
.site-footer a { display: block; color: #bbb; font-size: 13px; margin-bottom: 8px; text-decoration: none; }
.site-footer p { font-size: 13px; color: #bbb; line-height: 1.6; }
.site-footer input {
  margin-top: 12px; padding: 10px; width: 100%;
  background: transparent; border: 1px solid #444; color: #fff;
}

.brand-cta {
  display: inline-block;
  background: var(--brand-primary, #6b3f23);
  color: var(--brand-cta-text, #fff);
  border: none;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.15s;
}

.brand-cta:hover { background: var(--brand-primary-hover, #56311b); }

.brand-cta--passive {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.15);
}
.brand-cta--passive[href] {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
  filter: none;
}

.hero .brand-cta {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.hero .brand-cta:hover { background: #fff; color: #111; }

@media (max-width: 900px) {
  .info-section, .versatile-inner { grid-template-columns: 1fr; }
  .navbar { flex-wrap: wrap; gap: 12px; padding: 12px 20px; }
  .navbar ul { gap: 16px; flex-wrap: wrap; }
}
