/* ===================================
   TROY WALLCOVERING — style.css
   =================================== */

@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: #342B26;
  --bg-dark2: #433933;
  --bg-light: #F5EFE7;
  --text-light: #F7F4EE;
  --text-dark: #2E2925;
  --accent: #C37C5E;
  --accent-hover: #AF694D;
  --border: rgba(195,124,94,0.25);
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.18);
  --transition: 0.28s cubic-bezier(.4,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-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
}

/* ===================================
   HEADER
   =================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(52,43,38,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  gap: 20px;
}

.logo a {
  font-family: 'Manrope', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

.header-contact {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.85rem;
}

.header-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}
.header-contact a:hover { opacity: 1; color: var(--accent); }

.header-contact .icon {
  width: 16px; height: 16px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

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

.nav-link {
  padding: 6px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { background: rgba(195,124,94,0.15); color: var(--accent); }

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown > .nav-link::after {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
  margin-left: 2px;
}
.nav-dropdown:hover > .nav-link::after { transform: rotate(225deg) translateY(-2px); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  transform: translateX(-50%) translateY(8px);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.86rem;
  transition: background var(--transition), color var(--transition);
  opacity: 0;
  transform: translateX(-6px);
  animation: none;
}

.nav-dropdown:hover .dropdown-menu a {
  animation: dropIn 0.22s ease forwards;
}
.nav-dropdown:hover .dropdown-menu a:nth-child(1) { animation-delay: 0.03s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(2) { animation-delay: 0.07s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(3) { animation-delay: 0.11s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(4) { animation-delay: 0.15s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(5) { animation-delay: 0.19s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(6) { animation-delay: 0.23s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(7) { animation-delay: 0.27s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(8) { animation-delay: 0.31s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(9) { animation-delay: 0.35s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(10) { animation-delay: 0.39s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(11) { animation-delay: 0.43s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(12) { animation-delay: 0.47s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(13) { animation-delay: 0.51s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(14) { animation-delay: 0.55s; }

@keyframes dropIn {
  to { opacity: 1; transform: translateX(0); }
}

.dropdown-menu a:hover {
  background: rgba(195,124,94,0.12);
  color: var(--accent);
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 16px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  color: var(--text-light);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 55vw;
  min-width: 260px;
  max-width: 360px;
  background: var(--bg-dark2);
  z-index: 2000;
  flex-direction: column;
  padding: 80px 0 30px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.4);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.mobile-nav-close:hover { opacity: 1; }

.mobile-nav a {
  display: block;
  padding: 13px 30px;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background var(--transition);
  text-align: left;
}
.mobile-nav a:hover { color: var(--accent); background: rgba(195,124,94,0.08); }

.mobile-nav-section {
  padding: 10px 30px 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  opacity: 0.8;
}

.mobile-nav-cta {
  margin: 20px 30px 0;
}
.mobile-nav-cta a {
  display: block;
  text-align: center;
  padding: 13px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  font-size: 0.95rem;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  height: 56px;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(195,124,94,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  background: var(--text-light);
  color: var(--text-dark);
}
.btn-light:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===================================
   STICKY BUTTON
   =================================== */
.sticky-quote-btn {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 998;
  background: var(--accent);
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(195,124,94,0.5);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-quote-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(195,124,94,0.55);
}

/* ===================================
   MODAL
   =================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--bg-dark2);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 48px 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--text-light);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(195,124,94,0.3); }

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.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(105deg, rgba(52,43,38,0.88) 0%, rgba(52,43,38,0.6) 55%, rgba(52,43,38,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(195,124,94,0.2);
  border: 1px solid rgba(195,124,94,0.4);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-light);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-desc {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===================================
   FORM
   =================================== */
.feedback-form-container {
  background: rgba(67,57,51,0.96);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.feedback-form-container h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-light);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(52,43,38,0.7);
  border: 1.5px solid rgba(195,124,94,0.25);
  border-radius: 10px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(247,244,238,0.4); }

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }

.contact-form textarea {
  resize: vertical;
  min-height: 90px;
  margin-bottom: 14px;
}

.contact-form .form-submit { margin-top: 4px; }

.submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

#form-success {
  text-align: center;
  padding: 30px;
  font-weight: 600;
  color: var(--accent);
}

/* ===================================
   SECTIONS
   =================================== */
section { padding: 90px 5%; }

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--accent);
}

.section-desc {
  font-size: 1rem;
  opacity: 0.75;
  max-width: 600px;
  margin-bottom: 50px;
}

/* Light sections */
.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}
.section-light .section-title { color: var(--text-dark); }
.section-light .section-desc { color: var(--text-dark); opacity: 0.7; }
.section-light .section-label { color: var(--accent); }

.section-dark2 { background: var(--bg-dark2); }

