/* ===== CSS VARIABLES ===== */
:root {
  --hunter-green: #386641;
  --sage-green: #6a994e;
  --yellow-green: #a7c957;
  --champagne: #f2e8cf;
  --champagne-dark: #e0d0a8;
  --white: #ffffff;
  --dark: #1a2e1d;
  --text-dark: #2c3e2f;
  --text-mid: #4a6b4e;
  --shadow: rgba(56, 102, 65, 0.15);
  --shadow-heavy: rgba(56, 102, 65, 0.3);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  display: block;
}

/* Предотвратява SVG-тата да се разтягат извън контейнера */
svg {
  max-width: 100%;
  height: auto;
}

/* Изключение — SVG-та с фиксирани размери в иконите */
.why-icon svg,
.contact-item-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.product-icon {
  width: 110px !important;
  height: 110px !important;
  flex-shrink: 0;
}

.hero-img-placeholder svg {
  width: 36px !important;
  height: 36px !important;
  flex-shrink: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--hunter-green);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p {
  font-size: 1.05rem;
  color: var(--text-dark);
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: var(--yellow-green);
  margin: 0.7rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--hunter-green);
  color: var(--champagne);
  border-color: var(--hunter-green);
}

.btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-heavy);
}

.btn-outline {
  background: transparent;
  color: var(--hunter-green);
  border-color: var(--hunter-green);
}

.btn-outline:hover {
  background: var(--hunter-green);
  color: var(--champagne);
  transform: translateY(-2px);
}

/* ===== HEADER & NAVIGATION ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(242, 232, 207, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(56, 102, 65, 0.12);
  transition: var(--transition);
}

#header.scrolled {
  box-shadow: 0 4px 24px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  padding-right: 120px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon img {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--hunter-green);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--sage-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 4px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--yellow-green);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--hunter-green);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-cta {
  margin-left: 1rem;
  padding: 0.55rem 1.4rem;
  background: var(--hunter-green);
  color: var(--champagne) !important;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-cta:hover {
  background: var(--dark) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--hunter-green);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== PAGE WRAPPER ===== */
.page {
  display: none;
  padding-top: 80px;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* ===== HERO (HOME) ===== */
.hero {
  position: relative;
  min-height: clamp(560px, 72vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Full-bleed kitchen photo */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(0.88);
  transform-origin: center center;
}

/* Gradient: solid dark left → transparent right — blends photo into brand colour */
.hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #1a2e1d 0%,
    #1a2e1d 30%,
    rgba(26, 46, 29, 0.92) 45%,
    rgba(56, 102, 65, 0.55) 65%,
    rgba(56, 102, 65, 0.1) 85%,
    transparent 100%
  );
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, var(--champagne) 0, var(--champagne) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0;
  padding: 8rem 2rem 5rem 4rem;
  display: grid;
  grid-template-columns: minmax(auto, 580px);
  gap: 3rem;
  align-items: center;
}

.hero-text .badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(167, 201, 87, 0.2);
  border: 1px solid var(--yellow-green);
  color: var(--yellow-green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  color: var(--champagne);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-text h1 span {
  color: var(--yellow-green);
}

.hero-text p {
  color: rgba(242, 232, 207, 0.85);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn-outline {
  color: var(--champagne);
  border-color: rgba(242, 232, 207, 0.5);
}

.hero-buttons .btn-outline:hover {
  background: rgba(242, 232, 207, 0.15);
  border-color: var(--champagne);
  color: var(--champagne);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--yellow-green);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(242, 232, 207, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 12px;
  border-radius: 12px;
  overflow: hidden;
}

.hero-img-item {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.hero-img-item:first-child {
  grid-row: span 2;
}

.hero-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img-item:hover img {
  transform: scale(1.05);
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: rgba(242, 232, 207, 0.4);
  font-size: 0.8rem;
  gap: 0.5rem;
}

.hero-img-placeholder svg {
  width: 36px;
  height: 36px;
  opacity: 0.5;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 6rem 0;
  background: var(--champagne);
}

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

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px var(--shadow-heavy);
}

.product-card-image {
  height: 220px;
  background: linear-gradient(135deg, var(--hunter-green), var(--sage-green));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-icon {
  width: 110px;
  height: 110px;
  fill: rgba(242, 232, 207, 0.3);
}

.product-card-body {
  padding: 1.75rem;
}

.product-card-body h3 {
  margin-bottom: 0.75rem;
}

.product-card-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.product-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(56, 102, 65, 0.08);
  color: var(--hunter-green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 5rem 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  background: var(--hunter-green);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.service-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.service-card-body h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin: 0;
}

.service-card-body > p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.service-badge {
  display: inline-block;
  background: var(--hunter-green);
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}

.service-badge--alt {
  background: var(--yellow-green);
  color: var(--dark);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.service-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--hunter-green);
}

.service-cta {
  display: inline-block;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  background: var(--hunter-green);
  color: var(--champagne);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
  align-self: flex-start;
}

.service-cta:hover {
  background: var(--dark);
  color: var(--champagne);
}

/* Mobile lang switcher — hidden on all viewports; shown only via the fixed langBar */
.nav-lang-mobile { display: none; }

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-icon { padding: 2rem; }
  .service-icon svg { width: 80px; height: 80px; }
  .service-card-body { padding: 1.5rem; }
}

/* ===== WHY US SECTION ===== */
.why-section {
  padding: 6rem 0;
  background: var(--hunter-green);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--champagne);
  clip-path: ellipse(55% 100% at 50% 0%);
}

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

