:root {
  --navy: #08284b;
  --navy-deep: #051b32;
  --green: #627e2f;
  --cream: #f7f2e9;
  --paper: #fbfaf7;
  --ink: #183149;
  --muted: #667484;
  --line: #d9ded8;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  height: 78px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  color: var(--navy);
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
}

nav a:hover { color: var(--navy); }

.hero {
  max-width: 1240px;
  margin: 0 auto;
  min-height: calc(100vh - 78px);
  padding: 60px 32px 90px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 700;
}

.hero h1, .section h2, .order h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  letter-spacing: -.045em;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.intro {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.18rem;
  margin: 28px 0 0;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: .2s ease;
}

.primary {
  background: var(--navy);
  color: var(--white);
}

.primary:hover { transform: translateY(-2px); }

.secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
}

.formats {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 18px;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.cover-wrap {
  position: relative;
  width: min(100%, 485px);
  padding: 18px 18px 26px 24px;
}

.cover-wrap::before {
  content: "";
  position: absolute;
  inset: 7% 0 0 12%;
  background: #dfe7d5;
  border-radius: 28px;
  z-index: -1;
}

.cover-wrap img {
  display: block;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 28px 70px rgba(5, 27, 50, .2);
}

.statement {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 38px 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
}

.statement p { margin: 0; }

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 110px 32px;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}

.section h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  letter-spacing: -.035em;
}

.body-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.body-copy p:first-child { margin-top: 0; }

.pillars {
  max-width: 1120px;
  margin: 0 auto 110px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pillars article {
  background: var(--paper);
  padding: 40px 34px 44px;
}

.pillars span {
  color: var(--green);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
}

.pillars h3 {
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  margin: 12px 0 8px;
}

.pillars p {
  color: var(--muted);
  margin: 0;
}

.author {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.author-card p:last-child {
  color: var(--muted);
  max-width: 620px;
  font-size: 1.05rem;
}

blockquote {
  margin: 0;
  padding-left: 34px;
  border-left: 3px solid var(--green);
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.25;
}

.order {
  background: var(--green);
  color: var(--white);
  padding: 80px max(32px, calc((100vw - 1120px) / 2));
  display: flex;
  justify-content: center;
}

.order-content {
  max-width: 680px;
  width: 100%;
}

.order h2 {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.order-intro {
  font-size: 1.15rem;
  margin: 12px 0 28px;
  color: #e7eddc;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.order-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
}

.order-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
}

.order-card p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
  color: var(--white);
}

.bulk-rates {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.bulk-rates li {
  font-size: .95rem;
  margin-bottom: 4px;
}

.savings {
  color: var(--cream);
  font-size: .85rem;
}

.bulk-note {
  font-size: .85rem;
  opacity: .9;
}

.order-contact {
  background: rgba(8, 40, 75, 0.35);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 20px;
}

.order-contact p {
  margin: 2px 0;
  font-size: .95rem;
}

.contact-title {
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px !important;
}

.order-contact a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.order-actions {
  display: flex;
  margin-top: 8px;
}

.button.cream {
  background: var(--cream);
  color: var(--navy);
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.button.cream:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.light { color: #e7eddc; }

footer {
  background: var(--navy-deep);
  color: #b8c2cc;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: .82rem;
}

footer p { margin: 0; }

@media (max-width: 860px) {
  .site-header { padding: 0 20px; }
  nav { gap: 16px; }
  .hero {
    min-height: auto;
    padding: 50px 22px 70px;
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .hero-copy { text-align: center; }
  .intro { margin-left: auto; margin-right: auto; }
  .actions { justify-content: center; }
  .hero h1 { font-size: clamp(3.2rem, 14vw, 5.8rem); }
  .split, .author { grid-template-columns: 1fr; gap: 35px; }
  .section { padding: 80px 24px; }
  .pillars { grid-template-columns: 1fr; margin-bottom: 80px; padding: 0 24px; background: transparent; border: 0; gap: 14px; }
  .pillars article { border: 1px solid var(--line); }
  .order { padding: 64px 24px; }
  .order-content {
    display: flex;
    flex-direction: column;
  }
  .order-grid { grid-template-columns: 1fr; }
  .order-actions {
    width: 100%;
    margin-top: 16px;
  }
  .button.cream {
    width: 100%;
    text-align: center;
  }
  footer { flex-direction: column; }
}

@media (max-width: 520px) {
  .brand { font-size: 1rem; }
  nav a:nth-child(2) { display: none; }
  .hero h1 { font-size: 3.4rem; }
  .cover-wrap { padding: 10px 10px 18px 14px; }
}