* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1a18;
  --muted: #5d5a57;
  --accent: #a8462f;
  --accent-dark: #7b2f1e;
  --cream: #f6f1ec;
  --sand: #efe4d9;
  --stone: #d9d0c7;
  --shadow: 0 18px 40px rgba(28, 26, 24, 0.12);
  --radius: 22px;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fcfaf7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 7vw;
  position: relative;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.section {
  padding: 80px 7vw;
  position: relative;
}

.section--cream {
  background: var(--cream);
}

.section--sand {
  background: var(--sand);
}

.section--dark {
  background: var(--ink);
  color: #f8f3ee;
}

.section--overlay {
  background-image: linear-gradient(120deg, rgba(248, 242, 234, 0.95), rgba(248, 242, 234, 0.6)),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.hero-title {
  flex: 1 1 320px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cta--light {
  background: #fff;
  color: var(--accent-dark);
}

.cta-link {
  color: var(--accent);
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.offset-box {
  flex: 1 1 280px;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.image-tile {
  flex: 1 1 280px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(28, 26, 24, 0.75);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.testimonial {
  background: rgba(255, 255, 255, 0.15);
  padding: 18px 22px;
  border-radius: 18px;
  margin-bottom: 16px;
}

.testimonial p {
  margin: 0 0 6px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  font-family: inherit;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 8;
}

.footer {
  padding: 40px 7vw 60px;
  background: #141312;
  color: #d7cec6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.highlight {
  font-weight: 700;
  color: var(--accent-dark);
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.two-col > div {
  flex: 1 1 280px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 10;
  display: none;
}

.cookie-banner p {
  margin: 0 0 12px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal {
  max-width: 900px;
}

.legal h1 {
  font-size: 2.2rem;
}

.legal h2 {
  margin-top: 28px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.image-strip img {
  flex: 1 1 180px;
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: flex-end;
  }

  .hero-visual {
    flex: 1 1 40%;
    transform: translateY(18px);
  }

  .hero-visual img {
    border-radius: 28px;
    box-shadow: var(--shadow);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }
}