.why-section .section-title::after {
  background: var(--yellow-green);
}

.why-section .section-subtitle {
  color: rgba(242, 232, 207, 0.75);
}

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

.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(242, 232, 207, 0.1);
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(167, 201, 87, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 2px solid rgba(167, 201, 87, 0.3);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--yellow-green);
}

.why-item h3 {
  color: var(--champagne);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.why-item p {
  color: rgba(242, 232, 207, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== FEATURED PROJECTS (HOME) ===== */
.featured-section {
  padding: 6rem 0;
  background: #f7f0e0;
}

.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.featured-item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: var(--sage-green);
  cursor: pointer;
  text-decoration: none;
}

.featured-item:first-child {
  grid-row: span 2;
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-item:hover img {
  transform: scale(1.06);
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(26, 46, 29, 0.85), transparent);
  color: var(--champagne);
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.featured-item:hover .featured-overlay {
  transform: translateY(0);
  opacity: 1;
}

.featured-overlay span {
  font-size: 0.8rem;
  color: var(--yellow-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-overlay h4 {
  color: var(--champagne);
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sage-green), var(--hunter-green));
  color: rgba(242, 232, 207, 0.5);
  font-size: 0.82rem;
  gap: 0.5rem;
  font-family: var(--font-body);
}

.img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

.featured-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 6rem 0;
  background: var(--champagne);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: var(--champagne-dark);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--hunter-green);
  color: var(--champagne);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--champagne);
  box-shadow: 0 0 0 2px var(--hunter-green);
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--yellow-green);
  color: var(--dark);
  box-shadow: 0 0 0 2px var(--yellow-green);
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-mid);
}

/* ===== GALLERY PAGE ===== */
.gallery-hero {
  background: linear-gradient(135deg, var(--dark), var(--hunter-green));
  padding: 6rem 0 5rem;
  text-align: center;
}

.gallery-hero h1 {
  color: var(--champagne);
}

.gallery-hero p {
  color: rgba(242, 232, 207, 0.7);
  margin-top: 1rem;
  font-size: 1.1rem;
}

.gallery-section {
  padding: 4rem 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.55rem 1.4rem;
  border: 2px solid var(--champagne-dark);
  background: var(--white);
  color: var(--text-mid);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--hunter-green);
  border-color: var(--hunter-green);
  color: var(--champagne);
}

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

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sage-green);
  cursor: pointer;
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
}

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

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px var(--shadow-heavy);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(26, 46, 29, 0.9), transparent);
  color: var(--champagne);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption span {
  font-size: 0.75rem;
  color: var(--yellow-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-caption p {
  color: var(--champagne);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--hunter-green);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  overflow: hidden;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: linear-gradient(135deg, var(--dark), var(--hunter-green));
  padding: 6rem 0 5rem;
  text-align: center;
}

.contact-hero h1 {
  color: var(--champagne);
}

.contact-hero p {
  color: rgba(242, 232, 207, 0.7);
  margin-top: 1rem;
}

.contact-section {
  padding: 5rem 0;
}

.map-section {
  padding: 3rem 0 0;
  background: var(--champagne-light);
}

.map-section .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.map-embed {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 -4px 24px var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: rgba(56, 102, 65, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(56, 102, 65, 0.15);
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--hunter-green);
}

.contact-item-body h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sage-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.contact-item-body p,
.contact-item-body a {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-item-body a:hover {
  color: var(--hunter-green);
}

.contact-msg-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--champagne);
  border: 1.5px solid var(--champagne-dark);
  border-radius: 10px;
  text-decoration: none;
  color: var(--dark);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.contact-msg-btn:hover {
  transform: translateX(4px);
}

.msg-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--hunter-green);
  color: var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.working-hours {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(56, 102, 65, 0.06);
  border-radius: 10px;
  border-left: 4px solid var(--sage-green);
}

