/* ============================================================
   HUTTON BUILDING COMPANY — MASTER STYLESHEET
   Cary, NC | Greater Triangle
   ============================================================
   HOW TO USE IN SQUARESPACE:
   Copy this entire file into:
   Design → Custom CSS → paste here
   ============================================================
   NOTE: Update the CSS variables below to match your exact
   brand colors, fonts, and logo once you have your files.
   ============================================================ */

/* === GOOGLE FONTS (add to Squarespace > Design > Fonts or Header Injection) ===
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Inter:wght@300;400;500&family=Montserrat:wght@500;600;700&display=swap" rel="stylesheet">
*/

/* === DESIGN TOKENS — HUTTON BUILDING CO. BRAND === */
:root {
  /* PRIMARY PALETTE — matched to Hutton Building Co. brand */
  --primary:       #1a1208;   /* Very dark warm brown (near-black) — nav, headers */
  --primary-dark:  #0d0906;   /* Deeper dark for footer */
  --accent:        #4a3520;   /* Warm dark bronze — brand signature color */
  --accent-light:  #bba07e;   /* Lighter bronze for text on dark backgrounds */
  --accent-hover:  #3a2818;   /* Darker bronze for hover states */

  /* NEUTRAL PALETTE */
  --white:         #ffffff;
  --bg-warm:       #f2ede5;   /* Warm cream — matches logo background */
  --bg-light:      #faf7f2;
  --border:        #e0d8ca;
  --text-dark:     #1a1208;
  --text-med:      #4a4540;
  --text-light:    #7a7570;

  /* TYPOGRAPHY */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-label:  'Montserrat', Arial, sans-serif;

  /* LAYOUT */
  --container:      1320px;
  --nav-height:     88px;
  --section-v:      110px;

  /* MOTION */
  --ease:           0.3s ease;
  --ease-slow:      0.6s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-med);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.16;
  font-weight: 700;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.1rem); letter-spacing: -0.005em; }
h4 { font-size: 1.25rem; font-family: var(--font-serif); }
h5 { font-size: 0.95rem; font-family: var(--font-sans); font-weight: 600; }
p  { margin-bottom: 1em; color: var(--text-med); }
p:last-child { margin-bottom: 0; }

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 48px; }
section { padding: var(--section-v) 0; }

/* === EYEBROW LABELS === */
.eyebrow {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

/* === SECTION HEADERS === */
.section-header { margin-bottom: 72px; }
.section-header.centered { text-align: center; max-width: 660px; margin: 0 auto 72px; }
.section-header h2 { margin-bottom: 1.1rem; }
.section-header p { font-size: 1.05rem; color: var(--text-light); line-height: 1.9; }
.divider { width: 64px; height: 3px; background: var(--accent); margin: 1.35rem 0; border-radius: 2px; }
.centered .divider { margin: 1.35rem auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 38px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-arrow::after { content: '→'; transition: transform var(--ease); }
.btn-arrow:hover::after { transform: translateX(5px); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(181,129,61,0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background var(--ease), box-shadow var(--ease);
}
.site-nav.transparent { background: transparent; }
.site-nav.scrolled {
  background: var(--primary-dark);
  box-shadow: 0 2px 40px rgba(0,0,0,0.28);
  border-bottom: 1px solid rgba(74,53,32,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 80px; width: auto; display: block; }
.site-nav { overflow: visible; }
/* When a real logo img is present, hide the text fallback */
.nav-logo img ~ .nav-logo-text { display: none; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text small {
  font-family: var(--font-label);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  transition: color var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta-btn {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 11px 26px;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--ease);
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--primary-dark);
  z-index: 1000;
  padding: 100px 40px 50px;
  transition: right var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2.5rem;
}
.mobile-drawer-links a {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--ease);
}
.mobile-drawer-links a:hover { color: var(--accent); }
.drawer-close {
  position: absolute;
  top: 26px; right: 26px;
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.6rem;
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
}
.drawer-overlay.open { display: block; }

/* === FOOTER === */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.65);
  padding: 100px 0 48px;
  border-top: 3px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 70px;
}
.footer-brand { }
.footer-logo {
  display: block;
  margin-bottom: 1.35rem;
}
.footer-logo img {
  height: 96px;
  width: auto;
  display: block;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.85; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--ease);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col-title {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  gap: 0;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}
.footer-contact-icon {
  display: none;
}
.footer-contact-item p { font-size: 0.88rem; margin: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color var(--ease); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--ease); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* === HERO (HOME) === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,9,6,0.88) 0%, rgba(26,18,8,0.52) 60%, rgba(26,18,8,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}
.hero-content .eyebrow { color: var(--accent-light); }
.hero-content h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero-content h1 em { font-style: italic; color: var(--accent-light); }
.hero-tagline {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 3rem;
  max-width: 540px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* === PAGE HERO (interior pages) === */
.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.04);
  animation: heroZoom 12s ease forwards;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,9,6,0.92) 0%, rgba(13,9,6,0.55) 50%, rgba(13,9,6,0.28) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.page-hero-content .eyebrow { color: var(--accent-light); }
