/* =========================================================
   Mille Construction — Shared Stylesheet
   Brand: Primary #1F2D4E navy, Accent #2E75B6 brighter blue
   ========================================================= */

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #0F0F0F;
  background: #FFFFFF;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Design tokens (Mille brand) */
:root {
  --bg: #FFFFFF;
  --bg-warm: #F2F4F8;
  --text: #0E1730;
  --text-muted: #4D5468;
  --text-light: #8088A0;
  --accent: #1F2D4E;
  --accent-bright: #2E75B6;
  --accent-dark: #15203A;
  --border: #DCE0E8;
  --max-width: 1280px;
  --section-pad: clamp(64px, 10vw, 140px);
}

/* Typography */
h1, h2, h3, h4 { font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; }
.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 6.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-bright);
}
.lede { font-size: clamp(1.05rem, 1.3vw, 1.25rem); color: var(--text-muted); max-width: 60ch; }

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
section { padding: var(--section-pad) 0; }

/* ========== Nav ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
  max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo img {
  height: 60px;
  width: auto;
  display: block;
}
.footer-brand .logo img {
  height: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
@media (max-width: 540px) {
  .logo img { height: 44px; }
  .footer-brand .logo img { height: 64px; }
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--accent-bright); }
.nav-links a.active {
  color: var(--accent-bright);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent-bright);
}
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-bright); color: #fff; }
.nav-cta.active::after { display: none; }

.nav-toggle { display: none; }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
  .nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 24px;
    position: absolute; top: 88px; left: 0; right: 0;
    background: #fff; padding: 32px clamp(20px, 4vw, 48px) 40px;
    border-bottom: 1px solid var(--border);
  }
}

/* ========== Home Hero (full-bleed illustrated, Suffolk-style) ========== */
.hero {
  padding-top: calc(88px + 120px);
  padding-bottom: 160px;
  background: #1F2D4E;
  background: linear-gradient(160deg, #141E36 0%, #1F2D4E 60%, #294071 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
/* Blueprint grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
/* SVG skyline anchored to bottom */
.hero-skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.hero h1 { color: #fff; }
.hero h1 em { color: #6FA8DC; }
.hero .lede { color: rgba(255,255,255,0.78); }
.hero-eyebrow {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.hero .btn-primary { background: #fff; color: var(--accent); }
.hero .btn-primary:hover { background: #6FA8DC; color: var(--accent); }
.hero .btn-secondary { color: #fff; border-bottom-color: rgba(255,255,255,0.5); }
.hero .btn-secondary:hover { color: #6FA8DC; border-bottom-color: #6FA8DC; }
.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  display: inline-block; width: 6px; height: 6px;
  background: #2D9D5F; border-radius: 50%;
  margin-right: 8px; vertical-align: middle;
}
.hero h1 { margin-bottom: 36px; }
.hero h1 em { font-style: italic; color: var(--accent-bright); font-weight: 400; }
.hero .lede { margin-bottom: 48px; font-size: clamp(1.1rem, 1.4vw, 1.35rem); max-width: 65ch; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========== Page Hero (smaller, banner-style for interior pages) ========== */
.page-hero {
  padding-top: calc(88px + 80px);
  padding-bottom: 80px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero .eyebrow { display: inline-block; margin-bottom: 20px; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: var(--accent-bright); }
.page-hero p { color: var(--text-muted); font-size: clamp(1.05rem, 1.3vw, 1.25rem); max-width: 65ch; }

/* Page hero with background image (Suffolk-style location-page treatment) */
.page-hero.has-bg {
  background-color: var(--accent);
  border-bottom: none;
  color: #fff;
  padding-top: calc(88px + 120px);
  padding-bottom: 120px;
}
.page-hero.has-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: var(--hero-pos, center);
  z-index: 0;
}
.page-hero.has-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14, 23, 48, 0.85), rgba(31, 45, 78, 0.7));
  z-index: 1;
}
.page-hero.has-bg h1 { color: #fff; }
.page-hero.has-bg h1 em { color: #8FBEE8; }
.page-hero.has-bg p { color: rgba(255, 255, 255, 0.85); }
.page-hero.has-bg .eyebrow { color: #8FBEE8; }

/* ========== Design banner (full-bleed architectural break, "cool design" placement) ========== */
.design-banner {
  position: relative;
  background-color: var(--accent);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: clamp(100px, 14vw, 180px) 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .design-banner { background-attachment: fixed; }
}
.design-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14, 23, 48, 0.72), rgba(31, 45, 78, 0.55));
}
.design-banner .container { position: relative; z-index: 2; }
.design-banner-content { max-width: 760px; margin: 0 auto; }
.design-banner .eyebrow {
  color: #8FBEE8;
  display: inline-block;
  margin-bottom: 24px;
}
.design-banner h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 0;
}
.design-banner h2 em { font-style: italic; color: #8FBEE8; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 16px 28px;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text);
  padding: 16px 0;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1.5px solid var(--text);
  border-radius: 0;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--accent-bright); border-color: var(--accent-bright); }
.btn-primary svg, .btn-secondary svg { width: 16px; height: 16px; }

/* ========== Trust strip ========== */
.trust {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.trust-inner {
  display: flex; gap: 48px; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
}
.trust-item {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: 0.04em;
}
.trust-item svg { width: 16px; height: 16px; color: var(--accent-bright); flex-shrink: 0; }
.trust-item strong { color: var(--text); font-weight: 500; }

/* ========== Section headers ========== */
.section-header { max-width: 720px; margin-bottom: 64px; }
.section-header .eyebrow { display: block; margin-bottom: 16px; }
.section-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.section-header h2 em { font-style: italic; color: var(--accent-bright); }

/* ========== Services ========== */
.services {
  background: var(--bg-warm);
  position: relative;
}
.services.has-bg {
  background-color: var(--bg-warm);
}
.services.has-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--services-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.services.has-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(242, 244, 248, 0.6) 0%, rgba(242, 244, 248, 0.85) 100%);
  z-index: 0;
}
.services.has-bg .container { position: relative; z-index: 1; }
.services.has-bg .service { background: #fff; }
.services.has-bg .service:hover { background: var(--bg-warm); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr; } }
.service {
  background: var(--bg-warm);
  padding: 48px 40px;
  transition: background 0.3s;
}
.service:hover { background: #fff; }
.service-num {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: var(--accent-bright);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.service h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.service p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.service-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.service-list li {
  padding: 8px 0;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.service-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent-bright);
  border-radius: 50%;
}

/* ========== Why Mille ========== */
.why { background: var(--accent); color: #fff; }
.why .section-header h2 { color: #fff; }
.why .eyebrow { color: var(--accent-bright); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
}
@media (max-width: 760px) { .why-grid { grid-template-columns: 1fr; gap: 48px; } }
.why-item h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #fff;
}
.why-item p {
  color: rgba(255,255,255,0.75);
  font-size: 0.98rem;
  line-height: 1.7;
}
.why-num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  color: var(--accent-bright);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

/* ========== Team ========== */
.team { background: var(--bg); }
.founder {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 96px;
}
@media (max-width: 880px) { .founder { grid-template-columns: 1fr; gap: 40px; } }
.founder-img {
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  overflow: hidden;
  position: relative;
}
.founder-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.founder-img:hover img { transform: scale(1.03); }
.founder-role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-bright);
  margin-bottom: 16px;
  font-weight: 500;
}
.founder-bio h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.1;
}
.founder-bio p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.credentials {
  list-style: none;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.credentials li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--text);
}
.credentials li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-bright);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Career highlights */
.career-highlights {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.career-highlights-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .career-grid { grid-template-columns: 1fr; } }
.career-item { display: flex; flex-direction: column; }
.career-photo {
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}
.career-photo img { width: 100%; height: 100%; object-fit: cover; }
.career-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(135deg, rgba(46, 117, 182, 0.10) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(0,0,0,0.03) 30px 31px);
  color: var(--text-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
.career-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}
.career-caption strong { color: var(--text); font-style: normal; font-weight: 500; }

