* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1f24;
  --muted: #5a6472;
  --paper: #f6f4f1;
  --accent: #d97b2b;
  --accent-dark: #b25e1a;
  --slate: #2b3038;
  --sand: #efe7dd;
  --fog: #e2e6ea;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 6vw 1rem;
  gap: 1.5rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--fog);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.hero {
  display: flex;
  min-height: 72vh;
  background: var(--slate);
  color: #fff;
}

.hero-media {
  flex: 1;
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  flex: 1;
  padding: 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  margin: 0;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.split {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  min-height: 60vh;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
  padding: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.split-media {
  background: var(--sand);
  position: relative;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 15px 35px rgba(20, 24, 28, 0.08);
}

.card-media {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--fog);
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  background: #fff;
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(20, 24, 28, 0.12);
}

.section-alt {
  background: var(--sand);
}

.section-dark {
  background: #1f242b;
  color: #f2f2f2;
}

.section-dark .inline-link {
  color: #ffc07a;
}

.form-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.2rem;
  box-shadow: 0 18px 38px rgba(20, 24, 28, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid #d7dce2;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 3rem 6vw;
  background: #111418;
  color: #cbd1d8;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  inset: auto 2vw 2vw auto;
  background: #fff;
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.cookie-actions button {
  flex: 1;
  padding: 0.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e2e6ea;
  color: var(--ink);
}

.two-column {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

.notice {
  background: #fff6ed;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.2rem;
  border-radius: 0.8rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #e1e4e8;
  padding-bottom: 0.7rem;
}

.hero-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  background: #fff;
  color: var(--ink);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
