/**
╔════════════════════════════════════════════════════════════════════════════════════╗
║                                                                                    ║
║  ████████╗███████╗████████╗███████╗██╗     ███████╗███████╗ ████████╗ █████╗ ██╗   ║
║  ╚══██╔══╝██╔════╝╚══██╔══╝██╔════╝██║     ██╔════╝██╔════╝ ╚══██╔══╝██╔══██╗██║   ║
║     ██║   █████╗     ██║   █████╗  ██║     █████╗  ███████╗    ██║   ███████║██║   ║
║     ██║   ██╔══╝     ██║   ██╔══╝  ██║     ██╔══╝  ╚════██║    ██║   ██╔══██║██║   ║
║     ██║   ███████╗   ██║   ███████╗███████╗███████╗███████║    ██║   ██║  ██║██║   ║
║     ╚═╝   ╚══════╝   ╚═╝   ╚══════╝╚══════╝╚══════╝╚══════╝    ╚═╝   ╚═╝  ╚═╝╚═╝   ║
║                                                                                    ║
║                         "It is finished"                                           ║
║                       jerry@dallaswebpro.net                                      ║
║                                                                                    ║
╚════════════════════════════════════════════════════════════════════════════════════╝
**/


/* ============================================================
   DALLAS WEB PRO — STYLES.CSS
   Single sitewide stylesheet. Design System: Dark Premium /
   Orange Accent / Cinematic.

   TABLE OF CONTENTS
   1. TOKENS ............... :root custom properties
   2. RESET & BASE
   3. TYPOGRAPHY ........... section titles, descriptions
   4. LAYOUT UTILITIES ..... container, anchor offset,
                             section systems, scroll reveal
   5. COMPONENTS
      5.1 Buttons
      5.2 Forms
      5.3 Header & Nav ..... dropdown, hamburger, mobile menu
      5.4 Footer
      5.5 Page Hero & Breadcrumbs
      5.6 Cards, Carousel Controls, Project Modal
      5.7 FAQ Layout
      5.8 Image Placeholder
   6. PAGE SECTIONS (page order)
      6.1  Home — Hero
      6.2  Home — Services
      6.3  Home — Portfolio
      6.4  Home — CTA Banner
      6.5  Home — Reviews
      6.6  Home — Contact
      6.7  Services Page + Service Detail Pages
      6.8  Consulting Page
      6.9  Portfolio Page
      6.10 Process Page
      6.11 About Page
      6.12 Resources Page
      6.13 Markets & City Pages
      6.14 Reviews Page
      6.15 Contact Page
      6.16 Tempered Trades Page

   Media queries are grouped at the end of each section.
   ============================================================ */


/* ============================================================
   1. TOKENS
   ============================================================ */

:root {
  --clr-black: #0a0a0a;
  --clr-dark: #111111;
  --clr-dark-alt: #161616;
  --clr-dark-card: #181818;
  --clr-charcoal: #1e1e1e;
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-orange: #e8620a;
  --clr-orange-hover: #ff7420;
  --clr-white: #ffffff;
  --clr-off-white: #f5f3ef;
  --clr-light-gray: #a0a0a0;
  --clr-mid-gray: #6a6a6a;

  --font-headline: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-fast: 200ms ease;
  --transition-med: 300ms ease;

  --container-max: 1320px;
  --container-pad: clamp(1.25rem, 5vw, 4rem);
  --section-pad: clamp(4rem, 10vw, 8rem);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #c8c8c8;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

.section-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-white);
}

.section-desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--clr-light-gray);
  max-width: 52ch;
  margin-top: 1rem;
  line-height: 1.7;
}

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


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Anchor targets must clear the fixed header */
[id] {
  scroll-margin-top: 110px;
}

/* ---- SECTION SYSTEMS ---- */
.section-dark {
  background-color: var(--clr-dark);
  padding-block: var(--section-pad);
  border-top: 1px solid var(--clr-border);
}

.section-black {
  background-color: var(--clr-black);
  padding-block: var(--section-pad);
  border-top: 1px solid var(--clr-border);
}

.section-light {
  background-color: var(--clr-off-white);
  color: #222222;
  padding-block: var(--section-pad);
  border-top: 4px solid var(--clr-orange);
}

.section-light .section-title {
  color: #111111;
}

.section-light .section-desc {
  color: #555555;
  margin-top: 1rem;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   5.1 COMPONENTS — BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-med),
    color var(--transition-med),
    border-color var(--transition-med),
    transform var(--transition-fast),
    box-shadow var(--transition-med);
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--clr-orange);
  color: var(--clr-white);
  border-color: var(--clr-orange);
}

.btn-primary:hover {
  background-color: var(--clr-orange-hover);
  border-color: var(--clr-orange-hover);
  box-shadow: 0 0 20px rgba(232, 98, 10, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--clr-white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-outline-square {
  background-color: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  cursor: pointer;
  transition: border-color var(--transition-med), color var(--transition-med), transform var(--transition-fast);
  border-radius: 0;
}

.btn-outline-square:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  transform: translateY(-2px);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  background-color: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color var(--transition-med), border-color var(--transition-med), color var(--transition-med), transform var(--transition-fast);
  border-radius: 0;
  text-decoration: none;
}

.btn-service:hover {
  background-color: var(--clr-orange);
  border-color: var(--clr-orange);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}


/* ============================================================
   5.2 COMPONENTS — FORMS
   ============================================================ */

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

.form-label {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-light-gray);
}

.form-input {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  border-radius: 0;
  width: 100%;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
  border-color: var(--clr-orange);
  background-color: rgba(255, 255, 255, 0.07);
}

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

.form-select option {
  background-color: #1e1e1e;
  color: var(--clr-white);
}

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

.form-note {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #66cc66;
  text-align: center;
  padding-top: 0.5rem;
}

/* Honeypot anti-spam field — must stay invisible on every page */
.hp-field {
  display: none !important;
}


/* ============================================================
   5.3 COMPONENTS — HEADER & NAV
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background-color: rgba(10, 10, 10, 0.96);
  border-color: var(--clr-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 1.5rem var(--container-pad);
  transition: padding var(--transition-med);
}


.site-header.scrolled .header-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.footer-logo .logo-img {
  height: 28px;
}


/* Main nav */
.main-nav {
  display: none;
}


.nav-list {
  display: flex;
  gap: clamp(1.1rem, 2vw, 2.5rem);
}

.nav-link {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--clr-orange);
  transition: width var(--transition-med);
}

.nav-link:hover {
  color: var(--clr-white);
}

.nav-link:hover::after {
  width: 100%;
}

