* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1b1a;
  --muted: #5c5a57;
  --sand: #f5f1ec;
  --clay: #e3d8cc;
  --sun: #d08a4b;
  --sage: #6f7b6f;
  --stone: #d9d1c7;
  --line: #e5dfd6;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(35, 29, 22, 0.12);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 6vw 20px;
  background: var(--white);
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--sun);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 60px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 0.95rem;
  gap: 6px;
  cursor: pointer;
}

.btn.primary {
  background: var(--ink);
  color: var(--white);
}

.btn.ghost {
  background: transparent;
}

.hero-image {
  align-self: flex-end;
  width: min(560px, 100%);
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.floating-card {
  position: absolute;
  right: 10%;
  bottom: 20%;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  width: min(260px, 80%);
  z-index: 1;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.sand {
  background: var(--sand);
}

.section.clay {
  background: var(--clay);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight {
  font-weight: 600;
  color: var(--sun);
}

.staggered {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 16px;
}

.price {
  font-size: 1.2rem;
  color: var(--sun);
  font-weight: 600;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-row img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-left: 3px solid var(--sun);
  background: rgba(255, 255, 255, 0.6);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: var(--white);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  color: var(--sun);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: var(--sun);
  color: var(--white);
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 6vw;
  background: var(--ink);
  color: var(--white);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  border: 1px solid var(--ink);
  background: transparent;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--ink);
  color: var(--white);
}

.content-narrow {
  max-width: 820px;
}

.offset-block {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  margin-left: auto;
  width: min(520px, 100%);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.subtle-bg {
  background-image: url("../img/texture.svg");
  background-size: cover;
  background-position: center;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 18px);
    min-width: 260px;
  }

  .gallery-row {
    flex-direction: row;
  }
}
