/* ============================================
   BLACK MOUNTAIN DIRT WORKS
   Luxury, clean, elevated
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #1d1d1f;
  --dark: #1d1d1f;
  --charcoal: #333336;
  --slate: #6e6e73;
  --gray: #86868b;
  --light-gray: #d2d2d7;
  --off-white: #f5f5f7;
  --white: #ffffff;
  --warm-gray: #a1a1a6;
  --accent: #2d5a3d;
  --accent-light: #e8f0ea;
  --font-heading: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Helvetica, Arial, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  line-height: 1.5;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

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

/* ============================================
   APPLE-MINIMAL SECTION SYSTEM
   ============================================ */

.minimal-section {
  padding: 6rem 0;
  background: var(--white);
}

.minimal-section.bg-off {
  background: var(--off-white);
}

.minimal-section.bg-dark {
  background: var(--black);
  color: var(--white);
}

.minimal-section.bg-dark h1,
.minimal-section.bg-dark h2,
.minimal-section.bg-dark h3,
.minimal-section.bg-dark h4 {
  color: var(--white);
}

.minimal-section.bg-dark p {
  color: rgba(255,255,255,0.75);
}

.section-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 1rem;
}

.minimal-section.bg-dark .section-label {
  color: rgba(255,255,255,0.5);
}

.minimal-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.minimal-section .section-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--slate);
  max-width: 640px;
  margin-bottom: 3rem;
}

.minimal-section.text-center {
  text-align: center;
}

.minimal-section.text-center h2,
.minimal-section.text-center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .minimal-section {
    padding: 8rem 0;
  }
  .minimal-section h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .minimal-section h2 {
    font-size: 3.5rem;
  }
}

/* --- Inline CTA --- */
.inline-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: gap 0.2s;
}

.inline-cta:hover {
  gap: 0.85rem;
}

.minimal-section.bg-dark .inline-cta {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* --- Urgency Banner --- */
.urgency-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 0;
}

.urgency-banner h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.urgency-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .urgency-banner {
    padding: 5.5rem 0;
  }
  .urgency-banner h2 {
    font-size: 2.5rem;
  }
}

/* --- Eliminate sub-pixel gaps between same-color sections --- */
.story-section-dark,
.video-section,
.stats-section,
.urgency-banner,
.cta-banner {
  margin-top: -1px;
  border-top: 1px solid transparent;
}

/* --- Fade-in Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.08;
  color: var(--black);
  letter-spacing: -0.03em;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 5rem 0;
}

/* --- Header / Nav --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  height: 72px;
}

.nav-logo {
  height: 50px;
  width: auto;
}

/* --- Hero Logo --- */
.hero-logo {
  max-width: 220px;
  margin: 0 auto 2rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 1rem 0;
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  padding: 0.85rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

.nav-circle-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--black);
  overflow: hidden;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.nav-circle-logo img {
  width: 80%;
  height: auto;
  display: block;
}

.nav-phone {
  display: none;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-left: auto;
  transition: background 0.2s;
}

.nav-phone:hover {
  background: var(--accent);
}