/* Current-page indicator */
.nav-link.is-current {
  color: var(--clr-white);
}

.nav-link.is-current::after {
  width: 100%;
}


/* Parent li — needs position context */
.nav-has-dropdown {
  position: relative;
}

/* Suppress underline animation when dropdown is open */
.nav-has-dropdown:hover .nav-link--has-dropdown::after,
.nav-has-dropdown:focus-within .nav-link--has-dropdown::after {
  width: 0;
}

/* Chevron icon */
.nav-chevron {
  display: inline-block;
  width: 9px;
  height: 6px;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.25s ease;
  position: relative;
  top: -1px;
}

.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

/* The dropdown panel */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--clr-orange);
  padding: 0.5rem 0;
  padding-top: 18px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2000;
}

/* Small arrow pointing up — sits in the padding gap */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--clr-orange);
}

/* Show on hover or keyboard focus */
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Individual dropdown links */
.nav-dropdown-link {
  display: block;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s, background-color 0.15s, padding-left 0.15s;
  white-space: nowrap;
}

.nav-dropdown-link:hover {
  color: var(--clr-white);
  background-color: rgba(232, 98, 10, 0.08);
  padding-left: 1.5rem;
}

.nav-cta {
  display: none;
  font-size: 0.85rem;
  padding: 0.7rem 1.6rem;
}


/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}


.hamburger-bar {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--clr-white);
  transition: transform var(--transition-med), opacity var(--transition-fast);
  transform-origin: center;
}

.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(10, 10, 10, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu[hidden] {
  display: flex;
  /* override UA hidden to allow transition */
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-close {
  display: none;
  /* hamburger animates to X and handles close via toggle */
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(2rem, 8vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-white);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--clr-orange);
}

.mobile-cta {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

@media (max-width: 1199px) {
  .header-inner {
    padding-inline: clamp(1.25rem, 3vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 28px;
  }
}

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

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}


/* ============================================================
   5.4 COMPONENTS — FOOTER
   ============================================================ */

.site-footer {
  background-color: #080808;
  border-top: 1px solid var(--clr-border);
  padding-block: 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}


/* Cities Row */
.footer-cities {
  border-top: 1px solid var(--clr-border);
  padding-block: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


.footer-cities-label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-orange);
}

.footer-cities-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.footer-cities-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--clr-mid-gray);
  transition: color var(--transition-fast);
  text-decoration: none;
}

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

.footer-cities-links .sep {
  color: rgba(255, 255, 255, 0.15);
  user-select: none;
}


.footer-logo {
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--clr-mid-gray);
  line-height: 1.6;
  max-width: 30ch;
}

.footer-nav-heading {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 1rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-list a,
.footer-contact-list a,
.footer-contact-list li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--clr-mid-gray);
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover,
.footer-contact-list a:hover {
  color: var(--clr-white);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--clr-mid-gray);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
  }
}

@media (min-width: 768px) {
  .footer-cities {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}


/* ============================================================
   5.5 COMPONENTS — PAGE HERO & BREADCRUMBS
   ============================================================ */

.page-hero {
  position: relative;
  min-height: clamp(350px, 45vh, 480px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--clr-charcoal);
  border-bottom: 1px solid var(--clr-border);
}

/* Photo-earned hero variant */
.page-hero--photo {
  background-color: #080808;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 0;
}

.page-hero--photo .img-ph {
  position: absolute;
  inset: 0;
  border: none;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  width: 100%;
}

.page-hero-accent-bar {
  width: 30px;
  height: 3px;
  background-color: var(--clr-orange);
  margin-bottom: 1.5rem;
}

.page-hero-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
}

.page-hero-headline .accent {
  color: var(--clr-orange);
}

.page-hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 68ch;
  line-height: 1.65;
}

/* ---- BREADCRUMBS ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headline);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

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

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb-current {
  color: var(--clr-orange);
}

@media (max-width: 1024px) {
  .page-hero {
    min-height: auto;
  }
  .page-hero-content {
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
  }
}


/* ============================================================
   5.6 COMPONENTS — CARDS, CAROUSEL CONTROLS, PROJECT MODAL
   ============================================================ */

/* Service Card */
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.6) 45%,
      rgba(0, 0, 0, 0.2) 100%);
  transition: background 0.4s ease;
}

.service-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.service-card-title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 0;
  transition: transform 0.35s ease, margin-bottom 0.35s ease;
  line-height: 1.1;
}

.service-card-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease, margin-bottom 0.35s ease;
}

.service-card .btn-service {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  margin-top: 0;
}

/* Card hover state */
.service-card:hover .service-card-img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.7) 55%,
      rgba(0, 0, 0, 0.3) 100%);
}

.service-card:hover .service-card-title {
  transform: translateY(-6px);
  margin-bottom: 0.6rem;
}

.service-card:hover .service-card-desc {
  max-height: 5rem;
  opacity: 1;
  margin-bottom: 1rem;
}

.service-card:hover .btn-service {
  max-height: 3rem;
  opacity: 1;
  pointer-events: auto;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  background-color: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: transform var(--transition-med), border-color var(--transition-med);
  width: 100%;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 98, 10, 0.45);
}

.portfolio-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #0d0d0d;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  transition: transform var(--transition-med), filter var(--transition-med);
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.03);
}

.portfolio-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.portfolio-card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.portfolio-tag {
  font-family: var(--font-headline);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.portfolio-tag--orange {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
}

.portfolio-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}

.portfolio-card-location {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 0.15rem;
}

.portfolio-card-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1.15;
}

.portfolio-card-scope {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.portfolio-card-stack {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--clr-mid-gray);
  line-height: 1.4;
  margin-top: 0.25rem;
  display: block;
}

.portfolio-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.5rem 1rem;
  margin-top: 0.75rem;
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  width: fit-content;
}

.portfolio-card-link:hover {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.portfolio-no-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--clr-mid-gray);
  margin-top: 0.75rem;
}

/* Pending / coming-soon card */
.portfolio-card--pending .portfolio-card-img {
  filter: brightness(0.35) grayscale(0.5);
}

.portfolio-card--pending:hover .portfolio-card-img {
  filter: brightness(0.35) grayscale(0.5);
  transform: none;
}


/* Carousel Controls */
.carousel-controls {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem var(--container-pad) 0;
  max-width: var(--container-max);
  margin-inline: auto;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--clr-white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-med), border-color var(--transition-med), transform var(--transition-fast);
  border-radius: 0;
  line-height: 1;
}

.carousel-btn:hover {
  background-color: var(--clr-orange);
  border-color: var(--clr-orange);
  transform: translateY(-2px);
}

