@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --ink: #14161a;
  --ink-2: #1f2226;
  --steel: #565d66;
  --steel-light: #8b929b;
  --paper: #f3f1ec;
  --paper-2: #e9e6de;
  --accent: #ff5a1f;
  --accent-dark: #c73f0f;
  --accent-ink: #a8330d;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: rgba(20, 22, 26, 0.92);
  backdrop-filter: blur(6px);
}

.logo {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-top: 5px;
  text-transform: uppercase;
}

nav.main-nav {
  display: flex;
  gap: 36px;
}
nav.main-nav a {
  color: var(--paper-2);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--white);
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform .35s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  color: var(--paper);
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-nav a.active { color: var(--accent); }

/* ── Split hero (signature layout: text panel + full-height photo, not a full-bleed overlay) ── */
.split-hero {
  display: flex;
  min-height: 100vh;
}
.split-hero.split-hero-sm { min-height: 62vh; }
.split-hero-media {
  flex: 1 1 52%;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
}
.split-hero-text {
  flex: 1 1 48%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 60px 60px;
}
.split-hero.reverse { flex-direction: row-reverse; }
.split-hero.no-media .split-hero-text { flex: 1 1 100%; max-width: 780px; padding-left: 60px; }
.hero-label {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.split-hero-text h1 {
  font-size: clamp(32px, 3.6vw, 52px);
  margin-bottom: 22px;
}
.split-hero-text p {
  max-width: 440px;
  font-size: 16px;
  color: var(--paper-2);
  font-weight: 300;
  margin-bottom: 30px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 16px 30px;
  transition: background .2s;
  align-self: flex-start;
}
.btn:hover { background: var(--accent-dark); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--ink); }

/* ── Sections ── */
section { padding: 100px 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-alt { background: var(--paper-2); }

.eyebrow {
  color: var(--accent-ink);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.section-dark .eyebrow { color: var(--accent); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 26px;
}

.lede {
  font-size: 18px;
  max-width: 640px;
  color: var(--steel);
  font-weight: 300;
}
.section-dark .lede { color: var(--steel-light); }

/* ── Tag strip: thin divider band of keywords, not a stats grid ── */
.tag-strip {
  background: var(--ink);
  padding: 26px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.tag-strip span {
  color: var(--paper-2);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.tag-strip span.dot { color: var(--accent); }

/* ── Stacked rows: alternating text/image, replaces card grids everywhere ── */
.stacked-row {
  display: flex;
  align-items: stretch;
  gap: 60px;
  padding: 56px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.stacked-row:last-child { border-bottom: 1px solid rgba(0,0,0,.08); }
.section-dark .stacked-row { border-top: 1px solid rgba(255,255,255,.1); }
.section-dark .stacked-row:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.stacked-row.reverse { flex-direction: row-reverse; }
.stacked-row-media { flex: 0 0 40%; }
.stacked-row-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); min-height: 260px; }
.stacked-row-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.stacked-num {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent-ink);
  margin-bottom: 14px;
}
.section-dark .stacked-num { color: var(--accent); }
.stacked-row-content h3 { font-size: 22px; margin-bottom: 12px; }
.stacked-row-content p { color: var(--steel); font-size: 15px; font-weight: 300; margin-bottom: 10px; }
.section-dark .stacked-row-content p { color: var(--steel-light); }
.stacked-row-content .service-link { margin-top: 6px; }

/* ── Spec list: numbered list replacing the old equal-width value cards ── */
.spec-list { margin-top: 10px; }
.spec-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 30px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.spec-item:last-child { border-bottom: 1px solid rgba(0,0,0,.08); }
.section-dark .spec-item { border-top: 1px solid rgba(255,255,255,.1); }
.section-dark .spec-item:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.spec-num {
  flex: 0 0 64px;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  color: var(--accent-ink);
}
.section-dark .spec-num { color: var(--accent); }
.spec-item h3 { font-size: 18px; margin-bottom: 8px; }
.spec-item p { color: var(--steel); font-size: 15px; font-weight: 300; }
.section-dark .spec-item p { color: var(--steel-light); }

/* ── Quote: full-bleed photo, left-aligned type, no card/no quote marks ── */
.quote-full {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.quote-full::before { content: ''; position: absolute; inset: 0; background: rgba(20,22,26,.74); }
.quote-full .container { position: relative; z-index: 2; }
.quote-full blockquote {
  max-width: 760px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.gallery-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .3s, transform .3s;
}
.gallery-grid a { overflow: hidden; display: block; }
.gallery-grid img:hover { filter: grayscale(0); transform: scale(1.03); }
.gallery-grid a.tall { grid-row: span 2; }
.gallery-grid a.tall img { height: 100%; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact-card {
  background: var(--white);
  padding: 40px;
  border-left: 3px solid var(--accent);
  margin-bottom: 20px;
}
.contact-card .label { color: var(--accent-ink); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.contact-card .value { font-family: 'Oswald', sans-serif; font-size: 22px; }
.contact-card a.value:hover { color: var(--accent-ink); }

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

/* ── Footer + CTA merged into one band ── */
.footer-cta {
  background: var(--ink);
  color: var(--steel-light);
  padding-top: 90px;
}
.footer-cta-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 70px;
}
.footer-cta-top h2 { color: var(--white); font-size: clamp(28px, 4vw, 46px); max-width: 560px; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
footer .logo span, .footer-cta .logo span { color: var(--accent); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0 30px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--steel);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── Reveal animation ── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .split-hero, .split-hero.reverse { flex-direction: column; min-height: auto; }
  .split-hero-media { min-height: 280px; }
  .split-hero-text { padding: 60px 24px; }
  .stacked-row, .stacked-row.reverse { flex-direction: column; gap: 26px; }
  .stacked-row-media img { min-height: 220px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .tall { height: 460px; grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .tall { grid-row: span 1; }
  .container { padding: 0 20px; }
  .site-header { padding: 18px 20px; }
  .spec-item { gap: 18px; }
}
