/* ============================================
   A3M INTERIORS & INFRATECH — MAIN STYLESHEET
   Design: Japandi Precision — Where Calm Meets Craft
   Colors: Linen #F4EDE4 | Charcoal #3D3D3D | Sage #7D8C6E | Cedar #D4B896
   Fonts: Cormorant Garamond (headings) | Work Sans (body)
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Work Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #3D3D3D;
  background-color: #F4EDE4;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #3D3D3D;
}

::selection { background-color: rgba(212,184,150,0.3); color: #2C2418; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F4EDE4; }
::-webkit-scrollbar-thumb { background: rgba(212,184,150,0.5); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(125,140,110,0.7); }

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* UTILITIES */
.linen-texture { position: relative; }
.linen-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C8B7A' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.linen-texture > * { position: relative; z-index: 1; }

.ink-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4B896, transparent);
  margin: 0 auto;
}

.section-label {
  font-family: 'Work Sans', sans-serif;
  color: #7D8C6E;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.95); transition: opacity 0.5s ease, transform 0.5s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   NAVBAR
   ============================================ */
.site-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.5s ease; padding: 1rem 0;
}
.site-navbar.scrolled {
  background: rgba(244,237,228,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.navbar-inner { display: flex; align-items: center; justify-content: space-between; }

.navbar-logo { display: flex; align-items: center; gap: 0.5rem; }
.navbar-logo .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em;
  color: #fff; transition: color 0.3s;
}
.navbar-logo .logo-sub {
  display: none; font-family: 'Work Sans', sans-serif;
  font-size: 0.7rem; font-weight: 300; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.8); transition: color 0.3s;
}
@media (min-width: 640px) { .navbar-logo .logo-sub { display: block; } }
.site-navbar.scrolled .logo-text { color: #3D3D3D; }
.site-navbar.scrolled .logo-sub { color: #7D8C6E; }

.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: 'Work Sans', sans-serif; font-size: 0.875rem;
  font-weight: 400; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9); transition: color 0.3s;
}
.nav-links a:hover { color: #7D8C6E; }
.site-navbar.scrolled .nav-links a { color: #3D3D3D; }
.site-navbar.scrolled .nav-links a:hover { color: #7D8C6E; }

.nav-cta {
  display: flex; align-items: center; gap: 0.5rem;
  background: #7D8C6E; color: #fff;
  padding: 0.625rem 1.25rem; font-size: 0.875rem;
  font-weight: 500; letter-spacing: 0.02em; transition: background 0.3s;
}
.nav-cta:hover { background: #6B7A5E; }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }
.site-navbar.scrolled .hamburger span { background: #3D3D3D; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; background: #F4EDE4;
  border-top: 1px solid rgba(212,184,150,0.3); padding: 1.5rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu a {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: #3D3D3D; padding: 0.5rem 0; transition: color 0.3s;
}
.mobile-menu a:hover { color: #7D8C6E; }
.mobile-menu .mobile-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #7D8C6E; color: #fff; padding: 0.75rem; margin-top: 1rem;
  font-family: 'Work Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
}

/* ============================================
   HERO
   ============================================ */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(44,36,24,0.8), rgba(44,36,24,0.5), transparent); }
.hero-content { position: relative; z-index: 10; padding-top: 6rem; padding-bottom: 4rem; max-width: 640px; }
.hero-label {
  display: inline-block; font-family: 'Work Sans', sans-serif; color: #D4B896;
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-title .accent { font-style: italic; color: #D4B896; }
@media (min-width: 640px) { .hero-title { font-size: 3.25rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-desc {
  font-family: 'Work Sans', sans-serif; color: rgba(255,255,255,0.75);
  font-size: 1rem; font-weight: 300; line-height: 1.7; max-width: 32rem; margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .hero-desc { font-size: 1.125rem; } }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn-primary {
  display: inline-flex; align-items: center; background: #7D8C6E; color: #fff;
  padding: 0.875rem 2rem; font-family: 'Work Sans', sans-serif;
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; transition: background 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #6B7A5E; }

.btn-outline {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  padding: 0.875rem 2rem; font-family: 'Work Sans', sans-serif;
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; transition: background 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10;
  animation: bounce 2s infinite ease-in-out;
}
.scroll-indicator svg { color: rgba(255,255,255,0.5); width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SERVICES
   ============================================ */
.services-section { padding: 6rem 0; }
@media (min-width: 1024px) { .services-section { padding: 8rem 0; } }
.services-header { display: grid; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .services-header { grid-template-columns: 5fr 7fr; margin-bottom: 5rem; } }
.services-header-right { display: flex; align-items: flex-end; }
.services-header-right p { font-family: 'Work Sans', sans-serif; color: rgba(61,61,61,0.7); font-size: 1rem; font-weight: 300; line-height: 1.7; max-width: 36rem; }
@media (min-width: 1024px) { .services-header-right p { font-size: 1.125rem; } }

.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.service-card { position: relative; background: #F9F5F0; padding: 2rem; transition: all 0.5s ease; }
@media (min-width: 1024px) { .service-card { padding: 2.5rem; } }
.service-card:hover { background: #fff; box-shadow: 0 8px 40px -12px rgba(125,140,110,0.15); }
.service-card::before { content: ''; position: absolute; top: 0; left: 2rem; right: 2rem; height: 1px; background: rgba(212,184,150,0.4); transition: background 0.5s; }
.service-card:hover::before { background: #7D8C6E; }
.service-card .icon { width: 28px; height: 28px; color: #7D8C6E; margin-bottom: 1.5rem; transition: transform 0.5s; }
.service-card:hover .icon { transform: scale(1.1); }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: #3D3D3D; margin-bottom: 0.75rem; }
@media (min-width: 1024px) { .service-card h3 { font-size: 1.5rem; } }
.service-card p { font-family: 'Work Sans', sans-serif; color: rgba(61,61,61,0.6); font-size: 0.875rem; font-weight: 300; line-height: 1.7; }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-section { padding: 6rem 0; background: #fff; }
@media (min-width: 1024px) { .portfolio-section { padding: 8rem 0; } }
.portfolio-header { text-align: center; margin-bottom: 3rem; }
@media (min-width: 1024px) { .portfolio-header { margin-bottom: 4rem; } }
.filter-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.filter-tab {
  padding: 0.5rem 1.25rem; font-family: 'Work Sans', sans-serif; font-size: 0.875rem;
  background: transparent; border: none; color: rgba(61,61,61,0.6); cursor: pointer; transition: all 0.3s;
}
.filter-tab:hover { color: #3D3D3D; background: #F4EDE4; }
.filter-tab.active { background: #7D8C6E; color: #fff; }

.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.portfolio-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.portfolio-item.featured { grid-column: span 1; grid-row: span 1; }
@media (min-width: 1024px) { .portfolio-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; } }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,36,24,0.8), rgba(44,36,24,0.2), transparent);
  opacity: 0; transition: opacity 0.5s; display: flex; align-items: flex-end; padding: 1.5rem;
}
@media (min-width: 1024px) { .portfolio-overlay { padding: 2rem; } }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .category { font-family: 'Work Sans', sans-serif; color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.25rem; }
.portfolio-overlay h3 { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1.25rem; }
@media (min-width: 1024px) { .portfolio-overlay h3 { font-size: 1.5rem; } }

.portfolio-item[data-category].hidden { display: none; }

/* ============================================
   PROCESS
   ============================================ */
.process-section { padding: 6rem 0; background: #3D3D3D; position: relative; overflow: hidden; }
@media (min-width: 1024px) { .process-section { padding: 8rem 0; } }
.process-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.process-header { text-align: center; margin-bottom: 4rem; position: relative; z-index: 1; }
@media (min-width: 1024px) { .process-header { margin-bottom: 5rem; } }
.process-header .section-label { color: #D4B896; }
.process-header h2 { color: #fff; }
.process-divider { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, #D4B896, transparent); margin: 0 auto; }

.process-grid { display: grid; gap: 2rem; position: relative; z-index: 1; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.process-step { text-align: center; position: relative; }
.process-step .step-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: rgba(255,255,255,0.07); margin-bottom: 0.5rem; }
@media (min-width: 1024px) { .process-step .step-number { font-size: 3.75rem; } }
.process-step .step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  border: 1px solid rgba(212,184,150,0.3); margin-bottom: 1.25rem; transition: border-color 0.5s;
}
.process-step:hover .step-icon { border-color: #D4B896; }
.process-step .step-icon svg { width: 22px; height: 22px; color: #D4B896; }
.process-step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: #fff; margin-bottom: 0.75rem; }
.process-step p { font-family: 'Work Sans', sans-serif; color: rgba(255,255,255,0.5); font-size: 0.875rem; font-weight: 300; line-height: 1.7; }

/* ============================================
   ABOUT
   ============================================ */
.about-section { padding: 6rem 0; }
@media (min-width: 1024px) { .about-section { padding: 8rem 0; } }
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; height: 400px; object-fit: cover; }
@media (min-width: 1024px) { .about-image-wrap img { height: 550px; } }
.about-floating-card {
  position: absolute; bottom: -1.5rem; right: -1rem;
  background: #7D8C6E; color: #fff; padding: 1.5rem; max-width: 200px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
@media (min-width: 1024px) { .about-floating-card { right: -2rem; padding: 2rem; } }
.about-floating-card .big-number { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; display: block; }
@media (min-width: 1024px) { .about-floating-card .big-number { font-size: 2.5rem; } }
.about-floating-card .card-label { font-family: 'Work Sans', sans-serif; color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 300; }

.about-text .section-title { font-size: 2rem; margin-top: 0.75rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .about-text .section-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .about-text .section-title { font-size: 3rem; } }
.about-text .section-title .accent { font-style: italic; color: #7D8C6E; }
.about-text p { font-family: 'Work Sans', sans-serif; color: rgba(61,61,61,0.7); font-size: 1rem; font-weight: 300; line-height: 1.7; margin-bottom: 1rem; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.stat-item { border-left: 2px solid rgba(212,184,150,0.5); padding-left: 1rem; }
.stat-item .stat-value { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: #3D3D3D; }
@media (min-width: 1024px) { .stat-item .stat-value { font-size: 1.875rem; } }
.stat-item .stat-label { font-family: 'Work Sans', sans-serif; color: rgba(61,61,61,0.5); font-size: 0.75rem; letter-spacing: 0.02em; margin-top: 0.25rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { padding: 6rem 0; background: #fff; }
@media (min-width: 1024px) { .testimonials-section { padding: 8rem 0; } }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
@media (min-width: 1024px) { .testimonials-header { margin-bottom: 4.5rem; } }
.testimonials-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.testimonial-card { background: #F9F5F0; padding: 2rem; transition: box-shadow 0.5s; }
@media (min-width: 1024px) { .testimonial-card { padding: 2.5rem; } }
.testimonial-card:hover { box-shadow: 0 8px 40px -12px rgba(125,140,110,0.12); }
.testimonial-card .quote-icon { width: 32px; height: 32px; color: rgba(212,184,150,0.3); margin-bottom: 1rem; }
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg { width: 14px; height: 14px; color: #D4B896; fill: #D4B896; }
.testimonial-card blockquote { font-family: 'Work Sans', sans-serif; color: rgba(61,61,61,0.7); font-size: 0.875rem; font-weight: 300; line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { border-top: 1px solid rgba(212,184,150,0.2); padding-top: 1rem; }
.testimonial-author .name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: #3D3D3D; }
.testimonial-author .role { font-family: 'Work Sans', sans-serif; color: #7D8C6E; font-size: 0.75rem; letter-spacing: 0.02em; margin-top: 0.125rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { padding: 5rem 0; background: #7D8C6E; position: relative; overflow: hidden; text-align: center; }
@media (min-width: 1024px) { .cta-banner { padding: 6rem 0; } }
.cta-banner .deco-circle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-banner .deco-circle-1 { width: 16rem; height: 16rem; top: 0; right: 0; transform: translate(25%, -50%); }
.cta-banner .deco-circle-2 { width: 12rem; height: 12rem; bottom: 0; left: 0; transform: translate(-25%, 33%); }
.cta-banner h2 { color: #fff; font-size: 2rem; margin-bottom: 1rem; position: relative; z-index: 1; }
@media (min-width: 640px) { .cta-banner h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .cta-banner h2 { font-size: 3rem; } }
.cta-banner > p, .cta-banner .cta-desc {
  font-family: 'Work Sans', sans-serif; color: rgba(255,255,255,0.8); font-size: 1rem;
  font-weight: 300; max-width: 36rem; margin: 0 auto 2rem; position: relative; z-index: 1;
}
@media (min-width: 1024px) { .cta-banner > p, .cta-banner .cta-desc { font-size: 1.125rem; } }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; position: relative; z-index: 1; }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; color: #3D3D3D;
  padding: 0.875rem 2rem; font-family: 'Work Sans', sans-serif; font-size: 0.875rem;
  font-weight: 500; letter-spacing: 0.02em; transition: background 0.3s; border: none; cursor: pointer;
}
.btn-white:hover { background: #F4EDE4; }
.btn-outline-white {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.4); color: #fff;
  padding: 0.875rem 2rem; font-family: 'Work Sans', sans-serif; font-size: 0.875rem;
  font-weight: 500; letter-spacing: 0.02em; transition: background 0.3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { padding: 6rem 0; background: #F4EDE4; }
@media (min-width: 1024px) { .contact-section { padding: 8rem 0; } }
.contact-header { text-align: center; margin-bottom: 3.5rem; }
@media (min-width: 1024px) { .contact-header { margin-bottom: 4.5rem; } }
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; gap: 4rem; } }

.contact-form { background: #fff; padding: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
@media (min-width: 1024px) { .contact-form { padding: 2.5rem; } }
.form-row { display: grid; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .form-row.two-col { grid-template-columns: repeat(2, 1fr); } }
.form-group label { display: block; font-family: 'Work Sans', sans-serif; font-size: 0.875rem; font-weight: 500; color: #3D3D3D; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; background: #F9F5F0;
  border: 1px solid rgba(212,184,150,0.3); font-family: 'Work Sans', sans-serif;
  font-size: 0.875rem; color: #3D3D3D; transition: border-color 0.3s; outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(61,61,61,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #7D8C6E; }
.form-group textarea { resize: none; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233D3D3D' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: #7D8C6E; color: #fff; padding: 0.875rem 2rem; border: none;
  font-family: 'Work Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.02em; cursor: pointer; transition: background 0.3s; margin-top: 1.5rem;
}
.btn-submit:hover { background: #6B7A5E; }
.btn-submit svg { width: 16px; height: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-item { display: flex; gap: 1rem; }
.info-icon {
  flex-shrink: 0; width: 3rem; height: 3rem; background: rgba(125,140,110,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; color: #7D8C6E; }
.info-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; color: #3D3D3D; margin-bottom: 0.25rem; }
.info-item p, .info-item a { font-family: 'Work Sans', sans-serif; color: rgba(61,61,61,0.6); font-size: 0.875rem; font-weight: 300; line-height: 1.6; }
.info-item a.link-sage { color: #7D8C6E; font-weight: 500; }
.info-item a.link-sage:hover { text-decoration: underline; }

.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  background: #25D366; color: #fff; padding: 1rem 1.5rem;
  font-family: 'Work Sans', sans-serif; font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.02em; transition: background 0.3s; box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1EB954; }
.btn-whatsapp svg { width: 20px; height: 20px; }

.contact-map { overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.04); height: 220px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* Form success/error messages */
.form-message { padding: 1rem; margin-top: 1rem; font-family: 'Work Sans', sans-serif; font-size: 0.875rem; }
.form-message.success { background: rgba(125,140,110,0.1); color: #7D8C6E; }
.form-message.error { background: rgba(220,38,38,0.1); color: #dc2626; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #2C2418; color: #fff; padding: 4rem 0 2rem; }
@media (min-width: 1024px) { .site-footer { padding: 5rem 0 2rem; } }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.footer-brand .brand-sub { font-family: 'Work Sans', sans-serif; color: #D4B896; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-brand p { font-family: 'Work Sans', sans-serif; color: rgba(255,255,255,0.5); font-size: 0.875rem; font-weight: 300; line-height: 1.7; }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; color: #D4B896; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul li a, .footer-col ul li span { font-family: 'Work Sans', sans-serif; color: rgba(255,255,255,0.5); font-size: 0.875rem; font-weight: 300; transition: color 0.3s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact p, .footer-contact a { font-family: 'Work Sans', sans-serif; color: rgba(255,255,255,0.5); font-size: 0.875rem; font-weight: 300; line-height: 1.6; }
.footer-contact a:hover { color: #fff; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link {
  width: 2.25rem; height: 2.25rem; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Work Sans', sans-serif; font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.4); transition: all 0.3s;
}
.social-link:hover { color: #fff; border-color: #D4B896; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-family: 'Work Sans', sans-serif; color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.back-to-top {
  display: flex; align-items: center; gap: 0.5rem; background: none; border: none;
  color: rgba(255,255,255,0.3); font-family: 'Work Sans', sans-serif; font-size: 0.75rem;
  cursor: pointer; transition: color 0.3s;
}
.back-to-top:hover { color: #D4B896; }
.back-to-top svg { width: 14px; height: 14px; }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  width: 3.5rem; height: 3.5rem; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4); transition: all 0.3s;
  animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 24px; height: 24px; color: #fff; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.6); }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-caption { max-width: 100%; }
.wp-caption img { max-width: 100%; height: auto; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 1rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1rem; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