/* Project Modal */
.project-modal {
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  padding: 0;
  max-width: min(90vw, 900px);
  width: 100%;
  max-height: 90svh;
  overflow-y: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-modal[open] {
  display: flex;
  flex-direction: column;
}

.project-modal::backdrop {
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--clr-border);
  color: var(--clr-white);
  font-size: 1rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--clr-orange);
}

.modal-inner {
  display: flex;
  flex-direction: column;
}

.modal-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #000;
  flex-shrink: 0;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.modal-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-white);
}

.modal-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--clr-light-gray);
  line-height: 1.65;
  max-width: 55ch;
}

/* Mobile-only / below 768px: hide stack line */
@media (max-width: 767px) {
  .portfolio-card-stack {
    display: none !important;
  }
}


/* ============================================================
   5.7 COMPONENTS — FAQ LAYOUT
   ============================================================ */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 3.5rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}


.faq-item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem;
}

.section-dark .faq-item,
.section-black .faq-item {
  border-top-color: var(--clr-border);
}

.faq-q {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.section-light .faq-q {
  color: #111111;
}

.section-dark .faq-q,
.section-black .faq-q {
  color: var(--clr-white);
}

.faq-a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  line-height: 1.75;
}

.section-light .faq-a {
  color: #444444;
}

.section-dark .faq-a,
.section-black .faq-a {
  color: var(--clr-light-gray);
}

.faq-a a {
  color: var(--clr-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

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

@media (min-width: 800px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================================
   5.8 COMPONENTS — IMAGE PLACEHOLDER
   ============================================================ */

.img-ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem;
  height: 100%;
  min-height: 360px;
  background:
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 12px,
      transparent 12px,
      transparent 24px),
    linear-gradient(150deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px dashed rgba(232, 98, 10, 0.55);
  color: var(--clr-light-gray);
  overflow: hidden;
}

.img-ph__tag {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-orange);
}

.img-ph__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 34ch;
}

.img-ph__icon {
  width: 38px;
  height: 38px;
  opacity: 0.5;
}


/* ============================================================
   6.1 HOME — HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* hero-bg is now a container — no background-image here */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* Mobile fallback: show poster image since video is hidden */
  background-image: url('../video/dallas-downtown-poster.webp');
  background-size: cover;
  background-position: center 30%;
}

/* Video: hidden on mobile, visible on tablet and desktop */
.hero-video {
  display: none;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.1) 40%,
      rgba(0, 0, 0, 0.75) 70%,
      rgba(0, 0, 0, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  /* wide enough so the headline fits on one line */
  width: min(92vw, 1280px);
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-location {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 0.6rem;
}

/* Big one-line headline — 80px Oswald matching Framer reference */
.hero-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1.75rem;
  width: 100%;
  white-space: nowrap;
}

/* Framer exact spec: Inter 500, 25px, rgb(255,255,255) */
.hero-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1rem, 1.8vw, 25px);
  color: rgb(255, 255, 255);
  line-height: 1.4;
  margin-bottom: 2.5rem;
  white-space: nowrap;
}

/* Small body paragraph — the longer descriptive copy */
.hero-support {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.1vw, 15px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 68ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 767px) {

  /* Reduce hero height on mobile — 100svh leaves too much empty image space above content */
  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 600px) {

  /* allow headline and subtitle to wrap on small screens */
  .hero-headline,
  .hero-sub {
    white-space: normal;
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .hero-sub {
    font-size: clamp(0.95rem, 4vw, 1.15rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}


/* ============================================================
   6.2 HOME — SERVICES
   ============================================================ */

.services {
  background-color: var(--clr-dark);
  padding-block: var(--section-pad);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
}

/* See More button */
.services-more-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    aspect-ratio: 16/9;
  }
}

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

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


/* ============================================================
   6.3 HOME — PORTFOLIO
   ============================================================ */

.portfolio {
  background-color: #0d0d0d;
  padding-block: var(--section-pad);
  border-top: 1px solid var(--clr-border);
}

.portfolio .section-header {
  padding-inline: var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
}

.portfolio-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}

.portfolio-carousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.portfolio-carousel:active {
  cursor: grabbing;
}

.portfolio-carousel::-webkit-scrollbar {
  display: none;
}

/* Carousel Specific overrides */
.portfolio-carousel .portfolio-card {
  flex: 0 0 min(85vw, 460px);
  scroll-snap-align: start;
}


/* ============================================================
   6.4 HOME — CTA BANNER
   ============================================================ */

.cta-banner {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--clr-border);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  transition: transform 0.5s ease;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.4) 60%,
      rgba(0, 0, 0, 0.2) 100%);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
  max-width: 680px;
}

.cta-banner-headline {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.cta-banner-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 50ch;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cta-banner-actions {
    flex-direction: column;
  }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
   6.5 HOME — REVIEWS
   ============================================================ */

.reviews {
  background-color: var(--clr-off-white);
  padding-block: var(--section-pad);
  border-top: 4px solid var(--clr-orange);
}

.reviews .section-header {
  padding-inline: var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
}

.reviews-title {
  color: #111111;
}

.reviews-desc {
  color: #555;
}

.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  cursor: grab;
}

.reviews-carousel:active {
  cursor: grabbing;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(90vw, 480px);
  scroll-snap-align: start;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 0;
}

.review-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #222;
  line-height: 1.7;
  font-style: italic;
}

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.reviewer-name {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111;
}

.reviewer-detail {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #777;
  letter-spacing: 0.02em;
}

.reviews-carousel-controls {
  padding: 1.5rem var(--container-pad) 0;
  max-width: var(--container-max);
  margin-inline: auto;
}

.reviews-carousel-controls .carousel-btn {
  border-color: #ccc;
  color: #111;
}

.reviews-carousel-controls .carousel-btn:hover {
  background-color: var(--clr-orange);
  border-color: var(--clr-orange);
  color: #fff;
}


/* ============================================================
   6.6 HOME — CONTACT
   ============================================================ */

.contact {
  background-color: var(--clr-dark);
  padding-block: var(--section-pad);
  border-top: 1px solid var(--clr-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-info .section-title {
  margin-bottom: 1.25rem;
}

.contact-intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--clr-light-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 50ch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-orange);
}

.contact-value {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--clr-white);
  transition: color var(--transition-fast);
}

.contact-value:hover {
  color: var(--clr-orange);
}

/* Form */
.contact-form-wrap {
  background-color: var(--clr-charcoal);
  border: 1px solid var(--clr-border);
  padding: 2.5rem;
}

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

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

@media (max-width: 600px) {
  .contact-form-wrap {
    padding: 1.5rem;
  }
}