.working-hours h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-green);
  margin-bottom: 0.75rem;
}

.working-hours p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px var(--shadow);
}

.contact-form-wrap h3 {
  margin-bottom: 0.5rem;
}

.contact-form-wrap .form-intro {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--champagne-dark);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-dark);
  background: #fafaf7;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage-green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(106, 153, 78, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0a990;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--hunter-green);
  color: var(--champagne);
  border: none;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-heavy);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  display: none;
}

.form-message.success {
  background: rgba(106, 153, 78, 0.15);
  color: var(--hunter-green);
  border: 1px solid var(--sage-green);
  display: block;
}

.form-message.error {
  background: rgba(220, 50, 50, 0.1);
  color: #c0392b;
  border: 1px solid #e74c3c;
  display: block;
}

/* Map placeholder */
.map-section {
  padding: 0 0 5rem;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--hunter-green), var(--sage-green));
  border-radius: 14px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(242, 232, 207, 0.6);
  font-size: 0.9rem;
  overflow: hidden;
  position: relative;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
  position: absolute;
  inset: 0;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(242, 232, 207, 0.7);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-name {
  color: var(--champagne);
  font-size: 1.4rem;
}

.footer-brand .logo-tagline {
  color: var(--yellow-green);
}

.footer-brand p {
  margin-top: 1.25rem;
  color: rgba(242, 232, 207, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--champagne);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(242, 232, 207, 0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--yellow-green);
}

.footer-contact p {
  color: rgba(242, 232, 207, 0.55);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(242, 232, 207, 0.55);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--yellow-green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(242, 232, 207, 0.35);
}

