:root {
  color-scheme: light;
  --bg: #f4f1eb;
  --paper: #fbfaf7;
  --ink: #1f211d;
  --muted: #696e64;
  --line: #d9d3c8;
  --green: #2d6259;
  --green-dark: #173d37;
  --clay: #9a5630;
  --blue: #496171;
  --shadow: 0 18px 55px rgba(36, 34, 28, 0.12);
  --radius: 8px;
  --max: 1120px;
  --text: "Inter", "Helvetica Neue", Arial, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.68;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 211, 200, 0.78);
  background: rgba(244, 241, 235, 0.93);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 64px;
  padding: 70px 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 76px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 28px;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.58;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.btn.primary {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.btn.primary:hover {
  background: var(--green-dark);
}

.btn:hover {
  border-color: var(--muted);
}

.portrait {
  position: relative;
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section.alt {
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  margin-bottom: 34px;
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tile,
.article-card,
.price,
.notice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 247, 0.72);
}

.tile {
  padding: 24px;
}

.tile h3,
.article-card h3,
.price h3 {
  margin-bottom: 10px;
}

.tile p,
.article-card p,
.price p {
  margin: 0;
  color: var(--muted);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.article-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  text-decoration: none;
}

.article-card:hover {
  border-color: var(--green);
}

.meta {
  color: var(--clay);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.price {
  padding: 22px;
}

.price strong {
  display: block;
  margin: 12px 0 4px;
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}

.notice {
  margin-top: 22px;
  padding: 20px 22px;
  color: var(--muted);
}

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.footer a {
  color: var(--ink);
}

.page {
  padding: 72px 0;
}

.page-head {
  max-width: 820px;
  margin-bottom: 48px;
}

.page-head h1 {
  font-size: 64px;
}

.content {
  max-width: 760px;
}

.content h2 {
  margin: 44px 0 14px;
  font-size: 36px;
}

.content h3 {
  margin: 32px 0 10px;
}

.content p,
.content li {
  color: #343730;
}

.content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--green);
  background: var(--paper);
  color: var(--ink);
}

.content blockquote p {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.25;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 260px;
  gap: 60px;
  align-items: start;
}

.side {
  position: sticky;
  top: 92px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--muted);
  font-size: 14px;
}

.side a {
  color: var(--green-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero,
  .section-head,
  .footer-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  h1,
  .page-head h1 {
    font-size: 52px;
  }

  .grid,
  .prices,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .side {
    position: static;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  h1,
  .page-head h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 18px;
  }
}