/* ============================================================
   6.7 SERVICES PAGE + SERVICE DETAIL PAGES
   ============================================================ */

.services-page .site-header {
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}


.service-band-copy h2 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-band-text {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: var(--clr-light-gray);
  line-height: 1.8;
  max-width: 68ch;
}

.service-band-text p + p {
  margin-top: 1.25rem;
}

.service-band-text strong {
  color: var(--clr-white);
  font-weight: 500;
}

.service-proof {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--clr-light-gray);
  border-left: 2px solid var(--clr-orange);
  padding-left: 0.9rem;
  line-height: 1.5;
}

.service-proof strong {
  color: var(--clr-white);
}

.service-band-visual {
  width: 100%;
}

/* ---- BUILT FOR THE TRADES SECTION ---- */
.trades-intro {
  max-width: 60ch;
  margin-bottom: 3rem;
}

.trades-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}


.trades-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.25rem 2rem;
  text-decoration: none;
}

.trades-card--outline {
  background: transparent;
  border: 1px dashed var(--clr-orange);
  transition: border-color var(--transition-med), background-color var(--transition-med);
}

.trades-card--outline:hover {
  background: rgba(232, 98, 10, 0.05);
  border-style: solid;
  border-color: var(--clr-orange-hover);
}

.trades-card--outline .trades-card-title {
  color: var(--clr-orange);
}

.trades-card--outline:hover .trades-card-title {
  color: var(--clr-orange-hover);
}

.trades-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.trades-card:hover .trades-card-img {
  transform: scale(1.04);
  filter: brightness(0.55);
}

.trades-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.15) 100%);
}

.trades-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trades-card-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin: 0;
  line-height: 1.1;
}

.trades-card-link {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-orange);
  transition: color var(--transition-fast);
}

.trades-card:hover .trades-card-link {
  color: var(--clr-orange-hover);
}

.trades-card--unlinked {
  cursor: default;
}

.trades-card--unlinked:hover .trades-card-img {
  transform: none;
  filter: brightness(0.45);
}

/* ============================================================
   INDIVIDUAL SERVICE PAGE COMPONENTS
   Used by services/web-development.html, seo.html, etc.
   ============================================================ */

/* ---- Feature/Deliverables Grid ---- */
.svc-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}


.svc-feature-card {
  border-top: 1px solid var(--clr-border);
  padding-top: 1.5rem;
}

.svc-feature-num {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--clr-orange);
  margin-bottom: 0.85rem;
}

.svc-feature-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.svc-feature-desc {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.3vw, 0.95rem);
  color: var(--clr-light-gray);
  line-height: 1.7;
}

/* ---- Cross-sell Cards ---- */
.svc-crosssell-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}


.svc-crosssell-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 1.75rem;
  border: 1px solid var(--clr-border);
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s;
}

.svc-crosssell-card:hover {
  border-color: var(--clr-orange);
  background-color: rgba(232, 98, 10, 0.04);
}

.svc-crosssell-label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  line-height: 1.1;
}

.svc-crosssell-desc {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.3vw, 0.95rem);
  color: var(--clr-light-gray);
  line-height: 1.65;
  flex: 1;
}

.svc-crosssell-cta {
  font-family: var(--font-headline);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-orange);
  transition: color 0.2s;
}

.svc-crosssell-card:hover .svc-crosssell-cta {
  color: var(--clr-orange-hover);
}

@media (min-width: 900px) {
  .service-band-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
  }
  
  .service-band-grid--reverse {
    grid-template-columns: 0.85fr 1.15fr;
  }
  
  .service-band-grid--reverse .service-band-copy {
    order: 2;
  }
}

@media (min-width: 650px) {
  .trades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trades-card:nth-child(5) {
    grid-column: span 2;
    aspect-ratio: auto;
    min-height: 220px;
  }
}

@media (min-width: 1024px) {
  .trades-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trades-card:nth-child(5) {
    grid-column: span 2;
    aspect-ratio: auto;
    min-height: 220px;
  }
}

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

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

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


/* ============================================================
   6.8 CONSULTING PAGE
   ============================================================ */

/* ---- Hero modifier ---- */
.consult-eyebrow {
  font-family: var(--font-headline);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 1rem;
  animation: fadeUp 0.8s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.consult-hero-sub {
  max-width: 62ch;
  margin-bottom: 2.25rem;
}

.consult-hero-cta {
  font-size: 1rem;
  padding: 0.9rem 2rem;
}

/* ---- Selective / Application section ---- */
.consult-selective-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}


.consult-selective-text h2 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.consult-selective-text p {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: var(--clr-light-gray);
  line-height: 1.8;
}

.consult-selective-text p + p {
  margin-top: 1.25rem;
}

/* Criteria card */
.consult-criteria {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--clr-orange);
  padding: 2rem 1.75rem;
}

.consult-criteria-label {
  font-family: var(--font-headline);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.consult-criteria-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.consult-criteria-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.3vw, 0.95rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.consult-check {
  flex-shrink: 0;
  color: var(--clr-orange);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}

.consult-x {
  flex-shrink: 0;
  color: rgba(255,255,255,0.25);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}

/* ---- The Week grid ---- */
.consult-week-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}


.consult-week-card {
  border-left: 2px solid var(--clr-orange);
  padding: 1.75rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.consult-week-day {
  font-family: var(--font-headline);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 0.65rem;
}

.consult-week-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.consult-week-desc {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.3vw, 0.95rem);
  color: var(--clr-light-gray);
  line-height: 1.75;
}

/* ---- CTA label ---- */
.consult-cta-label {
  font-family: var(--font-headline);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.5rem;
}

@media (min-width: 900px) {
  .consult-selective-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

@media (min-width: 700px) {
  .consult-week-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   6.9 PORTFOLIO PAGE
   ============================================================ */

/* ---- FILTER BAR + GRID ---- */
.pf-filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.pf-filter-btn {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  background: transparent;
  color: var(--clr-light-gray);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  border-radius: 0;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.pf-filter-btn:hover {
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.pf-filter-btn.is-active {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: var(--clr-white);
}

/* ---- PROJECT GRID ---- */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
  gap: 1.5px;
}

.portfolio-card[hidden] {
  display: none !important;
}

.pf-note {
  margin-top: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--clr-mid-gray);
  text-align: center;
  border-top: 1px solid var(--clr-border);
  padding-top: 1.5rem;
}

/* ---- IN-HOUSE SECTION ---- */
.pf-inhouse-intro {
  max-width: 56ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.pf-inhouse-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.pf-inhouse-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--clr-light-gray);
  line-height: 1.7;
}

.pf-inhouse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5px;
}


