:root {
  color-scheme: light;
  --ink: #151514;
  --paper: #f7f3eb;
  --paper-strong: #fffaf2;
  --muted: #676257;
  --line: rgba(21, 21, 20, 0.16);
  --olive: #3f5338;
  --teal: #315b52;
  --brick: #b74531;
  --gold: #c9a44c;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(10, 13, 12, 0.22);
}

* {
  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;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

.hero {
  position: relative;
  min-height: min(760px, 78svh);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 12, 11, 0.78), rgba(8, 12, 11, 0.34) 48%, rgba(8, 12, 11, 0.1)),
    url("assets/photos/hero-westfalia-sunset.jpg") center 52% / cover no-repeat;
  overflow: clip;
}

.nav {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
}

.hero-copy {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 9vw, 116px) 0 80px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 8.3rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.9vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: normal;
  text-align: center;
}

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

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

.snapshot {
  background: var(--ink);
  color: var(--white);
}

.snapshot-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 1px;
}

.snapshot p {
  margin: 0;
  padding: 20px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.72rem, 1.5vw, 0.88rem);
}

.snapshot p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}

.rig-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.rig-copy h2,
.section-head h2,
.notes-copy h2,
.contact-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.rig-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.rig-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--teal);
}

.rig-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-section {
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
  white-space: nowrap;
}

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

.gallery-card {
  margin: 0;
  min-width: 0;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

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

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  background: var(--teal);
}

.gallery-card-wide img {
  aspect-ratio: 1 / 1.2;
}

.gallery-card figcaption {
  min-height: 64px;
  padding: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.notes-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(26px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.notes-list {
  display: grid;
  gap: 14px;
}

.notes-list article {
  padding: 22px 0 22px 22px;
  border-left: 4px solid var(--teal);
  background: rgba(255, 250, 242, 0.58);
}

.notes-list h3 {
  margin: 0;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.notes-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-band {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto clamp(42px, 7vw, 88px);
  padding: clamp(28px, 5vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 21, 20, 0.9), rgba(49, 91, 82, 0.82)),
    url("assets/photos/night-camp.jpg") center / cover no-repeat;
  border-radius: 8px;
}

.contact-band .eyebrow {
  color: var(--gold);
}

.contact-band h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 38px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .hero {
    min-height: 76svh;
    background:
      linear-gradient(180deg, rgba(8, 12, 11, 0.38), rgba(8, 12, 11, 0.84)),
      url("assets/photos/hero-westfalia-sunset.jpg") center top / cover no-repeat;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-copy {
    padding-top: min(28svh, 190px);
  }

  .snapshot-inner,
  .gallery-grid,
  .notes-section,
  .rig-layout {
    grid-template-columns: 1fr;
  }

  .snapshot p,
  .snapshot p:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .snapshot p:first-child {
    border-top: 0;
  }

  .gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .section-head,
  .contact-band,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .text-link {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .nav,
  .hero-copy,
  .section,
  .snapshot-inner,
  .contact-band,
  .footer {
    width: min(100% - 28px, 1160px);
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .button {
    width: 100%;
  }

  .gallery-card figcaption {
    min-height: auto;
  }
}
