:root {
  --ink: #1c2421;
  --ink-soft: #3d4a45;
  --paper: #f4efe6;
  --paper-2: #fffbf5;
  --rule: #d7cfc2;
  --forest: #2f5d50;
  --forest-deep: #1e3d35;
  --copper: #c45c26;
  --copper-deep: #9a4318;
  --gold: #e8b86d;
  --danger: #8c2f1b;
  --shadow: 8px 8px 0 #1c2421;
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(232, 184, 109, 0.28), transparent 32%),
    radial-gradient(circle at 90% 0%, rgba(47, 93, 80, 0.12), transparent 28%),
    var(--paper);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

a {
  color: var(--forest-deep);
}

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

h1,
h2,
h3,
.lede {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  margin: 0 0 0.6rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

.main {
  min-height: 60vh;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.site-header__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.site-header__mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 4px;
  background:
    linear-gradient(90deg, var(--paper) 0 33%, var(--gold) 33% 66%, var(--copper) 66%);
  box-shadow: inset 0 0 0 2px var(--forest);
}

.site-header__toggle {
  font: inherit;
  border: 1px solid var(--ink);
  background: var(--paper-2);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.js-error {
  color: var(--danger);
  font-size: 0.9rem;
  margin: 0.4rem 0 0;
}

.hero {
  display: grid;
  gap: 1.5rem;
  padding: var(--space) 0 2.5rem;
}

@media (min-width: 880px) {
  .hero--split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }

  .site-header__toggle {
    display: none;
  }

  .site-nav[hidden] {
    display: block !important;
  }
}

@media (max-width: 879px) {
  .site-nav {
    width: 100%;
  }

  .site-nav[hidden] {
    display: none;
  }

  .site-nav__list {
    flex-direction: column;
    padding: 0.5rem 0 0.25rem;
  }
}

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 0.75rem;
}

.hero__panel {
  background: var(--paper-2);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.hero__panel img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.9rem;
}

.hero__meta {
  display: grid;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.hero__meta dt {
  font-weight: 600;
  color: var(--forest);
}

.hero__meta dd {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

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

.btn--primary:hover {
  background: var(--copper-deep);
  color: #fff;
}

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

.btn--veve {
  background: var(--forest);
  color: #f4efe6;
  border-color: var(--forest-deep);
  margin-top: 0.4rem;
}

.btn--veve:hover {
  background: var(--forest-deep);
  color: #fff;
}

.section {
  padding: 0 0 3rem;
}

.section__head {
  max-width: 40rem;
  margin-bottom: 1.4rem;
}

.card-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}

.card__body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.card__body h3 {
  margin: 0;
}

.card__body p {
  flex: 1;
}

.prose {
  max-width: 44rem;
}

.prose + .prose,
.stack > * + * {
  margin-top: 1rem;
}

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

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

.pull {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  border-left: 4px solid var(--copper);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.list-plain {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.quote {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  margin: 0;
}

.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
}

.quote footer {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--paper-2);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

th {
  background: #efe6d4;
}

.banner-note {
  background: #efe6d4;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  border: 1px dashed var(--forest);
}

.site-footer {
  background: var(--forest-deep);
  color: #e7efe9;
  margin-top: 1rem;
  padding: 2.4rem 0 1.6rem;
}

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

.site-footer a:hover {
  color: #fff;
}

.site-footer__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-footer__grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  margin-bottom: 1.8rem;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

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

.site-footer__address,
.site-footer__lede {
  white-space: pre-wrap;
}

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

.site-footer__links li {
  margin: 0.25rem 0;
}

.site-footer__legal {
  border-top: 1px solid rgba(232, 184, 109, 0.28);
  padding-top: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #c9d6cf;
}

.cookie-banner {
  position: sticky;
  bottom: 0;
  z-index: 30;
  background: var(--ink);
  color: var(--paper);
  padding: 1rem 0;
}

.cookie-banner a {
  color: var(--gold);
}

.cookie-banner__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 18rem;
}

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

.cookie-banner .btn--ghost {
  color: var(--paper);
  border-color: var(--paper);
}

.page-hero {
  padding: 2rem 0 1.5rem;
}

.page-hero img {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
  margin-top: 1rem;
}

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

.article {
  padding-bottom: 3rem;
}

.article img.cover {
  width: 100%;
  max-height: 24rem;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1rem 0 1.4rem;
}

.contact-block {
  background: var(--paper-2);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}

.contact-block p {
  margin-bottom: 0.45rem;
}

.faq dt {
  font-weight: 600;
  margin-top: 1rem;
}

.faq dd {
  margin: 0.3rem 0 0;
}

.not-found {
  padding: 4rem 0 5rem;
  text-align: center;
}
