* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f22;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 6vw;
  background: #f6f3ef;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  max-width: 320px;
  font-size: 0.8rem;
  color: #4c4f55;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 6vw 70px;
  gap: 28px;
}

.hero-copy,
.hero-media {
  flex: 1 1 320px;
  min-height: 360px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-copy p {
  max-width: 520px;
  margin-bottom: 16px;
}

.hero-media {
  background-color: #d7d0c8;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #ffffff;
}

.hero-media span {
  background: rgba(0, 0, 0, 0.55);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1d1f22;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-outline {
  background: transparent;
  color: #1d1f22;
  border-color: #1d1f22;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  background: #2d3138;
}

.btn-outline:hover,
.btn-outline:focus {
  background: #1d1f22;
  color: #ffffff;
}

.inline-link {
  border-bottom: 1px solid #1d1f22;
  padding-bottom: 2px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 6vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.split-text h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin-bottom: 14px;
}

.split-text p {
  margin-bottom: 12px;
}

.img-frame {
  background-color: #d8cfc4;
  border-radius: 16px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3 {
  font-size: 1.05rem;
}

.price {
  font-weight: 700;
  color: #1c3f3a;
}

.panel {
  background: #ffffff;
  padding: 34px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.service-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f1ede8;
  padding: 12px;
  border-radius: 12px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7c0b8;
  background: #ffffff;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 32px;
  background: #1d1f22;
  color: #f7f4f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: #c7c0b8;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1c3f3a;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #ffffff;
  color: #1d1f22;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 20;
}

.banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.background-band {
  background-color: #dfd6cd;
  background-size: cover;
  background-position: center;
  color: #1d1f22;
}

.band-waterfront {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
}

.band-docks {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1400&q=80");
}

.band-heritage {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
}

.band-residences {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.band-contact {
  background-image: url("https://images.unsplash.com/photo-1482192596544-9eb780fc7f66?w=1400&q=80");
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1486304873000-235643847519?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
}

.data-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}

.data-pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.legal-content {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 920px;
}

.legal-content h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 8px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 50px 6vw;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table td {
  padding: 10px 0;
  border-bottom: 1px solid #ded6ce;
}

.story-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.story-strip div {
  flex: 1 1 150px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }

  .banner {
    right: 16px;
    left: 16px;
  }
}
