/* ============================================
   IRON EDGE OUTDOOR SERVICES
   Style: Exaggerated Minimalism + Industrial
   Fonts: DM Sans (body) + Space Mono (accents)
   Palette: Charcoal + Safety Orange
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Dark theme (default) */
  --black: #0a0a0a;
  --charcoal: #141414;
  --stone: #1e1e1e;
  --stone-mid: #2a2a2a;
  --stone-edge: #333;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --cream: #f1efe9;
  --white: #fafaf7;
  --orange: #f97316;
  --orange-hover: #fb923c;
  --orange-dark: #ea580c;

  --font: 'DM Sans', -apple-system, sans-serif;
  --display: 'Syne', sans-serif;
  --mono: 'Space Mono', monospace;

  --max-w: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(5rem, 10vw, 8rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 200ms;
}

/* Light theme */
[data-theme="light"] {
  --black: #f5f3ef;
  --charcoal: #eae7e1;
  --stone: #ddd9d1;
  --stone-mid: #ccc8c0;
  --stone-edge: #b8b3aa;
  --gray: #5a5650;
  --gray-light: #4a4640;
  --cream: #1a1815;
  --white: #111;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--gray-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* --- Theme Toggle --- */
.theme-toggle {
  background: none;
  border: 1px solid var(--stone-mid);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream);
  transition: border-color var(--fast), color var(--fast);
  padding: 0;
}

.theme-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Dark mode: show sun (click to go light), hide moon */
.theme-toggle__sun { display: block; }
.theme-toggle__moon { display: none; }

/* Light mode: show moon (click to go dark), hide sun */
[data-theme="light"] .theme-toggle__sun { display: none; }
[data-theme="light"] .theme-toggle__moon { display: block; }

/* Light mode nav adjustments */
[data-theme="light"] .nav {
  background: rgba(245, 243, 239, 0.9);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .nav.scrolled {
  background: rgba(245, 243, 239, 0.97);
}

[data-theme="light"] .nav__burger span {
  background: var(--cream);
}

[data-theme="light"] .nav__mobile {
  background: var(--charcoal);
  border-top-color: var(--stone);
}

/* Light mode hero - keep overlay readable */
[data-theme="light"] .hero__overlay {
  background:
    linear-gradient(to bottom, rgba(245, 243, 239, 0.85) 0%, rgba(245, 243, 239, 0.05) 35%),
    linear-gradient(to top, rgba(245, 243, 239, 0.85) 0%, rgba(245, 243, 239, 0.05) 35%);
}

[data-theme="light"] .hero__h1 {
  color: var(--cream);
}

[data-theme="light"] .hero__p {
  color: #111;
}

/* Light mode sticky bar */
[data-theme="light"] .sticky-bar__call {
  background: var(--charcoal);
  color: var(--cream);
  border-top-color: var(--stone);
}

/* Light mode form inputs */
[data-theme="light"] .form__field input,
[data-theme="light"] .form__field select,
[data-theme="light"] .form__field textarea {
  background: var(--black);
  border-color: var(--stone);
  color: var(--cream);
}

[data-theme="light"] .form__field input::placeholder,
[data-theme="light"] .form__field textarea::placeholder {
  color: var(--stone-edge);
}

/* Smooth transition between themes */
body,
.nav,
.svc,
.rev,
.contact__right,
.footer,
.compare__badge {
  transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}

/* --- Skip Link (a11y) --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--orange);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  z-index: 9999;
  transition: top var(--fast);
}
.skip-link:focus {
  top: 16px;
}

/* --- Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Section Headings --- */
.label {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 520px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.95rem 2rem;
  border: 2px solid var(--orange);
  background: var(--orange);
  color: var(--black);
  cursor: pointer;
  transition: background var(--fast), border-color var(--fast), transform var(--fast), box-shadow var(--fast);
}

.btn:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.25);
}

.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--stone-edge);
}

.btn--ghost:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--black);
  box-shadow: none;
}

.btn--full { width: 100%; }


