* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1c1c;
  --muted: #5e6368;
  --accent: #2d4f6c;
  --accent-soft: #e6eef4;
  --sand: #f4f1ea;
  --clay: #efe7de;
  --fog: #f7f7f9;
  --border: #d8dde3;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.top-nav {
  padding: 24px 0 12px;
}

.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  color: #1c2b36;
  background: #f1dcdc;
  padding: 6px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.hero {
  padding: 40px 0 60px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.2;
}

.hero-copy p {
  color: var(--muted);
  font-size: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 24px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-media {
  flex: 1 1 320px;
  background: var(--accent-soft);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layered-section {
  padding: 50px 0;
  position: relative;
}

.layered-section.alt {
  background: var(--sand);
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.offset-card {
  flex: 1 1 280px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  top: -20px;
}

.offset-card h2,
.offset-card h3 {
  margin-bottom: 12px;
}

.offset-card p {
  color: var(--muted);
}

.offset-media {
  flex: 1 1 280px;
  background: var(--clay);
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.offset-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: stretch;
}

.story-strip .panel {
  flex: 1 1 240px;
  background: var(--fog);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  top: 12px;
}

.panel h3 {
  margin-bottom: 10px;
}

.panel p {
  color: var(--muted);
}

.media-frame {
  background: #d9e2ec;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services {
  padding: 60px 0;
}

.services-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card .media-frame {
  min-height: 140px;
}

.service-card .price {
  font-weight: 600;
}

.highlight-band {
  padding: 50px 0;
  background: var(--accent-soft);
}

.highlight-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.highlight-text {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-image {
  flex: 1 1 260px;
  background: #cdd6e3;
  border-radius: 20px;
  overflow: hidden;
  min-height: 240px;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-section {
  padding: 60px 0;
  background: var(--fog);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 24px;
}

.form-card label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--muted);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  font-size: 14px;
  font-family: inherit;
}

.form-aside {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.note {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 18px;
}

.note p {
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 36px 0 50px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.disclaimer {
  max-width: 520px;
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 28px;
  font-size: 14px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-header {
  padding: 36px 0 18px;
}

.page-header h1 {
  font-size: clamp(28px, 3vw, 40px);
}

.content-section {
  padding: 28px 0 40px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.content-block {
  flex: 1 1 280px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.content-block p {
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-card {
  background: var(--sand);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.reference-list {
  font-size: 12px;
  color: var(--muted);
}

.bg-slate {
  background-color: #d9e2ec;
}

.bg-clay {
  background-color: #e2d8cc;
}

.bg-cloud {
  background-color: #d4dde6;
}

.bg-sand {
  background-color: #e6dcd2;
}

.bg-mint {
  background-color: #d9e6dd;
}

.bg-steel {
  background-color: #cfd9e1;
}

.bg-mist {
  background-color: #e3e6ea;
}

.bg-ash {
  background-color: #d5dce6;
}
