/* ============================================================
   DD's Construction — styles.css
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --bg-0:        #0A0A0A;
  --bg-1:        #0C0C0C;
  --bg-2:        #111110;
  --bg-3:        #151514;
  --bg-4:        #1C1A17;
  --bg-card:     #131210;
  --accent:      #B8923E;
  --accent-lt:   #CCA352;
  --accent-dk:   #9A7B3A;
  --accent-glow: rgba(184, 146, 62, 0.25);
  --accent-dim:  rgba(184, 146, 62, 0.12);
  --text-1:      #FFFFFF;
  --text-2:      #C8BEB4;
  --text-3:      #8C8278;
  --text-4:      #5A5450;
  --border:      rgba(184, 146, 62, 0.14);
  --border-sub:  rgba(255, 255, 255, 0.06);
  --topbar-h:    36px;
  --nav-h:       148px;
  --header-h:    calc(var(--topbar-h) + var(--nav-h));
  --serif:       'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans:        'Outfit', system-ui, -apple-system, sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:    0.2s;
  --dur-med:     0.4s;
  --dur-slow:    0.7s;
  --max-w:       1280px;
  --sp-section:  clamp(72px, 9vw, 128px);
  --radius:      6px;
  --radius-lg:   12px;
}

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

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

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--bg-1);
  color: var(--text-2);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── HIDDEN UTILITY ── */
.hidden-field { display: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 0 24px;
  height: 44px;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background var(--dur-fast) var(--ease-in-out),
    color var(--dur-fast) var(--ease-in-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-in-out);
  position: relative;
  overflow: hidden;
  min-height: 44px;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur-fast);
}

.btn:hover::after { background: rgba(255,255,255,0.06); }
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: #B8923E;
  color: #FFFFFF;
  border: 1px solid transparent;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
  background: #CCA352;
}

.btn-outline {
  background: transparent;
  color: var(--text-1);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.06);
}

.btn-lg {
  height: 54px;
  padding: 0 36px;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
}

.btn-full { width: 100%; }

.btn-glow:hover { box-shadow: 0 0 40px var(--accent-glow), 0 8px 32px rgba(0,0,0,0.4); }

/* ── ACCENT MARKS ── */
.gold-dash {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--accent);
  vertical-align: middle;
  margin: 0 10px;
}

.gold-bar {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}

/* ── SECTION TYPOGRAPHY ── */
.section { padding: var(--sp-section) 0; }

.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.eyebrow-center {
  justify-content: center;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--text-1);
  line-height: 1.15;
  font-weight: 400;
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}

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

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ================================================================
   TOP BAR
   ================================================================ */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  z-index: 101;
  background: linear-gradient(90deg, var(--accent-dk) 0%, var(--accent) 50%, var(--accent-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0A0800;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: opacity var(--dur-fast);
  padding: 0 16px;
  height: 100%;
}

.top-bar-link:hover { opacity: 0.82; }

.top-bar-phone {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(10,8,0,0.35);
  text-underline-offset: 2px;
}

.top-bar-icon { flex-shrink: 0; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition:
    background var(--dur-med) var(--ease-in-out),
    backdrop-filter var(--dur-med) var(--ease-in-out),
    box-shadow var(--dur-med) var(--ease-in-out);
}

.navbar.scrolled {
  background: rgba(11, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-sub);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Crop wrapper — hides bottom ~18% of logo (phone number) */
.logo-crop {
  display: block;
  overflow: hidden;
  height: 98px; /* clips bottom of 120px image */
}
.logo-crop--mobile {
  height: 65px; /* clips bottom of 80px image */
}
.logo-crop--footer {
  height: 107px; /* clips bottom of 130px image */
}

.logo-img {
  height: 120px;
  width: auto;
  object-fit: cover;
  object-position: top;
  display: block;
}
.logo-crop--mobile .logo-img {
  height: 80px;
}

.logo-fallback {
  display: none;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--text-1);
  line-height: 1;
}

.logo-fallback span {
  color: var(--accent);
  display: block;
  font-size: 0.7em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--dur-med) var(--ease-out);
}

.nav-link:hover { color: var(--text-1); }
.nav-link:hover::after { width: 100%; }

.nav-quote {
  margin-left: 16px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-fast);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-in-out);
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: var(--bg-4);
  z-index: 200;
  padding: 24px 32px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease-out);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  border-radius: var(--radius);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.mobile-close:hover { color: var(--text-1); background: rgba(255,255,255,0.06); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-sub);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}