/* ===================================
   SERVICES GRID
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-dark2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.service-card-img {
  width: 100%; height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body { padding: 24px; }

.service-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-light);
}

.service-card-body p {
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-card-body a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-body a::after {
  content: '→';
  transition: transform var(--transition);
}
.service-card-body a:hover::after { transform: translateX(4px); }

/* ===================================
   GALLERY GRID
   =================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===================================
   WHY US
   =================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.why-card {
  padding: 32px 28px;
  border-radius: 16px;
  background: rgba(52,43,38,0.6);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.why-card:hover { border-color: var(--accent); }

.why-icon {
  width: 48px; height: 48px;
  background: rgba(195,124,94,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg {
  width: 24px; height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
}
.why-card p { font-size: 0.87rem; opacity: 0.7; }

/* ===================================
   LOCATIONS GRID
   =================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.location-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(52,43,38,0.5);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
  color: var(--text-light);
}
.location-card:hover {
  border-color: var(--accent);
  background: rgba(195,124,94,0.08);
  color: var(--text-light);
}

.location-card .loc-pin {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(195,124,94,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.location-card .loc-pin svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.location-card span { font-size: 0.9rem; font-weight: 600; }

/* ===================================
   MAP
   =================================== */
.map-section { padding: 0; }
.map-wrapper {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrapper iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

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

.split-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

.split-content {}
.split-content ul {
  list-style: none;
  margin: 20px 0 30px;
}
.split-content ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  opacity: 0.85;
}
.split-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===================================
   PROCESS STEPS
   =================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  counter-increment: step;
  padding: 28px;
  border-radius: 16px;
  background: var(--bg-dark2);
  border: 1px solid var(--border);
  position: relative;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  display: block;
  margin-bottom: 14px;
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p { font-size: 0.87rem; opacity: 0.7; }

/* ===================================
   FAQ
   =================================== */
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}
.faq-question span {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(195,124,94,0.15);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.92rem;
  opacity: 0.8;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===================================
   STATS BAR
   =================================== */
.stats-bar {
  background: var(--accent);
  padding: 50px 5%;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background: #1e1916;
  padding: 70px 5% 30px;
  color: var(--text-light);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.footer-brand .logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  display: block;
}
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  opacity: 0.8;
  margin-bottom: 10px;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}
.footer-col ul li a:hover { opacity: 1; color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===================================
   PAGE HERO (inner pages)
   =================================== */
.page-hero {
  background: var(--bg-dark2);
  padding: 140px 5% 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(195,124,94,0.07) 100%);
}
.page-hero-content { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: 0.75;
  max-width: 560px;
}
.breadcrumb {
  font-size: 0.83rem;
  opacity: 0.6;
  margin-bottom: 20px;
}
.breadcrumb a { opacity: 0.9; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ===================================
   CTA BLOCK
   =================================== */
.cta-block {
  background: var(--bg-dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  margin: 40px 0;
}
.cta-block h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-block p {
  opacity: 0.75;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.cta-block-inline {
  background: rgba(195,124,94,0.1);
  border: 1px solid rgba(195,124,94,0.25);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.cta-block-inline p { font-size: 1rem; font-weight: 600; margin: 0; }

/* ===================================
   CONTENT PAGES
   =================================== */
.page-content {
  max-width: 1280px;
  margin: 0 auto;
}
.content-section { padding: 70px 5%; }

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.content-main h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text-light);
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text-light);
}
.content-main p { margin-bottom: 16px; opacity: 0.82; line-height: 1.75; }
.content-main ul, .content-main ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.content-main li { margin-bottom: 8px; opacity: 0.82; }

.sidebar-card {
  background: var(--bg-dark2);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
}
.sidebar-card ul { list-style: none; }
.sidebar-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a {
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
}
.sidebar-card ul li a:hover { opacity: 1; color: var(--accent); }

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(195,124,94,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 22px; height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.contact-detail h4 { font-size: 0.85rem; opacity: 0.6; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-detail p { font-size: 0.95rem; }
.contact-detail a { color: var(--text-light); transition: color var(--transition); }
.contact-detail a:hover { color: var(--accent); }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .content-two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-contact { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  
  .hero h1 { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .contact-form .form-row { grid-template-columns: 1fr; }
  
  .sticky-quote-btn {
    bottom: 20px; right: 50%;
    transform: translateX(50%);
  }
  
  section { padding: 60px 5%; }
  .page-hero { padding: 130px 5% 50px; }
  
  .cta-block-inline { flex-direction: column; }
  .cta-block { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .wide { grid-column: span 1; }
  .gallery-grid .tall { grid-row: span 1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-text > * {
  animation: fadeInUp 0.7s ease both;
}
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }

.hero-form-wrap {
  animation: fadeInUp 0.7s 0.35s ease both;
}
