@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --ink: #1b1d22;
  --muted: #5f6672;
  --accent: #2259d6;
  --accent-soft: #e8efff;
  --sand: #f4f1ed;
  --forest: #0d3b2e;
  --sun: #f8d27a;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(14, 20, 30, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fbfbfc;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw 12px;
  gap: 24px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 10px 8vw 40px;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--card);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--forest);
  background: #e9f5f0;
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.magazine-band {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 8vw;
}

.band-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.band-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.band-title span {
  color: var(--muted);
  font-size: 0.9rem;
}

.column-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.column-row.split {
  flex-direction: column;
}

.column {
  flex: 1;
  background: var(--card);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.column h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.column p {
  color: var(--muted);
}

.story-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--sand);
  padding: 36px 8vw;
}

.story-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.story-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.insight-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.insight-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.insight-item strong {
  font-size: 1.2rem;
}

.trust-band {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 40px 8vw;
  background: #10192d;
  color: #f6f7fb;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
  border-radius: 999px;
  width: fit-content;
}

.pricing-preview {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--accent-soft);
  padding: 36px 8vw;
}

.pricing-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: #fff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 44px 8vw;
  background: #fff;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sand);
  padding: 24px;
  border-radius: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d5d9e2;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--forest);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 32px 8vw 40px;
  background: #0c0f15;
  color: #d0d6e2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.page-header {
  padding: 18px 8vw 24px;
  background: #fff;
  border-bottom: 1px solid #e4e8f0;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 8vw 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.service-card .meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card .price {
  color: var(--accent);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 8vw 40px;
}

.info-block {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 8vw 40px;
}

.policy-content p {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(92vw, 520px);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #f0f2f6;
  color: var(--ink);
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-panel {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .column-row,
  .trust-row,
  .pricing-row,
  .insight-grid {
    flex-direction: row;
  }

  .column-row.split .column:first-child {
    flex: 1.3;
  }

  .story-inner {
    flex-direction: row;
  }

  .story-card {
    flex: 1;
  }

  .form-section {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-section .form-copy {
    flex: 0.9;
  }

  .form-wrap {
    flex: 1.1;
  }

  .service-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .contact-info {
    flex-direction: row;
  }

  .info-block {
    flex: 1;
  }
}
