/* ============================================================
   Corporate Theme — scoped under .site-root
   Uses CSS custom properties set by the renderer from site.settings.colors
   ============================================================ */

.site-root {
  --theme-primary: #1a5c2a;
  --theme-secondary: #2d2d2d;
  --theme-accent: #c8a84b;
  --theme-bg: #ffffff;
  --theme-text: #1a1a1a;
  --theme-text-muted: #666666;
  --theme-border: #e5e7eb;
  --theme-font-heading: "Raleway", "Inter Variable", sans-serif;
  --theme-font-body: "Open Sans", "Inter Variable", sans-serif;
  --theme-radius: 6px;
  --theme-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --theme-max-width: 1200px;

  font-family: var(--theme-font-body);
  color: var(--theme-text);
  background: var(--theme-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.site-root *,
.site-root *::before,
.site-root *::after {
  box-sizing: border-box;
}

.site-root h1,
.site-root h2,
.site-root h3,
.site-root h4 {
  font-family: var(--theme-font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--theme-secondary);
}

.site-root a {
  color: inherit;
  text-decoration: none;
}

.site-root img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   Decorative section title watermark
   ============================================================ */
.site-block--deco {
  position: relative;
  overflow: hidden;
}

.site-block--deco::before {
  content: attr(data-deco);
  position: absolute;
  top: var(--deco-y, 15%);
  left: var(--deco-x, 50%);
  transform: translateX(-50%);
  font-size: var(--deco-size, min(14vw, 130px));
  font-weight: 900;
  color: var(--deco-color, rgba(0, 0, 0, 0.08));
  font-family: var(--theme-font-heading);
  pointer-events: none;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}

.site-block--deco > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Layout utilities
   ============================================================ */
.site-container {
  max-width: var(--theme-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-section {
  padding: 80px 0;
}

.site-section--alt {
  background: #f8f9fa;
}

.site-section__header {
  text-align: center;
  margin-bottom: 56px;
}

.site-section__headline {
  font-family: var(--theme-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--theme-secondary);
  margin-bottom: 16px;
}

.site-section__subtitle {
  font-size: 1.125rem;
  color: var(--theme-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   Buttons
   ============================================================ */
.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--theme-radius);
  font-family: var(--theme-font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.site-btn--primary {
  background: var(--theme-accent);
  color: #fff;
  border-color: var(--theme-accent);
}

.site-btn--primary:hover {
  background: #b8942f;
  border-color: #b8942f;
}

.site-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.site-btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.site-btn--secondary {
  background: transparent;
  color: var(--theme-primary);
  border-color: var(--theme-primary);
}

.site-btn--secondary:hover {
  background: var(--theme-primary);
  color: #fff;
}

/* ============================================================
   Page Header (internal pages)
   ============================================================ */
.site-page-header {
  background: #141e0f;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
}

.site-page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 16, 8, 0.7) 0%,
    rgba(10, 16, 8, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  width: 100%;
}

.site-page-header__overlay .site-container {
  padding-bottom: 32px;
  padding-top: 80px;
}

.site-page-header__title {
  font-family: var(--theme-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.site-page-header__subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

/* Navigation transparent mode (overlays page-header) */
.site-nav--transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  z-index: 200;
}

.site-nav--transparent .site-nav__logo-text {
  color: #fff;
}

.site-nav--transparent .site-nav__menu a {
  color: rgba(255, 255, 255, 0.9);
}

.site-nav--transparent .site-nav__menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav--transparent .site-nav__mobile-toggle {
  color: #fff;
}

/* When nav is transparent, page-header needs top padding for nav height */
.site-page-header--with-nav .site-page-header__overlay .site-container {
  padding-top: 110px;
}

/* ============================================================
   Navigation
   ============================================================ */
.site-nav {
  position: relative;
  z-index: 100;
  background: var(--theme-bg);
  border-bottom: 1px solid var(--theme-border);
}

.site-nav--sticky {
  position: sticky;
  top: 0;
}

.site-nav__inner {
  max-width: var(--theme-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-nav__logo {
  display: flex;
  align-items: center;
}

.site-nav__logo img {
  height: 44px;
  width: auto;
}

.site-nav__logo-text {
  font-family: var(--theme-font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--theme-primary);
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__menu a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--theme-text);
  border-radius: var(--theme-radius);
  transition: color 0.2s, background 0.2s;
}

.site-nav__menu a:hover {
  color: var(--theme-primary);
  background: rgba(0, 0, 0, 0.04);
}

.site-nav__menu a.site-btn--primary {
  color: #fff;
  padding: 8px 20px;
}

.site-nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--theme-text);
}

@media (max-width: 768px) {
  .site-nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--theme-bg);
    border-bottom: 1px solid var(--theme-border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 4px;
    box-shadow: var(--theme-shadow);
  }

  .site-nav__menu.is-open {
    display: flex;
  }

  .site-nav__mobile-toggle {
    display: flex;
  }

  .site-nav__menu a {
    display: block;
    padding: 10px 14px;
  }
}

/* ============================================================
   Hero Slider
   ============================================================ */
.site-hero {
  position: relative;
  overflow: hidden;
  background: var(--theme-secondary);
  min-height: 100vh;
}

.site-hero__slides {
  display: flex;
  transition: transform 0.6s ease;
  height: 100%;
}

.site-hero__slide {
  min-width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / var(--hero-overlay-opacity, 0.4));
}

.site-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--theme-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
  color: #fff;
  text-align: center;
}

.site-hero__headline {
  font-family: var(--theme-font-heading);
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.site-hero__highlight {
  color: var(--theme-accent);
}

.site-hero__subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.site-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.site-hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.site-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.site-hero__dot.is-active {
  background: var(--theme-accent);
}

/* ============================================================
   About
   ============================================================ */
.site-about {
  padding: 80px 0;
}

.site-about__inner {
  max-width: var(--theme-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.site-about__inner--image-left {
  direction: rtl;
}

.site-about__inner--image-left > * {
  direction: ltr;
}

.site-about__headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  margin-bottom: 20px;
}

.site-about__body {
  color: var(--theme-text-muted);
  line-height: 1.8;
  white-space: pre-line;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* Features list (replaces highlights) */
.site-about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-about__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.site-about__feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--theme-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.site-about__feature-title {
  font-family: var(--theme-font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--theme-secondary);
  margin-bottom: 3px;
}

.site-about__feature-desc {
  font-size: 0.875rem;
  color: var(--theme-text-muted);
  line-height: 1.6;
}

/* Bullet-style feature (no description) */
.site-about__feature--bullet {
  gap: 10px;
}

.site-about__feature-check {
  color: var(--theme-primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Bullet list */
.site-about__bullets {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-about__bullets li {
  font-size: 0.9375rem;
  color: var(--theme-text-muted);
  line-height: 1.6;
}

/* Image grid */
.site-about__image-grid {
  flex-shrink: 0;
}

.site-about__image-grid--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-radius: 10px;
  overflow: hidden;
}

.site-about__image-grid--2 .site-about__image-grid-item {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.site-about__image-grid--2 .site-about__image-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mosaic: 1 large + stacked */
.site-about__image-grid--mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 400px;
}

.site-about__image-grid-main {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.site-about__image-grid-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-about__image-grid-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

.site-about__image-grid-stack .site-about__image-grid-item {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

.site-about__image-grid-stack .site-about__image-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .site-about__image-grid--mosaic {
    height: 280px;
  }
}

/* Image stack (two overlapping photos) */
.site-about__image-stack {
  position: relative;
  height: 420px;
  flex-shrink: 0;
}

.site-about__image-stack-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 72%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--theme-shadow);
}

.site-about__image-stack-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 72%;
  height: 76%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.site-about__image-stack-back img,
.site-about__image-stack-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .site-about__image-stack {
    height: 300px;
  }
}

/* Stats/highlights */
.site-about__highlights {
  display: flex;
  gap: 32px;
}

.site-about__highlight-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--theme-primary);
  font-family: var(--theme-font-heading);
}

.site-about__highlight-label {
  font-size: 0.875rem;
  color: var(--theme-text-muted);
  margin-top: 2px;
}

.site-about__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--theme-shadow);
  aspect-ratio: 4 / 3;
  background: var(--theme-border);
}

.site-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-about__image--transparent {
  background: none;
  box-shadow: none;
  aspect-ratio: auto;
  border-radius: 0;
  overflow: visible;
}

.site-about__image--transparent img {
  object-fit: contain;
}

.site-about__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: var(--theme-primary);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .site-about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-about__inner--image-left {
    direction: ltr;
  }
  .site-about__image {
    order: -1;
  }
}