.footer-bottom a {
  color: var(--yellow-green);
  opacity: 0.7;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-up {
  animation: fadeUp 0.7s ease forwards;
}

.animate-in {
  animation: fadeIn 0.5s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }

/* ===== HERO BRAND MARK ANIMATION ===== */
.hero-brand-mark {
  margin-bottom: 1.75rem;
}

.hero-logo-svg {
  width: 120px;
  height: 120px;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
}

/* Background rect scales + fades in */
.hlk-bg {
  fill: #386641;
  transform-origin: center;
  animation: hlk-bg-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}

/* Vertical bar slides up from inside */
.hlk-bar {
  fill: #f2e8cf;
  animation: hlk-slide-in 0.45s ease forwards;
  animation-delay: 0.45s;
  opacity: 0;
}

/* Upper diagonal (green K arm) slides in from top-right */
.hlk-up {
  fill: #a7c957;
  animation: hlk-up-in 0.4s ease forwards;
  animation-delay: 0.65s;
  opacity: 0;
}

/* Lower diagonal slides in from bottom-right */
.hlk-lo {
  fill: #f2e8cf;
  animation: hlk-lo-in 0.4s ease forwards;
  animation-delay: 0.85s;
  opacity: 0;
}

/* Decorative lines draw in */
.hlk-lines {
  fill: none;
  stroke: #386641;
  stroke-width: 0.5px;
  stroke-miterlimit: 10;
  animation: hlk-lines-in 0.5s ease forwards;
  animation-delay: 1.05s;
  opacity: 0;
}

@keyframes hlk-bg-in {
  from { opacity: 0; transform: scale(0.82); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes hlk-slide-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hlk-up-in {
  from { opacity: 0; transform: translate(8px, -6px); }
  to   { opacity: 1; transform: translate(0, 0); }
}

@keyframes hlk-lo-in {
  from { opacity: 0; transform: translate(8px, 6px); }
  to   { opacity: 1; transform: translate(0, 0); }
}

@keyframes hlk-lines-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Mobile: slightly smaller */
@media (max-width: 768px) {
  .hero-logo-svg { width: 90px; height: 90px; }
  .hero-brand-mark { margin-bottom: 1.25rem; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-photo-bg::after {
    background: linear-gradient(
      to bottom,
      #1a2e1d 0%,
      rgba(26, 46, 29, 0.88) 55%,
      rgba(26, 46, 29, 0.45) 100%
    );
  }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .featured-item:first-child { grid-column: span 2; height: 280px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  /* Hide the langToggle inside the header on mobile — the fixed langBar (BG/EN) handles switching */
  #langToggle { display: none !important; }

  /* Reserve space on the right so the hamburger doesn't overlap the langBar */
  .header-inner { padding-right: 118px; }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(242, 232, 207, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0.25rem;
    border-bottom: 2px solid var(--champagne-dark);
    transform: translateY(-110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
    box-shadow: 0 10px 30px var(--shadow);
    z-index: 998;
    overflow-y: auto;
    max-height: calc(100vh - 64px);
  }

  .nav-menu.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.35s ease, visibility 0s linear 0s;
  }

  .nav-link {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    box-sizing: border-box;
  }

  /* Underline: fixed width so it stays proportional to text, not to the full link width */
  .nav-link::after {
    display: block !important;
    left: 1rem;
    transform: none;
    width: 0;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 28px;
  }

  /* Contacts CTA — auto width so it sits naturally in the list */
  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    align-self: flex-start;
    padding: 0.55rem 1.4rem;
    border-radius: 6px;
  }

  /* Hide the in-menu lang switcher — top langBar is sufficient */
  .nav-lang-mobile { display: none; }

  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-item:first-child { grid-column: span 1; }

  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .header-inner { padding: 0.75rem 1rem; padding-right: 112px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
}

/* ===== PARTNERS SCROLLING ===== */
.partners-section {
  background: var(--white);
  padding: 2.5rem 0;
  border-top: 1px solid var(--champagne-dark);
  border-bottom: 1px solid var(--champagne-dark);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.partners-track-wrap {
  overflow: hidden;
  position: relative;
}

.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scroll-partners 30s linear infinite;
  width: max-content;
}

@keyframes scroll-partners {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 60px;
  flex-shrink: 0;
}

.partner-logo img {
  max-height: 50px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.75;
  transition: var(--transition);
}

.partner-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-placeholder {
  display: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sage-green);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ===== FAQ PAGE ===== */
.faq-hero {
  background: linear-gradient(135deg, var(--dark), var(--hunter-green));
  padding: 6rem 0 5rem;
  text-align: center;
}

.faq-hero h1 { color: var(--champagne); }
.faq-hero p  { color: rgba(242,232,207,0.7); margin-top: 1rem; font-size: 1.1rem; }

.faq-section {
  padding: 5rem 0;
  background: var(--champagne);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: var(--transition);
}

.faq-item.open {
  box-shadow: 0 6px 24px var(--shadow-heavy);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hunter-green);
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(56, 102, 65, 0.04);
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--sage-green);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.3rem;
}

.faq-answer p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  border-top: 1px solid var(--champagne-dark);
  padding-top: 1rem;
}

.faq-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.faq-cta p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .faq-question { padding: 1.1rem 1.25rem; font-size: 0.97rem; }
  .faq-answer   { padding: 0 1.25rem; }
  .faq-item.open .faq-answer { padding: 0 1.25rem 1.1rem; }
}

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--hunter-green);
  border: 2px solid var(--yellow-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(56,102,65,0.35);
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scrollTop:hover {
  background: var(--yellow-green);
  border-color: var(--hunter-green);
}

#scrollTop:hover svg {
  stroke: var(--dark);
}

#scrollTop svg {
  width: 22px;
  height: 22px;
  stroke: var(--champagne);
  transition: stroke 0.25s ease;
}

@media (max-width: 768px) {
  #scrollTop {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
}

