:root {
  --ink: #172334;
  --ink-2: #233247;
  --cream: #f3efe6;
  --paper: #fbf9f4;
  --gold: #aa8b53;
  --gold-soft: #d2c09b;
  --muted: #6f756f;
  --line: rgba(23, 35, 52, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  transition: background 260ms ease, box-shadow 260ms ease, padding 260ms ease;
}

.site-header.scrolled {
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(23,35,52,.08);
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: .02em;
}

.brand-number {
  font-family: "Libre Caslon Display", serif;
  font-size: 2rem;
  line-height: 1;
}

.brand-llc {
  font-size: .7rem;
  letter-spacing: .22em;
  color: var(--gold);
  font-weight: 600;
}

.nav { display: flex; gap: 28px; }
.nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 600;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: right 220ms ease;
}
.nav a:hover::after { right: 0; }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 8vw 100px 7vw;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 600;
}

h1, h2, h3 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-weight: 400;
  margin-top: 0;
}

h1 {
  font-size: clamp(4.3rem, 7.3vw, 8.2rem);
  line-height: .88;
  letter-spacing: -.045em;
  margin-bottom: 34px;
}

.hero-text {
  max-width: 580px;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  margin: 0 0 32px;
}

.text-link {
  width: fit-content;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .13em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #26384e;
}

.hero-image {
  position: absolute;
  inset: -3%;
  background:
    linear-gradient(rgba(20, 32, 47, .1), rgba(20, 32, 47, .32)),
    url('3912-lighthouse.png') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroDrift 14s ease-out forwards;
}

.hero-mark {
  position: absolute;
  right: 4vw;
  bottom: 5vh;
  color: rgba(255,255,255,.9);
  font-family: "Libre Caslon Display", serif;
  font-size: clamp(3.8rem, 8vw, 8rem);
  letter-spacing: -.06em;
  line-height: .8;
  text-shadow: 0 8px 30px rgba(0,0,0,.16);
}
.hero-mark span { color: var(--gold-soft); }

.section {
  padding: 120px 7vw;
}

.work-section { background: var(--paper); }

.section-heading {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.035em;
}

.project-grid {
  border-top: 1px solid var(--line);
}

.project-card {
  display: grid;
  grid-template-columns: 80px 1fr 50px;
  gap: 24px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, background 220ms ease, padding 220ms ease;
  color: inherit;
text-decoration: none;
}

.project-card:hover {
  transform: translateX(8px);
  background: rgba(170,139,83,.04);
  padding-left: 18px;
  padding-right: 18px;
}

.project-number,
.project-type {
  color: var(--gold);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 600;
}
.project-type { margin: 0 0 8px; }
.project-card h3 {
  font-size: clamp(2rem, 3vw, 3.6rem);
  margin-bottom: 10px;
  line-height: 1;
}
.project-card p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}
.project-arrow {
  font-size: 1.5rem;
  color: var(--gold);
}

.statement-section {
  background: var(--cream);
  padding: 110px 7vw 130px;
}
.statement-rule {
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
}
.statement-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 50px;
  padding-top: 48px;
}
.statement-copy {
  max-width: 820px;
  font-family: "Libre Caslon Display", serif;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1.13;
  letter-spacing: -.025em;
}
.statement-copy p { margin-top: 0; }
.statement-copy p + p {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0;
  max-width: 650px;
  color: var(--muted);
  margin-top: 34px;
}

.contact-section {
  background: var(--ink);
  color: white;
  padding: 110px 7vw 30px;
}
.contact-inner {
  max-width: 900px;
  padding-bottom: 100px;
}
.eyebrow.light { color: var(--gold-soft); }
.contact-inner h2 {
  font-size: clamp(3.5rem, 6vw, 7rem);
  line-height: .92;
  letter-spacing: -.04em;
  margin-bottom: 34px;
}
.contact-copy { color: rgba(255,255,255,.62); margin-bottom: 8px; }
.contact-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
    margin-right: 22px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.5);
  font-size: .76rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 760ms ease, transform 760ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 260ms; }

@keyframes heroDrift {
  from { transform: scale(1.09) translate3d(0, 0, 0); }
  to { transform: scale(1.02) translate3d(-1.2%, -.8%, 0); }
}

@media (max-width: 900px) {
  .site-header { padding: 20px 5vw; }
  .nav { gap: 14px; }
  .nav a { font-size: .64rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 72vh; padding: 130px 7vw 80px; }
  .hero-visual { min-height: 52vh; }
  .section-heading,
  .statement-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 10px; }
}

@media (max-width: 620px) {
  .site-header { align-items: flex-start; }
  .nav { display: none; }
  .hero-copy { min-height: 70vh; }
  .section,
  .statement-section,
  .contact-section { padding-left: 6vw; padding-right: 6vw; }
  .project-card { grid-template-columns: 42px 1fr 26px; gap: 12px; }
  .footer-row { flex-direction: column; }
}
.contact-link {
    display: block;
    width: fit-content;
    margin-right: 0;
    margin-bottom: 12px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
