/* =============================================
   Georgia Wallpaper Installation — style.css
   Palette: Heritage Charcoal / Antique Bronze
   ============================================= */

@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-dark: #1A1A1A;
  --bg-espresso: #2A2420;
  --bg-light: #F4EEE5;
  --text-ivory: #F6F2EB;
  --text-brown: #2C2622;
  --accent: #A88455;
  --accent-hover: #916F45;
  --border-subtle: rgba(168,132,85,0.2);
  --border-light: rgba(168,132,85,0.4);
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --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; }

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

h1,h2,h3,h4,h5 { font-family: 'Manrope', sans-serif; line-height: 1.25; }
h1 { font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem,2vw,1.6rem); font-weight: 600; }

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

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

/* ── BUTTONS ─────────────────────────────────── */
.btn, .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg-dark);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0 28px;
  height: 54px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  letter-spacing: 0.03em;
}
.btn:hover, .submit-btn:hover {
  background: var(--accent-hover);
  color: var(--bg-dark);
  box-shadow: 0 6px 24px rgba(168,132,85,0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--bg-dark); }

/* ── HEADER ──────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px,4vw,60px);
  height: 72px;
  gap: 24px;
}
.logo a {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-ivory);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
}
.header-contact a { color: var(--text-ivory); font-weight: 500; }
.header-contact a:hover { color: var(--accent); }
.header-contact .phone { color: var(--accent); font-weight: 700; font-size: 0.95rem; }

/* NAV */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: var(--text-ivory);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--accent); background: rgba(168,132,85,0.08); }
.nav-link.active { color: var(--accent); }

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.dropdown-toggle::after {
  content: '';
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
}
.dropdown:hover .dropdown-toggle::after,
.dropdown.open .dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-2px);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: var(--bg-espresso);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  color: var(--text-ivory);
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.18s ease;
}
.dropdown:hover .dropdown-menu a,
.dropdown.open .dropdown-menu a { opacity: 1; transform: translateX(0); }
.dropdown:hover .dropdown-menu a:nth-child(1),
.dropdown.open .dropdown-menu a:nth-child(1) { transition-delay: 0.03s; }
.dropdown:hover .dropdown-menu a:nth-child(2),
.dropdown.open .dropdown-menu a:nth-child(2) { transition-delay: 0.06s; }
.dropdown:hover .dropdown-menu a:nth-child(3),
.dropdown.open .dropdown-menu a:nth-child(3) { transition-delay: 0.09s; }
.dropdown:hover .dropdown-menu a:nth-child(4),
.dropdown.open .dropdown-menu a:nth-child(4) { transition-delay: 0.12s; }
.dropdown:hover .dropdown-menu a:nth-child(5),
.dropdown.open .dropdown-menu a:nth-child(5) { transition-delay: 0.15s; }
.dropdown:hover .dropdown-menu a:nth-child(6),
.dropdown.open .dropdown-menu a:nth-child(6) { transition-delay: 0.18s; }
.dropdown:hover .dropdown-menu a:nth-child(7),
.dropdown.open .dropdown-menu a:nth-child(7) { transition-delay: 0.21s; }
.dropdown:hover .dropdown-menu a:nth-child(8),
.dropdown.open .dropdown-menu a:nth-child(8) { transition-delay: 0.24s; }
.dropdown:hover .dropdown-menu a:nth-child(9),
.dropdown.open .dropdown-menu a:nth-child(9) { transition-delay: 0.27s; }
.dropdown:hover .dropdown-menu a:nth-child(10),
.dropdown.open .dropdown-menu a:nth-child(10) { transition-delay: 0.30s; }
.dropdown-menu a:hover { background: rgba(168,132,85,0.12); color: var(--accent); }
.dropdown-divider { height: 1px; background: var(--border-subtle); margin: 4px 8px; }

