/* Base reset and tokens */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-page: #050608;
  --bg-elevated: #0b0f17;
  --bg-strong: #070a10;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --accent-gold: #f2b866;
  --accent-gold-soft: #f4c983;
  --accent-muted: #5b6b83;
  --text-main: #e5e7eb;
  --text-soft: #9ca3af;
  --text-strong: #f9fafb;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.7);
}

html {
  min-height: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
}

body {
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

/* Full-site background image (all pages) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(5, 6, 8, 0.92) 0%, rgba(5, 6, 8, 0.88) 50%, rgba(2, 3, 6, 0.95) 100%),
    url("images/construction-2.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ceo-body::before {
  background-image:
    linear-gradient(180deg, rgba(5, 6, 8, 0.92) 0%, rgba(5, 6, 8, 0.88) 50%, rgba(2, 3, 6, 0.95) 100%),
    url("images/construction-2.jpeg");
}

/* Layout utilities */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.neutral {
  background: radial-gradient(circle at top left, rgba(17, 24, 39, 0.88) 0%, rgba(2, 3, 7, 0.9) 60%);
}

.dark-panel {
  background: linear-gradient(135deg, rgba(5, 6, 8, 0.9), rgba(11, 15, 23, 0.92));
}

/* Typography */
h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

h1 {
  font-size: clamp(2.25rem, 3.2vw + 1.5rem, 3.25rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.85rem, 2.2vw + 1.2rem, 2.35rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  margin: 0 0 0.75rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--accent-gold-soft);
  margin-bottom: 0.9rem;
}

.section-eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.21em;
  color: var(--accent-gold-soft);
  margin-bottom: 0.6rem;
}

.section-eyebrow.subtle {
  color: var(--accent-muted);
}

.body-large {
  font-size: 1rem;
  color: var(--text-main);
}

.muted {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.muted.small {
  font-size: 0.85rem;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.4rem;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(3, 7, 18, 0.96));
  border-bottom: 1px solid rgba(31, 41, 55, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.2rem;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  text-decoration: none;
  color: inherit;
}

.brand-line {
  display: block;
  border-bottom: 2px solid var(--accent-gold-soft);
  padding-bottom: 0.12rem;
  line-height: 1.2;
}

.brand-wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.brand-llc {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent-gold-soft);
  text-transform: uppercase;
  margin-left: 0.2rem;
}

.brand-tagline {
  display: block;
  font-size: 0.7rem;
  color: var(--accent-muted);
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--text-strong);
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(55, 65, 81, 0.8);
}

.nav-link-active {
  color: var(--text-strong);
}

.nav-pill {
  border-color: rgba(148, 163, 184, 0.5);
}

.nav-pill.nav-link-active,
.nav-pill:hover {
  border-color: var(--accent-gold-soft);
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.08), rgba(15, 23, 42, 0.98));
  color: var(--accent-gold-soft);
}

/* Hero */
.hero {
  padding: 4.2rem 0 3.8rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.05fr);
  gap: 3.2rem;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 0.7rem;
}

.hero-lead {
  color: var(--text-soft);
  max-width: 520px;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.7rem 0 1.9rem;
}

.hero-grid-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.stat-block {
  border-radius: 14px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 0.8rem 0.9rem;
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.28), rgba(15, 23, 42, 0.95));
}

.stat-number {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-gold-soft);
  margin-bottom: 0.15rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
  min-height: 280px;
}

.hero-card {
  border-radius: 22px;
  overflow: hidden;
  position: absolute;
  box-shadow: var(--shadow-soft);
}

.hero-main {
  inset: 0;
  background-image:
    linear-gradient(160deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.92)),
    url("images/hero.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(249, 250, 251, 0.02), transparent 52%);
}

.hero-label {
  position: absolute;
  left: 1.4rem;
  bottom: 1.3rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: var(--text-strong);
  font-size: 0.85rem;
}

.hero-label small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.hero-secondary {
  width: 56%;
  right: -8%;
  bottom: -10%;
  background-image:
    linear-gradient(145deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.95)),
    url("images/construction-1.jpeg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.hero-secondary-content {
  padding: 1.1rem 1.2rem;
}

.badge {
  display: inline-flex;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
}

.address {
  font-size: 0.9rem;
  color: var(--text-strong);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, #f2b866, #f97316);
  color: #111827;
  box-shadow: 0 18px 40px rgba(248, 181, 80, 0.5);
}

.btn.primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.7);
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.85);
}

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

/* Two column sections */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: flex-start;
}

.two-col.stacked {
  gap: 2.2rem;
}

/* Services cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.card {
  background: radial-gradient(circle at top left, rgba(17, 24, 39, 0.92), rgba(2, 6, 23, 0.94));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
  padding: 1.6rem 1.5rem 1.4rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  color: var(--text-main);
}

.service-card li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.25rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #f2b866);
}

/* Work section */
.work-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.work-column {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 1.4rem 1.3rem 1.3rem;
  background-size: cover;
  background-position: center;
}

.work-column::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.94));
  z-index: 0;
}

.work-column:nth-child(1) {
  background-image: url("images/construction-1.jpeg");
}

.work-column:nth-child(2) {
  background-image: url("images/construction-2.jpeg");
}

.work-column:nth-child(3) {
  background-image: url("images/construction-3.jpeg");
}

.work-column h3,
.work-column p {
  position: relative;
  z-index: 1;
}

.work-column h3 {
  font-size: 1.02rem;
}

.work-column p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* Contact band */
.contact-band {
  background: radial-gradient(circle at top, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.92) 55%, rgba(0, 0, 0, 0.94) 100%);
}

.contact-band-ceo {
  background: radial-gradient(circle at top, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.92) 55%, rgba(0, 0, 0, 0.94) 100%);
}