/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--fast);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__brand {
  display: flex;
  align-items: center;
}

.nav__brand-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: none;
  gap: 1.75rem;
}

/* Mobile menu for inner pages (no separate nav__mobile) */
@media (max-width: 959px) {
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    border-top: 1px solid var(--stone-mid);
    padding: 0.75rem var(--pad) 1.5rem;
    gap: 0;
    z-index: 99;
  }

  .nav__links.open > a,
  .nav__links.open > .nav__dropdown > a,
  .nav__links.open > .nav__dropdown > button {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gray-light);
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--stone);
    display: block;
    width: 100%;
    text-align: left;
  }

  .nav__links.open > a:hover,
  .nav__links.open > .nav__dropdown > a:hover,
  .nav__links.open > .nav__dropdown > button:hover {
    color: var(--orange);
  }

  .nav__links.open .nav__dropdown {
    display: block;
  }

  .nav__links.open .nav__dropdown-menu {
    display: none;
  }
}

.nav__links a {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gray-light);
  transition: color var(--fast);
  cursor: pointer;
  text-decoration: none;
}

.nav__links a:hover { color: var(--cream); }

.nav__cta {
  display: none;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream);
  cursor: pointer;
  transition: color var(--fast);
  text-decoration: none;
  border: 1px solid var(--stone-mid);
  padding: 0.5rem 1.1rem;
}

.nav__cta:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* Hamburger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 0.75rem var(--pad) 1.5rem;
  background: var(--charcoal);
  border-top: 1px solid var(--stone-mid);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--stone);
  transition: color var(--fast);
  cursor: pointer;
}

.nav__mobile a:hover { color: var(--orange); }

.nav__mobile-call {
  margin-top: 0.75rem;
  padding: 0.85rem 1.5rem;
  background: var(--orange);
  color: var(--black) !important;
  font-weight: 700;
  text-align: center;
  border: none !important;
}


/* ============================================
   HERO — Full-bleed image
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Desktop hero image (hidden on mobile) */
.hero > picture {
  display: none;
}

.hero__img {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Mobile hero slideshow */
.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.05) 35%),
    linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.05) 35%);
}

/* Mobile: H1 at top, subtitle + CTAs at bottom */
.hero__top {
  position: relative;
  z-index: 1;
  padding: clamp(6rem, 14vw, 9rem) var(--pad) 0;
  max-width: 720px;
}

.hero__bottom {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad) clamp(3rem, 8vw, 5rem);
  width: 100%;
}

.hero__h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero__p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero stagger animations */
.hero-anim {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease) forwards;
}

.hero-anim[data-delay="0"] { animation-delay: 0.2s; }
.hero-anim[data-delay="1"] { animation-delay: 0.4s; }
.hero-anim[data-delay="2"] { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}


/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section) 0;
  background: var(--black);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.svc {
  background: var(--charcoal);
  cursor: pointer;
  transition: background var(--fast), transform var(--fast), box-shadow var(--fast);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--stone);
}

.svc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.4s var(--ease);
  z-index: 2;
}

.svc:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.svc:hover::after {
  width: 100%;
}

.svc:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

/* Mobile edge-to-edge bleed */
@media (max-width: 639px) {
  .svc--bleed {
    margin-left: calc(-1 * var(--pad));
    margin-right: calc(-1 * var(--pad));
    border-left: none;
    border-right: none;
  }
  .svc--bleed h3 {
    font-size: 3rem;
    letter-spacing: 0.1em;
    color: var(--orange);
  }
}

/* Featured Service (large hero tile) */
.svc-featured {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 2rem;
  border: 1px solid var(--stone);
}