.page-hero-content h1 { color: var(--white); }

/* === INTRO SECTION === */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.intro-text .eyebrow { }
.intro-text h2 { margin-bottom: 1rem; }
.intro-text p { font-size: 1.03rem; line-height: 1.92; margin-bottom: 1.35rem; }
.intro-image { position: relative; }
.intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) contrast(1.03);
  transition: filter 0.5s ease;
}
.intro-image:hover .intro-img {
  filter: saturate(1) contrast(1.02);
}
.intro-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--accent);
  color: var(--white);
  padding: 28px 32px;
  text-align: center;
  min-width: 170px;
}
.intro-badge-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.intro-badge p {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin: 6px 0 0;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--primary);
  padding: 100px 0;
  position: relative;
}
/* Subtle top border accent */
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.stat-num sup { font-size: 60%; }
.stat-num em { color: var(--accent); font-style: normal; }
.stat-label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* === SERVICE CARDS (home) === */
.services-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover img { transform: scale(1.08); }
.service-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,9,6,0.94) 0%, rgba(13,9,6,0.4) 45%, transparent 72%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
  transition: background 0.4s ease;
}
.service-card:hover .service-card-content {
  background: linear-gradient(to top, rgba(13,9,6,0.97) 0%, rgba(13,9,6,0.55) 50%, rgba(13,9,6,0.15) 80%);
}
.service-card-content h3 { color: var(--white); margin-bottom: 0.7rem; font-size: 1.6rem; }
.service-card-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  margin-bottom: 1rem;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}
.service-card:hover .service-card-text,
.service-card:hover .service-card-link { opacity: 1; transform: translateY(0); }

/* === PROJECT CARDS === */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.project-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 2px 20px rgba(26,18,8,0.07);
}
.project-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 60px rgba(26,18,8,0.15);
}
.project-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.07); }
.project-card-body { padding: 30px 32px 36px; }
.project-tag {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.7rem;
}
.project-card-body h4 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.project-card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.1rem; }
.project-link {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease);
}
.project-link:hover { gap: 12px; }

/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  transition: all var(--ease);
}
.process-step:hover .step-circle {
  background: var(--accent);
  color: var(--white);
}
.process-step h4 { margin-bottom: 0.7rem; font-size: 1.05rem; }
.process-step p { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; }

