/* ============================================
   Wallpaper Hangers Emily — Master Stylesheet
   Design System: Elegant, Grounded, Refined
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,400;0,500;0,700&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #2A332B;
  --bg-secondary: #161C18;
  --bg-light: #F3EEE6;
  --bg-reviews: #EFEAE3;
  --text-light: #FAF6EF;
  --text-dark: #232823;
  --accent: #B08D57;
  --accent-hover: #c4a06a;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-width: 1280px;
  --section-padding: 100px 0;
  --transition: 0.25s ease;
  --radius: 11px;
  --brass-border: 1px solid rgba(176, 141, 87, 0.35);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p { margin-bottom: 1rem; }
.mono-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--bg-secondary);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: var(--accent);
  font-weight: 500;
}
.top-bar a:hover { color: var(--accent-hover); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: var(--bg-primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.logo span { color: var(--accent); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(176, 141, 87, 0.15);
  color: var(--accent);
}

/* Header CTA */
.header-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-secondary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.header-cta:hover {
  background: var(--accent-hover);
  color: var(--bg-secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(176, 141, 87, 0.3);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  margin: 6px 0;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-secondary);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  height: 56px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.5;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bg-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(176, 141, 87, 0.35);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  height: 56px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.5;
}
.btn-secondary:hover {
  background: rgba(176, 141, 87, 0.1);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 28, 24, 0.92) 0%, rgba(42, 51, 43, 0.75) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
}
.hero-text { max-width: 600px; }
.hero-text h1 {
  color: var(--text-light);
  margin-bottom: 16px;
}
.hero-text h2 {
  color: rgba(250, 246, 239, 0.8);
  font-size: 1.2rem;
  font-weight: 400;
  font-family: var(--font-body);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

/* ============================================
   FORM STYLES
   ============================================ */
.feedback-form-container {
  background: rgba(22, 28, 24, 0.85);
  backdrop-filter: blur(12px);
  border: var(--brass-border);
  border-radius: 16px;
  padding: 36px;
}
.feedback-form-container h2,
.feedback-form-container h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form .form-group { margin-bottom: 0; }
.contact-form .form-group:last-child { margin-bottom: 0; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(250, 246, 239, 0.08);
  border: 1px solid rgba(176, 141, 87, 0.25);
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(250, 246, 239, 0.45);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(250, 246, 239, 0.12);
}
.contact-form textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 16px;
}
.form-submit { text-align: center; }
.submit-btn {
  background: var(--accent);
  color: var(--bg-secondary);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 48px;
  height: 56px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
}
.submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(176, 141, 87, 0.35);
}
#form-success p {
  color: var(--accent);
  text-align: center;
  font-size: 1rem;
  padding: 20px;
}

/* Light background form variant */
.form-light .feedback-form-container {
  background: white;
  border: var(--brass-border);
}
.form-light .feedback-form-container h2,
.form-light .feedback-form-container h3 { color: var(--text-dark); }
.form-light .contact-form input,
.form-light .contact-form textarea {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid rgba(176, 141, 87, 0.3);
}
.form-light .contact-form input::placeholder,
.form-light .contact-form textarea::placeholder {
  color: rgba(35, 40, 35, 0.45);
}
.form-light .contact-form input:focus,
.form-light .contact-form textarea:focus {
  background: #fff;
  border-color: var(--accent);
}

/* ============================================
   SECTION LAYOUTS
   ============================================ */
