/* ============================================================
   RENDAW s.r.o. — Custom Styles
   Fonts: Playfair Display (headings) + Inter (body)
   Colors managed via CSS variables set from content.json theme
   ============================================================ */

/* ---- CSS Variables (defaults; JS overrides from content.json) ---- */
:root {
  --primary: #AD4610;
  --secondary: #949F67;
  --accent: #D4934A;
  --dark: #1D1E20;
  --light: #FAF7F2;
  --text: #333333;
  --text-light: #888888;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);

  --nav-height: 72px;
  --section-pad: 100px;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Scroll ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

/* ---- Page Loader ---- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  animation: pulse 1.2s ease-in-out infinite;
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-progress {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  animation: loadProgress 1.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.5; } }
@keyframes loadProgress { 0% { width:0; } 100% { width:100%; } }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding { padding: var(--section-pad) 0; }

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--dark);
}
.section-subheadline {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}
.section-desc p {
  margin-bottom: 14px;
}
.section-desc p:last-child {
  margin-bottom: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: #8f3a0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(173,70,16,0.3);
}
.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ---- Image Placeholder ---- */
.img-placeholder {
  background: linear-gradient(135deg, #ede6de 0%, #d8cec4 100%);
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(173,70,16,0.04) 0%, rgba(148,159,103,0.04) 100%);
}
.img-placeholder::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  opacity: 0.25;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23AD4610' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.25 15.75l5.159-5.159a2.25 2.25 0 013.182 0l5.159 5.159m-1.5-1.5l1.409-1.409a2.25 2.25 0 013.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 001.5-1.5V6a1.5 1.5 0 00-1.5-1.5H3.75A1.5 1.5 0 002.25 6v12a1.5 1.5 0 001.5 1.5zm10.5-11.25h.008v.008h-.008V8.25zm.375 0a.375.375 0 11-.75 0 .375.375 0 01.75 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 0;
}
nav.scrolled {
  background: rgba(29, 30, 32, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-phone:hover { color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px 28px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.mobile-nav-links li a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-links li a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-cta { margin-bottom: 12px; text-align: center; }
.mobile-phone {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  padding: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-placeholder {
  background: linear-gradient(135deg, #2c1a0e 0%, #1D1E20 50%, #3a200f 100%) !important;
}
.hero-placeholder::after { opacity: 0.08; width: 80px; height: 80px; }
/* Hide fallback bg when video is present (JS shows it if video fails) */
.hero-video + .hero-bg { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(29,30,32,0.88) 0%,
    rgba(29,30,32,0.6) 60%,
    rgba(173,70,16,0.15) 100%
  );
}
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}
.hero-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-centered .hero-subheadline {
  max-width: 540px;
}
.hero-centered .hero-actions {
  justify-content: center;
}
/* (hero badges removed) */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subheadline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* (scroll hint removed) */

/* ============================================================
   INFO CARDS (below about image)
   ============================================================ */
.about-info-cards {
  margin-top: 32px;
}
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.info-card {
  background: var(--light);
  border: 1px solid rgba(173,70,16,0.1);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.info-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(173,70,16,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.info-card-icon svg { width: 20px; height: 20px; }
.info-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.info-card-text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
}
/* (about image badge removed — info cards used instead) */
.about-content-col { padding-bottom: 24px; }
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.highlight-icon {
  width: 44px;
  height: 44px;
  background: rgba(173,70,16,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.highlight-icon svg { width: 20px; height: 20px; }
.highlight-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.highlight-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img-wrap {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #f5f0eb 0%, #ebe4dc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-card-img {
  width: 100%;
  height: 100%;
}
.service-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-card-body { padding: 28px; flex: 1; }
.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(173,70,16,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.service-icon-wrap svg { width: 24px; height: 24px; }
.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: #fff; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  opacity: 0.25;
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}
.process-step-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  border: 3px solid rgba(173,70,16,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  transition: all 0.3s ease;
  position: relative;
}
.process-step:hover .process-step-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(173,70,16,0.3);
  transform: scale(1.05);
}
.process-step-icon svg { width: 28px; height: 28px; }
.process-step-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.process-step-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--light); }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.gallery-filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid rgba(173,70,16,0.25);
  color: var(--text-light);
  background: transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item.hidden { display: none; }

/* Category dividers between groups */
.gallery-category-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0 4px;
}
.gallery-category-divider:first-child {
  padding-top: 0;
}
.gallery-category-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.gallery-category-line {
  flex: 1;
  height: 1px;
  background: rgba(173,70,16,0.15);
}
.gallery-category-divider.hidden { display: none; }

/* Caption below images */
.gallery-item-caption {
  padding: 16px 20px;
}
.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

/* --- Before / After toggle card --- */
.gallery-ba-card {
  display: flex;
  flex-direction: column;
}
.ba-image-area {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark);
}
.ba-title-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to bottom, rgba(29,30,32,0.7) 0%, transparent 100%);
  pointer-events: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ba-img.active {
  opacity: 1;
}
.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.ba-toggle-btn {
  padding: 12px 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  background: var(--dark);
  color: rgba(255,255,255,0.45);
}
.ba-toggle-btn:first-child {
  border-right: 1px solid rgba(255,255,255,0.1);
}
.ba-toggle-btn.active {
  background: linear-gradient(135deg, #2a3a2a 0%, #1D1E20 100%);
  color: var(--accent);
}
.ba-toggle-btn:hover:not(.active) {
  color: rgba(255,255,255,0.7);
}
.gallery-ba-card > .gallery-item-caption {
  display: none; /* title is in the overlay instead */
}

/* --- Single image card (installation) --- */
.gallery-single-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-single-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: box-shadow 0.3s ease;
  border: 1px solid rgba(173,70,16,0.08);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 28px;
  user-select: none;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.star {
  color: #F59E0B;
  font-size: 1rem;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(173,70,16,0.1);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e8e0d8;
}
.avatar-silhouette {
  width: 100%;
  height: 100%;
  display: block;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}
.testimonial-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}
.testimonial-project {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(173,70,16,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
}
.cta-subheadline {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--light); }
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(173,70,16,0.1);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-item.open .faq-question { color: var(--primary); }
.faq-question-text { flex: 1; }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-answer-inner {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  padding-bottom: 22px;
  border-top: 1px solid rgba(173,70,16,0.08);
  padding-top: 14px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(173,70,16,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
}
.contact-info-value a { color: var(--primary); }
.contact-info-value a:hover { text-decoration: underline; }

/* Contact Form */
.contact-form-wrap {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(173,70,16,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(173,70,16,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); opacity: 0.7; }

.form-success,
.form-error {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.form-success { background: rgba(148,159,103,0.15); color: #5a6e3c; }
.form-error { background: rgba(173,70,16,0.1); color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 36px;
  width: auto;
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--primary); color: #fff; }
.social-link svg { width: 18px; height: 18px; }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links li a:hover { color: #fff; }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal { color: rgba(255,255,255,0.3); }
.footer-credit-link {
  color: var(--accent);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-credit-link:hover { color: #fff; text-decoration: underline; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  transition: all 0.25s ease;
  opacity: 0;
  pointer-events: none;
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* ============================================================
   WHATSAPP ICON IN BUTTONS
   ============================================================ */
.btn-wa-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* ============================================================
   GOOGLE MAP
   ============================================================ */
.contact-map {
  margin-top: 56px;
}
.contact-map iframe {
  display: block;
  width: 100%;
  border-radius: var(--radius);
}

/* ============================================================
   SECTION OVERFLOW CONTAINMENT (prevents GSAP x-animations from
   causing horizontal scroll before ScrollTrigger fires)
   ============================================================ */
.about-section,
.services-section,
.process-section,
.gallery-section,
.testimonials-section,
.faq-section,
.contact-section {
  overflow-x: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-col { max-width: 480px; margin: 0 auto; }
  .about-img { aspect-ratio: 16/9; }
  .process-steps::before { display: none; }
  .cta-container { grid-template-columns: 1fr; text-align: center; }
  .cta-subheadline { max-width: 100%; }
  .cta-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --section-pad: 64px;
  }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
  .hero-headline { font-size: clamp(1.8rem, 5vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .info-cards-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-img-wrap { height: 200px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px; }

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

  .contact-form-wrap { padding: 28px 20px; }
  .contact-map iframe { height: 280px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-header { margin-bottom: 40px; }

  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }
  .container { padding: 0 14px; }

  .nav-logo-img { height: 32px; }
  .nav-container { padding: 0 14px; }

  .hero-headline { font-size: 1.7rem; }
  .hero-subheadline { font-size: 0.95rem; }

  .info-cards-grid { grid-template-columns: 1fr; }
  .info-card { padding: 16px; }

  .section-headline { font-size: 1.5rem; }
  .section-subheadline { font-size: 0.95rem; }

  .services-grid { gap: 16px; }
  .service-card-body { padding: 20px; }
  .service-card-img-wrap { height: 180px; }

  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .ba-title-overlay { font-size: 0.8rem; padding: 10px 12px; }

  .cta-section { padding: 56px 0; }
  .cta-headline { font-size: 1.3rem; }

  .faq-question { padding: 18px 16px; font-size: 0.9rem; }

  .contact-map iframe { height: 240px; }
  .contact-info-item { gap: 12px; }
  .contact-info-value { font-size: 0.9rem; word-break: break-all; }

  .footer-logo-img { height: 28px; }

  .whatsapp-float { width: 48px; height: 48px; bottom: 76px; right: 16px; }
  .scroll-top-btn { width: 42px; height: 42px; right: 16px; bottom: 18px; }
}

@media (max-width: 350px) {
  .container { padding: 0 10px; }
  .nav-container { padding: 0 10px; }
  :root { --nav-height: 56px; }
  .nav-logo-img { height: 28px; }

  .hero-headline { font-size: 1.5rem; }
  .hero-container { padding-left: 12px; padding-right: 12px; }
  .btn-lg { padding: 14px 24px; font-size: 0.9rem; }

  .section-headline { font-size: 1.3rem; }
  .section-header { margin-bottom: 28px; }

  .contact-form-wrap { padding: 20px 14px; }
  .form-group input,
  .form-group textarea { padding: 10px 12px; font-size: 0.9rem; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-6 { margin-top: 1.5rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
