:root {
  --font-body: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --ink: #172126;
  --muted: #617078;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: rgba(23, 33, 38, 0.14);
  --blue: #1f5366;
  --green: #4d6f5a;
  --gold: #b98b4b;
  --shadow: 0 22px 60px rgba(16, 27, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 245, 239, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo-wrap {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(12, 22, 28, 0.18);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.76;
}

.site-header.is-scrolled .brand-logo-wrap {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
  opacity: 0.86;
}

nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade,
.hero-content {
  grid-area: 1 / 1;
}

.hero-media {
  position: relative;
  background: #263239;
}

.hero-photo {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1000ms ease, transform 7000ms linear;
}

.hero-photo.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 22, 28, 0.84) 0%, rgba(12, 22, 28, 0.56) 43%, rgba(12, 22, 28, 0.24) 100%),
    linear-gradient(0deg, rgba(12, 22, 28, 0.44) 0%, transparent 38%);
}

.hero-content {
  z-index: 2;
  align-self: end;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 12vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5.9vw, 5.6rem);
  font-weight: 700;
  line-height: 1.02;
}

.lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #111715;
}

.button.primary:hover {
  border-color: var(--white);
  background: var(--white);
}

.button.secondary {
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button.dark:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: -42px auto 0;
  padding: clamp(28px, 5vw, 48px);
  position: relative;
  z-index: 3;
  background: var(--white);
  box-shadow: var(--shadow);
}

.intro-text p {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.65vw, 2.25rem);
  line-height: 1.2;
}

.intro-stat {
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 4vw, 44px);
}

.intro-stat span,
.intro-stat strong {
  display: block;
}

.intro-stat span {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.intro-stat strong {
  font-size: 1.05rem;
}

.section,
.approach,
.photo-band,
.contact {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

#services,
#approach,
#contact {
  scroll-margin-top: 104px;
}

.section {
  padding: clamp(64px, 9vw, 104px) 0 clamp(42px, 6vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 36px;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.3vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
}

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

.service-grid article {
  min-height: 230px;
  padding: 30px 30px 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-grid article + article {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.service-grid span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-grid p,
.approach p,
.principles span,
footer {
  color: var(--muted);
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.8fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
  padding: clamp(48px, 7vw, 76px) 0;
  border-top: 1px solid var(--line);
}

.approach-copy p:last-child {
  max-width: 620px;
  font-size: 1.05rem;
}

.principles {
  display: grid;
  gap: 18px;
}

.principles div {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.principles strong,
.principles span {
  display: block;
}

.principles strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.photo-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  padding-bottom: clamp(70px, 10vw, 120px);
}

figure {
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

figure img {
  height: clamp(280px, 40vw, 440px);
  object-fit: cover;
  transition: transform 500ms ease;
}

figure:hover img {
  transform: scale(1.04);
}

figcaption {
  padding: 12px 0 0;
  color: var(--muted);
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 56px;
  padding: clamp(36px, 6vw, 58px);
  background: var(--blue);
  color: var(--white);
}

.contact .button {
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.02em;
}

.contact h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.75rem);
}

.contact .eyebrow {
  color: #d8b071;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 4vw, 56px) 34px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

footer p {
  max-width: 620px;
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    gap: 12px;
    padding-top: 11px;
    font-size: 0.68rem;
  }

  .brand strong {
    max-width: 180px;
    white-space: normal;
    line-height: 1.08;
  }

  .brand-logo-wrap {
    width: 56px;
    height: 56px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .intro,
  .approach,
  .photo-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro {
    margin-top: 0;
  }

  .intro-stat {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .service-grid article + article {
    min-height: 0;
    padding: 26px 0;
    border-left: 0;
  }

  .service-grid span {
    margin-bottom: 28px;
  }

  .contact {
    justify-items: start;
  }

  footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
    display: grid;
    gap: 16px;
  }

  .site-header.is-scrolled {
    color: var(--white);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content,
  .intro,
  .section,
  .approach,
  .photo-band,
  .contact {
    width: min(100% - 32px, 1120px);
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .button {
    width: 100%;
  }
}
