* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1f26;
  --muted: #5a6472;
  --accent: #2c6b7a;
  --accent-dark: #1b4a55;
  --sand: #f4f1ed;
  --mist: #e7edf0;
  --sun: #f0e6d9;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(20, 28, 36, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.image-frame {
  background: #d8dee6;
  overflow: hidden;
  border-radius: 22px;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw;
  background: var(--mist);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 8vw 56px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.hero-copy p {
  color: var(--muted);
  max-width: 560px;
}

.hero-card {
  flex: 1 1 300px;
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-left: auto;
}

.hero-image {
  flex: 1 1 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 360px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 64px 8vw;
  position: relative;
}

.section.alt {
  background: var(--mist);
}

.section.sun {
  background: var(--sun);
}

.bg-pulse {
  background-image: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-pulse .text-muted,
.bg-pulse a {
  color: #f5f7fb;
}

.bg-rhythm {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-signal {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.offset-blocks {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.offset-card {
  flex: 1 1 260px;
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.offset-card:nth-child(2) {
  margin-top: 0;
}

.offset-image {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offset-image img {
  width: 100%;
  height: 280px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.grid-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-media {
  background: #d8dee6;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccd5dd;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.form-panel button {
  width: 100%;
}

.form-note {
  flex: 1 1 260px;
  align-self: center;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.story-band {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.story-band img {
  width: 100%;
  height: 240px;
}

.list {
  padding-left: 18px;
  color: var(--muted);
}

.footer {
  padding: 48px 8vw 80px;
  background: #171a1f;
  color: #d6dbe3;
}

.footer a {
  color: #d6dbe3;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
}

.legal {
  font-size: 0.85rem;
  color: #adb5c3;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 20;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent-dark);
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 380px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.note-box {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.text-muted {
  color: var(--muted);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 860px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    justify-content: space-between;
  }
}