/* Team grid (Luciano, Mariana) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } }
.team-member {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 540px) {
  .team-member { grid-template-columns: 140px 1fr; gap: 20px; }
}
.team-member-img {
  aspect-ratio: 3/4;
  background: var(--bg-warm);
  overflow: hidden;
}
.team-member-img img { width: 100%; height: 100%; object-fit: cover; }
.team-member-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  margin-bottom: 8px;
  font-weight: 500;
}
.team-member h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.team-member p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ========== Projects ========== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .projects-grid { grid-template-columns: 1fr; } }
.project { transition: transform 0.3s; }
.project:hover { transform: translateY(-4px); }
.project-img {
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.project-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.project:hover .project-img img { transform: scale(1.04); }
.project-img.placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(46, 117, 182, 0.15) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent 0 60px, rgba(0,0,0,0.04) 60px 61px),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(0,0,0,0.04) 60px 61px);
}
.project-img.placeholder.alt::before {
  background:
    linear-gradient(45deg, rgba(46, 117, 182, 0.12) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0 50px, rgba(0,0,0,0.04) 50px 51px);
}
.project-img.placeholder.alt2::before {
  background:
    radial-gradient(circle at 30% 40%, rgba(46, 117, 182, 0.15), transparent 60%),
    repeating-linear-gradient(135deg, transparent 0 30px, rgba(0,0,0,0.03) 30px 31px);
}
.project-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  padding: 6px 12px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
}
.project-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent-bright);
  margin-bottom: 8px;
  line-height: 1.4;
}
.project h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.project-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ========== Founder Quote (Suffolk "office lead" pattern) ========== */
.founder-quote { background: var(--bg-warm); }
.founder-quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .founder-quote-grid { grid-template-columns: 1fr; gap: 40px; } }
.founder-quote-img {
  aspect-ratio: 4/5;
  background: var(--border);
  overflow: hidden;
}
.founder-quote-img img { width: 100%; height: 100%; object-fit: cover; }
.founder-quote-content .eyebrow { display: block; margin-bottom: 24px; }
.founder-quote-content blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}
.founder-quote-content blockquote em { font-style: italic; color: var(--accent-bright); }
.founder-quote-attr { display: flex; align-items: center; gap: 16px; }
.founder-quote-attr .line { width: 40px; height: 1px; background: var(--accent-bright); }
.founder-quote-attr-name { font-weight: 600; font-size: 1rem; color: var(--text); }
.founder-quote-attr-role { font-size: 0.85rem; color: var(--text-muted); }

