* {
  box-sizing: border-box;
}

:root {
  --ink: #1e1b18;
  --sand: #f7f2ec;
  --cream: #fffaf5;
  --copper: #b4642a;
  --sage: #5f7a6b;
  --slate: #343438;
  --mist: #e7e1d8;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.masthead {
  background: var(--sand);
  border-bottom: 1px solid var(--mist);
}

.masthead-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.95rem;
  color: var(--slate);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--copper);
}

.layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 26px 20px 40px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 0;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--sage);
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--slate);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid var(--mist);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h4 {
  margin: 0;
  font-size: 1.2rem;
}

.card .price {
  font-weight: bold;
  color: var(--copper);
}

.inline-cta {
  color: var(--copper);
  border-bottom: 1px solid var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--copper);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.btn.secondary {
  background: var(--sage);
}

.btn.light {
  background: var(--ink);
}

.highlight {
  background: var(--mist);
  padding: 18px;
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-size: 1.4rem;
}

.image-block {
  position: relative;
}

.image-caption {
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 8px 10px;
  font-size: 0.8rem;
}

.hero {
  background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80")
    center / cover no-repeat;
  color: #fff;
  padding: 36px 20px;
}

.hero .section-title {
  font-size: 2.4rem;
}

.hero-overlay {
  background: rgba(20, 18, 16, 0.55);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrapper {
  background: #fff;
  border: 1px solid var(--mist);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrapper label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--mist);
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 10;
}

.footer {
  border-top: 1px solid var(--mist);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--sand);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--mist);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-button {
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
}

.banner-button.alt {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

@media (min-width: 768px) {
  .masthead-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .layout {
    padding: 32px 60px 60px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .stat-bar {
    flex-direction: row;
  }

  .hero {
    padding: 60px 80px;
  }

  .section-title {
    font-size: 2.4rem;
  }
}
