@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap");

:root {
  --ink: #141414;
  --muted: #5c5c5c;
  --paper: #f8f5f2;
  --surface: #ffffff;
  --accent: #c33b3b;
  --accent-dark: #8e2a2a;
  --sand: #efe7de;
  --fog: #f2f1f5;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 8vw;
  position: relative;
  z-index: 2;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.9rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 8vw 80px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 0;
}

.hero-lead {
  max-width: 540px;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--ink);
  background: transparent;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  width: min(520px, 90%);
  border-radius: 40px 0 40px 40px;
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 8vw;
}

.section-sand {
  background: var(--sand);
}

.section-fog {
  background: var(--fog);
}

.section-surface {
  background: var(--surface);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.asym-row .block {
  flex: 1;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 18px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0 0 16px;
}

.muted {
  color: var(--muted);
}

.quote {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-style: italic;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(195, 59, 59, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.split-highlight {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #fff;
}

.metric-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.04);
}

.metric strong {
  font-size: 1.4rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 40px 8vw 60px;
  background: #111;
  color: #f0f0f0;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f0f0f0;
  opacity: 0.8;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 4;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 280px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.simple-header {
  padding: 60px 8vw 20px;
}

.simple-header h1 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
}

.content {
  padding: 30px 8vw 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .hero {
    padding-bottom: 120px;
  }

  .hero-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .hero-actions {
    align-items: center;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .metric-row {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .footer-row {
    flex-direction: row;
    justify-content: space-between;
  }

  .form-wrap {
    flex-direction: row;
  }

  .form-wrap > * {
    flex: 1;
  }
}
