/* ===================================
   PACK CONSTRUCTION CO — MAIN STYLES
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

/* === CUSTOM PROPERTIES === */
:root {
  --bg:           #0f0f0d;
  --bg-card:      #161614;
  --bg-raised:    #1e1e1a;
  --bg-hover:     #252520;
  --accent:       #d4500a;
  --accent-dark:  #b03f06;
  --accent-glow:  rgba(212, 80, 10, 0.15);
  --text:         #f5f3ee;
  --text-muted:   #9e9b96;
  --text-faint:   #5e5c58;
  --border:       #2a2a26;
  --border-light: #3a3a35;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', Arial, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --max-w:     1200px;
  --nav-h:     72px;
  --section-y: 96px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(52px, 8vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 60px); }
h3 { font-size: clamp(26px, 3.5vw, 40px); }
h4 { font-size: clamp(20px, 2.5vw, 28px); }
h5 { font-size: 18px; letter-spacing: 0.08em; }

p { max-width: 68ch; }
p + p { margin-top: 1em; }

.label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section { padding-block: var(--section-y); }
.section--dark  { background: var(--bg); }
.section--card  { background: var(--bg-card); }
.section--accent { background: var(--accent); }

.section-header { margin-bottom: 56px; }
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); }

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

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s var(--ease-out), border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15, 15, 13, 0.96);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}
.nav-logo {
  flex-shrink: 0;
  height: 44px;
  width: auto;
}
.nav-logo img { height: 100%; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--accent); color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 40px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--accent); padding-left: 12px; }
.mobile-menu .mobile-phone {
  margin-top: 32px;
  font-size: 24px;
  color: var(--accent);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 80, 10, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}
.btn--outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}
.btn--outline-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline-accent:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.btn--lg { font-size: 18px; padding: 18px 44px; }
.btn--sm { font-size: 14px; padding: 10px 22px; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* === HERO === */
.hero {
  min-height: 560px;
  height: 64vh;
  display: flex;
  align-items: flex-start;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(15,15,13,0.92) 0%, rgba(15,15,13,0.72) 42%, rgba(15,15,13,0.35) 75%, rgba(15,15,13,0.5) 100%),
    url('/images/hero-roof-framing.jpg') center top / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(212, 80, 10, 0.08) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 56px 40px;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero h1 {
  margin-bottom: 24px;
  max-width: 14ch;
  color: var(--text);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 48ch;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 32px;
}
.hero-phone svg { color: var(--accent); flex-shrink: 0; }
.hero-phone a { color: var(--text); transition: color 0.2s; }
.hero-phone a:hover { color: var(--accent); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
  z-index: 1;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.page-hero .label { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { color: var(--text-muted); font-size: 19px; }

/* === ORANGE ACCENT DIVIDER === */
.accent-bar {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 20px;
}

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--bg-card);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover { background: var(--bg-raised); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--accent);
}
.service-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
  transition: color 0.2s;
}
.service-card:hover h3 { color: var(--accent); }
.service-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s;
}
.service-card .card-link:hover { gap: 12px; }

/* === SERVICES DETAIL PAGE === */
.services-detail { display: flex; flex-direction: column; gap: 0; }
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.service-detail-item:nth-child(even) .service-detail-content { order: -1; }
.service-detail-content {
  padding: 72px clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.service-detail-image {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail-image .img-placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    var(--bg-card),
    var(--bg-card) 10px,
    var(--bg-raised) 10px,
    var(--bg-raised) 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-detail-content h2 { margin-bottom: 20px; }
.service-detail-content p { color: var(--text-muted); margin-bottom: 28px; }
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}
.includes-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 15px;
}
.includes-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === GALLERY / PROJECTS === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3px;
}
.gallery-item {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item .img-placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--bg-card),
    var(--bg-card) 12px,
    var(--bg-raised) 12px,
    var(--bg-raised) 24px
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  background: rgba(15, 15, 13, 0.8);
  padding: 6px 12px;
  border-radius: var(--radius);
}
.gallery-item:hover .img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212, 80, 10, 0.1);
}