/* ============================================================
   Products Grid
   ============================================================ */
.site-products {
  padding: 80px 0;
  background: #f8f9fa;
}

.site-products__grid {
  display: grid;
  gap: 28px;
}

.site-products__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.site-products__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.site-products__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Strip layout */
.site-products__strip {
  display: flex;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.site-product-strip__item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.site-product-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.site-product-strip__item:hover img {
  transform: scale(1.05);
}

.site-product-strip__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a5c2a, #2d7a3a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.site-product-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.site-product-strip__title {
  color: #fff;
  font-family: var(--theme-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Card layout */
.site-product-card {
  background: var(--theme-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--theme-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.site-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.site-product-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--theme-border);
}

.site-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.site-product-card:hover .site-product-card__image img {
  transform: scale(1.04);
}

.site-product-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: var(--theme-primary);
  font-size: 0.875rem;
}

.site-product-card__body {
  padding: 24px;
}

.site-product-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--theme-font-heading);
  color: var(--theme-secondary);
}

.site-product-card__description {
  font-size: 0.9375rem;
  color: var(--theme-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.site-product-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--theme-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-product-card__link:hover {
  color: var(--theme-accent);
}

@media (max-width: 900px) {
  .site-products__grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
  .site-products__grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
  .site-products__strip { height: 240px; }
}

@media (max-width: 600px) {
  .site-products__grid--cols-4,
  .site-products__grid--cols-3,
  .site-products__grid--cols-2 { grid-template-columns: 1fr; }
  .site-products__strip { flex-direction: column; height: auto; }
  .site-product-strip__item { height: 200px; }
}

/* ============================================================
   Features
   ============================================================ */
.site-features {
  padding: 80px 0;
}

.site-features__grid {
  display: grid;
  gap: 32px;
}

.site-features__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.site-features__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Split layout: image left + grid right */
.site-features--split {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.site-features__split-image {
  position: relative;
  overflow: hidden;
  background: var(--theme-primary);
}

.site-features__split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-features__split-content {
  background: #f8f9fa;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-features__split-headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--theme-secondary);
  margin-bottom: 8px;
}

.site-features__split-subtitle {
  color: var(--theme-text-muted);
  margin-bottom: 36px;
  font-size: 0.9375rem;
}

@media (max-width: 900px) {
  .site-features--split {
    grid-template-columns: 1fr;
  }
  .site-features__split-image {
    height: 280px;
  }
  .site-features__split-content {
    padding: 48px 24px;
  }
}

/* Feature items */
.site-feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-feature-item--compact {
  flex-direction: row;
  gap: 14px;
  align-items: flex-start;
}

.site-feature-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary);
  flex-shrink: 0;
}

.site-feature-item__icon--accent {
  background: var(--theme-accent);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.site-feature-item__title {
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: var(--theme-font-heading);
  color: var(--theme-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-feature-item__description {
  font-size: 0.875rem;
  color: var(--theme-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .site-features__grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .site-features__grid--cols-3,
  .site-features__grid--cols-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   Testimonial
   ============================================================ */
.site-testimonial {
  padding: 80px 0;
  background: var(--theme-primary);
  color: #fff;
}

.site-testimonial__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.site-testimonial__quote-icon {
  margin-bottom: 24px;
  opacity: 0.6;
}

.site-testimonial__quote {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.75;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 36px;
}

.site-testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.site-testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.site-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-testimonial__name {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--theme-font-heading);
  color: #fff;
}

.site-testimonial__title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Landscape / banner testimonial */
.site-testimonial--landscape {
  padding: 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 460px;
  display: flex;
  align-items: center;
}

.site-testimonial__landscape-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-testimonial__landscape-inner {
  max-width: 520px;
  padding: 60px 64px 60px 40px;
  color: #fff;
  text-align: right;
}

.site-testimonial__accent-text {
  font-family: var(--theme-font-heading);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--theme-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.site-testimonial--landscape .site-testimonial__quote {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
  margin-bottom: 24px;
  line-height: 1.7;
}

.site-testimonial__landscape-author .site-testimonial__name {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--theme-accent);
}

.site-testimonial__landscape-author .site-testimonial__title {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .site-testimonial__landscape-inner {
    padding: 40px 24px;
    max-width: 100%;
    text-align: center;
  }
  .site-testimonial__landscape-overlay {
    justify-content: center;
  }
}

/* ============================================================
   Contact Form
   ============================================================ */
.site-contact {
  padding: 80px 0;
}

.site-contact__inner {
  max-width: var(--theme-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.site-contact__headline {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  margin-bottom: 12px;
}

.site-contact__subtitle {
  color: var(--theme-text-muted);
  margin-bottom: 40px;
  font-size: 0.9375rem;
}

.site-contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-contact__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--theme-secondary);
}

.site-contact__label--required::after {
  content: " *";
  color: #dc2626;
}

.site-contact__input,
.site-contact__textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--theme-border);
  border-radius: var(--theme-radius);
  font-family: var(--theme-font-body);
  font-size: 0.9375rem;
  color: var(--theme-text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.site-contact__input:focus,
.site-contact__textarea:focus {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 3px rgba(26, 92, 42, 0.12);
}

.site-contact__textarea {
  min-height: 130px;
  resize: vertical;
}

.site-contact__submit {
  align-self: flex-start;
}

.site-contact__success {
  padding: 16px 20px;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: var(--theme-radius);
  color: #1a5c2a;
  font-size: 0.9375rem;
}

.site-contact__info {
  padding-top: 8px;
}

.site-contact__info-title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--theme-font-heading);
  margin-bottom: 24px;
  color: var(--theme-secondary);
}

.site-contact__info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-contact__info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.site-contact__info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary);
  flex-shrink: 0;
}

.site-contact__info-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--theme-text-muted);
  margin-bottom: 2px;
}

