:root {
  --black: #030303;
  --night: #090a0a;
  --charcoal: #111313;
  --panel: #151717;
  --panel-soft: #1b1d1c;
  --ink: #f7f5ee;
  --muted: rgba(247, 245, 238, 0.64);
  --soft: rgba(247, 245, 238, 0.08);
  --line: rgba(247, 245, 238, 0.14);
  --line-strong: rgba(239, 230, 0, 0.28);
  --alm-yellow: #efe600;
  --alm-gold: #c7a32b;
  --alm-red: #d30b16;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(239, 230, 0, 0.035), transparent 420px),
    var(--night);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 5, 5, 0.84);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  line-height: 1;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 750;
}

.site-nav a {
  color: rgba(247, 245, 238, 0.72);
}

.site-nav a:hover {
  color: var(--alm-yellow);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  min-height: 92vh;
  padding: 148px clamp(20px, 5vw, 72px) 80px;
  background:
    radial-gradient(circle at 78% 18%, rgba(239, 230, 0, 0.14), transparent 25%),
    linear-gradient(135deg, #030303 0%, #0b0c0c 58%, #151713 100%);
}

.hero-content {
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--alm-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--alm-red);
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.88;
}

.hero-copy {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 850;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #020202;
  background: var(--alm-yellow);
}

.button.primary:hover {
  background: #fff35a;
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.02);
}

.hero-card {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #000;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: min(62vh, 620px);
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.03);
}

.section {
  padding: 104px clamp(20px, 5vw, 72px);
}

.intro,
.divisions,
.projects,
.concierge {
  background: var(--night);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 110px);
  border-top: 1px solid var(--line);
}

.section h2,
.contact h2 {
  max-width: 920px;
  font-size: clamp(2.15rem, 4.8vw, 5rem);
  line-height: 1;
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.intro-copy p,
.project-copy > p,
.contact p,
.division-card p,
.timeline p,
.values p,
.project-list p,
.service-photo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.values article {
  min-height: 240px;
  padding: 34px clamp(20px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.values span,
.division-card span,
.timeline span {
  color: var(--alm-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.values h3,
.division-card h3,
.timeline h3,
.project-list h3,
.service-photo-card h3 {
  margin: 34px 0 12px;
  font-size: 1.18rem;
}

.section-heading {
  margin-bottom: 40px;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.division-card {
  min-height: 286px;
  padding: 30px;
  background: var(--panel);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.division-card:hover {
  background: var(--panel-soft);
  transform: translateY(-2px);
}

.division-card h3 {
  color: var(--ink);
}

.results-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--black);
}

.result {
  min-height: 230px;
  padding: 44px clamp(20px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.result strong {
  display: block;
  margin-bottom: 16px;
  color: var(--alm-yellow);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1;
}

.result span {
  display: block;
  max-width: 320px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}

.milestones {
  background: var(--charcoal);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline article {
  min-height: 250px;
  padding: 30px;
  background: #0c0d0d;
}

.projects {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.project-photo {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--black);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.project-photo.large {
  grid-column: 1 / -1;
  min-height: 360px;
}

.project-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.86);
  transition: transform 180ms ease, filter 180ms ease;
}

.project-photo:hover img {
  transform: scale(1.025);
  filter: saturate(0.95) contrast(1.08) brightness(0.94);
}

.project-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-left: 2px solid var(--alm-yellow);
  color: var(--ink);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 850;
}

.project-copy > p {
  max-width: 720px;
  margin-top: 24px;
}

.project-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-list article {
  padding: 24px;
  background: var(--panel);
}

.project-list article::before {
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 20px;
  background: var(--alm-yellow);
  content: "";
}

.project-list h3,
.service-photo-card h3 {
  margin-top: 0;
  color: var(--ink);
}

.concierge-layout {
  display: block;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-photo-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.service-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06) brightness(0.9);
  transition: transform 180ms ease, filter 180ms ease;
}

.service-photo-card:hover img {
  transform: scale(1.03);
  filter: saturate(0.98) contrast(1.08) brightness(0.98);
}

.service-photo-card h3,
.service-photo-card p {
  padding-right: 24px;
  padding-left: 24px;
}

.service-photo-card h3 {
  margin-top: 24px;
}

.service-photo-card p {
  padding-bottom: 28px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(36px, 8vw, 120px);
  padding: 104px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(3, 3, 3, 0.94), rgba(13, 14, 14, 0.96)),
    url("assets/pdf-images/page-cover.png");
  background-size: cover;
  background-position: center;
}

.contact p {
  max-width: 640px;
  margin-top: 24px;
}

.contact-panel {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.44);
  box-shadow: var(--shadow);
}

.contact-panel a,
.contact-panel span {
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: rgba(247, 245, 238, 0.82);
  line-height: 1.5;
}

.contact-panel a:hover {
  color: var(--alm-yellow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(247, 245, 238, 0.54);
  background: var(--black);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--alm-yellow);
  font-weight: 900;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

@media (max-width: 1120px) {
  .hero,
  .projects {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 520px;
  }

  .division-grid,
  .values,
  .service-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .timeline,
  .results-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 14px 20px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 26px;
    color: var(--ink);
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding: 112px 20px 54px;
  }

  .hero-content {
    max-width: 350px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 4rem);
    line-height: 0.92;
  }

  .hero-card img {
    height: 420px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-photo,
  .project-photo.large {
    min-height: 250px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section,
  .contact {
    padding: 72px 20px;
  }

  .division-grid,
  .values,
  .service-gallery {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
