* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1e24;
  --slate: #4b5563;
  --fog: #f4f5f7;
  --sand: #efe7dc;
  --sea: #0f4c5c;
  --sun: #f2c14e;
  --pebble: #d7dce2;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-bottom: 80px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 8%;
  background: var(--fog);
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  border-color: var(--sea);
}

.nav-disclosure {
  font-size: 0.82rem;
  color: var(--slate);
  max-width: 280px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 0 8%;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1 1 320px;
}

.hero {
  padding-top: 36px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: 600;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.btn.alt {
  background: transparent;
  color: var(--ink);
}

.inline-link {
  text-decoration: underline;
  color: var(--sea);
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: var(--pebble);
}

.bg-sky {
  background: #dce6ef;
}

.bg-sand {
  background: #f1e7dd;
}

.bg-slate {
  background: #e1e4ea;
}

.bg-mist {
  background: #dfe8f3;
}

.image-frame img {
  height: 100%;
}

.story-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 24px;
  background: var(--sand);
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 8%;
}

.card {
  flex: 1 1 240px;
  background: var(--fog);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--sea);
}

.callout {
  margin: 0 8%;
  padding: 28px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--pebble);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cover-panel {
  margin: 0 8%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #dfe1e6;
  background-image: url("https://images.unsplash.com/photo-1507924538820-ede94a04019d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cover-panel .overlay {
  padding: 32px;
  background: rgba(15, 76, 92, 0.78);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-shell {
  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 var(--pebble);
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.note {
  font-size: 0.95rem;
  color: var(--slate);
}

.banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid var(--pebble);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.banner.visible {
  display: flex;
}

.sticky-cta {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--sea);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 30px;
  font-weight: 600;
}

.footer {
  background: var(--fog);
  padding: 32px 8%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--slate);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.pad-section {
  padding: 0 8%;
}

.legal-grid .panel {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--pebble);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 18px;
  background: var(--sand);
}

.spacer {
  height: 24px;
}

@media (max-width: 820px) {
  .nav-wrap {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 50%;
    transform: translateX(-50%);
  }
}
