/* ═══════════════════════════════════════════════════════════
   Fort Worth Wallpaper Installer — Main Stylesheet
   Palette: Graphite #121417 · Rosé Brass #B77A63 · Porcelain #F4E9DA
   Fonts: DM Serif Display (headings) · Inter (body) · Lora (accents)
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap");

/* ── CSS Variables ── */
:root {
  --graphite: #121417;
  --graphite-dark: #0a0b0d;
  --porcelain: #f4e9da;
  --porcelain-mist: #faf2e6;
  --charcoal: #1e2126;
  --brass: #b77a63;
  --brass-light: #d4a08a;
  --brass-dark: #9a6350;
  --white: #ffffff;
  --gray-100: #f8f6f3;
  --gray-200: #e8e2d9;
  --gray-300: #c9c1b5;
  --gray-600: #6b6560;
  --gray-700: #4a4540;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --shadow-brass: 0 4px 20px rgba(183, 122, 99, 0.25);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "DM Serif Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-accent: "Lora", Georgia, serif;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--porcelain-mist);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .main-nav {
  padding-top: 120px;
}
body.menu-open .menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.text-brass {
  color: var(--brass);
}
.text-porcelain {
  color: var(--porcelain);
}
.bg-graphite {
  background: var(--graphite);
}
.bg-porcelain {
  background: var(--porcelain);
}

/* ═══════════════════════════════════════════════════════════
   TOP BAR — split left/right with brass accent line
   ═══════════════════════════════════════════════════════════ */