.mobile-menu a:hover { color: var(--accent); padding-left: 6px; }

.mobile-quote {
  margin-top: 32px;
  width: 100%;
}

.mobile-contact-quick {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--text-3);
  justify-content: center;
}

.mobile-contact-quick a { color: var(--text-3); transition: color var(--dur-fast); }
.mobile-contact-quick a:hover { color: var(--accent); }


/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 16s ease-out forwards;
}

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

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

.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 clamp(20px, 5vw, 60px);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5.25rem);
  color: var(--text-1);
  line-height: 1.08;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-heading em {
  font-style: italic;
  color: var(--accent-lt);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.br-hide { display: inline; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7) translateY(-8px); }
  50% { opacity: 1; transform: scaleY(1) translateY(0); }
}


/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: url('./marble.webp.png') center/cover no-repeat;
  position: relative;
  padding: clamp(40px, 5vw, 60px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 24px;
}

.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-star {
  font-size: 0.7em;
  vertical-align: super;
}

.stat-lbl {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
}

.stat-div {
  width: 1px;
  height: 56px;
  background: var(--border-sub);
  flex-shrink: 0;
}


/* ================================================================
   SERVICES
   ================================================================ */
.services-section {
  background: var(--bg-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-card);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  transition: background var(--dur-med) var(--ease-in-out), transform var(--dur-med) var(--ease-out);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-med) var(--ease-out);
}

.service-card:hover { background: #171512; transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  transition: background var(--dur-fast), transform var(--dur-med) var(--ease-out);
}

.service-card:hover .service-icon {
  background: rgba(212, 137, 10, 0.2);
  transform: scale(1.06);
}

.service-gold-line {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 16px;
  border-radius: 2px;
  transition: width var(--dur-med) var(--ease-out);
}

.service-card:hover .service-gold-line { width: 56px; }

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.3125rem;
  color: var(--text-1);
  margin-bottom: 10px;
  font-weight: 400;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.7;
}


/* ================================================================
   PROJECTS
   ================================================================ */
.projects-section { background: var(--bg-1); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--bg-0);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.project-card { cursor: pointer; }

.project-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.project-card:hover .project-img-wrap img { transform: scale(1.07); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,6,0.96) 0%,
    rgba(10,8,6,0.5) 50%,
    rgba(0,0,0,0) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: clamp(16px, 3vw, 28px);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-in-out);
}

.project-card:hover .project-overlay { opacity: 1; }

.project-info {
  transform: translateY(12px);
  transition: transform var(--dur-med) var(--ease-out);
}

.project-card:hover .project-info { transform: translateY(0); }

.project-cat {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 8px;
}

.project-info h3 {
  font-family: var(--serif);
  font-size: 1.1875rem;
  color: var(--text-1);
  font-weight: 400;
  margin-bottom: 4px;
}

.project-info p {
  font-size: 0.8125rem;
  color: var(--text-2);
}


/* ================================================================
   ABOUT
   ================================================================ */
.about-section { background: var(--bg-3); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* Decorative gold corners */
.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 2;
}

.corner-tl {
  top: -8px; left: -8px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: 3px 0 0 0;
}

.corner-br {
  bottom: -8px; right: -8px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-radius: 0 0 3px 0;
}

/* Badge overlay */
.about-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-lt) 100%);
  color: #0A0800;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 3;
}

.badge-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 400;
}

.badge-txt {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
  line-height: 1.4;
}

/* About content */
.about-content-col .section-title { margin-bottom: 20px; }

.about-p {
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.9625rem;
}

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin: 28px 0 36px;
}

.about-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
}

.check-icon {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}


/* ================================================================
   TESTIMONIALS
   ================================================================ */
.reviews-section { background: var(--bg-2); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-med), transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
}

.review-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.review-quote-mark {
  font-family: var(--serif);
  font-size: 7rem;
  color: var(--accent);
  opacity: 0.08;
  line-height: 0.7;
  position: absolute;
  top: 20px; right: 24px;
  user-select: none;
  pointer-events: none;
}

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

.review-text {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-lt) 100%);
  color: #0A0800;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-1);
  margin-bottom: 2px;
}

.reviewer-city {
  font-size: 0.8125rem;
  color: var(--text-3);
}


/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

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

.cta-body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.cta-body h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--text-1);
  line-height: 1.12;
  margin-bottom: 16px;
  font-weight: 400;
}