.pf-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 480px), 1fr));
  gap: 2rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.pf-faq-item {
  background: white;
  padding: 2rem;
  border-left: 3px solid var(--clr-orange);
}

.pf-faq-q {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #111;
  margin-bottom: 0.75rem;
}

.pf-faq-a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #444;
  line-height: 1.7;
}

.pf-faq-a a {
  color: var(--clr-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.pf-cta-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.75rem);
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1;
  letter-spacing: -0.01em;
  max-width: 20ch;
}

.pf-cta-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--clr-light-gray);
  max-width: 50ch;
}

.pf-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ---- Image placeholder (real screenshot pending) ---- */
.portfolio-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
}

.portfolio-card-img-label {
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-mid-gray);
}

/* ---- "Built for Portfolio" corner ribbon ---- */
.pf-portfolio-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: inline-block;
  background: rgba(13, 13, 13, 0.92);
  color: var(--clr-white);
  font-family: var(--font-headline);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-bottom: 2px solid var(--clr-orange);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .pf-grid {
    grid-template-columns: 1fr;
  }

  .pf-inhouse-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   6.10 PROCESS PAGE
   ============================================================ */

/* ---- PHASES — MARKER-LINE LAYOUT ---- */
.proc-phases-intro {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 50ch;
}

.proc-phases-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1;
  letter-spacing: 0.01em;
}

/* Marker-line container */
.proc-phase-list {
  position: relative;
  padding-left: clamp(2.5rem, 5vw, 4rem);
}

/* The vertical line */
.proc-phase-list::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--clr-orange) 0%,
    rgba(232, 98, 10, 0.4) 70%,
    rgba(232, 98, 10, 0.05) 100%
  );
}

/* Each phase row */
.proc-phase {
  position: relative;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.proc-phase:last-child {
  padding-bottom: 0;
}

/* Marker dot */
.proc-phase::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(2.5rem, 5vw, 4rem) + 0px);
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clr-orange);
  box-shadow: 0 0 0 4px rgba(232, 98, 10, 0.15);
}

.proc-phase-name {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-white);
  margin-bottom: 0.9rem;
  line-height: 1;
}

.proc-phase-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 68ch;
}

.proc-phase-text strong {
  color: var(--clr-white);
  font-weight: 500;
}

/* Callout rule within a phase */
.proc-phase-rule {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-orange);
  border-left: 2px solid var(--clr-orange);
  padding-left: 0.9rem;
  line-height: 1.5;
}

/* ---- WHAT I NEED FROM YOU — dark band ---- */
.proc-needs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.proc-needs-heading {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.proc-needs-text {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* Right: expectations block */
.proc-expect-heading {
  font-family: var(--font-headline);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-mid-gray);
  margin-bottom: 1.5rem;
}

.proc-expect-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proc-expect-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--clr-border);
}

.proc-expect-item:first-child {
  border-top: 1px solid var(--clr-border);
}

.proc-expect-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-orange);
  margin-top: 0.45rem;
}

.proc-expect-text {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.3vw, 0.95rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.proc-expect-text strong {
  color: var(--clr-white);
  font-weight: 500;
}

.proc-faq-heading {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #111;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.proc-faq-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: #555;
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.proc-faq-desc a {
  color: var(--clr-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.proc-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.proc-cta-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

.proc-cta-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--clr-light-gray);
  max-width: 50ch;
  line-height: 1.65;
}

.proc-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .proc-needs-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .proc-phase-list {
    padding-left: 2rem;
  }

  .proc-phase::before {
    left: calc(-2rem + 0px);
  }
}


/* ============================================================
   6.11 ABOUT PAGE
   ============================================================ */

/* ---- THE SHORT VERSION — two-column: portrait + bio ---- */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}


.bio-portrait {
  aspect-ratio: 4/5;
  min-height: 360px;
}

.bio-copy .section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.75rem;
}

.about-prose {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--clr-light-gray);
  line-height: 1.8;
  max-width: 60ch;
}

.about-prose p + p {
  margin-top: 1.25rem;
}

.about-prose strong {
  color: var(--clr-white);
  font-weight: 600;
}

/* ---- HOW I GOT HERE — timeline ---- */
.journey-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}


.journey-copy .section-title {
  margin-bottom: 1.5rem;
}

/* stat block alongside the prose */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
}

.about-stat {
  background: var(--clr-dark-card);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-stat__num {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  color: var(--clr-orange);
  letter-spacing: 0.01em;
}

.about-stat__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--clr-light-gray);
  line-height: 1.4;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: none;
}


.timeline-item {
  position: relative;
  padding-top: 2.25rem;
  padding-right: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-border);
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--clr-orange);
  border-radius: 0;
}

.timeline-year {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 0.5rem;
}

.timeline-label {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.timeline-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--clr-light-gray);
  line-height: 1.6;
}


/* ---- VALUE BAND ---- */
.value-band {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--clr-border);
  background-color: var(--clr-black);
}

.value-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.value-band-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.85) 45%,
      rgba(0, 0, 0, 0.35) 75%,
      rgba(0, 0, 0, 0.2) 100%);
}

.value-band-content {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
}

/* Constrain the text block to the left half — aligned under the logo */
.value-band-content > .reveal {
  max-width: 580px;
}


.value-band-content .section-title {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.02;
}

/* ---- WHAT DALLASWEBPRO DOES ---- */
.about-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
}


.about-services .service-card {
  aspect-ratio: 16/11;
}

.about-services-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ---- LOCAL, FOR REAL — DFW map + pins ---- */
.local-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}


.local-copy .section-title {
  margin-bottom: 1.5rem;
}

.local-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.local-city {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-white);
  border: 1px solid var(--clr-border);
  padding: 0.5rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.local-city::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--clr-orange);
  flex-shrink: 0;
}

.local-map {
  aspect-ratio: 4/3;
  min-height: 340px;
}

/* ---- PAGE-LEVEL TWEAKS ---- */
.about-page .site-header {
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 900px) {
  .bio-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 4.5rem;
  }
}

@media (min-width: 900px) {
  .journey-intro {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
  }
}

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

@media (max-width: 767px) {
  .timeline-item {
    padding-top: 0;
    padding-left: 2rem;
    padding-bottom: 2.25rem;
  }

  .timeline-item::before {
    top: 0;
    bottom: 0;
    left: 6px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-item:last-child::before {
    bottom: auto;
    height: 14px;
  }

  .timeline-item::after {
    top: 0;
    left: 0;
  }
}

@media (max-width: 600px) {
  .value-band-content {
    padding-block: 3rem;
  }

  .value-band-content > .reveal {
    max-width: 100%;
  }
}

@media (min-width: 600px) {
  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (min-width: 900px) {
  .local-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}


/* ============================================================
   6.12 RESOURCES PAGE
   ============================================================ */

/* ---- RESOURCES INTRO ---- */
.resources-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.resources-intro-copy {
  max-width: 55ch;
}

.resources-intro-text {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-top: 1.25rem;
}

.resources-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-self: center;
}

.resources-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--clr-border);
  background: rgba(255,255,255,0.02);
}