.top-bar {
  background: var(--graphite-dark);
  border-bottom: 2px solid var(--brass);
  padding: 8px 0;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: var(--porcelain-mist);
  transition: color var(--transition);
}
.top-bar a:hover {
  color: var(--brass);
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar svg {
  width: 14px;
  height: 14px;
  fill: var(--brass);
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 5px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER — horizontal nav with centered logo
   ═══════════════════════════════════════════════════════════ */
.site-header {
  background: var(--graphite);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  height: 72px;
}
.logo a {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--porcelain-mist);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .logo-accent {
  color: var(--brass);
  font-style: italic;
}

/* ── Main Nav ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav > ul > li {
  position: relative;
}
.main-nav > ul > li > a {
  display: block;
  padding: 24px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--porcelain-mist);
  position: relative;
}
.main-nav > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-nav > ul > li > a:hover {
  color: var(--brass);
}
.main-nav > ul > li > a.active {
  color: var(--brass);
}

/* ── Dropdown Arrow ── */
.has-dropdown > a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--brass);
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.has-dropdown > a {
  padding-right: 34px;
}
.has-dropdown:hover > a::before {
  transform: translateY(-50%) rotate(180deg);
}

/* ═══════════════════════════════════════════════════════════
   DROPDOWN — wallpaper-peel animation (diagonal reveal)
   ═══════════════════════════════════════════════════════════ */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--graphite);
  border: 1px solid rgba(183, 122, 99, 0.25);
  border-top: 3px solid var(--brass);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: perspective(600px) rotateX(-12deg);
  transform-origin: top center;
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0.4s;
  padding: 8px 0;
  z-index: 999;
}
.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: perspective(600px) rotateX(0deg);
}
.dropdown-menu li {
  opacity: 0;
  transform: translateX(-15px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.has-dropdown:hover .dropdown-menu li {
  opacity: 1;
  transform: translateX(0);
}
.has-dropdown:hover .dropdown-menu li:nth-child(1) {
  transition-delay: 0.05s;
}
.has-dropdown:hover .dropdown-menu li:nth-child(2) {
  transition-delay: 0.1s;
}
.has-dropdown:hover .dropdown-menu li:nth-child(3) {
  transition-delay: 0.15s;
}
.has-dropdown:hover .dropdown-menu li:nth-child(4) {
  transition-delay: 0.2s;
}
.has-dropdown:hover .dropdown-menu li:nth-child(5) {
  transition-delay: 0.25s;
}
.has-dropdown:hover .dropdown-menu li:nth-child(6) {
  transition-delay: 0.3s;
}
.has-dropdown:hover .dropdown-menu li:nth-child(7) {
  transition-delay: 0.35s;
}
.has-dropdown:hover .dropdown-menu li:nth-child(8) {
  transition-delay: 0.4s;
}
.has-dropdown:hover .dropdown-menu li:nth-child(9) {
  transition-delay: 0.45s;
}
.has-dropdown:hover .dropdown-menu li:nth-child(10) {
  transition-delay: 0.5s;
}
.has-dropdown:hover .dropdown-menu li:nth-child(11) {
  transition-delay: 0.55s;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 400;
  color: var(--porcelain-mist);
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}
.dropdown-menu li a:hover {
  background: rgba(183, 122, 99, 0.12);
  color: var(--brass);
  border-left-color: var(--brass);
  padding-left: 28px;
}
.dropdown-menu li a svg {
  width: 16px;
  height: 16px;
  fill: var(--brass);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── Mobile Menu Toggle ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--porcelain-mist);
  position: absolute;
  left: 6px;
  transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) {
  top: 10px;
}
.menu-toggle span:nth-child(2) {
  top: 17px;
}
.menu-toggle span:nth-child(3) {
  top: 24px;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 17px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 17px;
}

/* ═══════════════════════════════════════════════════════════
   HERO — full-width split layout (text left, form right)
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 20, 23, 0.92) 0%,
    rgba(18, 20, 23, 0.65) 50%,
    rgba(18, 20, 23, 0.4) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--porcelain-mist);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-text h1 .highlight {
  color: var(--brass);
  display: block;
  font-style: italic;
}
.hero-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-200);
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(183, 122, 99, 0.15);
  border: 1px solid rgba(183, 122, 99, 0.35);
  color: var(--brass-light);
  font-size: 13px;
  font-weight: 500;
}
.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--brass);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM — glass card style
   ═══════════════════════════════════════════════════════════ */
.feedback-form-container {
  background: rgba(18, 20, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(183, 122, 99, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.feedback-form-container h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--porcelain-mist);
  text-align: center;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  margin-bottom: 0;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(244, 233, 218, 0.08);
  border: 1px solid rgba(183, 122, 99, 0.25);
  border-radius: var(--radius-sm);
  color: var(--porcelain-mist);
  font-family: var(--font-body);
  font-size: 15px;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
  opacity: 0.7;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: rgba(244, 233, 218, 0.12);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 0;
}
.form-group:has(textarea) {
  margin-bottom: 14px;
}
.form-submit {
  text-align: center;
}
.submit-btn {
  display: inline-block;
  width: 100%;
  padding: 16px 40px;
  background: var(--brass);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-brass);
  height: 56px;
}
.submit-btn:hover {
  background: var(--brass-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(183, 122, 99, 0.35);
}
#form-success {
  text-align: center;
}
#form-success p {
  color: var(--brass-light);
  font-size: 16px;
  font-family: var(--font-accent);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   SECTION STYLES — alternating dark/light blocks
   ═══════════════════════════════════════════════════════════ */
.section {
  padding: 90px 0;
}
.section-dark {
  background: var(--graphite);
  color: var(--porcelain-mist);
}
.section-light {
  background: var(--porcelain-mist);
  color: var(--charcoal);
}
.section-warm {
  background: var(--porcelain);
  color: var(--charcoal);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-600);
  font-family: var(--font-accent);
}
.section-dark .section-subtitle {
  color: var(--gray-300);
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--brass);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   TRUST STRIP — horizontal icon bar
   ═══════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--graphite-dark);
  border-top: 1px solid rgba(183, 122, 99, 0.15);
  border-bottom: 1px solid rgba(183, 122, 99, 0.15);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
}
.trust-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(183, 122, 99, 0.12);
  border: 1px solid rgba(183, 122, 99, 0.3);
}
.trust-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--brass);
}
.trust-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--porcelain-mist);
}
.trust-item p {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES GRID — overlapping card layout
   ═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brass);
}
.service-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.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.06);
}
.service-card-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(18, 20, 23, 0.4));
}
.service-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.service-card-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 20px;
  flex: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  height: 52px;
}
.btn-brass {
  background: var(--brass);
  color: var(--white);
  box-shadow: var(--shadow-brass);
}
.btn-brass:hover {
  background: var(--brass-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--brass);
  border: 2px solid var(--brass);
}
.btn-outline:hover {
  background: var(--brass);
  color: var(--white);
}
.btn-dark {
  background: var(--graphite);
  color: var(--porcelain-mist);
}
.btn-dark:hover {
  background: var(--charcoal);
}
.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT BLOCK — asymmetric two-column
   ═══════════════════════════════════════════════════════════ */
