/* ============================================================
   Alameda Wallpaper Installation — Main Stylesheet
   Color Palette: Warm Stone / Linen / Sandstone
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-stone:    #D7C8B2;
  --bg-taupe:    #8B7D6B;
  --bg-ivory:    #F6F1E8;
  --text-linen:  #F7F5F0;
  --text-charcoal:#3A342E;
  --accent:      #C3A27B;
  --accent-dark: #AD8D66;
  --dark:        #2F2A25;
  --white:       #FFFFFF;
  --border:      rgba(58,52,46,0.12);
  --shadow:      0 4px 24px rgba(47,42,37,0.12);
  --shadow-lg:   0 12px 48px rgba(47,42,37,0.18);
  --radius:      12px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-ivory);
  color: var(--text-charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0 32px;
  height: 56px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  background: var(--accent-dark);
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(195,162,123,0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--dark);
}
.btn-light {
  background: var(--text-linen);
  color: var(--dark);
}
.btn-light:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(47,42,37,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(195,162,123,0.2);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.logo-main {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-linen);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── DESKTOP NAV ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-linen);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: rgba(195,162,123,0.1);
}
.nav-link svg { transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--dark);
  border: 1px solid rgba(195,162,123,0.2);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  box-shadow: var(--shadow-lg);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.875rem;
  color: rgba(247,245,240,0.8);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  opacity: 0;
  transform: translateY(4px);
}
.nav-item:hover .dropdown a {
  opacity: 1;
  transform: translateY(0);
}
.nav-item:hover .dropdown a:nth-child(1)  { transition: background .2s, color .2s, opacity .18s .04s, transform .18s .04s; }
.nav-item:hover .dropdown a:nth-child(2)  { transition: background .2s, color .2s, opacity .18s .08s, transform .18s .08s; }
.nav-item:hover .dropdown a:nth-child(3)  { transition: background .2s, color .2s, opacity .18s .12s, transform .18s .12s; }
.nav-item:hover .dropdown a:nth-child(4)  { transition: background .2s, color .2s, opacity .18s .16s, transform .18s .16s; }
.nav-item:hover .dropdown a:nth-child(5)  { transition: background .2s, color .2s, opacity .18s .20s, transform .18s .20s; }
.nav-item:hover .dropdown a:nth-child(6)  { transition: background .2s, color .2s, opacity .18s .24s, transform .18s .24s; }
.nav-item:hover .dropdown a:nth-child(7)  { transition: background .2s, color .2s, opacity .18s .28s, transform .18s .28s; }
.nav-item:hover .dropdown a:nth-child(8)  { transition: background .2s, color .2s, opacity .18s .32s, transform .18s .32s; }
.nav-item:hover .dropdown a:nth-child(9)  { transition: background .2s, color .2s, opacity .18s .36s, transform .18s .36s; }
.nav-item:hover .dropdown a:nth-child(10) { transition: background .2s, color .2s, opacity .18s .40s, transform .18s .40s; }
.nav-item:hover .dropdown a:nth-child(11) { transition: background .2s, color .2s, opacity .18s .44s, transform .18s .44s; }
.nav-item:hover .dropdown a:nth-child(12) { transition: background .2s, color .2s, opacity .18s .48s, transform .18s .48s; }
.dropdown a:hover {
  background: rgba(195,162,123,0.15);
  color: var(--accent);
}

/* Header contact */
.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
}
.header-contact a {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition);
}
.header-contact a:hover { color: var(--text-linen); }
.header-contact .header-phone { font-size: 0.95rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-linen);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  min-width: 280px;
  max-width: 360px;
  height: 100vh;
  background: var(--dark);
  z-index: 2000;
  padding: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.35);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(195,162,123,0.2);
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-linen);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background var(--transition);
}
.mobile-menu-close:hover { background: rgba(195,162,123,0.15); }
.mobile-menu-close svg { stroke: currentColor; }

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.35s;
}
.mobile-menu-overlay.open { opacity: 1; }

