* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1f24;
  --muted: #5f6b76;
  --accent: #2f6f6d;
  --accent-soft: #e0eeec;
  --sand: #f5f1ea;
  --stone: #dfe4e8;
  --sun: #f5c975;
  --night: #0f1419;
  --card-shadow: 0 16px 40px rgba(18, 26, 33, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 28px 6vw 12px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: var(--night);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.sticky-cta a {
  color: inherit;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 40px 6vw 20px;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card {
  background: var(--accent-soft);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
}

.hero-image {
  flex: 1 1 360px;
  min-width: 320px;
  position: relative;
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 56px 6vw;
}

.section-alt {
  background: var(--sand);
}

.section-dark {
  background: var(--night);
  color: #ffffff;
}

.section-dark a {
  color: var(--sun);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 300px;
}

.split-image {
  flex: 1 1 320px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.offset-grid .tile {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--card-shadow);
}

.tile .tile-image {
  border-radius: 14px;
  overflow: hidden;
  height: 160px;
  margin-bottom: 14px;
}

.tile .tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: relative;
  top: -18px;
  background: var(--sun);
  padding: 12px 16px;
  border-radius: 12px;
  display: inline-block;
  font-weight: 600;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid #e3e8ec;
  border-radius: 16px;
}

.price-row span {
  font-weight: 600;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.cta-button.secondary {
  background: var(--night);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
}

.form-shell {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--card-shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ccd4db;
  font-size: 1rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.9rem;
}

footer {
  padding: 40px 6vw 60px;
  background: #11151a;
  color: #d7dde2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.bg-slate {
  background-color: #cfd7d7;
}

.bg-mist {
  background-color: #d8e1ea;
}

.bg-dove {
  background-color: #e4e7ec;
}

.bg-pearl {
  background-color: #e7ecee;
}

.bg-fog {
  background-color: #d1dde3;
}

.bg-warm {
  background-color: #f0e6dc;
}

.page-hero {
  padding: 30px 6vw 10px;
}

.page-hero h1 {
  margin-bottom: 10px;
}

.simple-section {
  padding: 20px 6vw 50px;
}

.contact-block {
  background: var(--sand);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-block + .contact-block {
  margin-top: 16px;
}

.reference-list {
  margin-top: 16px;
  font-size: 0.9rem;
}

.reference-list a {
  color: #f3d37d;
}