/* === TESTIMONIALS === */
.testimonials-wrap { background: var(--bg-warm); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  padding: 44px 40px;
  border-left: 4px solid var(--accent);
  position: relative;
  box-shadow: 0 2px 24px rgba(26,18,8,0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px rgba(26,18,8,0.11);
  transform: translateY(-3px);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 7rem;
  color: var(--accent);
  opacity: 0.12;
  position: absolute;
  top: 0; left: 22px;
  line-height: 1.1;
}
.stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-med);
  margin-bottom: 1.6rem;
}
.testimonial-author strong {
  display: block;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.testimonial-author span {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--primary-dark);
  padding: 130px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 2.8rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === PORTFOLIO GRID === */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 26px;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-warm);
}
.portfolio-item.featured { grid-column: span 2; grid-row: span 2; }
.portfolio-item-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.5s ease;
  display: block;
  filter: saturate(0.88) contrast(1.04);
}
.portfolio-item.featured .portfolio-item-img { aspect-ratio: auto; height: 100%; min-height: 540px; }
.portfolio-item:hover .portfolio-item-img { transform: scale(1.05); filter: saturate(1) contrast(1.02); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,9,6,0.92) 0%, rgba(13,9,6,0.35) 50%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 28px 32px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 {
  color: var(--white);
  font-size: 1.0rem;
  margin-bottom: 5px;
  font-family: var(--font-serif);
}
.portfolio-overlay-tag {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: block;
}
/* Thin accent line on hover */
.portfolio-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width 0.4s ease;
  z-index: 3;
}
.portfolio-item:hover::after { width: 100%; }
.portfolio-item[data-category] { transition: opacity 0.4s ease, transform 0.4s ease; }
.portfolio-item.hidden { opacity: 0; pointer-events: none; transform: scale(0.97); }

/* Featured item always shows subtle gradient at bottom */
.portfolio-item.featured .portfolio-overlay {
  background: linear-gradient(to top, rgba(13,9,6,0.88) 0%, rgba(13,9,6,0.2) 40%, transparent 70%);
  opacity: 0.65;
}
.portfolio-item.featured:hover .portfolio-overlay { opacity: 1; }
.portfolio-item.featured .portfolio-overlay h4 { font-size: 1.25rem; }
.portfolio-item.featured .portfolio-overlay-tag { font-size: 0.65rem; }

/* === TEAM GRID === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card { }
.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1.4rem;
  background: var(--bg-warm);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: saturate(0.85);
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
  filter: saturate(1);
}
.team-card h4 { font-size: 1.1rem; margin-bottom: 3px; }
.team-title {
  font-family: var(--font-label);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.team-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.75; }

/* Open position card */
.team-photo--open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--primary);
  border: 2px dashed rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}
.team-photo--open svg {
  color: var(--accent-light);
  opacity: 0.85;
}
.team-open-label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.team-card--open .team-title {
  color: var(--text-light);
}

/* === SERVICES PAGE === */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.reverse .service-detail-content { order: 1; }
.service-detail-img {
  position: relative;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: saturate(0.9) contrast(1.03);
}
.service-detail-img:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.02);
}
/* Thin bronze accent line below service images */
.service-detail-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 80px; height: 4px;
  background: var(--accent);
}
.service-detail-content h3 { margin-bottom: 1.1rem; }
.service-detail-content p { font-size: 0.98rem; line-height: 1.92; margin-bottom: 1.25rem; }
.service-features {
  margin: 1.5rem 0 2rem;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-med);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.service-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* === PROCESS PAGE === */
.process-timeline { position: relative; padding-left: 60px; }
.process-timeline::before {
  content: '';
  position: absolute;
  left: 22px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 60px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -49px; top: 4px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}
.timeline-item h3 { margin-bottom: 0.75rem; font-size: 1.5rem; }
.timeline-item p { font-size: 0.98rem; line-height: 1.88; max-width: 680px; }
.timeline-item .timeline-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 1.5rem;
}
.timeline-detail-item {
  background: var(--bg-warm);
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-med);
}
.timeline-detail-item strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 0.8rem; }
.contact-info > p { font-size: 0.98rem; line-height: 1.88; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-family: var(--font-label);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.contact-detail-text a, .contact-detail-text p { font-size: 0.9rem; color: var(--text-med); }
.contact-detail-text a:hover { color: var(--accent); }

/* === FORM === */
.contact-form-wrap {
  background: var(--bg-warm);
  padding: 50px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-dark);
  outline: none;
  appearance: none;
  transition: border-color var(--ease);
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}
.form-group.form-checkbox input[type="checkbox"] {
  width: auto;
  padding: 0;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.form-group.form-checkbox label {
  display: inline;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-light);
  cursor: pointer;
  margin-bottom: 0;
}
.form-group select { 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='%234b5563' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }

/* === ESTIMATOR === */
.estimator-container {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}
.estimator-header {
  background: var(--primary);
  padding: 50px 60px;
}
.estimator-header h2 { color: var(--white); margin-bottom: 0.75rem; }
.estimator-header p { color: rgba(255,255,255,0.7); font-size: 0.98rem; }
.estimator-progress {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--bg-warm);
  overflow-x: auto;
}
.prog-step {
  flex: 1;
  padding: 18px 24px;
  font-family: var(--font-label);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: default;
}
.prog-step.active { color: var(--accent); border-bottom-color: var(--accent); }
.prog-step.done { color: var(--primary); border-bottom-color: var(--primary); }
.prog-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--ease);
}
.prog-step.active .prog-num { background: var(--accent); color: var(--white); }
.prog-step.done .prog-num { background: var(--primary); color: var(--white); }

.estimator-body { padding: 60px; }
.est-section { display: none; }
.est-section.active { display: block; }
.est-section h3 { margin-bottom: 0.5rem; }
.est-section > p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 2rem; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 2rem;
}
.option-card {
  border: 2px solid var(--border);
  padding: 28px 24px;
  cursor: pointer;
  transition: all var(--ease);
  text-align: center;
  background: var(--white);
  position: relative;
}
.option-card:hover { border-color: var(--accent-light); }
.option-card.selected {
  border-color: var(--accent);
  background: rgba(181,129,61,0.04);
}
.option-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px; right: 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}
.option-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--bg-warm); border-radius: 50%; margin: 0 auto 0.9rem; color: var(--accent); }
.option-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.option-card p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

.sqft-display {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  display: block;
  margin: 12px 0;
  line-height: 1;
}
.sqft-display span { font-size: 1.5rem; color: var(--text-light); }

input[type="range"].slider {
  width: 100%;
  -webkit-appearance: none;
  height: 5px;
  background: var(--border);
  outline: none;
  border-radius: 3px;
  margin: 16px 0;
}
input[type="range"].slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(181,129,61,0.4);
  transition: transform var(--ease);
}
input[type="range"].slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 2rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--ease);
  font-size: 0.88rem;
  color: var(--text-med);
}
.checkbox-item:hover { border-color: var(--accent-light); }
.checkbox-item.checked {
  border-color: var(--accent);
  background: rgba(181,129,61,0.05);
  color: var(--text-dark);
}
.checkbox-item input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }

.est-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--border); }

