* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #101418;
  --muted: #5a6470;
  --brand: #1f4c5b;
  --accent: #c7862a;
  --soft: #f3f1ec;
  --paper: #ffffff;
  --shadow: 0 18px 38px rgba(16, 20, 24, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.side-nav {
  background: var(--soft);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid rgba(16, 20, 24, 0.08);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: var(--accent);
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 28px 18px 80px;
}

.section {
  padding: 28px 22px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section.alt {
  background: var(--soft);
  box-shadow: none;
}

.section.split {
  gap: 24px;
}

.section.split .split-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.split .split-row.reverse {
  flex-direction: column-reverse;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.2rem;
}

.muted {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--paper);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: var(--accent);
  color: #241b0f;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 76, 91, 0.12);
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(16, 20, 24, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.price-tag {
  font-weight: 700;
  color: var(--brand);
}

.inline-cta {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  box-shadow: 0 18px 26px rgba(16, 20, 24, 0.2);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(16, 20, 24, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.photo-block {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 210px;
}

.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 20, 24, 0.8), rgba(16, 20, 24, 0.2));
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  gap: 10px;
}

.quote {
  background: #0f1f25;
  color: var(--paper);
  padding: 22px;
  border-radius: 18px;
  font-style: italic;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  font-weight: 700;
  color: var(--accent);
}

.footer {
  background: #11181c;
  color: var(--paper);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: var(--paper);
  text-decoration: underline;
}

.meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--paper);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-stack .highlight {
  background: rgba(199, 134, 42, 0.12);
  padding: 14px;
  border-radius: 14px;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .side-nav {
    width: 240px;
    min-height: 100vh;
    border-right: 1px solid rgba(16, 20, 24, 0.08);
    border-bottom: none;
  }

  .main-content {
    padding: 36px 44px 80px;
  }

  .section.split .split-row {
    flex-direction: row;
    align-items: center;
  }

  .section.split .split-row.reverse {
    flex-direction: row-reverse;
  }

  .cta-row,
  .form-actions,
  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .hero-stack {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-stack .hero-text {
    flex: 1.2;
  }

  .hero-stack .hero-visual {
    flex: 1;
  }
}
