* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --paper: #f7f4ef;
  --accent: #2c4f6b;
  --accent-soft: #dfe8f0;
  --warm: #f2e6d9;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

header {
  padding: 32px 8vw 18px;
  border-bottom: 1px solid #e7e2db;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 14px;
  background: var(--warm);
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.hero {
  padding: 40px 8vw 60px;
  background: var(--paper);
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1 1 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #d9d0c5;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.mag-section {
  padding: 54px 8vw;
}

.mag-section.alt {
  background: var(--accent-soft);
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1773829020694-413e879d2957?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.background-panel .panel-inner {
  background: rgba(13, 18, 24, 0.72);
  padding: 48px;
  border-radius: 18px;
}

.mag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.col {
  flex: 1 1 260px;
  min-width: 240px;
}

.col.wide {
  flex: 2 1 420px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.8px;
  color: var(--muted);
  margin-bottom: 8px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 15px;
}

.button:hover,
.button:focus {
  filter: brightness(1.05);
}

.button.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.feature-image {
  background: #d7dfe6;
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
}

.feature-image img {
  width: 100%;
  height: 100%;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .image-frame {
  background: #d9d0c5;
  height: 160px;
}

.service-card img {
  width: 100%;
  height: 100%;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.story-card {
  flex: 1 1 240px;
  min-width: 240px;
  background: var(--paper);
  border-radius: 14px;
  padding: 20px;
}

.form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6d0c8;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.contact-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 22px;
}

footer {
  background: #111113;
  color: #f4f4f4;
  padding: 40px 8vw;
}

footer a {
  color: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col p {
  color: #d5d2ce;
}

.disclaimer {
  font-size: 13px;
  color: #cfcac4;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: none;
  z-index: 10;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 26px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 9;
}

.sticky-cta button {
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.sticky-cta button:hover,
.sticky-cta button:focus {
  text-decoration: underline;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 38px 8vw 40px;
  background: var(--paper);
}

.legal {
  padding: 40px 8vw 60px;
}

.legal h2 {
  margin-top: 24px;
}

.simple-list {
  padding-left: 18px;
  color: var(--muted);
}

.simple-list li {
  margin-bottom: 8px;
}

.notice {
  background: var(--warm);
  padding: 14px 18px;
  border-radius: 12px;
  color: #4f3d2f;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
