:root {
  color-scheme: light;
  --bg: #f6f1ed;
  --bg-2: #ffffff;
  --bg-3: #efe7e1;
  --ink: #2e2a28;
  --muted: #6b5f58;
  --accent: #b86f6f;
  --accent-dark: #8f5353;
  --line: #e0d4cc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--line);
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 8px;
  border-left: 1px solid var(--line);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  z-index: 20;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

main {
  flex: 1;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--bg-2);
}

.section.soft {
  background: var(--bg-3);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero .hero-inner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: stretch;
}

.hero-media {
  flex: 1.1;
  position: relative;
  background: #d7c4b8;
}

.hero-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-content {
  flex: 0.9;
  background: rgba(255, 255, 255, 0.92);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-content h1 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero-content p {
  margin: 0;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1.1;
  min-width: 280px;
}

.split .media {
  flex: 0.9;
  min-width: 260px;
}

.image-frame {
  background: #dcc8bd;
  padding: 12px;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--bg-2);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 18px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  background: #fff;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flow-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.flow-step span {
  font-weight: 700;
  color: var(--accent);
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fff;
}

.form-box {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 30px 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-note {
  margin-top: 16px;
  font-size: 0.85rem;
}

.banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.banner p {
  margin: 0;
  color: var(--muted);
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.banner-actions button.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.hero-callout {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero .hero-inner {
    flex-direction: column;
  }

  .hero-content {
    order: 1;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
