* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f1d1a;
  background: #f6f3ef;
  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;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f6f3ef;
}

.nav-brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1f1d1a;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 6vw 40px;
  gap: 32px;
  align-items: stretch;
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

.hero-card {
  flex: 1 1 320px;
  background: #1f1d1a;
  color: #f6f3ef;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card img {
  border-radius: 18px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #c7693a;
  color: #fff;
  font-weight: 600;
  width: fit-content;
}

.cta-secondary {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid #1f1d1a;
  border-radius: 999px;
  width: fit-content;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 6vw;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #1f1d1a;
  color: #f6f3ef;
}

.section.bg-stone {
  background-image: linear-gradient(rgba(246, 243, 239, 0.92), rgba(246, 243, 239, 0.92)),
    url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.section.bg-terracotta {
  background-image: linear-gradient(rgba(31, 29, 26, 0.92), rgba(31, 29, 26, 0.92)),
    url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.section.bg-linen {
  background-image: linear-gradient(rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)),
    url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split .text {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1 1 280px;
}

.offset-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-box {
  flex: 1 1 220px;
  background: #f6f3ef;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e1d9d2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offset-box.alt {
  margin-top: 24px;
  background: #fff;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.gallery-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e4ded7;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e4ded7;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #c7693a;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #c7693a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e4ded7;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8d2cc;
  font-size: 1rem;
  background: #fdfcfb;
}

textarea {
  min-height: 110px;
}

.inline-cta {
  color: #c7693a;
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  margin: 0 6vw 24px;
  background: #1f1d1a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  z-index: 2;
}

.footer {
  background: #1f1d1a;
  color: #f6f3ef;
  padding: 40px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #f6f3ef;
  text-decoration: underline;
}

.notice {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  width: min(340px, 90vw);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-ghost {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #1f1d1a;
  background: transparent;
}

.btn-solid {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  background: #1f1d1a;
  color: #fff;
}

.page-header {
  padding: 40px 6vw 20px;
  background: #fff;
}

.page-content {
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e4ded7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    align-self: center;
  }
}
