@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #171717;
  --ink-soft: #4a4a4a;
  --paper: #f7f4ee;
  --paper-deep: #efe9df;
  --accent: #c65a3d;
  --accent-dark: #8f3c28;
  --mint: #dce7de;
  --sand: #f3e6d2;
  --shadow: rgba(23, 23, 23, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 8vw 14px;
  gap: 20px;
  background: var(--paper);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.92rem;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: var(--accent);
  color: #fff;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 8vw 70px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 20px 0 0 35%;
  background: var(--sand);
  border-radius: 40px 0 0 40px;
  z-index: 0;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual img {
  border-radius: 28px;
  box-shadow: 0 26px 60px var(--shadow);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero p {
  max-width: 540px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.section {
  padding: 60px 8vw;
  position: relative;
}

.section.alt {
  background: var(--paper-deep);
}

.texture-bg {
  background-image: url("../images/texture.svg");
  background-size: cover;
  background-position: center;
}

.section h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  margin: 0 0 18px;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 14px;
  color: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-card {
  background: #fff;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px var(--shadow);
  position: relative;
}

.offset-card.shift-right {
  margin-left: clamp(0px, 12vw, 80px);
}

.offset-card.shift-left {
  margin-right: clamp(0px, 12vw, 80px);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--mint);
  font-size: 0.9rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 32px var(--shadow);
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  font-style: italic;
  margin: 0;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 22px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d7d0c6;
  font-size: 1rem;
  width: 100%;
  background: #fff;
}

.sticky-cta {
  position: sticky;
  top: 0;
  background: #1e1c1a;
  color: #fff;
  padding: 14px 8vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 40px 8vw 60px;
  background: #1b1917;
  color: #f8f5f0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.legal-page {
  padding: 50px 8vw 80px;
  background: var(--paper);
}

.legal-page h1 {
  margin-bottom: 18px;
}

.legal-page p {
  max-width: 760px;
  color: var(--ink-soft);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .media-row {
    flex-direction: row;
    align-items: stretch;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(33% - 20px);
    min-width: 240px;
  }

  .sticky-cta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .contact-grid {
    flex-direction: row;
  }
}
