* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --sand: #f4f0ea;
  --snow: #ffffff;
  --ice: #e6eff7;
  --midnight: #10151d;
  --accent: #b88f5d;
  --accent-dark: #8a6a45;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--snow);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page {
  overflow-x: hidden;
}

.floating-nav {
  position: absolute;
  top: 24px;
  right: 40px;
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.floating-nav a {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 10vw 80px;
  background: linear-gradient(120deg, rgba(16, 21, 29, 0.7), rgba(16, 21, 29, 0.2)),
    url("https://images.unsplash.com/photo-1501466044931-62695aada8dc?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: var(--snow);
}

.hero-content {
  max-width: 620px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--snow);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 26px;
  background: var(--midnight);
  color: var(--snow);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
  z-index: 6;
}

.section {
  padding: 90px 10vw;
  position: relative;
}

.section.sand {
  background: var(--sand);
}

.section.ice {
  background: var(--ice);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 24px;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  position: relative;
}

.media-card {
  background: var(--snow);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.offset-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--midnight);
  color: var(--snow);
  padding: 20px 24px;
  border-radius: 16px;
  max-width: 240px;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.storyline-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.storyline-block span {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
}

.accent-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--snow);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 16px;
  height: 170px;
  object-fit: cover;
}

.testimonial-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 280px;
  background: var(--midnight);
  color: var(--snow);
  padding: 26px;
  border-radius: 20px;
}

.pricing-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 260px;
  background: var(--snow);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.price-card strong {
  font-size: 1.6rem;
}

.price-tag {
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.price-card button {
  margin-top: auto;
  border: none;
  background: var(--accent);
  color: var(--snow);
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.cta-band {
  background: var(--midnight);
  color: var(--snow);
  padding: 48px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
  box-shadow: var(--shadow);
}

.cta-band a {
  align-self: flex-start;
  background: var(--accent);
  color: var(--snow);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.form-shell {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--snow);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 1rem;
}

.form-panel button {
  border: none;
  background: var(--midnight);
  color: var(--snow);
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-row button {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--snow);
  cursor: pointer;
}

.service-row button.active {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.policy {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.policy h2 {
  font-size: 1.6rem;
}

.footer {
  padding: 60px 10vw;
  background: #0f1319;
  color: var(--snow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--snow);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.cookies-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--snow);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 7;
}

.cookies-banner p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.cookies-actions {
  display: flex;
  gap: 10px;
}

.cookies-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookies-actions .accept {
  background: var(--midnight);
  color: var(--snow);
}

.cookies-actions .reject {
  background: var(--sand);
}

@media (max-width: 760px) {
  .floating-nav {
    position: static;
    margin: 16px auto 0;
    justify-content: center;
  }

  .hero {
    padding: 140px 8vw 60px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
