/* ==========================================================================
   LA BUGADÉ — ECO-MEDITERRANEAN LUXURY & PREMIUM DESIGN SYSTEM
   ========================================================================== */

@import url('fonts.css');

:root {
  /* Mediterranean Botanical Palette */
  --color-sage: #4E5E47;
  --color-sage-light: #B6C1A6;
  --color-sage-soft: #EDF3EC;
  --color-sage-glow: rgba(78, 94, 71, 0.16);
  --color-sage-dark: #374432;
  --color-forest: #222C20;
  
  --color-pecan: #6B4D38;
  --color-pecan-dark: #453123;
  --color-terracotta: #B36A4A;
  --color-terracotta-hover: #985637;
  --color-terracotta-soft: #FAF0EB;
  
  --color-stone: #F9F7F3;
  --color-stone-alt: #F3EEE6;
  --color-sand: #E5DECFA6;
  --color-linen: #FAF9F6;
  --color-card-bg: rgba(255, 255, 255, 0.94);
  --color-card-solid: #FFFFFF;
  
  --color-text-dark: #241E1C;
  --color-text-body: #554D47;
  --color-text-muted: #7F756F;
  --color-text-light: #FFFFFF;
  
  --color-border: #E8E2D8;
  --color-border-light: rgba(232, 226, 216, 0.7);
  --color-border-glow: rgba(78, 94, 71, 0.25);
  
  /* Typography */
  --font-heading: 'Averia Sans Libre', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Elevation & Shadows */
  --shadow-sm: 0 4px 14px rgba(44, 37, 35, 0.04);
  --shadow-md: 0 14px 36px rgba(44, 37, 35, 0.07), 0 2px 8px rgba(44, 37, 35, 0.03);
  --shadow-lg: 0 26px 60px rgba(44, 37, 35, 0.11), 0 6px 16px rgba(44, 37, 35, 0.04);
  --shadow-hover: 0 22px 44px -10px rgba(78, 94, 71, 0.22);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Layout */
  --container-max: 1240px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--color-text-body);
  background-color: var(--color-stone);
  background-image: 
    radial-gradient(at 10% 15%, rgba(78, 94, 71, 0.045) 0px, transparent 50%),
    radial-gradient(at 90% 40%, rgba(179, 106, 74, 0.04) 0px, transparent 50%),
    radial-gradient(at 50% 85%, rgba(107, 77, 56, 0.045) 0px, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Organic Mediterranean Wave Dividers */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 48px;
}

.wave-divider.to-alt svg path {
  fill: var(--color-stone-alt);
}

.wave-divider.to-stone svg path {
  fill: var(--color-stone);
}

.wave-divider.to-footer svg path {
  fill: #EDE7DE;
}

/* ==========================================================================
   HEADER & NAVBAR (GLASSMORPHISM)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(249, 247, 243, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.25rem;
  gap: 1.5rem;
  transition: height var(--transition-smooth);
}

.site-header.scrolled .navbar {
  height: 4.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-logo img {
  height: 3.3rem;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--color-text-dark);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-sage), var(--color-terracotta));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-sage);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(229, 222, 207, 0.65);
  border-radius: var(--radius-pill);
  padding: 0.25rem;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.lang-btn {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--color-sage);
  color: var(--color-text-light);
  box-shadow: 0 2px 8px rgba(78, 94, 71, 0.35);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-smooth);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
  color: var(--color-text-light);
  box-shadow: 0 4px 16px rgba(78, 94, 71, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-terracotta {
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-hover));
  color: var(--color-text-light);
  box-shadow: 0 4px 16px rgba(179, 106, 74, 0.3);
}

.btn-terracotta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(179, 106, 74, 0.4);
}

.btn-outline {
  background-color: var(--color-card-bg);
  color: var(--color-pecan);
  border: 1.5px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background-color: var(--color-pecan);
  border-color: var(--color-pecan);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1FAF54);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.35rem;
  cursor: pointer;
  background: transparent;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION (LUXURY PRESENTATION)
   ========================================================================== */
.hero {
  position: relative;
  padding: 4rem 0 5.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(182, 193, 166, 0.28) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(179, 106, 74, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.65rem;
}

/* Badges Header Row */
.hero-top-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--color-forest);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 9px;
  height: 9px;
  background-color: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
  animation: pulse-dot 2.2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35); }
}

.badge-google {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--color-pecan);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.badge-google svg {
  color: #F59E0B;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.7vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--color-pecan);
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--color-sage);
  display: block;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: var(--color-text-body);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin-top: 0.5rem;
}

.hero-badges-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border-light);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.strip-item svg {
  width: 19px;
  height: 19px;
  color: var(--color-sage);
  flex-shrink: 0;
}

/* Hero Visual Card with Subtle Float */
.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid rgba(255, 255, 255, 0.95);
  background: var(--color-card-solid);
  animation: subtle-float 6s ease-in-out infinite;
}

@keyframes subtle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-card:hover img {
  transform: scale(1.04);
}

.hero-floating-badge {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  right: 1.75rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.15rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.floating-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--color-sage-soft);
  color: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-text-dark);
  font-weight: 700;
}

.floating-text p {
  font-size: 0.825rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   STATS COUNTER STRIP
   ========================================================================== */
.stats-strip {
  margin: -2.5rem auto 3.5rem;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--color-card-bg);
  backdrop-filter: blur(14px);
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0 1rem;
  border-right: 1px solid var(--color-border-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--color-sage-soft);
  color: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-pecan);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--color-stone-alt);
}

