:root {
  --ink: #17201c;
  --muted: #5d6a63;
  --paper: #f6f3ec;
  --line: #d7d1c3;
  --river: #1f5d66;
  --reed: #5d7d48;
  --clay: #b25d35;
  --gold: #d6a34b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 243, 236, 0.92);
  border-bottom: 1px solid rgba(23, 32, 28, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

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

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: 20px;
  color: #2d3933;
  font-size: 14px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #12201d;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 22, 20, 0.88), rgba(12, 22, 20, 0.55) 45%, rgba(12, 22, 20, 0.15)),
    linear-gradient(0deg, rgba(12, 22, 20, 0.28), rgba(12, 22, 20, 0.06));
}

.hero-content {
  position: relative;
  max-width: 690px;
  padding: 130px clamp(20px, 6vw, 72px) 70px;
  color: #fff;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
}

.button.primary {
  background: var(--gold);
  color: #20170b;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.section,
.band {
  padding: 74px clamp(20px, 6vw, 72px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.product-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffbf2;
}

.product-card p,
.spot-copy p,
.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: block;
  margin-bottom: 22px;
  font-size: 34px;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: center;
  background: #173934;
  color: #fff;
}

.band .eyebrow,
.band p {
  color: #d8c18a;
}

.spot-list {
  display: grid;
  gap: 12px;
}

.spot-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.spot-list span {
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 32px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(36, 43, 38, 0.08);
}

.contact-panel span {
  color: var(--muted);
}

.contact-panel a {
  color: var(--river);
  font-size: 24px;
  font-weight: 900;
}

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

  .hero {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero-content {
    padding-top: 110px;
  }

  .lead {
    font-size: 17px;
  }

  .spot-list div {
    display: grid;
    gap: 4px;
  }

  .spot-list span {
    text-align: left;
  }
}