@media (min-width: 768px) {
  .nav-phone {
    display: block;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: var(--off-white);
}

/* --- Hero --- */
.hero {
  padding: 10rem 0 6rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero .btn {
  margin: 0 0.5rem 0.75rem;
}

/* Hero with photo background */
.hero-photo {
  position: relative;
  background-image: url('../assets/projects/natural-boulder-wall/03.jpg');
  background-size: cover;
  background-position: 75% center;
  background-color: #1d1d1f;
  padding: 10rem 0 5rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-photo .container {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.hero-photo .hero-logo {
  max-width: 200px;
  margin: 4.7rem auto 2rem;
  filter: brightness(0) invert(1)
    drop-shadow(2px 0 0 #1d1d1f)
    drop-shadow(-2px 0 0 #1d1d1f)
    drop-shadow(0 2px 0 #1d1d1f)
    drop-shadow(0 -2px 0 #1d1d1f)
    drop-shadow(1.5px 1.5px 0 #1d1d1f)
    drop-shadow(-1.5px 1.5px 0 #1d1d1f)
    drop-shadow(1.5px -1.5px 0 #1d1d1f)
    drop-shadow(-1.5px -1.5px 0 #1d1d1f);
}

.hero-photo h1 {
  color: var(--white);
  -webkit-text-stroke: 4px #1d1d1f;
  paint-order: stroke fill;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 340px;
  margin: 0 auto 2rem;
}

.hero-photo p {
  color: var(--white);
  -webkit-text-stroke: 3px #1d1d1f;
  paint-order: stroke fill;
  text-shadow:
    -1.5px -1.5px 0 #1d1d1f,
     1.5px -1.5px 0 #1d1d1f,
    -1.5px  1.5px 0 #1d1d1f,
     1.5px  1.5px 0 #1d1d1f,
     0 3px 20px rgba(0,0,0,0.8);
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-photo .btn-primary {
  background: var(--white);
  color: var(--black);
}

.hero-photo .btn-primary:hover {
  background: var(--accent);
  color: var(--white);
}

.hero-photo .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.hero-photo .btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* Legacy white hero variant — kept for other pages */
.hero-image {
  background: var(--white);
  padding: 10rem 0 2rem;
}

.hero-image h1 {
  color: var(--black);
}

.hero-image p {
  color: var(--slate);
}

.hero-image .btn-outline {
  color: var(--black);
  border-color: var(--black);
}

.hero-image .btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

@media (min-width: 768px) {
  .hero-photo {
    padding: 14rem 0 8rem;
    min-height: 85vh;
  }
  .hero-photo h1 {
    font-size: 3.2rem;
    max-width: 720px;
  }
  .hero-photo p {
    font-size: 1.2rem;
  }
  .hero-photo .hero-logo {
    max-width: 330px;
    margin: 0 auto 1.75rem;
  }
}

/* Hero with full-bleed video background */
.hero-video {
  position: relative;
  padding: 12rem 0 8rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}

.hero-video .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-video .hero-logo {
  filter: brightness(0) invert(1);
  max-width: 280px;
  margin: 0 auto 2rem;
}

.hero-video h1 {
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero-video p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
  line-height: 1.6;
}

.hero-video .btn-primary {
  background: var(--white);
  color: var(--black);
}

.hero-video .btn-primary:hover {
  background: var(--off-white);
}

.hero-video .btn-outline {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.hero-video .btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.hero-asset {
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-asset img {
  width: 100%;
  height: auto;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  padding: 2.75rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.service-card:hover {
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 0;
  line-height: 1.65;
}

/* --- Story / Origin Section --- */
.story-section {
  background: var(--off-white);
}

.story-section-dark {
  background: var(--black);
  color: var(--white);
}

.story-section-dark h2,
.story-section-dark .story-highlight {
  color: var(--white);
}

.story-section-dark .story-highlight {
  border-left-color: var(--white);
}

.story-section-dark p,
.story-section-dark .story-content p {
  color: rgba(255,255,255,0.78);
}

.story-section-dark .section-label {
  color: rgba(255,255,255,0.55);
}

.story-content {
  max-width: 720px;
  margin: 0 auto;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
}

.story-highlight {
  font-size: 1.35rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
  letter-spacing: -0.02em;
}

/* --- Stats Section --- */
.stats-section {
  background: var(--black);
  color: var(--white);
  padding: 2rem 0;
}

.stats-section .stat-item h3 {
  color: var(--white);
}

.stats-section .stat-item p {
  color: rgba(255,255,255,0.6);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 5rem 0;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
  color: var(--accent);
}

.stat-item p {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--slate);
  margin-bottom: 0;
}

/* --- Area Section --- */
.area-section {
  background: var(--off-white);
  color: var(--dark);
  text-align: center;
  padding: 5rem 0;
}

.area-section h2 {
  color: var(--black);
  margin-bottom: 0.5rem;
}

.area-section p {
  color: var(--slate);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* --- About Page --- */
.about-hero {
  padding: 10rem 0 4rem;
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 1rem;
}

.about-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--slate);
}

.about-story {
  max-width: 760px;
  margin: 0 auto;
}

.about-story p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.bmt-callout {
  background: var(--off-white);
  padding: 3rem;
  margin-top: 3rem;
  border-left: 4px solid var(--black);
}

.bmt-callout h3 {
  margin-bottom: 1rem;
}

.bmt-callout p {
  margin-bottom: 1rem;
}

.bmt-callout a {
  font-weight: 600;
  border-bottom: 2px solid var(--black);
  transition: opacity 0.2s;
}

.bmt-callout a:hover {
  opacity: 0.7;
}

/* --- Services Page --- */
.services-hero {
  padding: 10rem 0 4rem;
  text-align: center;
}

.services-hero h1 {
  margin-bottom: 1rem;
}

.services-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--slate);
}

.service-detail {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-inner {
  max-width: 760px;
  margin: 0 auto;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
}

.service-detail h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.service-detail p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
}

/* --- Contact Page --- */
.contact-hero {
  padding: 10rem 0 4rem;
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 1rem;
}

.contact-hero p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--slate);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.contact-info-item .value {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--black);
  overflow-wrap: break-word;
}

.contact-info-item .value a {
  border-bottom: 1px solid var(--light-gray);
  transition: border-color 0.2s;
}

.contact-info-item .value a:hover {
  border-color: var(--black);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--slate);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--light-gray);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  margin-top: 1.5rem;
}

.form-submit .btn {
  width: 100%;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 0;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: 5.5rem 0;
  }
  .cta-banner h2 {
    font-size: 2.5rem;
  }
}

/* --- Projects Page --- */
.projects-hero {
  padding: 10rem 0 4rem;
  text-align: center;
}

.projects-hero h1 {
  margin-bottom: 1rem;
}

.projects-hero p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--slate);
}

.project-section {
  padding: 4rem 0;
}

.project-section h2 {
  margin-bottom: 0.5rem;
}

.project-description {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.project-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.project-gallery-small {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

.project-gallery-small img {
  height: auto;
}

.project-gallery-single {
  max-width: 500px;
  grid-template-columns: 1fr;
}

.project-gallery-single img {
  height: auto;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--light-gray);
  max-width: 200px;
  margin: 0 auto;
}

/* --- Project Cards (listing page) --- */
.project-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.project-card {
  display: block;
  transition: opacity 0.2s;
}

.project-card:hover {
  opacity: 0.85;
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.project-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.project-card-blurb {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--slate);
  margin-bottom: 0;
}

/* --- Project Detail Page --- */
.project-detail-hero {
  padding: 10rem 0 3rem;
}

.project-detail-hero h1 {
  margin-bottom: 0.75rem;
}

.back-link {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--black);
}

/* --- Featured Project (Home Page) --- */
.featured-project {
  padding: 6rem 0;
  background: var(--white);
}

.featured-project h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.project-subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.project-before-after {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.project-photo {
  position: relative;
}

.project-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.4rem 0.8rem;
}

/* --- Project Videos --- */
.project-videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.project-videos video {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  display: block;
}

@media (min-width: 768px) {
  .project-videos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Service Hub Grid --- */
.service-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.service-hub-card {
  display: block;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.service-hub-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.service-hub-card .service-number {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.service-hub-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--black);
}

.service-hub-card p {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
}

@media (min-width: 768px) {
  .service-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Service Detail Page --- */
.service-detail-hero {
  padding: 11rem 0 4rem;
}

.service-detail-hero h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
}

.service-tagline {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 700px;
  line-height: 1.55;
}

.service-content {
  padding: 5rem 0 4rem;
}

.service-content-inner {
  max-width: 760px;
  margin: 0 auto;
}

.service-intro {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 5rem;
  font-weight: 400;
}

.service-content h2 {
  font-size: 1.85rem;
  margin-top: 5rem;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.service-content h2:first-of-type {
  margin-top: 0;
}

.service-content h3.process-step-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 3rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.service-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.service-list li {
  padding: 1.25rem 0 1.25rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--light-gray);
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.5;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1.25rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.related-project {
  margin-top: 4rem;
  padding: 2.5rem;
  background: var(--off-white);
  border-radius: 12px;
}

.related-project h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.related-project p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--slate);
}

@media (min-width: 768px) {
  .service-detail-hero h1 {
    font-size: 3.5rem;
  }
  .service-content h2 {
    font-size: 2rem;
  }
  .service-intro {
    font-size: 1.3rem;
  }
}

/* --- Reviews Section --- */
.reviews-section {
  background: var(--off-white);
  padding: 5rem 0;
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--light-gray);
}

.review-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0;
}

/* --- Process Section --- */
.process-section {
  padding: 5rem 0;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--slate);
  max-width: 280px;
  margin: 0 auto;
}

/* --- Service Area Map --- */
.service-map-wrap {
  max-width: 400px;
  margin: 2rem auto 0;
  padding: 1rem;
}

.service-map {
  width: 100%;
  height: auto;
  display: block;
}

.service-map .map-label {
  font-family: var(--font-body);
  font-size: 13px;
  fill: var(--charcoal);
  font-weight: 500;
}

.service-map .map-caption {
  font-family: var(--font-body);
  font-size: 11px;
  fill: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Video Section --- */
.video-section {
  padding: 5rem 0;
  background: var(--black);
}

.video-section video {
  width: 55%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

/* --- Footer --- */
footer {
  background: var(--dark);
  color: var(--gray);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  height: 40px;
  width: auto;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--slate);
}

/* ============================================
   RESPONSIVE — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }

  .hero h1 { font-size: 3.5rem; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr 1.3fr;
  }

  .form-submit .btn {
    width: auto;
  }

  .project-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-gallery-small {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-before-after {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-section video {
    width: 30%;
    max-width: 420px;
  }
}

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  h1 { font-size: 4rem; }

  .hero h1 { font-size: 4rem; }
  .hero { padding: 12rem 0 7rem; }

  /* Show horizontal nav on desktop */
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    border-bottom: none;
    padding: 0;
    gap: 0;
  }

  .nav-links a {
    padding: 0.5rem 1rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .container {
    padding: 0 2rem;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