.section-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3.75rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-terracotta);
  background: var(--color-terracotta-soft);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.6vw, 2.85rem);
  line-height: 1.18;
  color: var(--color-pecan);
  margin-bottom: 1.15rem;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-body);
  line-height: 1.65;
}

/* ==========================================================================
   HIGHLIGHTS GRID
   ========================================================================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: var(--color-card-bg);
  backdrop-filter: blur(12px);
  padding: 2.5rem 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-sage), var(--color-terracotta));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(78, 94, 71, 0.25);
  background: var(--color-card-solid);
}

.highlight-card:hover::before {
  opacity: 1;
}

.highlight-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--color-sage-soft);
  color: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  transition: all var(--transition-bounce);
}

.highlight-card:hover .highlight-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  background: var(--color-sage);
  color: var(--color-text-light);
}

.highlight-icon-wrap svg {
  width: 30px;
  height: 30px;
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-pecan);
  font-weight: 700;
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.65;
}

/* ==========================================================================
   SERVICES (EDITORIAL CARDS)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--color-card-bg);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(78, 94, 71, 0.3);
}

.service-header {
  padding: 2.75rem 2.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--color-sage-soft);
  color: var(--color-sage-dark);
}

.service-badge.pet {
  background: #FEF3C7;
  color: #92400E;
}

.service-badge.eco {
  background: #DCFCE7;
  color: #166534;
}

.service-badge.assist {
  background: #F3E8FF;
  color: #6B21A8;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--color-pecan);
  font-weight: 700;
  line-height: 1.25;
}

.service-body {
  padding: 0 2.75rem 2.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.75rem;
}

.service-body p {
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.7;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(248, 246, 242, 0.7);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--color-text-dark);
  font-weight: 500;
}

.service-features li svg {
  width: 19px;
  height: 19px;
  color: var(--color-sage);
  flex-shrink: 0;
}

/* ==========================================================================
   PHOTO SHOWCASE GALLERY (BOUTIQUE AMBIANCE)
   ========================================================================== */
.boutique-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  height: 280px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(34, 44, 32, 0.92) 0%, transparent 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

/* ==========================================================================
   INTERIOR & TEXTILE AMBIANCE SHOWCASE BANNER
   ========================================================================== */
.brand-visual-banner {
  margin: 4.5rem 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.banner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--color-forest);
  color: var(--color-text-light);
}

.banner-content {
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}

.banner-tag {
  color: var(--color-sage-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.banner-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--color-stone);
}

.banner-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(249, 247, 243, 0.88);
}

.banner-image {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-visual-banner:hover .banner-image img {
  transform: scale(1.05);
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  position: relative;
}

.step-card {
  background: var(--color-card-bg);
  backdrop-filter: blur(12px);
  padding: 3rem 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  transition: all var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-sage);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-sand);
  line-height: 1;
  transition: color var(--transition-fast);
}

.step-card:hover .step-number {
  color: var(--color-sage);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-pecan);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--color-text-body);
  line-height: 1.65;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 50rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.faq-item {
  background: var(--color-card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.faq-item.open {
  border-color: var(--color-sage);
  box-shadow: var(--shadow-sm);
  background: var(--color-card-solid);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-pecan);
  cursor: pointer;
  background: transparent;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-sage);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-stone-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-smooth), background-color var(--transition-fast);
  color: var(--color-sage);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--color-sage);
  color: var(--color-text-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease;
  padding: 0 2rem;
  color: var(--color-text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 320px;
  padding-bottom: 1.75rem;
}

/* ==========================================================================
   LOCATION, MAP & DIRECT CONTACT
   ========================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.location-card {
  background: var(--color-card-bg);
  backdrop-filter: blur(14px);
  padding: 3.5rem 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-sage-soft);
  color: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 26px;
  height: 26px;
}

.info-content h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-pecan);
  margin-bottom: 0.35rem;
}

.info-content p {
  font-size: 0.95rem;
  color: var(--color-text-body);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--color-card-solid);
  box-shadow: var(--shadow-lg);
  min-height: 440px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

/* ==========================================================================
   INSTITUTIONAL FOOTER & LEGAL SEALS
   ========================================================================== */
.site-footer {
  background-color: #EDE7DE;
  border-top: 1px solid var(--color-border);
  padding: 4.5rem 0 2.5rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.25rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(107, 77, 56, 0.15);
}

.footer-logo img {
  height: 3.6rem;
  width: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.25rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.footer-nav a:hover {
  color: var(--color-sage);
}

.subsidies-block {
  padding: 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
}

.subsidies-banner-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 0.85rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.subsidies-text {
  max-width: 50rem;
  font-size: 0.825rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   STICKY MOBILE CONVERSION BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.09);
}

.mobile-sticky-actions {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.6rem;
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1080px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-image-card img {
    height: 380px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .boutique-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .banner-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 5.25rem;
    left: 0;
    right: 0;
    background: var(--color-stone);
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-actions .btn {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 1rem;
  }
  
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .mobile-sticky-bar {
    display: block;
  }
  
  body {
    padding-bottom: 4.5rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .banner-content {
    padding: 3rem 2rem;
  }
  
  .location-card {
    padding: 2.5rem 1.75rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}