* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1a18;
  --sand: #f7f2ec;
  --mist: #ece7e1;
  --sage: #7b8a6a;
  --clay: #c87f5a;
  --plum: #4a3c3a;
  --accent: #e0b44b;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 6vw;
  background: #fff;
}

.brand {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2rem;
}

.nav-links a:hover {
  border-color: var(--ink);
}

.section {
  padding: 4.5rem 6vw;
  display: flex;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.section--reverse {
  flex-direction: row-reverse;
}

.section--stack {
  flex-direction: column;
  align-items: flex-start;
}

.section--offset-left::before,
.section--offset-right::before {
  content: "";
  position: absolute;
  width: 55%;
  height: 90%;
  top: 5%;
  background: var(--mist);
  z-index: -1;
}

.section--offset-left::before {
  left: -6vw;
}

.section--offset-right::before {
  right: -6vw;
}

.section--tone {
  background: var(--sand);
}

.section--dark {
  background: var(--plum);
  color: #fff;
}

.section-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--sage);
}

.lead {
  font-size: 1.1rem;
  max-width: 38rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--fill {
  background: var(--ink);
  color: #fff;
}

.btn--soft {
  background: var(--accent);
  border-color: var(--accent);
}

.inline-link {
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
  min-width: 240px;
}

.media-card img {
  border-radius: 1rem;
  height: 180px;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.quote {
  font-style: italic;
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.6);
  max-width: 32rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}

.pricing-card {
  flex: 1 1 240px;
  padding: 2rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid var(--mist);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clay);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--mist);
  font-size: 0.9rem;
}

.form-wrap {
  width: 100%;
  max-width: 620px;
  background: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid #cfc8c1;
  font-size: 1rem;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer {
  padding: 2.5rem 6vw;
  background: #12110f;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: var(--accent);
  color: var(--ink);
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  background: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cookie-actions button {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--ink);
  color: #fff;
}

.cookie-actions .reject {
  background: var(--mist);
}

.side-note {
  background: var(--mist);
  padding: 1.5rem;
  border-radius: 1rem;
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.asym-grid > div {
  flex: 1 1 240px;
}

.hero-image {
  border-radius: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.floating-image {
  margin-top: -3rem;
  border-radius: 1.4rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.page-title {
  padding: 4rem 6vw 2rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 1rem;
}

@media (max-width: 900px) {
  .section {
    flex-direction: column;
    align-items: flex-start;
  }

  .section--reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .sticky-cta {
    right: 1rem;
    left: 1rem;
    text-align: center;
  }
}
