* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1f24;
  --muted: #5c616b;
  --accent: #2b6f6a;
  --accent-dark: #1f4e4a;
  --sand: #f4f1ec;
  --mist: #edf1f4;
  --warm: #f9f3ea;
  --line: #d9dfe6;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

main {
  overflow: hidden;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.header {
  padding: 28px 0 12px;
}

.nav-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.split-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 40px 0 60px;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-text p {
  color: var(--muted);
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row.spaced {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-media {
  flex: 1 1 360px;
  min-width: 280px;
  position: relative;
}

.hero-media .frame {
  background: var(--mist);
  border-radius: 24px;
  overflow: hidden;
  padding: 14px;
}

.hero-media img {
  width: 100%;
  height: 360px;
  border-radius: 18px;
}

.offset-card {
  position: absolute;
  right: -24px;
  bottom: -24px;
  background: var(--card);
  border-radius: 16px;
  padding: 16px 18px;
  width: min(240px, 80%);
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.12);
  font-size: 14px;
}

.story-band {
  background: var(--sand);
  padding: 48px 0;
}

.story-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.story-copy {
  flex: 1 1 300px;
}

.story-copy h2 {
  margin-top: 0;
}

.story-copy p {
  color: var(--muted);
}

.story-image {
  flex: 1 1 320px;
  background: #e9e4dc;
  border-radius: 20px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 320px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 50px 0;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .media {
  background: #dde7e7;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight-section {
  background: var(--mist);
  padding: 60px 0;
}

.highlight-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.highlight-block {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
}

.form-section {
  padding: 60px 0 70px;
}

.form-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--warm);
  border-radius: 22px;
  padding: 26px;
}

.form-panel h3 {
  margin-top: 0;
}

.form-panel p {
  color: var(--muted);
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
}

.footer {
  background: #14181f;
  color: #f7f7f7;
  padding: 40px 0 24px;
  margin-top: 40px;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}

.footer small {
  color: #b9c1cc;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.footer .disclaimer {
  font-size: 13px;
  color: #c9d0d9;
}

.cookie-banner {
  position: fixed;
  inset: auto 20px 20px auto;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.2);
  z-index: 50;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 110px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  z-index: 40;
}

.page-hero {
  background: var(--mist);
  padding: 40px 0;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 40px);
}

.page-hero p {
  color: var(--muted);
  max-width: 760px;
}

.content-block {
  padding: 36px 0;
}

.content-block h2 {
  margin-top: 0;
}

.content-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.content-card {
  flex: 1 1 280px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #ffffff;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.image-strip .strip-item {
  flex: 1 1 240px;
  background: #e3e8ee;
  border-radius: 16px;
  overflow: hidden;
}

.image-strip img {
  width: 100%;
  height: 180px;
}

.contact-card {
  background: var(--sand);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

.service-listing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-listing .row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.service-listing .row:last-child {
  border-bottom: none;
}

.service-listing .row span {
  color: var(--muted);
}

.legal-text {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 760px) {
  .offset-card {
    position: static;
    margin-top: 12px;
    width: 100%;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }
}
