* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1f1f;
  --muted: #666;
  --cream: #f6f2ed;
  --sand: #efe6db;
  --wood: #d4bfa6;
  --night: #2b2622;
  --accent: #8a5b3d;
  --accent-dark: #6d452b;
  --leaf: #7a8a6b;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: var(--night);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 48px 6vw 64px;
  background: var(--cream);
  gap: 32px;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--night);
  background: var(--night);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.alt {
  background: transparent;
  color: var(--night);
}

.btn.alt:hover {
  background: var(--sand);
}

.hero-media {
  flex: 1 1 360px;
  min-height: 320px;
}

.image-frame {
  width: 100%;
  height: 100%;
  background: var(--sand);
  border-radius: 20px;
  overflow: hidden;
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: #fff;
}

.section.cream {
  background: var(--cream);
}

.section.sand {
  background: var(--sand);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.section h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
}

.section p {
  color: var(--muted);
}

.highlight {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 500;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 600;
  color: var(--accent-dark);
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 12px;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 500;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9cfc4;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 6vw;
  background: var(--night);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

footer {
  padding: 40px 6vw 60px;
  background: var(--night);
  color: #f4efe9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer-note {
  font-size: 0.85rem;
  color: #d8cfc4;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
  display: none;
  width: min(90vw, 520px);
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.cookie-actions .btn {
  border: 1px solid var(--night);
}

.page-title {
  padding: 44px 6vw 12px;
}

.page-title h1 {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 720px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sticky-cta {
    right: 4vw;
    left: 4vw;
    text-align: center;
  }
}