.content-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 50px;
  align-items: center;
}
.content-split.reverse {
  grid-template-columns: 7fr 5fr;
}
.content-split.reverse .content-img {
  order: 2;
}
.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(183, 122, 99, 0.15);
}
.content-img img {
  width: 100%;
  height: auto;
  display: block;
}
.content-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 18px;
}
.content-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.section-dark .content-text p {
  color: var(--gray-300);
}
.content-text strong {
  color: var(--brass);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY — masonry-style grid
   ═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(18, 20, 23, 0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE AREAS — card grid with location pins
   ═══════════════════════════════════════════════════════════ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.area-card {
  background: var(--graphite);
  border: 1px solid rgba(183, 122, 99, 0.2);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brass);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.area-card:hover::before {
  transform: scaleX(1);
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-brass);
  border-color: var(--brass);
}
.area-card svg {
  width: 28px;
  height: 28px;
  fill: var(--brass);
  margin-bottom: 12px;
}
.area-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--porcelain-mist);
  margin-bottom: 6px;
}
.area-card p {
  font-size: 13px;
  color: var(--gray-300);
  margin-bottom: 16px;
}
.area-card .btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 12px;
  height: 44px;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS — horizontal scroll cards
   ═══════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 72px;
  color: var(--brass);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-card p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}
.testimonial-author span {
  color: var(--gray-600);
  font-weight: 400;
}
.testimonial-stars {
  color: var(--brass);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════
   MAP SECTION
   ═══════════════════════════════════════════════════════════ */
.map-section {
  padding: 0;
}
.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.map-info {
  background: var(--graphite);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-info h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--porcelain-mist);
  margin-bottom: 20px;
}
.map-info p {
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 24px;
}
.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.map-info-item svg {
  width: 20px;
  height: 20px;
  fill: var(--brass);
  flex-shrink: 0;
  margin-top: 2px;
}
.map-info-item span {
  color: var(--porcelain-mist);
  font-size: 15px;
}
.map-info-item a {
  color: var(--brass);
}
.map-info-item a:hover {
  color: var(--brass-light);
}
.map-embed {
  min-height: 450px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER — full-width brass gradient
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--brass-dark),
    var(--brass),
    var(--brass-light)
  );
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 L30 0 L60 30 L30 60Z' fill='none' stroke='rgba(255,255,255,.06)' stroke-width='1'/%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 30px;
  position: relative;
}
.cta-banner .btn {
  position: relative;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — three-column with brass top border
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--graphite-dark);
  border-top: 3px solid var(--brass);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(183, 122, 99, 0.15);
}
.footer-brand p {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--porcelain-mist);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--brass);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--gray-300);
  font-size: 14px;
  transition:
    color var(--transition),
    padding-left var(--transition);
}
.footer-col ul li a:hover {
  color: var(--brass);
  padding-left: 6px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--brass);
  flex-shrink: 0;
}
.footer-contact-item a,
.footer-contact-item span {
  color: var(--gray-300);
  font-size: 14px;
}
.footer-contact-item a:hover {
  color: var(--brass);
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════════
   STICKY QUOTE BUTTON & MODAL
   ═══════════════════════════════════════════════════════════ */
#stickyBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  padding: 16px 28px;
  background: var(--brass);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(183, 122, 99, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  height: 52px;
}
#stickyBtn:hover {
  background: var(--brass-dark);
  transform: translateY(-3px);
}
#stickyBtn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 11, 13, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: var(--graphite);
  border: 1px solid rgba(183, 122, 99, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(183, 122, 99, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover {
  background: rgba(183, 122, 99, 0.3);
}
.modal-close svg {
  width: 16px;
  height: 16px;
  fill: var(--porcelain-mist);
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO — inner pages
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 100px 0 60px;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 20, 23, 0.88),
    rgba(18, 20, 23, 0.75)
  );
}
.page-hero * {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--porcelain-mist);
  margin-bottom: 14px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-300);
}
.breadcrumb a {
  color: var(--brass);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--brass-light);
}
.breadcrumb span {
  color: var(--gray-300);
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition);
}
.faq-item:hover {
  border-color: var(--brass);
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--brass);
}
.faq-question .icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(183, 122, 99, 0.1);
  transition: all var(--transition);
}
.faq-question .icon svg {
  width: 14px;
  height: 14px;
  fill: var(--brass);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question .icon {
  background: var(--brass);
}
.faq-item.active .faq-question .icon svg {
  fill: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
}
.faq-answer-inner a {
  color: var(--brass);
  text-decoration: underline;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  padding: 50px 0;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brass);
  display: block;
  margin-bottom: 6px;
}
.stat-item .stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-300);
}

