* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1d1d1f;
  --muted: #5c5f66;
  --accent: #0c5f6a;
  --accent-2: #c25a2b;
  --bg: #f6f3ef;
  --bg-2: #ffffff;
  --bg-3: #edf3f2;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 10px;
  gap: 24px;
}

.top-nav .brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.top-nav nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.alt {
  background: var(--accent-2);
}

.btn.light {
  background: #fff;
  color: var(--accent);
  border: 1px solid rgba(12, 95, 106, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 6vw 60px;
  position: relative;
}

.hero .hero-media {
  background: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  min-height: 280px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero .hero-copy {
  max-width: 560px;
  background: rgba(255, 255, 255, 0.92);
  padding: 26px;
  border-radius: 20px;
  position: relative;
  top: -40px;
  left: 6vw;
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.split .content,
.section.split .visual {
  flex: 1;
}

.section.alt {
  background: var(--bg-2);
}

.section.tint {
  background: var(--bg-3);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offset {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset .panel {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  margin-left: 0;
}

.offset .panel.highlight {
  background: var(--accent);
  color: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 95, 106, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(12, 95, 106, 0.3);
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f2628;
  color: #f7f7f7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 30;
  display: none;
}

.banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banner .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero .hero-media {
    flex: 1.2;
    min-height: 420px;
  }

  .hero .hero-copy {
    max-width: 420px;
    left: -80px;
    top: 40px;
  }

  .section.split {
    flex-direction: row;
    align-items: center;
  }

  .cards,
  .pricing-grid,
  .gallery,
  .mini-grid {
    flex-direction: row;
  }

  .card,
  .price-item {
    flex: 1;
  }

  .offset {
    flex-direction: row;
  }

  .offset .panel {
    flex: 1;
    margin-left: -40px;
  }

  .offset .panel:first-child {
    margin-left: 0;
  }
}
