* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #101217;
  --muted: #5b6270;
  --paper: #f7f5f1;
  --sand: #efe9df;
  --stone: #e1e6ef;
  --accent: #2a5bd7;
  --accent-dark: #1d3f93;
  --gold: #c0a87a;
}

body {
  font-family: "Libre Franklin", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e6e1d7;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-disclosure {
  font-size: 14px;
  color: var(--muted);
  max-width: 320px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.layout-main {
  flex: 1;
  padding: 40px 6vw 72px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 44px;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
}

.hero-media {
  flex: 1 1 360px;
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
}

.editorial-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.editorial-columns .col {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background: var(--sand);
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}

.callout {
  background: #ffffff;
  border-left: 4px solid var(--gold);
  padding: 18px;
  font-size: 15px;
  color: var(--muted);
}

.card-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #efe7db;
}

.card .image-frame {
  min-height: 160px;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.story-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  opacity: 0.14;
}

.story-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-ledger {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.ledger-main {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ledger-side {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  position: sticky;
  top: 24px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-quote {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e7e1d8;
}

.pricing-section {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 230px;
  border: 1px solid #ece6da;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--paper);
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7dbe2;
  font-family: inherit;
  font-size: 15px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row .field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.page-footer {
  background: #ffffff;
  padding: 36px 6vw;
  border-top: 1px solid #e6e1d7;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  max-width: 680px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e6e1d7;
  width: min(320px, 90vw);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  flex: 1 1 auto;
  padding: 10px 14px;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: stretch;
}

.page-hero .copy {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-hero .media {
  flex: 1 1 320px;
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
}

.service-listing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 12px;
  background: var(--sand);
}

.service-line span {
  font-weight: 600;
}

.contact-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.hidden {
  display: none;
}

@media (max-width: 720px) {
  .hero-title {
    font-size: 36px;
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .ledger-side {
    position: static;
  }

  .cookie-banner {
    position: static;
    margin: 20px 6vw 0;
  }
}