.svc-featured__img {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.svc-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.svc-featured:hover .svc-featured__img img {
  transform: scale(1.03);
}

.svc-featured__body {
  padding: 2rem;
  background: var(--charcoal);
}

.svc-featured__body .label {
  margin-bottom: 0.5rem;
}

.svc-featured__body h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.svc-featured__body p {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 1.25rem;
}

.svc-featured__link {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  transition: color var(--fast);
}

.svc-featured:hover .svc-featured__link {
  color: var(--orange-hover);
}

@media (min-width: 768px) {
  .svc-featured__img {
    aspect-ratio: 21 / 8;
  }

  .svc-featured__body {
    padding: 2.5rem 3rem;
  }
}

/* 3-column service grid */
.services__grid--3col {
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
}

@media (min-width: 640px) {
  .services__grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services__grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service CTA tile */
.svc--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--charcoal);
  border: 1px solid var(--stone);
}

.svc--cta .svc__body {
  padding: 2.5rem 1.5rem;
}

.svc--cta h3 {
  font-size: 1.35rem;
  color: var(--orange);
}

.svc__cta-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background var(--fast), transform var(--fast);
}

.svc--cta:hover .svc__cta-btn {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

@media (min-width: 640px) {
  .svc--cta {
    grid-column: span 2;
  }
}

/* Service card image */
.svc__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.svc__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.svc:hover .svc__img img {
  transform: scale(1.05);
}

/* Service card body (text below image) */
.svc__body {
  padding: 1.5rem;
  flex: 1;
}

/* Fallback for cards without images */
.svc:not(.svc--has-img) {
  padding: 2rem 1.5rem;
}

.svc__icon {
  width: 36px;
  height: 36px;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.svc__icon svg {
  width: 100%;
  height: 100%;
}

.svc h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.svc p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}


/* ============================================
   HOW IT WORKS (3-step process)
   ============================================ */
.process {
  padding: var(--section) 0;
  background: var(--black);
  border-top: 1px solid var(--stone);
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.process__step {
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid var(--stone);
}

.process__num {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  display: block;
  margin-bottom: 0.75rem;
}

.process__word {
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  position: relative;
  display: inline-block;
  color: var(--stone-mid);
  margin-bottom: 1rem;
}

/* Gradient text fill driven by scroll progress */
.process__word {
  --fill: 0%;
}

.process__word::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: var(--fill);
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--orange), var(--orange-hover));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  will-change: width;
}

.process__step p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 400px;
  line-height: 1.7;
}

@media (min-width: 960px) {
  .process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .process__step {
    border-bottom: none;
    border-right: 1px solid var(--stone);
    padding: 0 2rem;
  }

  .process__step:first-child { padding-left: 0; }
  .process__step:last-child { border-right: none; padding-right: 0; }
}


/* ============================================
   BEFORE / AFTER (auto-wipe)
   ============================================ */
.compare {
  padding: var(--section) 0;
  background: var(--charcoal);
  border-top: 1px solid var(--stone);
}

.compare__box {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

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

.compare__wipe {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 100%;
  transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.compare__wipe.is-hidden {
  width: 0%;
}

.compare__before-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
}

/* Wipe edge line */
.compare__wipe::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.compare__wipe.is-hidden::after {
  opacity: 0;
}

/* Badge */
.compare__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 3;
  transition: color 0.3s;
}

.compare__badge.is-after {
  color: var(--orange);
}


/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section) 0;
  background: var(--charcoal);
  border-top: 1px solid var(--stone);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Video */
.about__video {
  display: flex;
  justify-content: center;
}

.about__vid {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--stone-mid);
  background: var(--black);
}

.about__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--stone-mid);
}

.about__copy h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.about__copy p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-light);
  margin-bottom: 1.25rem;
}

.about__sig {
  color: var(--orange) !important;
  font-weight: 600;
  font-style: italic;
}

.about__copy .btn {
  margin-top: 0.75rem;
}


/* ============================================
   SERVICE AREAS
   ============================================ */
.areas {
  padding: var(--section) 0;
  background: var(--black);
  border-top: 1px solid var(--stone);
}

.areas__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2rem;
}

.areas__tag {
  padding: 0.75rem 0;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--stone);
  transition: color var(--fast);
  cursor: default;
}

