:root {
  --ink: #141414;
  --muted: #626262;
  --paper: #f7f5f1;
  --white: #ffffff;
  --line: #ddd8cf;
  --red: #bf1f24;
  --green: #2d6d4b;
  --wood: #c49b55;
  --steel: #47525d;
  --shadow: 0 16px 40px rgba(20, 20, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(20, 20, 20, 0.94);
  color: var(--white);
  border-bottom: 4px solid var(--red);
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}

.brand span {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand span::first-letter {
  color: var(--red);
}

.brand small {
  color: #fff;
  background: var(--red);
  padding: 4px 8px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 14px;
}

.main-nav a {
  text-decoration: none;
  color: #f3f3f3;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.86), rgba(10, 10, 10, 0.32) 58%, rgba(10, 10, 10, 0.18));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 9vh clamp(18px, 5vw, 72px);
  color: var(--white);
}

.kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.hero .kicker {
  color: #ffdd64;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-copy p:not(.kicker) {
  max-width: 680px;
  font-size: clamp(18px, 2vw, 24px);
}

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

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

.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

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

.band,
.split-section,
.request-section,
.contact-section {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.muted {
  background: #ebe5db;
}

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

.section-head.row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

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

.feature-grid article,
.offer-card,
.form-panel,
.contact-details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-grid article,
.offer-card {
  padding: 22px;
}

.offer-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.offer-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #eee9df;
}

.offer-card mark {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3df97;
  color: #503700;
  font-size: 12px;
  font-weight: 800;
}

.offer-meta {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
}

.split-section,
.request-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--white);
}

.section-image,
.inline-image {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.section-image {
  aspect-ratio: 4 / 3;
}

.inline-image {
  margin-top: 18px;
  aspect-ratio: 16 / 10;
}

.spec-tables {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.spec-table h3 {
  margin-bottom: 10px;
  font-size: 20px;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: var(--white);
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: #262626;
  color: var(--white);
}

.request-section {
  background: var(--paper);
  align-items: start;
}

.form-panel {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc8bc;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

.status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.status.error {
  color: var(--red);
}

.contact-section {
  background: #181818;
  color: var(--white);
}

.contact-details {
  color: var(--ink);
  padding: 28px;
}

.hours {
  display: grid;
  gap: 4px;
}

.map-frame {
  position: relative;
  width: 100%;
  min-height: 420px;
}

.contact-section iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
}

.embed-placeholder {
  min-height: 420px;
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 24px;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  background: #242424;
  color: var(--white);
  text-align: center;
}

.embed-placeholder span {
  color: #d7d7d7;
}

.map-frame iframe:not([src]) {
  display: none;
}

.map-frame iframe[src] + .embed-placeholder {
  display: none;
}

.site-footer {
  display: grid;
  gap: 16px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: #111;
  color: var(--white);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.legal-notice {
  max-width: 1100px;
  margin: 0;
  color: #d7d7d7;
  font-size: 13px;
  line-height: 1.45;
}

.legal-notice a {
  color: var(--white);
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  left: clamp(12px, 3vw, 32px);
  right: clamp(12px, 3vw, 32px);
  bottom: clamp(12px, 3vw, 32px);
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.cookie-banner p {
  max-width: 960px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner a {
  color: var(--red);
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .feature-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .request-section,
  .contact-section,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section-head.row,
  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 680px;
  }

  .feature-grid,
  .offer-grid,
  .two-cols {
    grid-template-columns: 1fr;
  }
}