.contact-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}

.contact-title {
  margin-bottom: 0.7rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Contact section (inviting CTA) */
.contact-section {
  background: radial-gradient(circle at top, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.92) 55%, rgba(0, 0, 0, 0.94) 100%);
}

.contact-section-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-headline {
  margin-bottom: 0.6rem;
}

.contact-lead {
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 1.8rem;
}

.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.92), rgba(2, 6, 23, 0.96));
  padding: 2rem 1.8rem;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold-soft);
  margin-bottom: 0.4rem;
}

.contact-email {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-gold-soft);
  text-decoration: none;
  margin-bottom: 0.5rem;
  word-break: break-all;
  transition: color 0.2s ease;
}

.contact-email:hover {
  color: var(--text-strong);
}

.contact-address {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
}

.contact-cta {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: rgba(2, 6, 23, 0.92);
  padding: 1.1rem 0 1.3rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-company {
  display: block;
  font-weight: 500;
  color: var(--text-main);
}

.footer-address {
  display: block;
}

.footer-contact {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--accent-gold-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact:hover {
  color: var(--text-strong);
}

.footer-meta span {
  white-space: nowrap;
}

/* CEO page */
.hero-ceo {
  padding-top: 3.8rem;
}

.hero-layout-ceo {
  gap: 3.4rem;
}

.ceo-visual {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.ceo-photo {
  border-radius: 22px;
  background-image:
    linear-gradient(165deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.95)),
    url("https://images.pexels.com/photos/5668515/pexels-photo-5668515.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
  min-height: 220px;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.ceo-photo-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.08), transparent 55%);
}

.ceo-card {
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 1.3rem 1.4rem 1.2rem;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.9);
}

.ceo-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 0.4rem;
}

.ceo-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.meta-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-muted);
  margin-bottom: 0.25rem;
}

.meta-value {
  font-size: 0.9rem;
  color: var(--text-main);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.6rem;
}

.value-card {
  border-radius: 16px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 1));
  padding: 1.4rem 1.3rem 1.3rem;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
}

.story-section {
  background: radial-gradient(circle at top left, rgba(2, 6, 23, 0.88) 0%, rgba(0, 0, 0, 0.92) 85%);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.5fr);
  gap: 3rem;
}

/* ========== Responsive: tablet ========== */
@media (max-width: 980px) {
  .container {
    padding: 0 1.35rem;
  }

  .section {
    padding: 3.8rem 0;
  }

  .hero-layout,
  .hero-layout-ceo,
  .two-col,
  .contact-band-inner,
  .story-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
    min-height: 260px;
  }

  .hero-secondary {
    display: none;
  }

  .hero-grid-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .stat-block {
    padding: 1rem 1rem;
  }

  .card-grid,
  .work-layout,
  .value-grid,
  .ceo-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section-inner {
    max-width: 100%;
  }

  .contact-card {
    padding: 1.75rem 1.5rem;
  }
}

/* ========== Responsive: mobile ========== */
@media (max-width: 720px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 1.8rem;
  }

  /* Header: compact row, touch-friendly */
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
  }

  .brand {
    gap: 0.1rem;
  }

  .brand-wordmark {
    font-size: 1.15rem;
  }

  .brand-llc {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  .brand-tagline {
    font-size: 0.6rem;
  }

  .nav {
    gap: 0.5rem;
    justify-content: flex-end;
  }

  .nav-link {
    padding: 0.5rem 0.85rem;
    min-height: 40px;
    font-size: 0.85rem;
  }

  /* Hero */
  .hero {
    padding: 2.5rem 0 2.8rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 5vw + 1rem, 2.25rem);
    line-height: 1.2;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-actions {
    margin: 1.4rem 0 1.6rem;
    gap: 0.75rem;
  }

  .btn {
    padding: 0.85rem 1.4rem;
    min-height: 48px;
    font-size: 0.95rem;
  }

  .hero-grid-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }

  .hero-visual {
    min-height: 220px;
  }

  /* Two-col sections */
  .two-col {
    gap: 2rem;
  }

  .two-col .body-large,
  .two-col .muted {
    font-size: 0.98rem;
  }

  /* Cards */
  .card-grid,
  .work-layout,
  .value-grid,
  .ceo-meta,
  .hero-grid-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
  }

  .card {
    padding: 1.5rem 1.35rem;
  }

  .work-column {
    padding: 1.35rem 1.25rem;
  }

  .work-column h3 {
    font-size: 1.05rem;
  }

  /* Contact section */
  .contact-section-inner {
    text-align: center;
  }

  .contact-headline {
    font-size: clamp(1.6rem, 4vw + 1rem, 2rem);
  }

  .contact-lead {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .contact-card {
    padding: 1.6rem 1.35rem;
  }

  .contact-email {
    font-size: 1rem;
    word-break: break-all;
  }

  .contact-cta {
    min-height: 48px;
    max-width: 100%;
  }

  .contact-band-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 0;
    font-size: 0.85rem;
  }

  .footer-contact {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* CEO page */
  .hero-ceo {
    padding-top: 2.5rem;
  }

  .ceo-photo {
    min-height: 200px;
  }

  .ceo-card {
    padding: 1.25rem 1.2rem;
  }

  .value-card {
    padding: 1.3rem 1.2rem;
  }

  .story-layout {
    gap: 2rem;
  }
}

/* ========== Responsive: small mobile ========== */
@media (max-width: 480px) {
  .container {
    padding: 0 1.1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .brand-wordmark {
    font-size: 1.05rem;
  }

  .brand-llc,
  .brand-tagline {
    font-size: 0.58rem;
  }

  .nav-link {
    padding: 0.45rem 0.7rem;
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .contact-headline {
    font-size: 1.5rem;
  }
}