.section-dark {
  background: var(--bg-primary);
  color: var(--text-light);
  padding: var(--section-padding);
}
.section-darker {
  background: var(--bg-secondary);
  color: var(--text-light);
  padding: var(--section-padding);
}
.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: var(--section-padding);
}
.section-reviews {
  background: var(--bg-reviews);
  color: var(--text-dark);
  padding: var(--section-padding);
}
.section-white {
  background: #fff;
  color: var(--text-dark);
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .mono-label { margin-bottom: 12px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.85;
  font-size: 1.05rem;
}

/* Split grid layout */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

/* Image framing */
.framed-image {
  border-radius: 12px;
  overflow: hidden;
  border: var(--brass-border);
  background: var(--bg-light);
  padding: 6px;
}
.framed-image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   B2B / COMMERCIAL BLOCK
   ============================================ */
.commercial-intro {
  align-items: start;
}
.commercial-copy header p {
  max-width: 62ch;
}
.commercial-side {
  display: grid;
  gap: 18px;
}
.commercial-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.commercial-stats .stat-pill:last-child {
  grid-column: 1 / -1;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: var(--brass-border);
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(250, 246, 239, 0.06);
}
.stat-pill strong {
  font-family: var(--font-heading);
  color: var(--accent);
  letter-spacing: 0.02em;
}
.stat-pill span {
  opacity: 0.85;
  font-size: 0.9rem;
}
.commercial-features {
  margin-top: 32px;
  margin-bottom: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 36px 0;
}
.feature-card {
  background: rgba(250, 246, 239, 0.06);
  border: var(--brass-border);
  border-radius: 12px;
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.feature-card h3,
.feature-card h4 {
  color: var(--accent);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.25;
}
.feature-card p {
  opacity: 0.85;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border: var(--brass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-body {
  padding: 24px;
}
.service-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.service-card-body p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 16px;
}
.service-card-body a {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   PORTFOLIO / GALLERY
   ============================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(176, 141, 87, 0.3);
  color: var(--text-dark);
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--bg-secondary);
  border-color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: var(--brass-border);
  background: #fff;
  padding: 5px;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: translateY(-3px); }
.gallery-item img {
  border-radius: 8px;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ============================================
   BEFORE / AFTER SLIDER
   ============================================ */
.ba-slider-section { margin-top: 60px; }
.ba-sliders-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid var(--accent);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 4/3;
}
.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-slider .ba-after {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}
.ba-slider .ba-before { z-index: 1; }
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--accent);
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.ba-handle::before {
  content: '\2039\00a0\203A';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg-secondary);
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 4;
  pointer-events: none;
}
.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 16px;
  background: rgba(22, 28, 24, 0.8);
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 5;
  pointer-events: none;
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

/* ============================================
   PROCESS / HOW WE WORK
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.process-step p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ============================================
   STATS
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-item p {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============================================
   SEO CONTENT BLOCK
   ============================================ */
.seo-content {
  padding: 80px 0;
  background: var(--bg-secondary);
  color: var(--text-light);
}
.seo-content h2 {
  margin-bottom: 24px;
  font-size: 1.8rem;
}
.seo-content p {
  opacity: 0.8;
  max-width: 900px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  background: var(--bg-reviews);
  padding: var(--section-padding);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(176, 141, 87, 0.2);
  padding: 24px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-secondary);
  color: var(--text-light);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p {
  opacity: 0.7;
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--accent);
}
.footer-col a {
  display: block;
  color: rgba(250, 246, 239, 0.7);
  font-size: 0.92rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(176, 141, 87, 0.15);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ============================================
   STICKY QUOTE BUTTON
   ============================================ */
.sticky-quote-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--accent);
  color: var(--bg-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 6px 28px rgba(176, 141, 87, 0.4);
  transition: all var(--transition);
}
.sticky-quote-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(176, 141, 87, 0.5);
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 28, 24, 0.85);
  backdrop-filter: blur(6px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--bg-primary);
  border: var(--brass-border);
  border-radius: 16px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  line-height: 1;
}
.modal-close:hover { opacity: 1; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--bg-primary);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 {
  color: var(--text-light);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(250, 246, 239, 0.75);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(250, 246, 239, 0.5);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--accent); }

/* ============================================
   SERVICE AREA PAGES
   ============================================ */
.area-content { padding: 80px 0; }
.area-content h2 { margin-bottom: 20px; }
.area-content p { margin-bottom: 16px; line-height: 1.8; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: #fff;
  border: var(--brass-border);
  border-radius: 12px;
  padding: 36px;
}
.contact-info-card h3 {
  margin-bottom: 24px;
  color: var(--accent);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-detail strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}
.contact-detail p {
  margin-bottom: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { padding: 80px 0; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border: var(--brass-border);
  border-radius: 12px;
}
.value-card h3 {
  margin-bottom: 12px;
  color: var(--accent);
}

/* ============================================
   SERVICE CARDS (service pages)
   ============================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-grid.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ba-sliders-wrap { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px 0; }

  .top-bar { display: none; }
  .top-bar .container { justify-content: center; text-align: center; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 20px;
    border-top: var(--brass-border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; width: 100%; }
  .header-cta { display: none; }
  .header-inner { flex-wrap: wrap; }

  .hero { min-height: auto; }
  .hero-content { padding: 60px 20px; }
  .trust-badges { gap: 16px; }
  .commercial-stats { grid-template-columns: 1fr; }
  .commercial-stats .stat-pill:last-child { grid-column: auto; }

  .contact-form .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .commercial-features { margin-top: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .sticky-quote-btn {
    right: 50%;
    transform: translateX(50%);
    bottom: 16px;
    width: calc(100% - 32px);
    max-width: 360px;
    text-align: center;
  }
  .sticky-quote-btn:hover { transform: translateX(50%) translateY(-2px); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.5s ease forwards; }