/* MOBILE HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-ivory);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.28s;
}
.mobile-nav-overlay.active { opacity: 1; }
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 50%;
  min-width: 260px;
  height: 100%;
  background: var(--bg-espresso);
  z-index: 1100;
  padding: 80px 0 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid var(--border-light);
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--text-ivory);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  padding: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background var(--transition);
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.08); }
.mobile-nav a {
  display: block;
  color: var(--text-ivory);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 13px 28px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--accent); background: rgba(168,132,85,0.07); }
.mobile-nav .mobile-section-label {
  display: block;
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 28px 6px;
  pointer-events: none;
  border-bottom: none;
}
.mobile-nav a.sub { padding-left: 42px; font-size: 0.88rem; color: rgba(246,242,235,0.75); }
.mobile-nav .mobile-contact {
  padding: 20px 28px 0;
  border-bottom: none;
}
.mobile-nav .mobile-contact a { padding: 4px 0; font-size: 0.9rem; border-bottom: none; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0.45) 60%, rgba(26,26,26,0.72) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px clamp(16px,4vw,60px) 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 640px; }
.hero-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-text h1 { margin-bottom: 20px; }
.hero-text p { color: rgba(246,242,235,0.82); font-size: 1.1rem; margin-bottom: 32px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* DECORATIVE LINE */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 0;
}

/* ── SECTIONS ─────────────────────────────────── */
.section-dark { background: var(--bg-dark); padding: clamp(60px,8vw,100px) clamp(16px,4vw,60px); }
.section-espresso { background: var(--bg-espresso); padding: clamp(60px,8vw,100px) clamp(16px,4vw,60px); }
.section-light { background: var(--bg-light); padding: clamp(60px,8vw,100px) clamp(16px,4vw,60px); color: var(--text-brown); }
.section-light h2, .section-light h3 { color: var(--text-brown); }
.section-light p { color: rgba(44,38,34,0.85); }
.container { max-width: 1280px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: clamp(40px,6vw,64px); }
.section-header .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; color: rgba(246,242,235,0.75); font-size: 1.05rem; }
.section-light .section-header p { color: rgba(44,38,34,0.7); }

/* ── CARDS / GRID ─────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.card {
  background: var(--bg-espresso);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); border-color: var(--border-light); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { font-size: 0.9rem; color: rgba(246,242,235,0.7); margin-bottom: 16px; line-height: 1.6; }
.card-link {
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link::after { content: '→'; transition: transform var(--transition); }
.card:hover .card-link::after { transform: translateX(4px); }

/* SERVICE ICON CARD */
.icon-card {
  background: var(--bg-espresso);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all var(--transition);
}
.icon-card:hover { border-color: var(--border-light); transform: translateY(-3px); box-shadow: var(--shadow); }
.icon-card .icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.icon-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.icon-card p { font-size: 0.88rem; color: rgba(246,242,235,0.65); line-height: 1.6; }

/* ── ABOUT STRIP ──────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-strip img { border-radius: 12px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about-strip .about-content h2 { margin-bottom: 18px; }
.about-strip .about-content p { margin-bottom: 16px; color: rgba(246,242,235,0.78); }

/* STATS */
.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.stat-label { font-size: 0.8rem; color: rgba(246,242,235,0.55); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── PHOTO GALLERY ────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.photo-grid .span-2 { grid-column: span 2; grid-row: span 2; }
.photo-grid figure {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-grid figure:hover img { transform: scale(1.06); }

/* ── AREAS GRID ───────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.area-card {
  background: var(--bg-espresso);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
  transition: all var(--transition);
}
.area-card:hover { border-color: var(--border-light); background: rgba(168,132,85,0.06); }
.area-card a {
  color: var(--text-ivory);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
}
.area-card a:hover { color: var(--accent); }
.area-card span { font-size: 0.78rem; color: rgba(246,242,235,0.45); }

/* ── FAQ ──────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-ivory);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.faq-item.open .faq-question .faq-icon { background: var(--accent); border-color: var(--accent); color: var(--bg-dark); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding 0.18s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: 20px; color: rgba(246,242,235,0.72); line-height: 1.7; }

/* ── FORM ─────────────────────────────────────── */
.feedback-form-container {
  background: var(--bg-espresso);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 36px 32px;
}
.feedback-form-container h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--text-ivory);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--text-ivory);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 13px 16px;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(246,242,235,0.35); }
.form-group textarea { resize: vertical; min-height: 100px; margin-bottom: 14px; }
.form-submit { margin-top: 4px; }
.submit-btn { width: 100%; justify-content: center; height: 54px; }
#form-success {
  text-align: center;
  padding: 32px 0;
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ── MAP ──────────────────────────────────────── */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.map-wrapper iframe { display: block; width: 100%; height: 420px; }

