:root {
  --ink: #1c1915;
  --ink-soft: #4a453c;
  --paper: #f4efe6;
  --paper-deep: #ebe4d6;
  --rule: #cfc6b4;
  --burgundy: #8b3a3a;
  --burgundy-deep: #6e2c2c;
  --gold: #b08d57;
  --white: #fffdf8;
  --shadow: 0 18px 40px rgba(28, 25, 21, 0.08);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2vw, 2rem);
  --wide: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
}

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

a {
  color: var(--burgundy);
}

a:hover {
  color: var(--burgundy-deep);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0.85rem var(--space);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.brand__mark {
  width: 0.85rem;
  height: 1.6rem;
  background: linear-gradient(180deg, var(--gold), var(--burgundy));
}

.brand__name {
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: 0.01em;
}

.nav-toggle {
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--ink);
  padding: 0.4rem 0.7rem;
  font: inherit;
  cursor: pointer;
}

.nav {
  width: 100%;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.45rem;
}

.nav.is-open .nav__list,
.nav-toggle[aria-expanded="true"] + .nav .nav__list {
  display: flex;
}

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

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    width: auto;
    margin-left: auto;
  }

  .nav__list {
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 1.15rem;
  }
}

.main {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2.5rem var(--space) 4rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--burgundy);
  margin: 0 0 0.5rem;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.hero__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 650;
  margin: 0;
}

.hero__aside {
  border-left: 3px solid var(--gold);
  padding-left: 1.1rem;
}

.hero__figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.65rem 1.1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

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

.btn--primary:hover {
  background: var(--burgundy-deep);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.section {
  margin: 3.2rem 0;
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 1.25rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.card__body {
  padding: 1.1rem 1.15rem 1.3rem;
}

.card h2,
.card h3 {
  font-family: var(--serif);
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.card a {
  text-decoration: none;
  color: inherit;
}

.note {
  background: var(--paper-deep);
  padding: 1.4rem 1.5rem;
  border-top: 3px solid var(--gold);
}

.split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.prose h2 {
  font-family: var(--serif);
  margin-top: 2rem;
}

.prose p {
  max-width: 42rem;
}

.article__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.article__figure {
  margin: 1.5rem 0 2rem;
}

.article__figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article__meta {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.form input,
.form textarea,
.form select {
  font: inherit;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--rule);
  background: var(--white);
}

.form__error,
.form__status {
  margin: 0;
  font-size: 0.95rem;
}

.form__error {
  color: var(--burgundy);
}

.form__status.is-success {
  color: #2d5a3d;
}

.review {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1.3rem 1.4rem;
  margin-bottom: 1rem;
}

.review__meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--rule);
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 2.5rem var(--space) 1.5rem;
}

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

.site-footer__inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .site-footer__inner {
    grid-template-columns: 1.4fr 1fr 0.8fr;
  }
}

.site-footer__brand {
  font-family: var(--serif);
  font-size: 1.3rem;
}

.site-footer__label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__copy {
  max-width: var(--wide);
  margin: 2rem auto 0;
  border-top: 1px solid rgba(246, 241, 232, 0.2);
  padding-top: 1rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--burgundy);
  padding: 1rem var(--space);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
  box-shadow: 0 -10px 30px rgba(28, 25, 21, 0.12);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
}

.portrait-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .portrait-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.page-404 {
  text-align: left;
  padding: 3rem 0;
}

.list-plain {
  list-style: none;
  padding: 0;
}

.list-plain li {
  border-bottom: 1px solid var(--rule);
  padding: 1rem 0;
}

.stack {
  display: grid;
  gap: 1.5rem;
}