.site-contact__info-value {
  font-size: 0.9375rem;
  color: var(--theme-text);
}

@media (max-width: 768px) {
  .site-contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--theme-secondary);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 32px;
}

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

.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(auto-fit, minmax(160px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.site-footer__brand {}

.site-footer__logo img {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}

.site-footer__logo-text {
  font-family: var(--theme-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

.site-footer__description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.site-footer__col-title {
  font-family: var(--theme-font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.site-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__col-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.site-footer__col-links a:hover {
  color: #fff;
}

.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.site-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s, color 0.2s;
}

.site-footer__social-link:hover {
  background: var(--theme-accent);
  color: #fff;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__back-to-top {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--theme-radius);
  padding: 7px 14px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-footer__back-to-top:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

@media (max-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WhatsApp Button
   ============================================================ */
.site-whatsapp {
  position: fixed;
  bottom: 24px;
  z-index: 1000;
}

.site-whatsapp--bottom-right { right: 24px; }
.site-whatsapp--bottom-left { left: 24px; }

.site-whatsapp__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
}

.site-whatsapp__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.site-whatsapp__bubble {
  position: absolute;
  bottom: 68px;
  right: 0;
  background: #fff;
  border-radius: 12px 12px 0 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  font-size: 0.875rem;
  color: var(--theme-text);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.site-whatsapp--bottom-left .site-whatsapp__bubble {
  right: auto;
  left: 0;
  border-radius: 12px 12px 12px 0;
}

.site-whatsapp:hover .site-whatsapp__bubble {
  opacity: 1;
  transform: translateY(0);
}

.site-whatsapp__agent-name {
  font-weight: 600;
  color: var(--theme-text);
}

.site-whatsapp__hint {
  font-size: 0.8rem;
  color: var(--theme-text-muted);
}
