/* Base */
:root {
  --bg: #f7f3ef;
  --ink: #2a2320;
  --muted: #6b5f57;
  --accent: #b48b6a;
  --accent-2: #5e7a72;
  --card: #ffffff;
  --sand: #efe6de;
  --sage: #e4ece8;
  --shadow: rgba(34, 28, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background-color: #e5dbd3;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  padding: 18px 0;
  border-bottom: 1px solid #e6ded7;
  background: #f9f6f2;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px dashed #cbb8aa;
  padding: 6px 10px;
}

.hero {
  background: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80") center/cover no-repeat;
  background-color: #e9e2dc;
  color: #2d2320;
  padding: 120px 0 90px;
  position: relative;
}

.hero-overlay {
  background: rgba(247, 243, 239, 0.88);
  padding: 36px;
  max-width: 560px;
  box-shadow: 0 20px 40px var(--shadow);
}

.hero h1 {
  font-size: 42px;
  margin: 0 0 16px;
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  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;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid #c9b7aa;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--sand);
}

.section-sage {
  background: var(--sage);
}

.section-title {
  font-size: 28px;
  margin: 0 0 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > div {
  flex: 1 1 320px;
}

.story-card {
  background: var(--card);
  padding: 26px;
  box-shadow: 0 16px 30px var(--shadow);
  border-radius: 16px;
}

.inline-link {
  color: var(--accent-2);
  text-decoration: underline;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 240px;
  box-shadow: 0 12px 24px var(--shadow);
}

.card img {
  border-radius: 12px;
  margin-bottom: 12px;
  width: 100%;
  height: 180px;
  background-color: #e5dbd3;
}

.price {
  font-weight: 700;
  margin-top: 10px;
  color: var(--accent);
}

.flow-note {
  background: #fff;
  padding: 18px 22px;
  border-left: 4px solid var(--accent-2);
  margin-top: 20px;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d8cfc6;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
}

.footer {
  background: #1f1a18;
  color: #efe7e1;
  padding: 40px 0;
}

.footer a {
  color: #efe7e1;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: #cbbdb3;
}

.legal {
  font-size: 13px;
  color: #cbbdb3;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e1d6cc;
  padding: 18px 24px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #ccb9aa;
  background: #f5ede7;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.accept {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.page-hero {
  padding: 70px 0;
  background: #f2ebe4;
}

.image-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-band img {
  flex: 1 1 260px;
  height: 200px;
  border-radius: 14px;
  background-color: #e5dbd3;
}

.contact-block {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 30px var(--shadow);
  max-width: 520px;
}

.spacer-top {
  margin-top: 18px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}