.cta-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.65;
}


/* ================================================================
   CONTACT
   ================================================================ */
.contact-section { background: var(--bg-1); }

.contact-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Form */
.contact-form .section-title { margin-bottom: 28px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text-1);
  font-size: 0.9375rem;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

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

/* Custom select */
.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  background: var(--bg-4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 13px 42px 13px 16px;
  color: var(--text-1);
  font-size: 0.9375rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.select-wrap select option { background: var(--bg-4); color: var(--text-1); }
.select-wrap select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.select-wrap select option[value=""][disabled] { color: var(--text-4); }

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  pointer-events: none;
}

/* Submit button states */
.btn-loading { display: none; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: block; }
.btn.loading { opacity: 0.8; pointer-events: none; }

/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(212, 137, 10, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--accent-lt);
  font-weight: 600;
  margin-top: 16px;
}

.form-success.visible { display: flex; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-4);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Contact info column */
.contact-intro {
  padding-top: clamp(40px, 5vw, 60px);
  margin-bottom: 32px;
}

.contact-intro p {
  font-size: 0.9625rem;
  color: var(--text-2);
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 3px;
}

.ci-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-1);
  transition: color var(--dur-fast);
}

a.ci-value:hover { color: var(--accent); }

/* Hours box */
.hours-box {
  background: var(--bg-4);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
}

.hours-box h4 {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--text-1);
  font-weight: 400;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-sub);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.875rem;
  color: var(--text-2);
}

.hours-row:last-child { border-bottom: none; }
.hours-time { color: var(--text-1); font-weight: 500; }
.hours-closed .hours-time { color: var(--text-3); }

.service-area-note {
  font-size: 0.8rem;
  color: var(--text-4);
  line-height: 1.6;
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border-sub);
  padding: clamp(56px, 7vw, 88px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--border-sub);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-4);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-license {
  font-size: 0.75rem !important;
  color: var(--text-4) !important;
  margin-top: 8px !important;
  letter-spacing: 0.03em;
}

.footer-logo-img {
  height: 130px;
  width: auto;
  object-fit: cover;
  object-position: top;
  display: block;
}

.footer-logo-text {
  font-family: var(--serif);
  font-size: 1.125rem;
  color: var(--text-1);
  display: block;
}

.footer-logo-text span {
  display: block;
  font-family: var(--sans);
  font-size: 0.65em;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-4);
  transition: color var(--dur-fast);
}
.footer-col ul a:hover { color: var(--text-2); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.footer-contact a, .footer-contact span {
  font-size: 0.875rem;
  color: var(--text-4);
  transition: color var(--dur-fast);
  line-height: 1.5;
}
.footer-contact a:hover { color: var(--text-2); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-4);
  transition: color var(--dur-fast);
}
.footer-legal a:hover { color: var(--text-2); }


/* ================================================================
   SERVICE SPACER (6th cell filler for 5-card grid)
   ================================================================ */
.service-spacer {
  background: var(--bg-card);
}

@media (max-width: 768px) {
  .service-spacer { display: none; }
}


/* ================================================================
   AFFILIATIONS BAR
   ================================================================ */
.affiliations-bar {
  background: #0C0C0C;
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border-sub);
}

.affiliations-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-4);
  text-align: center;
  margin-bottom: 24px;
}

.affiliations-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.affil-box {
  flex: 1 1 0;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.affil-box img {
  display: block;
  width: 100%;
  max-height: 100px;
  object-fit: contain;
  border-radius: 12px;
}

@media (max-width: 640px) {
  .affil-box {
    flex: 0 0 calc(33.333% - 12px);
    min-width: 0;
  }
}


/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq-section { background: var(--bg-2); }

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-sub);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-sub);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-1);
  cursor: pointer;
  transition: color var(--dur-fast);
}

.faq-q:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-fast);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.open .faq-a {
  max-height: 240px;
}

.faq-a p {
  padding-bottom: 22px;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.78;
}

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


