* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f1c;
  --muted: #4b5a52;
  --soft: #f4f7f3;
  --accent: #1f6f4a;
  --accent-dark: #145338;
  --sand: #ece7df;
  --ocean: #e3f2f4;
  --charcoal: #121514;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.page-shell {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 320px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  color: #fff;
  padding: 96px 0 120px;
  background-image: url("https://images.unsplash.com/photo-1497436072909-60f360e1d4b1?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 18, 0.58);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  align-items: flex-end;
}

.hero-copy {
  flex: 1.1;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  color: #e4efe8;
  max-width: 520px;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-flex;
  padding: 14px 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.hero-panel {
  flex: 0.9;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 24px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
}

.hero-panel h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.section {
  padding: 80px 0;
}

.section-soft {
  background: var(--soft);
}

.section-sand {
  background: var(--sand);
}

.section-ocean {
  background: var(--ocean);
}

.asym-row {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1;
  min-width: 260px;
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.offset-card.highlight {
  transform: translateY(-28px);
  background: #fefcf8;
}

.image-frame {
  flex: 1;
  min-width: 260px;
  padding: 14px;
  border-radius: 20px;
  background: #dde6df;
}

.image-frame img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  background-color: #cdd8cf;
}

.accent-tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.service-card img {
  height: 180px;
  object-fit: cover;
  background-color: #ccd6d1;
}

.service-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.service-action {
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-panel {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd6cf;
  font-size: 1rem;
}

.submit-btn {
  padding: 12px 18px;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
}

.inline-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.footer {
  background: var(--charcoal);
  color: #d7dfd9;
  padding: 40px 0 60px;
}

.footer a {
  color: #d7dfd9;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  color: var(--ink);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #ececec;
  color: var(--ink);
}

.page-hero {
  padding: 70px 0 50px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.highlight-band {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 70px 0;
  position: relative;
}

.highlight-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 17, 0.65);
}

.highlight-band .page-shell {
  position: relative;
  z-index: 2;
}

.contact-card {
  background: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 820px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cta {
    right: 16px;
    left: 16px;
  }
}
