:root {
  --ink: #161a1d;
  --ink-soft: #343b40;
  --steel: #667078;
  --line: #d7d2c8;
  --paper: #f6f2ea;
  --paper-strong: #fffdf8;
  --concrete: #e4e0d7;
  --olive: #5f6f5d;
  --signal: #d3b24a;
  --oxide: #874f3b;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(22, 26, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 242, 234, 0.9);
  border-bottom: 1px solid rgba(22, 26, 29, 0.1);
  backdrop-filter: blur(14px);
}

.site-header.solid {
  background: var(--paper-strong);
}

.header-inner,
.section,
.facts,
.site-footer,
.contact-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--signal);
  border-radius: 6px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--steel);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(95, 111, 93, 0.12);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper-strong);
  border-radius: 6px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(12, 15, 17, 0.82), rgba(12, 15, 17, 0.46) 44%, rgba(12, 15, 17, 0.1)),
    linear-gradient(0deg, rgba(12, 15, 17, 0.58), rgba(12, 15, 17, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 72px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
}

.section-kicker {
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-cta h2,
.legal-content h1 {
  margin: 0;
  max-width: 820px;
  line-height: 1.02;
  font-size: 4.7rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--signal);
  color: var(--ink);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #e0c05c;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  transform: translateY(-28px);
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.fact {
  min-height: 128px;
  padding: 22px;
  background: var(--paper-strong);
}

.fact span {
  display: block;
  margin-bottom: 12px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  line-height: 1.25;
  font-size: 1.08rem;
}

.section {
  padding: 72px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.section h2,
.contact-cta h2,
.legal-content h1 {
  font-size: 3.2rem;
}

.section-copy {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-copy p {
  margin: 0 0 18px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.use-card {
  min-height: 260px;
  padding: 24px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.use-card span {
  color: var(--oxide);
  font-size: 0.84rem;
  font-weight: 900;
}

.use-card h3 {
  margin: 52px 0 12px;
  font-size: 1.26rem;
  line-height: 1.2;
}

.use-card p {
  margin: 0;
  color: var(--steel);
}

.band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  background: var(--ink);
  color: var(--white);
}

.band-media img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.band-content {
  padding: 86px max(40px, calc((100vw - 1180px) / 2)) 86px 72px;
}

.band-content h2 {
  max-width: 640px;
}

.feature-list {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-list > div {
  padding: 22px 0;
  background: var(--ink);
}

.feature-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--signal);
  font-size: 1.05rem;
}

.feature-list p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 740px;
}

.section-heading p:last-child {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.showcase-video {
  margin: 42px 0 0;
}

.showcase-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-video figcaption {
  margin-top: 12px;
  color: var(--steel);
  font-size: 0.95rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
  margin-top: 42px;
}

.gallery-item {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--concrete);
  cursor: zoom-in;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.location {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
}

.location-copy p {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--oxide);
  font-weight: 900;
  text-underline-offset: 5px;
}

.address-panel {
  padding: 28px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.address-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.address-panel strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.25;
}

.address-panel p {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.address-panel a {
  color: var(--ink);
  font-weight: 800;
}

.contact-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
  padding: 42px;
  background: var(--olive);
  color: var(--white);
  border-radius: 8px;
}

.contact-cta p:not(.section-kicker) {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-cta .section-kicker {
  color: var(--signal);
}

.contact-cta .button.secondary {
  background: transparent;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--steel);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 64px 24px 24px;
  background: rgba(12, 15, 17, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 84svh;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 800;
}

.legal-page {
  background: var(--paper-strong);
}

.legal-content {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 84px;
}

.legal-visual {
  height: 310px;
  margin: 0 0 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--concrete);
}

.legal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.legal-content h1 {
  margin-bottom: 42px;
}

.legal-content section {
  max-width: 820px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 1.4rem;
}

.legal-content p {
  margin: 0 0 12px;
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 3.7rem;
  }

  .section h2,
  .contact-cta h2,
  .legal-content h1 {
    font-size: 2.6rem;
  }

  .facts,
  .use-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .band,
  .location,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .band-media img {
    min-height: 420px;
  }

  .band-content {
    padding: 56px 40px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .section,
  .facts,
  .site-footer,
  .contact-cta,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--paper-strong);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 76svh;
  }

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

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

  .hero-copy {
    font-size: 1rem;
  }

  .facts,
  .use-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .facts {
    transform: none;
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .section {
    padding: 58px 0;
  }

  .section h2,
  .contact-cta h2,
  .legal-content h1 {
    font-size: 2.15rem;
  }

  .legal-visual {
    height: 220px;
    margin-bottom: 38px;
  }

  .split {
    gap: 24px;
  }

  .use-card {
    min-height: 0;
  }

  .use-card h3 {
    margin-top: 34px;
  }

  .band-content {
    padding: 48px 20px;
  }

  .gallery {
    grid-auto-rows: 260px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-cta {
    width: calc(100% - 28px);
    margin-bottom: 52px;
    padding: 28px;
  }

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

@media (max-width: 460px) {
  .brand small {
    display: none;
  }

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

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