/* Project location tag (Suffolk pattern) */
.project-location {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 500;
}

/* ========== Process ========== */
.process {
  background: var(--bg-warm);
  position: relative;
}
.process.has-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--process-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 0;
}
.process.has-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(242, 244, 248, 0.78) 0%, rgba(242, 244, 248, 0.92) 100%);
  z-index: 0;
}
.process.has-bg .container { position: relative; z-index: 1; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  border-top: 1px solid var(--text);
  padding-top: 24px;
}
.process-num {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  color: var(--accent-bright);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.process-step h4 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== CTA strip ========== */
.cta-strip {
  padding: 100px 0;
  background: var(--accent);
  color: #fff;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  max-width: 800px; margin: 0 auto 32px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cta-strip h2 em { font-style: italic; color: var(--accent-bright); }
.cta-strip p {
  color: rgba(255,255,255,0.75);
  max-width: 540px; margin: 0 auto 40px;
  font-size: 1.05rem;
}
.cta-strip .btn-primary { background: var(--accent-bright); color: #fff; }
.cta-strip .btn-primary:hover { background: #fff; color: var(--accent); }

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 24px;
  line-height: 1.15;
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}
.contact-details {
  display: flex; flex-direction: column; gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-detail svg { width: 18px; height: 18px; color: var(--accent-bright); margin-top: 4px; flex-shrink: 0; }
.contact-detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 1.02rem; color: var(--text); }
.contact-detail-value a:hover { color: var(--accent-bright); }

/* Form */
.form { background: var(--bg-warm); padding: 48px; }
@media (max-width: 540px) { .form { padding: 32px 24px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 0;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent-bright); }
.form-field textarea { resize: vertical; min-height: 80px; padding-top: 12px; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%234D5468' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.form button {
  width: 100%;
  background: var(--accent);
  color: #fff;
  padding: 18px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s;
  margin-top: 8px;
}
.form button:hover { background: var(--accent-bright); }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 16px;
  text-align: center;
}

/* ========== Footer ========== */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 320px; margin-top: 16px; }
.footer-col h5 {
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-bright); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.82rem;
}
.footer-bottom .license { color: var(--accent-bright); font-weight: 500; }

/* ========== Service Area ========== */
.service-area { background: var(--bg); }
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .service-area-grid { grid-template-columns: 1fr; gap: 32px; } }
.service-area-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 640px) { .service-area-list { grid-template-columns: repeat(2, 1fr); } }
.service-area-list li {
  padding: 18px 4px;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.service-area-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-bright);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========== Testimonials placeholder ========== */
.testimonials { background: var(--bg-warm); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: #fff;
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--accent-bright);
  opacity: 0.5;
  margin-bottom: 12px;
}
.testimonial blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
}
.testimonial-attr-name { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.testimonial-attr-role { font-size: 0.82rem; color: var(--text-muted); }
.testimonial.placeholder {
  background: transparent;
  border: 1px dashed var(--border);
  color: var(--text-light);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 240px;
}
.testimonial.placeholder p {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ========== 404 page ========== */
.error-page {
  min-height: calc(100vh - 88px);
  display: flex; align-items: center; justify-content: center;
  padding: 120px 0 80px;
  background: var(--bg-warm);
  text-align: center;
}
.error-page-content { max-width: 560px; }
.error-page .display { font-size: clamp(4rem, 12vw, 9rem); margin-bottom: 16px; color: var(--accent); }
.error-page h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}
.error-page p { color: var(--text-muted); margin-bottom: 32px; }

/* ========== FAQ ========== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 48px 28px 0;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  letter-spacing: -0.015em;
  color: var(--text);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-bright); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.75rem;
  color: var(--accent-bright);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item[open] .faq-question::after {
  content: '–';
}
.faq-answer {
  padding-bottom: 32px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 760px;
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ========== Skip-to-content (a11y) ========== */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* Better focus rings */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

/* Scroll offset for in-page anchors (account for sticky nav) */
:target { scroll-margin-top: 100px; }

/* ========== Animations ========== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s, transform 0.8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Subtle crane jib sway — signals "we build" with a touch of life */
.crane-jib {
  transform-origin: 585px 36px;
  animation: craneSwing 12s ease-in-out infinite;
}
@keyframes craneSwing {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2.5deg); }
}

/* Cable below crane hook drops slightly with the motion */
.crane-cable {
  transform-origin: 660px 22px;
  animation: cableSwing 12s ease-in-out infinite;
}
@keyframes cableSwing {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-1deg); }
}

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