.areas__tag:nth-child(odd) {
  padding-right: 1.5rem;
}

.areas__tag:nth-child(even) {
  padding-left: 1.5rem;
  border-left: 1px solid var(--stone);
}

.areas__tag:hover {
  color: var(--orange);
}

.areas__note {
  font-size: 0.95rem;
  color: var(--gray);
  font-style: italic;
}


/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: var(--section) 0;
  background: var(--charcoal);
  border-top: 1px solid var(--stone);
}

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

.rev {
  background: var(--black);
  border: 1px solid var(--stone);
  padding: 2rem 1.75rem;
  position: relative;
}

.rev__stars {
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.rev p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-light);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.rev cite {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section) 0;
  background: var(--black);
  border-top: 1px solid var(--stone);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__left h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.contact__left > p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--gray-light);
}

.contact__row svg { color: var(--orange); flex-shrink: 0; }

.contact__social {
  display: flex;
  gap: 0.75rem;
}

.contact__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--stone-mid);
  color: var(--gray);
  transition: border-color var(--fast), color var(--fast);
  cursor: pointer;
}

.contact__social a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Form */
.contact__right {
  background: none;
  border: none;
  padding: 0;
  min-height: 620px;
}

.contact__right iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.form__field label {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.form__field input,
.form__field select,
.form__field textarea {
  background: var(--black);
  border: 1px solid var(--stone-mid);
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--fast);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--stone-edge);
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--orange);
}

.form__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__field textarea {
  resize: vertical;
  min-height: 90px;
}

.form__note {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  font-family: var(--mono);
  letter-spacing: 0.05em;
}

/* Form success */
.form--done {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  text-align: center;
}

.form__ok {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.form__ok svg { color: var(--orange); }

.form__ok h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cream);
}

.form__ok p {
  font-size: 0.95rem;
  color: var(--gray);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--stone);
  padding: 3rem 0 5rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer__logo-img {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.footer__copy,
.footer__addr {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.75rem;
}

.footer__addr { margin-top: 0.2rem; }

.footer__col h4 {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.85rem;
}

.footer__col li {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 2;
}

.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: opacity var(--fast), transform var(--fast);
  cursor: pointer;
}

.footer__social a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.social--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social--facebook { background: #1877F2; }
.social--google { background: #4285F4; }

.footer__legal {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__legal a {
  font-size: 0.75rem;
  color: var(--gray);
  transition: color var(--fast);
}

.footer__legal a:hover { color: var(--orange); }


/* ============================================
   MOBILE STICKY BAR
   ============================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.sticky-bar.show {
  transform: none;
}

.sticky-bar__call,
.sticky-bar__est {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}

.sticky-bar__call {
  background: var(--charcoal);
  color: var(--cream);
  border-top: 1px solid var(--stone);
}

.sticky-bar__est {
  background: var(--orange);
  color: var(--black);
}


/* ============================================
   RESPONSIVE: 640px+
   ============================================ */
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--stone); border: 1px solid var(--stone); }
  .services__grid .svc { border: none; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .form__split { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}


/* ============================================
   RESPONSIVE: 960px+
   ============================================ */
@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__cta { display: flex; }
  .nav__burger { display: none; }

  .hero__slides { display: none; }
  .hero > picture { display: block; }
  .hero__img { display: block; }
  .hero { justify-content: center; align-items: center; }
  .hero__top { padding: 0 var(--pad); max-width: 900px; text-align: center; }
  .hero__bottom { text-align: center; max-width: 700px; margin: 0 auto; padding: 1rem var(--pad) 0; }
  .hero__p { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__overlay { background: rgba(10, 10, 10, 0.45); }

  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .about__layout { grid-template-columns: 0.6fr 1fr 0.7fr; gap: 3rem; }
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .contact__layout { grid-template-columns: 1fr 1.3fr; gap: 5rem; }

  .sticky-bar { display: none; }
}


/* ============================================
   RESPONSIVE: 1200px+
   ============================================ */
@media (min-width: 1200px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}