/* ================================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .nav-menu { gap: 20px; }

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

  .about-badge { left: -10px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
}


/* ================================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ================================================================ */
@media (max-width: 768px) {
  /* ── Fix CSS custom properties so --header-h cascades correctly ── */
  :root {
    --topbar-h:   34px;
    --nav-h:      112px;
    --sp-section: clamp(52px, 10vw, 72px);
  }

  /* ── Top bar ── */
  .top-bar-text { display: none; }
  .top-bar-link { font-size: 0.75rem; gap: 6px; letter-spacing: 0; }

  /* ── Navbar ── */
  .nav-menu  { display: none; }
  .nav-quote { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; gap: 0; }
  .logo-img  { height: 92px; }
  .logo-crop { height: 75px; } /* clips bottom of 92px responsive image */
  .logo-crop--mobile { height: 65px; } /* mobile drawer unchanged */
  .logo-crop--footer {
    height: 75px;
    overflow: hidden;
  }
  .footer-logo-img {
    height: 92px;
    width: auto;
    object-fit: cover;
    object-position: top;
  }

  /* ── Hero ── */
  .hero-body  { padding: 0 20px; }
  .br-hide    { display: none; }
  .hero-heading { line-height: 1.12; }
  .hero-sub   { font-size: 1rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions .btn { width: 100%; }
  .cta-bg { background-attachment: scroll; }

  /* ── Stats — 2×2 grid, dividers become borders ── */
  .stats-bar  { padding: 28px 0; }
  .stat-div   { display: none; }
  .stats-row  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    flex-wrap: unset;
    justify-content: unset;
  }
  .stat {
    min-width: unset;
    padding: 18px 12px;
    border-bottom: 1px solid var(--border-sub);
  }
  .stat:nth-child(odd)      { border-right: 1px solid var(--border-sub); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num { font-size: clamp(1.75rem, 6vw, 2.5rem); }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; }
  .service-card  { padding: 28px 24px; }

  /* ── Projects ── */
  .projects-grid   { grid-template-columns: 1fr; }
  .project-img-wrap { aspect-ratio: 16 / 9; }
  .project-overlay { opacity: 1; }
  .project-info    { transform: none; }

  /* ── About ── */
  .about-grid       { grid-template-columns: 1fr; }
  .about-image-col  { max-width: 480px; margin: 0 auto; width: 100%; }
  .about-img-frame img { aspect-ratio: 16 / 9; }
  .about-badge      { left: 0; bottom: 16px; }
  .corner-tl        { top: -6px; left: -6px; }
  .corner-br        { bottom: -6px; right: -6px; }
  .about-checks     { grid-template-columns: 1fr 1fr; }
  .about-content-col .btn { width: 100%; }

  /* ── Reviews ── */
  .reviews-grid { grid-template-columns: 1fr; }

  /* ── CTA ── */
  .cta-body { padding: 0 20px; }
  .cta-body .btn { width: 100%; max-width: 380px; }

  /* ── Contact ── */
  .contact-grid   { grid-template-columns: 1fr; }
  .contact-intro  { padding-top: 0; }
  .form-row-2     { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* ================================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ================================================================ */
@media (max-width: 480px) {
  :root {
    --topbar-h: 32px;
  }

  /* ── Top bar ── */
  .top-bar-link { font-size: 0.7rem; }

  /* ── Stats — keep 2×2, just tighter ── */
  .stat { padding: 16px 8px; }
  .stat-num { font-size: 1.75rem; }
  .stat-lbl { font-size: 0.75rem; }

  /* ── About ── */
  .about-checks { grid-template-columns: 1fr; }
  .about-img-frame img { aspect-ratio: 4 / 3; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; }

  /* ── Ensure all key buttons are full-width ── */
  .hero-actions .btn,
  .about-content-col .btn,
  .cta-body .btn { width: 100%; }
}


/* ================================================================
   MARBLE TEXTURE ACCENTS
   ================================================================ */

/* Stats bar — Unsplash marble photo with dark overlay */
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 0;
}
.stats-bar .container { position: relative; z-index: 1; }

/* Marble divider strips between major sections */
.services-section,
.projects-section,
.about-section,
.reviews-section {
  position: relative;
}

.services-section::after,
.projects-section::after,
.about-section::after,
.reviews-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-image: url('./marble.webp.png');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

/* Buttons: flat muted gold, no marble */

/* CTA banner — marble layer between photo and dark overlay */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./marble.webp.png');
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}
.cta-overlay { z-index: 2; }
.cta-body    { z-index: 3; }

/* Service card hover — faint marble shimmer */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./marble.webp.png');
  background-size: cover;
  background-position: center;
  opacity: 0;
  mix-blend-mode: overlay;
  transition: opacity var(--dur-med) var(--ease-in-out);
  pointer-events: none;
}
.service-card:hover::after { opacity: 0.32; }


/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .hero-image { animation: none; }
  .scroll-line { animation: none; }
}
