@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap');

:root {
  --ink: #1c1c1c;
  --muted: #5c5c5c;
  --light: #f4f1ec;
  --accent: #2f6f6d;
  --accent-2: #b7562d;
  --soft: #e7dfd4;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: #faf9f7;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  background: #fff;
  border-bottom: 1px solid #ece6dd;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.menu a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent-2);
  border: 1px solid #e3c7b5;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 1px solid #d8d0c5;
  background: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
}

.hero {
  padding: 60px 6%;
  background: var(--light);
}

.section {
  padding: 60px 6%;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  min-width: 260px;
}

.split-media {
  flex: 1;
  min-width: 260px;
}

.image-frame {
  background: var(--soft);
  padding: 12px;
  border-radius: 20px;
}

.frame-sand {
  background: #e7dfd4;
}

.frame-linen {
  background: #efe6da;
}

.frame-dark {
  background: #3e3e3e;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 12px 0 16px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 12px 0 12px;
}

.muted {
  color: var(--muted);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent-2);
  font-weight: 600;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(29, 29, 29, 0.05);
}

.price-card .image-frame {
  width: 110px;
  height: 110px;
  padding: 6px;
  border-radius: 14px;
  flex: 0 0 110px;
}

.price-card .image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent-2);
  color: #2f6f6d;
  padding: 14px 16px;
  border-radius: 12px;
}

.form-block {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
}

.form-block form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-block label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-block input,
.form-block select,
.form-block textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9d1c8;
  font-family: inherit;
}

.bg-image-section {
  background-image: url('https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80');
  background-size: cover;
  background-position: center;
  background-color: #3b3b3b;
  color: #fff;
  position: relative;
}

.bg-image-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.bg-image-section .split {
  position: relative;
  z-index: 1;
}

.footer {
  padding: 40px 6%;
  background: #1f1f1f;
  color: #f5f5f5;
}

.footer a {
  color: #f5f5f5;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 24px;
  background: #fff;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.sticky-cta button {
  border-radius: 999px;
  padding: 10px 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #e5ddd3;
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  z-index: 30;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-block {
  max-width: 820px;
}

@media (max-width: 980px) {
  .split {
    flex-direction: column;
    align-items: flex-start;
  }

  .split.reverse {
    flex-direction: column;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 10px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.nav-open .menu {
    display: flex;
  }
}