.resources-stat__num {
  display: block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clr-orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

.resources-stat__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-light-gray);
  margin-top: 0.5rem;
}

/* ---- DOWNLOAD CARDS GRID ---- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5px;
}

/* Individual resource card */
.resource-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: border-color var(--transition-med), transform var(--transition-med), box-shadow var(--transition-med);
}

.resource-card:hover {
  border-color: rgba(232, 98, 10, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Card image/preview */
.resource-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--clr-charcoal);
}

.resource-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resource-card:hover .resource-card-img img {
  transform: scale(1.04);
}

/* Badge overlay on image */
.resource-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-headline);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-white);
  background: var(--clr-orange);
  padding: 0.35rem 0.75rem;
  z-index: 2;
}

/* Card body */
.resource-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem;
  gap: 0.75rem;
}

/* Category tag */
.resource-category {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-orange);
  border: 1px solid rgba(232, 98, 10, 0.3);
  padding: 0.3rem 0.65rem;
  align-self: flex-start;
}

.resource-card-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  line-height: 1.15;
}

.resource-card-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--clr-light-gray);
  line-height: 1.65;
  flex: 1;
}

/* Card meta (file size, platform, etc.) */
.resource-card-meta {
  display: flex;
  gap: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
}

.resource-meta-item {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-mid-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.resource-meta-item strong {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* Download button */
.resource-card-actions {
  padding: 0 1.75rem 1.75rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background-color var(--transition-med), border-color var(--transition-med), color var(--transition-med), transform var(--transition-fast);
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.btn-download:hover {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-download svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---- EMPTY STATE (no resources yet) ---- */
.resources-empty {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px dashed var(--clr-border);
  background: rgba(255,255,255,0.01);
}

.resources-empty-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-mid-gray);
  max-width: 45ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- NOTIFICATION SIGNUP BLOCK ---- */
.notify-block {
  border: 1px solid var(--clr-border);
  background: rgba(255,255,255,0.02);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.notify-content {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.notify-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 98, 10, 0.3);
  background: rgba(232, 98, 10, 0.06);
  border-radius: 2px;
}

.notify-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--clr-orange);
}

.notify-heading {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--clr-white);
  line-height: 1.2;
}

.notify-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--clr-light-gray);
  line-height: 1.65;
  margin-top: 0.4rem;
  max-width: 55ch;
}

.notify-form {
  width: 100%;
}

.notify-form-row {
  display: flex;
  gap: 0;
  max-width: 520px;
}

.notify-email-input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--clr-white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition-med), background-color var(--transition-med);
}

.notify-email-input::placeholder {
  color: var(--clr-mid-gray);
  font-size: 0.82rem;
}

.notify-email-input:focus {
  border-color: var(--clr-orange);
  background: rgba(232, 98, 10, 0.04);
}

.notify-email-input:user-invalid {
  border-color: #e53935;
}

.notify-submit {
  flex-shrink: 0;
  white-space: nowrap;
  border-radius: 0;
}

.notify-fine-print {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--clr-mid-gray);
  margin-top: 0.6rem;
  letter-spacing: 0.01em;
}

.notify-success {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--clr-orange);
  font-weight: 500;
  padding: 0.75rem 0;
}

/* ---- CTA BAND ---- */
.resources-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.resources-cta-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

.resources-cta-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--clr-light-gray);
  max-width: 50ch;
  line-height: 1.65;
}

.resources-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .resources-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .notify-content {
    flex-direction: column;
    gap: 0.75rem;
  }

  .notify-form-row {
    flex-direction: column;
    gap: 0;
    max-width: 100%;
  }

  .notify-email-input {
    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: none;
  }

  .notify-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .resources-intro-stats {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   6.13 MARKETS & CITY PAGES
   ============================================================ */

/* Solid backing for the fixed header (no hero video here) */
.markets-page .site-header {
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mk-prose {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--clr-light-gray);
  line-height: 1.8;
}

.mk-prose p + p {
  margin-top: 1.25rem;
}

.mk-prose strong {
  color: var(--clr-white);
  font-weight: 600;
}

/* ---- HOW IT WORKS — prose + policy card ---- */
.howit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}


.howit-copy .section-title {
  margin-bottom: 1.75rem;
}

.policy-card {
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  border-top: 3px solid var(--clr-orange);
  padding: 2rem 1.75rem;
}

.policy-card h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 1.5rem;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.policy-list li {
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--clr-light-gray);
  line-height: 1.6;
}

.policy-list li::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--clr-orange);
}

.policy-list strong {
  color: var(--clr-white);
  font-weight: 600;
}

/* ---- THE BOARD ---- */
.board-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* trade tabs */
.board-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.board-tab {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-light-gray);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.85rem 1.25rem;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.board-tab:hover {
  color: var(--clr-white);
}

.board-tab[aria-selected="true"] {
  color: var(--clr-white);
  border-bottom-color: var(--clr-orange);
}

.board-panel[hidden] {
  display: none;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}

/* market cell */
.market-card {
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 168px;
}

.market-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.market-city {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-white);
}

.market-status {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-note {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--clr-light-gray);
  line-height: 1.5;
  margin-top: auto;
}

.market-card .market-claim {
  margin-top: auto;
  align-self: flex-start;
}

/* Claimed state: muted, locked */
.market-card--claimed {
  background: #131313;
  border-color: rgba(255, 255, 255, 0.06);
}

.market-card--claimed .market-city {
  color: var(--clr-light-gray);
}

.market-card--claimed .market-status {
  color: var(--clr-mid-gray);
}

.lock-icon {
  width: 18px;
  height: 18px;
  color: var(--clr-mid-gray);
  flex-shrink: 0;
}

/* Available state: orange border + pulsing dot */
.market-card--open {
  border-color: rgba(232, 98, 10, 0.55);
}

.market-card--open .market-status {
  color: var(--clr-orange);
}

/* In-discussions state: amber */
.market-card--talks .market-status {
  color: #e0a83a;
}

/* status dots */
.pulse-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pulse-dot--open {
  background: var(--clr-orange);
  animation: mk-pulse-orange 2s infinite;
}

.pulse-dot--talks {
  background: #e0a83a;
  animation: mk-pulse-amber 2s infinite;
}