.mobile-nav {
  padding: 12px 0;
}
.mobile-nav a,
.mobile-nav-group-label {
  display: block;
  padding: 12px 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-linen);
  text-align: left;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  border-left: 3px solid transparent;
}
.mobile-nav a:hover {
  color: var(--accent);
  background: rgba(195,162,123,0.08);
  border-left-color: var(--accent);
}
.mobile-nav-group-label {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 16px;
  padding-bottom: 6px;
  cursor: default;
}
.mobile-nav-sub a {
  padding-left: 36px;
  font-size: 0.875rem;
  color: rgba(247,245,240,0.75);
}
.mobile-nav-divider {
  height: 1px;
  background: rgba(195,162,123,0.15);
  margin: 8px 24px;
}
.mobile-contact-info {
  padding: 16px 24px;
  border-top: 1px solid rgba(195,162,123,0.2);
  margin-top: 8px;
}
.mobile-contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 0;
  border: none;
  background: none;
}
.mobile-contact-info a:hover { color: var(--text-linen); background: none; border: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47,42,37,0.85) 0%, rgba(47,42,37,0.4) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(195,162,123,0.18);
  border: 1px solid rgba(195,162,123,0.4);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--text-linen);
  margin-bottom: 20px;
}
.hero p {
  color: rgba(247,245,240,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero form side */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 60px 0;
}

/* ── FORM ── */
.feedback-form-container {
  background: var(--bg-ivory);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.feedback-form-container h3 {
  font-size: 1.35rem;
  margin-bottom: 24px;
  color: var(--dark);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(195,162,123,0.18);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9A8E85; }
.contact-form textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 12px;
}
.form-group { margin-bottom: 12px; }
.form-submit { margin-top: 4px; }
.submit-btn {
  width: 100%;
  height: 56px;
  background: var(--accent);
  color: var(--dark);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.submit-btn:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(195,162,123,0.35);
  transform: translateY(-1px);
}
#form-success {
  text-align: center;
  padding: 24px;
  background: rgba(195,162,123,0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(195,162,123,0.3);
  color: var(--dark);
  font-weight: 600;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: #6B6058; font-size: 1.05rem; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body {
  padding: 24px;
}
.service-card-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card-body p { color: #6B6058; font-size: 0.9rem; margin-bottom: 16px; }

/* ── WHY US ── */
.why-section { background: var(--dark); }
.why-section .section-header h2 { color: var(--text-linen); }
.why-section .section-label { color: var(--accent); }
.why-section .section-header p { color: rgba(247,245,240,0.65); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.feature-item {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: rgba(195,162,123,0.08);
  border: 1px solid rgba(195,162,123,0.15);
  transition: background var(--transition), border-color var(--transition);
}
.feature-item:hover {
  background: rgba(195,162,123,0.14);
  border-color: rgba(195,162,123,0.3);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(195,162,123,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  font-size: 1.6rem;
}
.feature-item h3 { color: var(--text-linen); margin-bottom: 10px; font-size: 1.05rem; }
.feature-item p { color: rgba(247,245,240,0.6); font-size: 0.9rem; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.large {
  grid-column: span 2;
}
.gallery-item.large img { height: 380px; }

/* ── REVIEWS ── */
.reviews-section { background: var(--bg-stone); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.review-stars {
  color: #E8A935;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.95rem;
  color: #5A5048;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-location { font-size: 0.8rem; color: #8B7D6B; }

/* ── MAP ── */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── AREAS GRID ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.area-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 1.5px solid var(--border);
}
.area-card:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.area-card svg { color: var(--accent); flex-shrink: 0; }
.area-card:hover svg { color: var(--dark); }

/* ── CTA BANNER ── */
.cta-section {
  background: var(--bg-taupe);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 { color: var(--text-linen); margin-bottom: 16px; }
.cta-section p { color: rgba(247,245,240,0.75); font-size: 1.05rem; max-width: 540px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── STATS ── */
.stats-section { background: var(--accent); padding: 48px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(47,42,37,0.75);
  font-weight: 500;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(195,162,123,0.12) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--text-linen); margin-bottom: 16px; }
.page-hero p { color: rgba(247,245,240,0.7); max-width: 600px; font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(247,245,240,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--text-linen); }
.breadcrumb span { color: rgba(247,245,240,0.35); }

/* ── CONTENT SECTIONS ── */
.content-section { padding: 80px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 { margin-bottom: 20px; }
.content-text p { color: #6B6058; margin-bottom: 16px; }
.content-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.faq-a { color: #6B6058; font-size: 0.95rem; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-info h3 { margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(195,162,123,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-weight: 600; margin-bottom: 2px; font-size: 0.9rem; }
.contact-info-text span, .contact-info-text a { font-size: 0.9rem; color: #6B6058; }
.contact-info-text a:hover { color: var(--accent); }

/* ── ABOUT PAGE ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-card-img {
  height: 260px;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-info { padding: 20px; }
.team-card-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card-info p { color: var(--accent); font-size: 0.85rem; font-weight: 600; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  padding: 64px 0 32px;
  color: rgba(247,245,240,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(247,245,240,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(195,162,123,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { color: var(--text-linen); }

/* ── STICKY BUTTON ── */
.sticky-quote-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0 24px;
  height: 52px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(195,162,123,0.5);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.sticky-quote-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(195,162,123,0.5);
  color: var(--dark);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(47,42,37,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-ivory);
  border-radius: 20px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(195,162,123,0.15);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(195,162,123,0.3); }

/* ── CHECKLIST ── */
.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 20px 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #5A5048;
}
.check-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(195,162,123,0.2);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── PROCESS STEPS ── */
.process-steps {
  counter-reset: step;
  display: grid;
  gap: 24px;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 6px; }
.step-content p { font-size: 0.9rem; color: #6B6058; margin: 0; }

/* ── INLINE ICON ── */
.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  vertical-align: middle;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid .feedback-form-container { max-width: 540px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .main-nav, .header-contact { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .mobile-menu-overlay { display: block; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }

  .content-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid.reverse { direction: ltr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

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

  .sticky-quote-btn {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }

  .hero { min-height: auto; }
  .hero-content { padding: 40px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .gallery-item.large img { height: 260px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── ANIMATIONS ── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.6s ease both; }

/* ── INNER PAGE IMAGES ── */
.service-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}

/* Alternate bg */
.bg-stone { background: var(--bg-stone); }
.bg-ivory { background: var(--bg-ivory); }
.bg-dark  { background: var(--dark); }

/* Text colors */
.text-light { color: var(--text-linen); }
.text-accent { color: var(--accent); }

/* spacing helpers */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
