/* ===========================================
   TOPLINE COMMERCIAL SERVICES — SHARED STYLES
   =========================================== */

:root {
  --navy: #1B2A4A;
  --navy-deep: #0F1A33;
  --charcoal: #3A3F4B;
  --ice: #E8EDF5;
  --steel: #C8D8E8;
  --steel-bright: #A8C0DC;
  --white: #FFFFFF;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--steel); color: var(--navy-deep); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s var(--ease);
  background: transparent;
}
.nav.scrolled,
.nav.solid {
  padding: 16px 6vw;
  background: rgba(15, 26, 51, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 216, 232, 0.15);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--steel-bright); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--ice);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--steel-bright);
  transition: width .35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--steel-bright); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--steel);
  color: var(--steel-bright);
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
}
.nav-cta:hover { background: var(--steel); color: var(--navy-deep); border-color: var(--steel); }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); cursor: pointer; font-size: 22px; }

/* ---------- Buttons ---------- */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--steel-bright);
  color: var(--navy-deep);
  border: 1px solid var(--steel-bright);
}
.btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(200, 216, 232, 0.5);
}
.btn-primary .arrow { transition: transform .35s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(6px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(232, 237, 245, 0.3);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* ---------- Hero (Home) ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 6vw 80px;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200, 216, 232, 0.12), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(27, 42, 74, 0.8), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(232, 237, 245, 0.06), transparent 60%);
  animation: meshShift 18s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-20px); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232, 237, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 237, 245, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--steel-bright);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .3s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--steel-bright);
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 32px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: .5s; }
.hero h1 .line:nth-child(2) span { animation-delay: .7s; }
.hero h1 .line:nth-child(3) span { animation-delay: .9s; }
.hero h1 em { font-style: italic; color: var(--steel-bright); font-weight: 400; }
@keyframes lineUp { to { transform: translateY(0); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: 18px;
  color: var(--steel);
  max-width: 580px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.3s forwards;
}
.hero-meta {
  position: absolute;
  bottom: 60px;
  left: 6vw;
  right: 6vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.6s forwards;
}
.hero-scroll {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--steel);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-scroll::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--steel);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleX(1); transform-origin: left; }
  50% { transform: scaleX(0.3); transform-origin: left; }
}
.hero-badge { text-align: right; font-size: 11px; letter-spacing: 0.2em; color: var(--steel); text-transform: uppercase; }
.hero-badge strong { display: block; color: var(--steel-bright); font-size: 14px; font-weight: 500; margin-bottom: 4px; letter-spacing: 0.15em; }

/* ---------- Page Hero (for inner pages) ---------- */
.page-hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: 180px 6vw 100px;
  overflow: hidden;
}
.page-hero .hero-mesh,
.page-hero .hero-grid { position: absolute; inset: 0; }
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .2s forwards;
}
.breadcrumb a { color: var(--steel); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--steel-bright); }
.breadcrumb .sep { margin: 0 12px; color: var(--steel-bright); opacity: .5; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .4s forwards;
}
.page-hero h1 em { font-style: italic; color: var(--steel-bright); font-weight: 400; }
.page-hero p.lede {
  font-size: 19px;
  color: var(--steel);
  max-width: 640px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .6s forwards;
}

/* ---------- Dual Pillars (home only) ---------- */
.pillars-dual {
  background: var(--ice);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.pillar-card {
  padding: 80px 6vw;
  position: relative;
  overflow: hidden;
  transition: background .5s var(--ease);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pillar-card.commercial { background: var(--navy); color: var(--white); }
.pillar-card.residential { background: var(--steel); color: var(--navy-deep); }
.pillar-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy-deep);
  transform: translateY(100%);
  transition: transform .6s var(--ease);
  z-index: 0;
}
.pillar-card.residential::before { background: var(--navy); }
.pillar-card:hover::before { transform: translateY(0); }
.pillar-card:hover { color: var(--white); }
.pillar-card > * { position: relative; z-index: 1; }
.pillar-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 24px;
}
.pillar-card h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.pillar-card h2 em { font-style: italic; }
.pillar-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
  opacity: 0.9;
}
.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: gap .3s var(--ease);
}
.pillar-card:hover .pillar-cta { gap: 20px; }

/* ---------- Stats ---------- */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 80px 6vw;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel-bright), transparent);
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
.stat { text-align: left; position: relative; padding-left: 24px; }
.stat::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 2px; height: 60px;
  background: var(--steel-bright);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .8s var(--ease-out);
}
.stat.visible::before { transform: scaleY(1); }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.stat-num .suffix { color: var(--steel-bright); }
.stat-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel); }