/* ===== GALLERY MOBILE IMPROVEMENTS ===== */
@media (max-width: 600px) {
  /* Gallery hero */
  .gallery-hero {
    padding: calc(64px + 2rem) 0 2rem;
  }
  .gallery-hero h1 {
    font-size: 1.8rem;
  }
  .gallery-hero p {
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }

  /* Gallery section padding */
  .gallery-section {
    padding: 2rem 0;
  }

  /* Filters — по-малки бутони, по-плътни */
  .gallery-filters {
    gap: 0.45rem;
    margin-bottom: 1.5rem;
  }
  .filter-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  /* Gallery grid — 2 колони */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  /* Gallery item caption — винаги видим на тъч устройства */
  .gallery-caption {
    transform: translateY(0);
    opacity: 1;
    padding: 0.6rem 0.75rem;
  }
  .gallery-caption span {
    font-size: 0.65rem;
  }
  .gallery-caption p {
    font-size: 0.78rem;
    margin-top: 0.1rem;
  }

  /* Contact hero */
  .contact-hero {
    padding: calc(64px + 2rem) 0 2rem;
  }
  .contact-hero h1 {
    font-size: 1.8rem;
  }

  /* FAQ hero */
  .faq-hero {
    padding: calc(64px + 2rem) 0 2rem;
  }
  .faq-hero h1 {
    font-size: 1.8rem;
  }

  /* FAQ items */
  .faq-section {
    padding: 2.5rem 0;
  }
  .faq-question {
    font-size: 0.95rem;
  }

  /* Partners */
  .partners-track {
    gap: 2.5rem;
  }
  .partner-logo {
    min-width: 120px;
  }
}

/* ===== COMPREHENSIVE MOBILE FIX (iPhone / Android) ===== */
@media (max-width: 768px) {

  /* Contact grid — една колона */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Contact section padding */
  .contact-section {
    padding: 2.5rem 0;
  }

  /* Contact form wrap */
  .contact-form-wrap {
    padding: 1.5rem 1rem;
  }

  /* Form rows — стак на мобилен */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Hero sections — account for fixed 64px header + breathing room */
  .contact-hero,
  .faq-hero,
  .gallery-hero {
    padding: calc(64px + 1.5rem) 0 1.5rem;
  }

  .contact-hero h1,
  .faq-hero h1,
  .gallery-hero h1 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .contact-hero p,
  .faq-hero p,
  .gallery-hero p {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

  /* Working hours box */
  .working-hours {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
  }

  /* Contact items */
  .contact-items {
    gap: 1rem;
  }

  .contact-item-icon {
    width: 38px;
    height: 38px;
  }

  /* Products section */
  .products-section {
    padding: 3rem 0;
  }

  /* Why section */
  .why-section {
    padding: 3rem 0;
  }
  .why-section::before {
    display: none;
  }

  /* Featured section */
  .featured-section {
    padding: 3rem 0;
  }

  /* Process section */
  .process-section {
    padding: 3rem 0;
  }

  /* Hero content */
  .hero-content {
    padding: calc(64px + 1.5rem) 1.25rem 3rem;
  }

  .hero-text h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    text-align: center;
    width: 100%;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  /* FAQ */
  .faq-section {
    padding: 2.5rem 0;
  }

  .faq-question {
    padding: 1rem 1.1rem;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 1.1rem;
  }

  .faq-item.open .faq-answer {
    padding: 0 1.1rem 1rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }

  /* Scroll to top */
  #scrollTop {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  /* Partners */
  .partners-section {
    padding: 1.5rem 0;
  }
}

/* ===== BLUEPRINT REVEAL SECTION ===== */
.blueprint-reveal-section {
  background: var(--dark);
  padding: 4rem 0;
}

.blueprint-reveal-section .section-eyebrow {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-green);
  margin-bottom: 1.1rem;
}

.blueprint-reveal-section .section-heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--champagne);
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.cf-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 4 / 3;
}

.cf-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cf-blueprint {
  animation: cf-fade 8s ease-in-out infinite;
}

@keyframes cf-fade {
  0%, 35%  { opacity: 1; }
  50%, 85% { opacity: 0; }
  100%     { opacity: 1; }
}

.cf-caption {
  text-align: center;
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(242, 232, 207, 0.5);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .blueprint-reveal-section {
    padding: 2.5rem 0;
  }
  .cf-wrap {
    border-radius: 8px;
  }
}