/* ── CTA BANNER ───────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-espresso), rgba(168,132,85,0.12));
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 48px;
}
.cta-banner h3 { font-size: 1.6rem; margin-bottom: 12px; }
.cta-banner p { color: rgba(246,242,235,0.72); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonial-card {
  background: var(--bg-espresso);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 28px;
}
.testimonial-card .stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.92rem; color: rgba(246,242,235,0.75); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.testimonial-card .author { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--text-ivory); }
.testimonial-card .location { font-size: 0.8rem; color: var(--accent); }

/* ── PROCESS ──────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process-step {
  text-align: center;
  position: relative;
}
.process-step .step-num {
  width: 56px; height: 56px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  margin: 0 auto 16px;
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: rgba(246,242,235,0.6); }

/* ── BREADCRUMB ───────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(246,242,235,0.45);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(246,242,235,0.55); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(246,242,235,0.35); }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  padding: 140px clamp(16px,4vw,60px) 80px;
  background: var(--bg-espresso);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/wallpaper-installation-atlanta-02.webp') center/cover;
  opacity: 0.12;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(246,242,235,0.75); max-width: 640px; }

/* ── FOOTER ───────────────────────────────────── */
.site-footer {
  background: var(--bg-espresso);
  border-top: 1px solid var(--border-subtle);
  padding: 64px clamp(16px,4vw,60px) 32px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-ivory);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(246,242,235,0.55); line-height: 1.65; margin-bottom: 20px; max-width: 280px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(246,242,235,0.65);
}
.footer-contact-item .icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(246,242,235,0.65); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(246,242,235,0.6); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(246,242,235,0.35); }

/* ── STICKY BUTTON ────────────────────────────── */
.sticky-quote-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
}
@media (max-width: 768px) {
  .sticky-quote-btn {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* ── MODAL ────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.28s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: rgba(246,242,235,0.5);
  font-size: 1.4rem;
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.08); color: var(--text-ivory); }

/* ── INNER PAGE CONTENT ───────────────────────── */
.page-content { max-width: 900px; }
.page-content h2 { margin: 40px 0 16px; }
.page-content h3 { margin: 28px 0 12px; color: var(--accent); }
.page-content p { margin-bottom: 16px; color: rgba(246,242,235,0.8); line-height: 1.75; }
.page-content ul, .page-content ol { padding-left: 22px; margin-bottom: 16px; color: rgba(246,242,235,0.78); }
.page-content li { margin-bottom: 8px; line-height: 1.65; }
.page-content .inline-cta { margin: 32px 0; }

/* ── CONTACT PAGE ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: rgba(246,242,235,0.75); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-espresso);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  margin-bottom: 14px;
}
.contact-detail .ci-icon {
  width: 42px; height: 42px;
  background: rgba(168,132,85,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent); margin-bottom: 4px; }
.contact-detail p { color: rgba(246,242,235,0.8); margin: 0; font-size: 0.95rem; }
.contact-detail a { color: rgba(246,242,235,0.8); }
.contact-detail a:hover { color: var(--accent); }

/* ── ABOUT PAGE ───────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
.team-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: var(--accent); }

.value-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border-subtle); }
.value-icon { width: 40px; height: 40px; background: rgba(168,132,85,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; font-size: 1rem; }
.value-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.value-item p { font-size: 0.875rem; color: rgba(246,242,235,0.6); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .photo-grid { grid-template-columns: repeat(2,1fr); }
  .photo-grid .span-2 { grid-column: span 1; grid-row: span 1; }
}

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

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .stats-row { flex-wrap: wrap; gap: 20px; }
  .cta-banner { padding: 32px 24px; }
  .hero-inner { padding-top: 100px; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .mobile-nav { width: 50%; min-width: 260px; }
}
