@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600&display=swap");

:root {
  --ink: #1f1e1c;
  --muted: #5b5852;
  --paper: #f6f4f1;
  --paper-deep: #efe8df;
  --accent: #2f5b4f;
  --accent-soft: #dce6e1;
  --line: #d7cec3;
  --highlight: #f4efe8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header,
main,
footer {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  font-size: 18px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--muted);
}

.hero {
  display: flex;
  gap: 28px;
  padding: 40px 0 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.2;
  margin: 0;
}

.hero-media {
  flex: 1;
  background: var(--paper-deep);
  border-radius: 16px;
  overflow: hidden;
}

.hero-notes {
  flex: 0.8;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-notes h3 {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero-notes ul {
  margin: 0;
  padding-left: 18px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.mag-section {
  padding: 40px 0;
}

.mag-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.mag-col {
  flex: 1;
}

.mag-col.wide {
  flex: 1.4;
}

.mag-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin: 0 0 12px;
}

.meta-text {
  color: var(--muted);
  font-size: 15px;
}

.media {
  background: var(--paper-deep);
  border-radius: 16px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-archive {
  background: var(--paper-deep);
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bg-archive .cta-ghost {
  border-color: #fff;
  color: #fff;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.note-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: var(--highlight);
}

.form-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

button {
  font-family: inherit;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--paper-deep);
  color: var(--ink);
}

.legal-columns {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.legal-sidebar {
  flex: 0.8;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.legal-content {
  flex: 1.4;
}

@media (max-width: 960px) {
  .hero,
  .mag-row,
  .legal-columns {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
