* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1f1c;
  --muted: #5b5b55;
  --accent: #2f5d62;
  --accent-soft: #e7f1ef;
  --sand: #f5f1ea;
  --paper: #ffffff;
  --shadow: 0 18px 45px rgba(12, 12, 12, 0.08);
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 0 0 72px;
}

header {
  padding: 28px 6vw 20px;
  border-bottom: 1px solid #e3e1da;
  background: var(--paper);
}

.top-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand h1 {
  font-size: 28px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 14px;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.nav-links a {
  padding: 4px 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 42px 6vw;
  background: var(--sand);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}

.hero-content h2 {
  font-size: 40px;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 15px;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.btn-secondary {
  background: #d9e3e1;
  color: var(--accent);
}

.btn:active {
  transform: translateY(1px);
}

.hero-image {
  background: #cfd7d5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 340px;
}

.magazine-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 6vw;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-row .text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-row .image-block {
  flex: 1 1 280px;
  background: #d9d5cc;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-block img {
  width: 100%;
  height: 260px;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.story-card {
  flex: 1 1 200px;
  background: var(--paper);
  border: 1px solid #e4e0d8;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-card .card-image {
  background: #d8dedc;
  border-radius: 10px;
  overflow: hidden;
}

.story-card img {
  width: 100%;
  height: 140px;
}

.highlight-band {
  background: #1f2c2b;
  color: #f8f6f1;
  padding: 38px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.highlight-band .band-image {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.highlight-band .band-image img {
  width: 100%;
  height: 100%;
}

.highlight-band .band-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 650px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px;
  border-radius: 12px;
  background: #f7f5f0;
  border: 1px solid #e5e1d8;
  align-items: center;
}

.service-row .service-info {
  flex: 1 1 300px;
}

.service-row .service-price {
  font-weight: bold;
  color: var(--accent);
  font-size: 18px;
}

.form-section {
  padding: 0 6vw;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f2f1ec;
  padding: 26px;
  border-radius: 14px;
  max-width: 620px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #d2cec5;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}

.inline-link {
  font-weight: bold;
}

footer {
  background: #1a1a18;
  color: #f1ede5;
  padding: 32px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #f1ede5;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 760px;
  border: 1px solid #e4e0d8;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 110px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 10;
}

.page-hero {
  padding: 36px 6vw;
  background: var(--accent-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-hero h2 {
  font-size: 32px;
}

.page-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 6vw;
}

.column-panel {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e4e0d8;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  background: #f8f4ec;
  border-radius: 12px;
  padding: 18px;
  border: 1px dashed #d9d2c7;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-image img {
    height: 380px;
  }
}