.project-type-section { margin-bottom: 72px; }
.project-type-section h3 {
  font-size: 28px;
  margin-bottom: 4px;
}
.project-type-section .count {
  color: var(--text-faint);
  font-size: 14px;
  margin-bottom: 24px;
}
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
  gap: 3px;
}
.before-after-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.before-after-side {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.before-after-side .img-placeholder {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    var(--bg-card),
    var(--bg-card) 10px,
    var(--bg-raised) 10px,
    var(--bg-raised) 20px
  );
}
.ba-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}
.ba-label.before { background: var(--bg); color: var(--text-muted); }
.ba-label.after  { background: var(--accent); color: #fff; }

/* === STATS BAR === */
.stats-bar {
  background: var(--accent);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 64px);
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.stats-bar--photo {
  position: relative;
  overflow: hidden;
  background-image: url('/images/stats-band.jpg');
  background-size: cover;
  background-position: center 60%;
}
.stats-bar--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,13,0.55) 0%, rgba(15,15,13,0.72) 100%);
}
.stats-bar--photo .container { position: relative; z-index: 1; }
.stats-bar--photo .stat-number { text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.stats-bar--photo .stat-label { color: var(--accent); }

/* === WHY PACK === */
.why-pack-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: url('/images/why-pack.jpg') center/cover;
}
.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  border-top: 1px solid var(--border);
}
.why-feature-item {
  background: var(--bg-card);
  padding: 32px 28px;
}
.why-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 18px;
}
.why-feature-item h4 { font-size: 18px; margin-bottom: 8px; }
.why-feature-item p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-stars { color: var(--accent); font-size: 14px; letter-spacing: 0.1em; }
.testimonial-quote {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  font-family: var(--font-body);
  max-width: none;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: repeating-linear-gradient(45deg, var(--bg-raised), var(--bg-raised) 5px, #262622 5px, #262622 10px);
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text); }
.testimonial-role { font-size: 13px; color: var(--text-faint); }

/* === SKYLINE PHOTO SECTIONS (service areas) === */
.section--skyline {
  position: relative;
  background-image: url('/images/denver-skyline.jpg');
  background-size: cover;
  background-position: center;
}
.section--skyline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,13,0.88) 0%, rgba(15,15,13,0.94) 100%);
}
.section--skyline .container { position: relative; z-index: 1; }

/* === PAGE HERO PHOTO VARIANT (about, contact) === */
.page-hero--photo {
  position: relative;
  background-image: url('/images/stud-texture.jpg');
  background-size: cover;
  background-position: center;
}
.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,15,13,0.9);
}
.page-hero--photo .container { position: relative; z-index: 1; }

/* === CONTACT PORTRAIT === */
.contact-portrait {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
}

/* === ABOUT === */
.about-feature {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
}
.about-feature-item {
  background: var(--bg-card);
  padding: 40px 32px;
}
.about-feature-item h4 { margin-bottom: 12px; }
.about-feature-item p { color: var(--text-muted); font-size: 15px; }
.about-feature-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}

/* === CONTACT FORM === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.contact-form { }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-faint); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 80, 10, 0.15);
}
.form-field select { appearance: none; cursor: pointer; }
.form-field textarea { resize: vertical; min-height: 140px; }

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}
.form-status.error {
  display: block;
  background: rgba(212, 80, 10, 0.1);
  border: 1px solid rgba(212, 80, 10, 0.3);
  color: var(--accent);
}

.contact-sidebar {}
.contact-info-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}
.contact-info-card h4 { margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-text .contact-info-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.contact-info-text a, .contact-info-text p {
  font-size: 16px;
  color: var(--text);
}
.contact-info-text a:hover { color: var(--accent); }

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-area-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg-raised);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.service-area-tag:hover { background: var(--accent); color: #fff; }

/* === BLOG === */
.coming-soon {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}
.coming-soon h2 { margin-bottom: 8px; }
.coming-soon p { color: var(--text-muted); max-width: 44ch; }

/* === SERVICE AREA PAGES === */
.area-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.area-services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.area-services-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.area-services-list li:hover { background: var(--bg-raised); color: var(--accent); }
.area-services-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === CTA BAND === */
.cta-band {
  padding: 96px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--text-muted); margin: 0 auto 40px; max-width: 52ch; }

/* === FOOTER === */
footer {
  background: #0a0a09;
  border-top: 1px solid var(--border);
}
.footer-main {
  padding: 80px 0 64px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
}
.footer-brand .footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 30ch;
}
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px !important;
}
.footer-col h5 {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 14px;
  color: var(--text-faint);
  max-width: none;
}
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* === UTILITIES === */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.mt-sm  { margin-top: 16px; }
.mt-md  { margin-top: 32px; }
.mt-lg  { margin-top: 64px; }
.mb-sm  { margin-bottom: 16px; }
.mb-md  { margin-bottom: 32px; }
.no-max { max-width: none; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-detail-item { grid-template-columns: 1fr; min-height: auto; }
  .service-detail-item:nth-child(even) .service-detail-content { order: unset; }
  .service-detail-image { min-height: 300px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .area-intro { grid-template-columns: 1fr; gap: 40px; }
  .before-after-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-y: 64px; --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-detail-content { padding: 48px 24px; }
  h1 { font-size: 44px; }
  .btn--lg { font-size: 16px; padding: 14px 28px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
