:root {
  --ink: #1f1d1a;
  --muted: #6b635c;
  --accent: #c76b3c;
  --accent-dark: #8b3a1f;
  --cream: #f7f2ec;
  --sand: #efe5da;
  --leaf: #31564b;
  --border: #e2d7cd;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Serif Pro", "Georgia", serif;
  color: var(--ink);
  background: #fbf9f7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: min(1200px, 94%);
  margin: 0 auto;
}

.top-strip {
  background: var(--ink);
  color: #fff;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.top-strip .page {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.masthead {
  border-bottom: 1px solid var(--border);
}

.masthead-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.8rem 0 1.2rem;
}

.brand {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  font-size: 0.95rem;
}

.nav-row a {
  color: var(--ink);
  font-weight: 600;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0 2.8rem;
}

.hero-feature {
  background: var(--sand);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-feature h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.4rem;
  margin: 0;
}

.hero-feature p {
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  background: var(--accent);
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  border: 1px solid transparent;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-aside-card {
  background: #fff;
  padding: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.section {
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

.section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.8rem;
  margin: 0 0 1.2rem;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card img {
  border-radius: 8px;
}

.callout {
  background: var(--cream);
  padding: 1.6rem;
  border-left: 4px solid var(--accent);
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
  margin: 0;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-item {
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.feature-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.form-shell {
  background: #fff;
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
}

.footer {
  background: var(--ink);
  color: #fff;
  padding: 2.4rem 0;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: var(--leaf);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  width: min(360px, 90%);
  background: #fff;
  border: 1px solid var(--border);
  padding: 1rem;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.cookie-actions button {
  flex: 1;
}

.muted {
  color: var(--muted);
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.magazine-split {
  background: var(--sand);
  padding: 1.8rem;
}

.tag {
  display: inline-flex;
  background: var(--leaf);
  color: #fff;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

@media (min-width: 800px) {
  .masthead-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-feature {
    flex: 1.2;
  }

  .hero-aside {
    flex: 0.8;
  }

  .columns {
    flex-direction: row;
    align-items: flex-start;
  }

  .columns .column {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .image-row {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
