:root {
  color-scheme: light;
  --bg: #f7f3ee;
  --ink: #1f1b16;
  --muted: #5b5147;
  --accent: #a8643b;
  --accent-dark: #7c4526;
  --card: #ffffff;
  --sand: #efe6db;
  --soft: #f2ece4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 1.5rem 0;
  background: var(--soft);
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  background: #fff2e6;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 3.5rem 0 5rem;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 360px;
  background: #e9dccf;
  border-radius: 24px;
  overflow: hidden;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--soft);
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.flex-row.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.5rem;
  flex: 1 1 240px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.card .image-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #e5d6c8;
  height: 180px;
  margin-bottom: 1rem;
}

.image-frame {
  background: #e1d4c7;
  border-radius: 20px;
  overflow: hidden;
}

.media-sm {
  height: 260px;
}

.media-md {
  height: 320px;
}

.media-lg {
  height: 360px;
}

.media-xl {
  height: 420px;
}

.split-box {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.split-box .panel {
  flex: 1 1 280px;
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  background: var(--accent-dark);
  color: #fff;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.8rem 1.3rem;
  border-radius: 12px;
  display: inline-flex;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddcfc0;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
select,
textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #d6c7b8;
  font-size: 1rem;
}

button {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.footer {
  background: #15120f;
  color: #f7f3ee;
  padding: 2.5rem 0;
}

.footer a {
  color: #f7f3ee;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer small {
  color: #d2c6bb;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero .image-frame {
  height: 260px;
  margin-top: 1.5rem;
}

.notice {
  background: #fff7ef;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  color: var(--muted);
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.section-bg {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #d9cbbb;
}

.section-bg .bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.section-bg .bg-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  color: #fff;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stack.space-top {
  margin-top: 1.5rem;
}

.space-top-lg {
  margin-top: 2rem;
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