/* ---------- Section Common ---------- */
.section {
  padding: 140px 6vw;
  background: var(--white);
}
.section.alt { background: var(--ice); }
.section.dark { background: var(--navy-deep); color: var(--white); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-narrow { max-width: 900px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-weight: 600;
}
.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--navy);
}
.section.dark .section-label { color: var(--steel-bright); }
.section.dark .section-label::before { background: var(--steel-bright); }
.section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.section.dark h2 { color: var(--white); }
.section h2 em { font-style: italic; color: var(--charcoal); }
.section.dark h2 em { color: var(--steel-bright); }
.section-header { margin-bottom: 80px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { display: inline-flex; }

/* ---------- About-style Two Column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.two-col p {
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.mini-pillars {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--ice);
}
.mini-pillar h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.mini-pillar p { font-size: 14px; color: var(--charcoal); margin: 0; line-height: 1.6; }

/* ---------- Service Cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .5s var(--ease);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
}
.section.alt .service-card { background: var(--white); }
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy-deep);
  transform: translateY(100%);
  transition: transform .5s var(--ease);
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(27, 42, 74, 0.3);
}
.service-card:hover::before { transform: translateY(0); }
.service-card > * { position: relative; z-index: 1; transition: color .4s var(--ease); }
.service-card:hover .service-num,
.service-card:hover h3,
.service-card:hover p { color: var(--white); }
.service-card:hover .service-num { color: var(--steel-bright); }
.service-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.service-card p { color: var(--charcoal); font-size: 15px; margin-bottom: 32px; }
.service-arrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .4s var(--ease), gap .3s var(--ease);
}
.service-card:hover .service-arrow { color: var(--steel-bright); gap: 16px; }

/* ---------- Feature List (service pages) ---------- */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 60px;
  margin-top: 40px;
}
.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ice);
}
.feature-item:last-child,
.feature-item:nth-last-child(2) { border-bottom: none; }
.feature-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--steel-bright);
  flex-shrink: 0;
  line-height: 1;
  min-width: 50px;
}
.feature-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-item p { font-size: 14px; color: var(--charcoal); margin: 0; line-height: 1.6; }

/* ---------- Process ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel-bright), var(--steel-bright), transparent);
  opacity: 0.3;
}
.step { text-align: center; position: relative; }
.step-circle {
  width: 64px; height: 64px;
  background: var(--navy);
  border: 1px solid var(--steel-bright);
  border-radius: 50%;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--steel-bright);
  position: relative;
  z-index: 2;
  transition: all .4s var(--ease);
}
.step:hover .step-circle {
  background: var(--steel-bright);
  color: var(--navy-deep);
  transform: scale(1.1);
}
.step h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--white);
}
.step p { font-size: 14px; color: var(--steel); padding: 0 12px; }

/* ---------- Areas ---------- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.area-tag {
  padding: 12px 24px;
  border: 1px solid var(--steel);
  background: var(--ice);
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .3s var(--ease);
  cursor: default;
}
.area-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.testimonial {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  transition: transform .4s var(--ease);
}
.section.alt .testimonial { background: var(--white); }
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(27, 42, 74, 0.15);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px; left: 32px;
  font-family: 'Fraunces', serif;
  font-size: 120px;
  color: var(--steel);
  opacity: 0.4;
  line-height: 1;
}
.testimonial p {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy);
  margin: 40px 0 32px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--ice);
}
.author-initials {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--steel-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 16px;
}
.author-info strong { display: block; font-size: 14px; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.author-info span { font-size: 12px; color: var(--charcoal); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--ice);
  padding: 28px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-q h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}
.faq-toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--steel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
  flex-shrink: 0;
  transition: all .3s var(--ease);
}
.faq-item.open .faq-toggle {
  background: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .3s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 20px; }
.faq-a p { color: var(--charcoal); font-size: 16px; line-height: 1.7; max-width: 720px; }

/* ---------- CTA ---------- */
.cta-final {
  padding: 140px 6vw;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(200, 216, 232, 0.12), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(27, 42, 74, 0.5), transparent 50%);
}
.cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-final .section-label { color: var(--steel-bright); }
.cta-final .section-label::before { background: var(--steel-bright); }
.cta-final h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--white);
}
.cta-final h2 em { font-style: italic; color: var(--steel-bright); }
.cta-final p { color: var(--steel); font-size: 18px; max-width: 540px; margin: 0 auto 48px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: var(--steel);
  padding: 80px 6vw 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(232, 237, 245, 0.1);
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-logo span { color: var(--steel-bright); }
.footer-tagline { color: var(--steel); font-size: 14px; max-width: 320px; line-height: 1.7; }
.footer-col h5 {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--steel);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .3s var(--ease);
}
.footer-col a:hover { color: var(--steel-bright); }
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.1em;
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--navy);
}
.contact-info h2 em { font-style: italic; color: var(--charcoal); }
.contact-info > p {
  color: var(--charcoal);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 380px;
}
.contact-meta { margin-top: 24px; }
.contact-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ice);
}
.contact-meta-item:last-child { border-bottom: none; }
.contact-meta-item .label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.contact-meta-item .value {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--navy);
  text-decoration: none;
  transition: color .3s;
}
.contact-meta-item .value:hover { color: var(--steel-bright); }
.contact-form-wrap {
  background: var(--ice);
  padding: 56px 48px;
  position: relative;
}
.contact-form-wrap h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-wrap .sub {
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-field label .req { color: #c44; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1px solid var(--steel);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--navy);
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
  border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(168, 192, 220, 0.25);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 18px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all .35s var(--ease);
  width: 100%;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -10px rgba(15, 26, 51, 0.5);
}
.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.form-disclaimer::before {
  content: '✓';
  color: var(--navy);
  font-weight: bold;
}
.form-success {
  display: none;
  background: var(--white);
  border: 1px solid var(--navy);
  padding: 32px 24px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success h4 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-success p { color: var(--charcoal); font-size: 15px; }

/* ---------- Image System ---------- */

/* Hero background image (home + service pages) */
.hero-image,
.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-image img,
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.7) contrast(1.05);
  animation: kenBurns 24s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -2%); }
}
.hero::after,
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,26,51,0.4) 0%, rgba(15,26,51,0.75) 60%, rgba(15,26,51,0.95) 100%);
  z-index: 1;
}
.hero > .hero-mesh,
.hero > .hero-grid,
.page-hero > .hero-mesh,
.page-hero > .hero-grid { z-index: 1; }
.hero-content,
.page-hero-inner { z-index: 3 !important; }
.hero-meta { z-index: 3 !important; }

