* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1a18;
  --muted: #6a655f;
  --sand: #f6f1ea;
  --clay: #e7ddd2;
  --forest: #2f3a33;
  --sun: #c9a06b;
  --paper: #ffffff;
  --shadow: 0 20px 60px rgba(27, 26, 24, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  overflow: hidden;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 16px;
  gap: 24px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--ink);
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--clay);
  padding: 4px 10px;
  border-radius: 14px;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 40px 6vw 60px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 28px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.95rem;
  cursor: pointer;
}

.btn:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.btn.alt {
  background: transparent;
  color: var(--ink);
}

.btn.alt:hover {
  background: var(--clay);
}

.hero-media {
  flex: 0.9;
  position: relative;
}

.hero-media .media-frame {
  background: #d9cfc3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media .badge {
  position: absolute;
  bottom: -18px;
  left: -12px;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--paper);
}

.section.bg-photo {
  background-color: #3a332d;
  background-image: url("https://images.unsplash.com/photo-1449247709967-d4461a6a6103?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f3ede6;
  position: relative;
}

.section.bg-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 26, 24, 0.55);
}

.section.bg-photo > * {
  position: relative;
  z-index: 1;
}

.section.bg-photo .section-header p {
  color: #e7ddd2;
}

.overlay-box {
  background: rgba(20, 18, 16, 0.7);
  padding: 20px;
  border-radius: 18px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.asym-row {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1;
  align-self: center;
}

.asym-text h3 {
  margin-top: 0;
}

.asym-media {
  flex: 1;
  position: relative;
}

.asym-media .media-frame {
  background: #e2d7ca;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.asym-media .floating-card {
  position: absolute;
  top: 14%;
  right: -10%;
  background: var(--paper);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 220px;
  font-size: 0.9rem;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .card-media {
  background: #e0d6cc;
  border-radius: 14px;
  overflow: hidden;
}

.card h4 {
  margin: 0;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card .price {
  font-weight: 600;
}

.strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--clay);
}

.strip.spaced {
  margin-top: 24px;
}

.strip span {
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-left: 2px solid var(--sun);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.pricing-item h4 {
  margin: 0;
}

.pricing-item p {
  margin: 4px 0 0;
  color: var(--muted);
}

.pricing-item .price {
  font-size: 1.05rem;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--paper);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d1c8;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
}

.inline-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.faq details {
  padding: 14px 0;
  border-bottom: 1px solid #ded6cd;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.footer {
  background: #181614;
  color: #f0ece7;
  padding: 40px 6vw;
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer a {
  color: inherit;
  border-bottom: 1px solid transparent;
}

.footer a:hover {
  border-color: #f0ece7;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d1c6bd;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 24px;
  background: var(--forest);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.sticky-cta:hover {
  background: #1f2621;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 30;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--paper);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 880px;
}

.legal-section h2 {
  margin-bottom: 4px;
}

.hero-plain {
  padding: 40px 6vw 20px;
}

.hero-plain h1 {
  margin: 0;
  font-size: 2.3rem;
}

@media (max-width: 980px) {
  .hero,
  .asym-row {
    flex-direction: column;
  }

  .hero-media .badge,
  .asym-media .floating-card {
    position: static;
    margin-top: 16px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    align-items: flex-start;
  }
}