/* ═══════════════════════════════════════════════════════════
   PROCESS STEPS — horizontal timeline
   ═══════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--brass);
  opacity: 0.3;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-number {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--graphite);
  border: 2px solid var(--brass);
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--brass);
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — three-column info cards
   ═══════════════════════════════════════════════════════════ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow-brass);
  transform: translateY(-4px);
}
.contact-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: rgba(183, 122, 99, 0.1);
  border: 1px solid rgba(183, 122, 99, 0.2);
}
.contact-card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--brass);
}
.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}
.contact-card a {
  color: var(--brass);
  font-weight: 600;
}
.contact-card a:hover {
  color: var(--brass-dark);
}

/* ═══════════════════════════════════════════════════════════
   SERVICE AREA PAGE — specialties grid
   ═══════════════════════════════════════════════════════════ */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.specialty-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
}
.specialty-card:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow-sm);
}
.specialty-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(183, 122, 99, 0.1);
}
.specialty-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--brass);
}
.specialty-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.specialty-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
  .content-split,
  .content-split.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .content-split.reverse .content-img {
    order: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .map-wrapper {
    grid-template-columns: 1fr;
  }
  .map-embed {
    min-height: 350px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }
  .top-bar-left,
  .top-bar-right {
    justify-content: center;
  }

  .menu-toggle {
    display: block;
  }
  .header-inner {
    position: relative;
  }
  .menu-toggle {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: none;
    z-index: 1001;
  }
  body:not(.menu-open) .menu-toggle {
    transform: translateY(-50%);
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: var(--graphite);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 88px 20px 24px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    display: block;
  }
  .main-nav.active {
    transform: translateX(0);
  }
  .main-nav > ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
  }
  .main-nav > ul > li {
    width: 100%;
  }
  .main-nav > ul > li > a {
    padding: 16px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(183, 122, 99, 0.1);
    text-align: left;
    width: 100%;
    display: block;
  }
  .main-nav > ul > li > a::after {
    display: none;
  }
  .has-dropdown > a {
    padding-right: 28px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(183, 122, 99, 0.05);
    padding: 0;
  }
  .has-dropdown.open > .dropdown-menu {
    max-height: none;
    overflow: visible;
    padding: 8px 0;
  }
  .dropdown-menu li {
    opacity: 1;
    transform: none;
  }
  .dropdown-menu li a {
    padding: 10px 20px;
    text-align: left;
    width: 100%;
    display: block;
  }

  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 40px 20px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .process-grid::before {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specialties-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  #stickyBtn {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 32px);
    max-width: 360px;
    justify-content: center;
  }
  #stickyBtn:hover {
    transform: translateX(50%) translateY(-2px);
  }

  .modal-content {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.7rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Animations ── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