/* Pillar card images (dual pillars on home) */
.pillar-card { z-index: 1; }
.pillar-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  opacity: 0.18;
  transition: opacity .5s var(--ease), transform .8s var(--ease);
}
.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pillar-card:hover .pillar-image { opacity: 0.28; transform: scale(1.05); }

/* Image+text feature row (alternating, used on service pages) */
.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reversed { grid-template-columns: 1fr 1.1fr; }
.feature-row.reversed .feature-row-image { order: 2; }
.feature-row.reversed .feature-row-text { order: 1; }
.feature-row-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ice);
}
.feature-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.feature-row:hover .feature-row-image img { transform: scale(1.05); }
.feature-row-image::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  width: 60px; height: 1px;
  background: var(--steel-bright);
  z-index: 2;
}
.feature-row-text h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}
.feature-row-text h3 em { font-style: italic; color: var(--charcoal); }
.feature-row-text p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.feature-row-tag {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

/* Service card with image */
.service-card-img {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--white);
  transition: transform .5s var(--ease);
  cursor: pointer;
}
.service-card-img:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -20px rgba(27,42,74,.3); }
.service-card-img .img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ice);
}
.service-card-img .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.service-card-img:hover .img-wrap img { transform: scale(1.08); }
.service-card-img .img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27,42,74,0.7) 100%);
  z-index: 1;
}
.service-card-img .card-body { padding: 32px 28px 36px; }
.service-card-img .service-num {
  font-family: 'Fraunces', serif;
  font-size: 12px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.service-card-img h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.service-card-img p {
  color: var(--charcoal);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-card-img .service-arrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap .3s var(--ease);
}
.service-card-img:hover .service-arrow { gap: 16px; color: var(--navy-deep); }

/* Lazy load fade-in */
img[loading="lazy"] {
  transition: opacity .8s var(--ease);
}
img.lazy-loading { opacity: 0; }
img.lazy-loaded { opacity: 1; }

/* About section portrait image */
.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ice);
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about-portrait:hover img { transform: scale(1.04); }
.about-portrait::before {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 1px solid var(--steel-bright);
  z-index: 2;
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .feature-row.reversed .feature-row-image { order: 1; }
  .feature-row.reversed .feature-row-text { order: 2; }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { padding: 8px 16px; font-size: 12px; }
  .pillars-dual { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat-num { font-size: 48px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .mini-pillars { grid-template-columns: 1fr; }
  .section { padding: 80px 6vw; }
  .section-header { margin-bottom: 50px; }
  .service-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .feature-item { border-bottom: 1px solid var(--ice) !important; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .hero-meta { flex-direction: column; gap: 30px; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 140px 6vw 70px; }
}
