* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1a16;
  --muted: #5c5a55;
  --sand: #f6f2ed;
  --paper: #fffaf4;
  --accent: #d0653c;
  --accent-dark: #9b472a;
  --cool: #e9eef2;
  --olive: #d9d2c7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  background: url("https://images.unsplash.com/photo-1745888323445-ab1650f0c4d6?w=1400&q=80") center/cover no-repeat;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.hero-overlay {
  background: rgba(16, 14, 12, 0.62);
  padding: 88px 56px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: #f4e8dc;
}

.section {
  padding: 70px 0;
}

.section-muted {
  background: var(--paper);
  border-radius: 32px;
  margin: 40px 0;
  padding: 60px 0;
}

.section-cool {
  background: var(--cool);
  border-radius: 28px;
  margin: 40px 0;
  padding: 60px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.offset-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 28px;
  margin-left: 12%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.button.secondary:hover {
  background: var(--accent);
  color: #fff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.media-frame {
  background: var(--olive);
  border-radius: 20px;
  overflow: hidden;
  padding: 8px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  height: 180px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border-radius: 18px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6cbbf;
  font-family: inherit;
  font-size: 1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  background: var(--cool);
  border-radius: 999px;
  font-size: 0.85rem;
}

.aside-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 40px 0 70px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 12;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: url("https://images.unsplash.com/photo-1752832902004-b7df68ff626f?w=1400&q=80") center/cover no-repeat;
  border-radius: 26px;
  padding: 70px 50px;
  color: #fff;
  margin-bottom: 40px;
}

.page-hero.alt {
  background-image: url("https://images.unsplash.com/photo-1770417999831-1c070eb628e6?w=1400&q=80");
}

.page-hero.soft {
  background-image: url("https://images.unsplash.com/photo-1614399113305-a127bb2ca893?w=1400&q=80");
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.contact-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.legal {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.divider {
  height: 2px;
  width: 100%;
  background: #e2d6ca;
  margin: 18px 0;
}

@media (max-width: 720px) {
  .hero-overlay {
    padding: 64px 28px;
  }

  .offset-card {
    margin-left: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }
}