@keyframes mk-pulse-orange {
  0% { box-shadow: 0 0 0 0 rgba(232, 98, 10, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(232, 98, 10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 98, 10, 0); }
}

@keyframes mk-pulse-amber {
  0% { box-shadow: 0 0 0 0 rgba(224, 168, 58, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(224, 168, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 168, 58, 0); }
}


/* "Don't see your city?" card */
.market-card--more {
  align-items: flex-start;
  justify-content: center;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
}

.market-card--more p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--clr-light-gray);
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* crawlable summary under the board */
.board-summary {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--clr-orange);
  background: rgba(255, 255, 255, 0.02);
}

.board-summary p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--clr-light-gray);
  line-height: 1.7;
  max-width: 90ch;
}

.board-summary .summary-date {
  color: var(--clr-orange);
  font-weight: 600;
}

/* ---- NATIONWIDE CHECKER ---- */
.checker-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}


.map-usa-container {
  padding: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  width: 100%;
}

.map-usa-svg,
.map-usa-img {
  width: 100%;
  height: 100%;
  max-width: 600px;
  object-fit: contain;
}

.map-usa-path {
  fill: #191919;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.5;
  transition: fill var(--transition-med);
}

.map-usa-path:hover {
  fill: #222222;
}

.map-usa-pin-circle {
  fill: var(--clr-orange);
  stroke: var(--clr-white);
  stroke-width: 1.5;
  r: 5;
}

.map-usa-pin-glow {
  fill: var(--clr-orange);
  opacity: 0.35;
  transform-origin: 410px 240px;
  animation: map-glow-pulse 2s infinite;
}

.map-usa-pin-label {
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 600;
  fill: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
}

.checker-copy .section-title {
  margin-bottom: 1.5rem;
}

.checker-phone {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.checker-phone .contact-label {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-orange);
}

.checker-phone a {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--clr-white);
  transition: color var(--transition-fast);
}

.checker-phone a:hover {
  color: var(--clr-orange);
}

.checker-panel {
  background: var(--clr-charcoal);
  border: 1px solid var(--clr-border);
  padding: 2.5rem;
}

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


.checker-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checker-result {
  margin-top: 1.75rem;
  padding: 1.75rem;
  border: 1px solid var(--clr-border);
  border-left-width: 4px;
}

.checker-result[hidden] {
  display: none;
}

.checker-result--open {
  border-left-color: var(--clr-orange);
  background: rgba(232, 98, 10, 0.06);
}

.checker-result--claimed {
  border-left-color: var(--clr-mid-gray);
  background: rgba(255, 255, 255, 0.02);
}

.checker-result--talks {
  border-left-color: #e0a83a;
  background: rgba(224, 168, 58, 0.06);
}

.checker-result-status {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.checker-result-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--clr-light-gray);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ---- HANDS-ON IN DFW (local tier) ---- */
.dfw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.dfw-card {
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  min-height: 150px;
  position: relative;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}

a.dfw-card:hover {
  border-color: var(--clr-orange);
  background: rgba(255, 255, 255, 0.02);
}

.dfw-card--hq {
  border-top: 3px solid var(--clr-orange);
}

.dfw-card-tag {
  font-family: var(--font-headline);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-orange);
  font-weight: 700;
  margin-bottom: auto;
}

.dfw-city-name {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--clr-white);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

.dfw-city-status {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--clr-mid-gray);
  letter-spacing: 0.02em;
}

.dfw-card--cta {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.dfw-card--cta:hover {
  border-color: var(--clr-orange);
  background: rgba(232, 98, 10, 0.04);
}

.dfw-card--cta .dfw-city-name {
  margin-bottom: auto;
}

.dfw-cta-text {
  font-family: var(--font-headline);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin: 0;
}

.dfw-area-statement {
  margin-top: 4rem;
  text-align: center;
  border-top: 1px solid var(--clr-border);
  padding-top: 2rem;
}

.dfw-area-statement p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--clr-light-gray);
  line-height: 1.7;
  max-width: 85ch;
  margin-inline: auto;
}

/* ---- CITY PAGE SPECIFIC STYLES (Neutralized warm palette) ---- */
.city-board-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}


.city-market-card {
  background: var(--clr-white);
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 180px;
  position: relative;
  transition: box-shadow var(--transition-fast);
}

.city-market-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.city-market-card--claimed {
  background: #f0eeeb;
  border-color: #cccccc;
}

.city-market-card--open {
  border-top: 3px solid var(--clr-orange);
}

.city-market-trade {
  font-family: var(--font-headline);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
  letter-spacing: 0.01em;
}

.city-market-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  margin-bottom: auto;
}

.city-market-note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #555555;
  line-height: 1.4;
  margin-top: 0.25rem;
}

.city-board-prose {
  margin-top: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.city-board-prose strong {
  color: #111111;
}

@media (min-width: 920px) {
  .howit-grid {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-dot--open,
  .pulse-dot--talks {
    animation: none;
  }
}

@media (min-width: 920px) {
  .checker-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}

@media (min-width: 560px) {
  .checker-form {
    grid-template-columns: 1fr 1fr;
  }

  .checker-form .checker-field--full,
  .checker-form .checker-submit {
    grid-column: 1 / -1;
  }
}

@media (min-width: 600px) {
  .city-board-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .city-board-row {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ============================================================
   6.14 REVIEWS PAGE
   ============================================================ */

/* ---- REVIEW WALL — light ---- */
.rv-wall-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.rv-wall-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  color: #111;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.rv-wall-desc {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.4vw, 0.98rem);
  color: #555;
  max-width: 60ch;
  line-height: 1.7;
}

/* Masonry card wall — CSS columns */
.rv-masonry {
  column-count: 3;
  column-gap: 1.25rem;
}

/* Review card */
.rv-card {
  break-inside: avoid;
  background: #fff;
  border-left: 3px solid var(--clr-orange);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  display: block;
}

/* Placeholder card — visually distinct */
.rv-card--placeholder {
  border-left-color: #ccc;
  background: #f0eeeb;
  opacity: 0.65;
}

.rv-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: #f5a623;
  font-size: 1rem;
}

.rv-quote {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  color: #333;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.rv-reviewer {
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 0.2rem;
}

.rv-biz {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #777;
  margin-bottom: 0.75rem;
}

.rv-source-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-headline);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,98,10,0.3);
  padding-bottom: 1px;
  transition: border-color var(--transition-fast);
}

.rv-source-link:hover { border-color: var(--clr-orange); }

/* Placeholder label */
.rv-placeholder-label {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  border: 1px solid #ccc;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.75rem;
}