.result-panel {
  background: var(--primary);
  padding: 70px 60px;
  text-align: center;
}
.result-panel .eyebrow { color: var(--accent-light); }
.result-panel h3 { color: var(--white); margin-bottom: 0.5rem; }
.result-range {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  margin: 1rem 0;
  line-height: 1;
}
.result-panel p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; max-width: 560px; margin: 1rem auto 2.5rem; }
.result-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
  text-align: left;
}
.result-item {
  background: rgba(255,255,255,0.07);
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
}
.result-item-label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 5px;
}
.result-item-value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.result-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* === FADE ANIMATIONS === */
[data-animate] {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  :root { --section-v: 88px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .result-breakdown { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .intro-grid { grid-template-columns: 1fr; gap: 60px; }
  .intro-badge { right: 0; }
  .services-trio { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 16/9; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-form-wrap { padding: 36px; }
  .estimator-header { padding: 40px; }
  .estimator-body { padding: 40px; }
  .option-grid { grid-template-columns: 1fr 1fr; }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse .service-detail-img,
  .service-detail.reverse .service-detail-content { order: unset; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.featured { grid-column: span 2; }
}
@media (max-width: 768px) {
  :root { --nav-height: 68px; --section-v: 70px; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta-btn { display: none; }
  .nav-hamburger { display: flex; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .projects-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.featured { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .estimator-progress { flex-direction: column; }
  .prog-step { border-bottom: none; border-left: 3px solid transparent; }
  .prog-step.active { border-left-color: var(--accent); border-bottom-color: transparent; }
}

/* ============================================================
   NEW SECTIONS — Trust Bar, Why Grid, Service Area, FAQ
   ============================================================ */

/* === TRUST BAR === */
.trust-bar {
  background: var(--primary-dark);
  border-top: 3px solid var(--accent);
  padding: 36px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-stat {
  text-align: center;
  padding: 12px 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.trust-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 768px) {
  .trust-bar-inner { gap: 0; }
  .trust-stat { padding: 12px 24px; }
  .trust-divider { display: none; }
  .trust-num { font-size: 1.8rem; }
}

/* === WHY HUTTON GRID === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  padding: 40px 36px;
  border-bottom: 3px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  box-shadow: 0 2px 16px rgba(26,18,8,0.055);
}
.why-card:hover {
  border-bottom-color: var(--accent);
  box-shadow: 0 10px 40px rgba(26,18,8,0.11);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1.4rem;
  transition: background var(--ease), color var(--ease);
}
.why-card:hover .why-icon {
  background: var(--accent);
  color: var(--white);
}
.why-card h4 { font-size: 1.08rem; margin-bottom: 0.65rem; }
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.78; margin: 0; }

@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 32px 28px; }
}

/* === SERVICE AREA === */
.service-area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.area-pill {
  padding: 10px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all var(--ease);
  cursor: default;
}
.area-pill:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  background: rgba(122,96,64,0.1);
}

/* === FAQ ACCORDION === */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--ease);
  line-height: 1.4;
}
.faq-q:hover { color: var(--accent); }
.faq-q[aria-expanded="true"] { color: var(--accent); }
.faq-icon {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--ease);
  line-height: 1;
  width: 24px;
  text-align: center;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding-bottom: 24px;
}
.faq-a.open { display: block; }
.faq-a p {
  font-size: 0.96rem;
  color: var(--text-light);
  line-height: 1.88;
  margin: 0;
}
.faq-a a { color: var(--accent); text-decoration: underline; }
.faq-a a:hover { color: var(--accent-hover); }

/* ============================================================
   PREMIUM FINISH — Micro-details & visual polish
   ============================================================ */

/* Selection color */
::selection {
  background: rgba(74,53,32,0.18);
  color: var(--text-dark);
}

/* Refined button focus ring */
.btn:focus-visible,
.filter-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Contact form wrap: warm shadow */
.contact-form-wrap {
  box-shadow: 0 6px 48px rgba(26,18,8,0.09);
}

/* Estimator container: refined shadow */
.estimator-container {
  box-shadow: 0 6px 48px rgba(26,18,8,0.09);
}

/* Timeline dot subtle shadow */
.timeline-dot {
  box-shadow: 0 2px 12px rgba(74,53,32,0.18);
}

/* Step circle shadow */
.step-circle {
  box-shadow: 0 2px 12px rgba(74,53,32,0.14);
}

/* Intro badge refined shadow */
.intro-badge {
  box-shadow: 0 8px 40px rgba(26,18,8,0.22);
}

/* Project card img: warm photo treatment */
.project-card-img img {
  filter: saturate(0.9) contrast(1.03);
  transition: transform 0.65s ease, filter 0.5s ease;
}
.project-card:hover .project-card-img img {
  transform: scale(1.07);
  filter: saturate(1) contrast(1.02);
}

/* Service card: refined link on hover */
.service-card-link::after {
  content: ' →';
  display: inline;
  transition: letter-spacing 0.25s ease;
}
.service-card:hover .service-card-link::after {
  letter-spacing: 0.04em;
}

/* Smooth-scroll offset for anchor links */
[id] { scroll-margin-top: calc(var(--nav-height) + 24px); }

/* Page hero: responsive height reduction */
@media (max-width: 768px) {
  .page-hero { min-height: 360px; }
  .page-hero-content { padding-bottom: 50px; }
  .cta-banner { padding: 90px 0; }
}