/* Pending-reviews notice */
.rv-pending-notice {
  background: #fffbf5;
  border: 1px solid rgba(232,98,10,0.25);
  border-left: 3px solid var(--clr-orange);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}

.rv-pending-notice-title {
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 0.5rem;
}

.rv-pending-notice-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
}

/* ---- SOURCE STRIP (Muted/Dark version) ---- */
.rv-sources-text {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: var(--clr-light-gray);
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 54ch;
  margin-inline: auto;
}

.rv-source-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.rv-source-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-light-gray);
  border: 1px solid var(--clr-border);
  padding: 0.6rem 1.25rem;
  text-decoration: none;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.rv-source-pill:hover {
  color: var(--clr-orange);
  border-color: var(--clr-orange);
}

.rv-source-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---- HOW WE EARN THESE ---- */
.rv-how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.rv-how-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.rv-how-text {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.rv-how-text + .rv-how-text {
  margin-top: 1rem;
}

/* Right: the three practices */
.rv-how-practices {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rv-how-practice {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--clr-border);
}

.rv-how-practice:first-child {
  border-top: 1px solid var(--clr-border);
}

.rv-how-practice-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232,98,10,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-orange);
  font-family: var(--font-headline);
  font-size: 1rem;
}

.rv-how-practice-name {
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 0.3rem;
}

.rv-how-practice-desc {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.rv-faq-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  color: var(--clr-white);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.rv-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.rv-cta-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.75rem);
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1;
  letter-spacing: -0.01em;
  max-width: 20ch;
}

.rv-cta-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--clr-light-gray);
  max-width: 50ch;
  line-height: 1.65;
}

.rv-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .rv-masonry { column-count: 2; }
}

@media (max-width: 640px) {
  .rv-masonry { column-count: 1; }
  .rv-how-inner { grid-template-columns: 1fr; gap: 3rem; }
}


/* ============================================================
   6.15 CONTACT PAGE
   ============================================================ */

/* Response Time expectation note */
.contact-response-note {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-response-note::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--clr-orange);
  border-radius: 50%;
}

/* ---- MARKET INTENT INDICATOR ---- */
.intent-indicator[hidden] {
  display: none !important;
}

.intent-indicator {
  background-color: rgba(232, 98, 10, 0.07);
  border: 1px solid rgba(232, 98, 10, 0.45);
  border-left: 4px solid var(--clr-orange);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--clr-white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.intent-indicator-text span {
  color: var(--clr-orange);
}

.intent-indicator-clear {
  background: transparent;
  border: none;
  color: var(--clr-mid-gray);
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
  padding: 0;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 400;
}

.intent-indicator-clear:hover {
  color: var(--clr-white);
}

/* ---- CONTACT BAND: details + photo left, form right ---- */
.contact-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}


.contact-band-left {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

/* Canonical NAP record — two-column detail grid */
.nap-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding-block: 2rem;
}

.nap-span {
  grid-column: 1 / -1;
}


/* Service-area skyline — transparent image, no frame */
.contact-photo img {
  width: 100%;
  height: auto;
}


/* ---- WHAT HAPPENS NEXT ---- */
.next-phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}


.phase-card {
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phase-title {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1.1;
}

.phase-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--clr-light-gray);
  line-height: 1.65;
}

.phase-desc a {
  color: var(--clr-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 900px) {
  .contact-band-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .nap-details {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .contact-photo {
    margin-top: auto;
    /* The image canvas has an empty transparent band at its base (12.2% of height
       = 6.86% of width at 16:9). Pull it past the box edge so the visible skyline
       sits level with the bottom of the form. */
    margin-bottom: -6.86%;
  }
}

@media (min-width: 900px) {
  .next-phases {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }
}


/* ============================================================
   6.16 TEMPERED TRADES PAGE
   ============================================================ */

/* ---- HERO ACTIONS ---- */
.tt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ---- INTRO BAND ---- */
.tt-intro {
  max-width: 760px;
}

.tt-intro-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: var(--clr-light-gray);
}

/* ---- TOOL SECTIONS (two-column layout) ---- */
.tt-tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 5rem);
  align-items: center;
}

.tt-tool-grid--reversed .tt-tool-copy {
  order: 2;
}

.tt-tool-grid--reversed .tt-tool-visual {
  order: 1;
}

/* Tool category tag */
.tt-tool-tag {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-orange);
  border: 1px solid rgba(232, 98, 10, 0.3);
  padding: 0.3rem 0.65rem;
  margin-bottom: 1rem;
}

/* Tool headline */
.tt-tool-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}

/* Orange rule under headline */
.tt-tool-rule {
  width: 40px;
  height: 2px;
  background-color: var(--clr-orange);
  margin-bottom: 1.5rem;
}

/* Tool description paragraphs */
.tt-tool-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  line-height: 1.75;
  color: var(--clr-light-gray);
  margin-bottom: 1.25rem;
}

.tt-tool-desc--muted {
  color: var(--clr-mid-gray);
  margin-bottom: 0;
}

/* Screenshot placeholder block */
.tt-screenshot-placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid var(--clr-border);
}

.tt-ph-label {
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-orange);
}

.tt-ph-sublabel {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--clr-mid-gray);
}

/* When real screenshots are added */
.tt-tool-visual img {
  width: 100%;
  display: block;
  border: 1px solid var(--clr-border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

/* ---- CTA BAND ---- */
.tt-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.tt-cta-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.tt-cta-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: var(--clr-light-gray);
  line-height: 1.7;
  max-width: 520px;
}

.tt-cta-actions {
  flex-shrink: 0;
}

/* ---- REQUEST ACCESS FORM ---- */
.tt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.tt-form-headline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}

.tt-form-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  line-height: 1.75;
  color: var(--clr-light-gray);
  margin-bottom: 1.25rem;
}

.tt-form-desc--muted {
  color: var(--clr-mid-gray);
}

.tt-form-link {
  color: var(--clr-orange);
  transition: color var(--transition-fast);
}

.tt-form-link:hover {
  color: var(--clr-orange-hover);
}

/* Form wrapper */
.tt-form-wrap {
  background-color: var(--clr-charcoal);
  border: 1px solid var(--clr-border);
  padding: 2.5rem;
}

.tt-access-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Two-column form rows */
.tt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .tt-tool-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tt-tool-grid--reversed .tt-tool-copy {
    order: 1;
  }

  .tt-tool-grid--reversed .tt-tool-visual {
    order: 2;
  }

  .tt-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .tt-form-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .tt-form-row {
    grid-template-columns: 1fr;
  }

  .tt-form-wrap {
    padding: 1.75rem;
  }
}
