:root {
  --df-ink: #0b0620;
  --df-warm: #89645a;
  --df-cream: #fff8ef;
  --df-soft: #f8eee2;
  --df-line: #e7d8c8;
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--df-cream);
  color: var(--df-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: #6f3e32;
}

.df-site {
  min-height: 100vh;
  background: #fffaf3;
}

.df-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--df-line);
  background: rgba(255,250,243,.96);
  position: sticky;
  top: 0;
  z-index: 4;
}

.df-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--df-ink);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 28px);
}

.df-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--df-ink);
  color: #fff;
  font: 700 13px/1 Inter, sans-serif;
}

.df-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.df-nav a {
  text-decoration: none;
  color: var(--df-ink);
  font-size: 14px;
}

.df-hero {
  min-height: 590px;
  display: grid;
  align-items: end;
  padding: clamp(60px, 9vw, 130px) clamp(18px, 6vw, 88px);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.df-hero > div,
.df-page-hero,
.df-section {
  max-width: 1120px;
  margin-inline: auto;
}

.df-hero > div {
  width: min(720px, 100%);
}

.df-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 750;
  color: #b07645;
}

.df-hero .df-kicker {
  color: #ffd9ad;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(38px, 6vw, 76px);
  font-family: Georgia, "Times New Roman", serif;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-family: Georgia, "Times New Roman", serif;
}

h3 {
  font-size: 21px;
}

p {
  line-height: 1.72;
}

.df-section,
.df-page-hero {
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 70px);
}

.df-page-hero {
  border-bottom: 1px solid var(--df-line);
}

.df-page-hero p {
  max-width: 780px;
}

.df-about-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.df-about-strip img,
.df-gallery img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.df-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.df-cards article,
.df-article,
.df-archive-item {
  background: #fff;
  border: 1px solid var(--df-line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(40, 20, 10, .06);
}

.df-articles {
  background: var(--df-soft);
  border-top: 1px solid var(--df-line);
  border-bottom: 1px solid var(--df-line);
  max-width: none;
}

.df-articles > * {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.df-intro {
  max-width: 720px;
  margin-left: 0;
}

.df-article {
  margin-top: 24px;
}

.df-date {
  color: #8d6a59;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.df-article h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.df-dek {
  font-weight: 700;
}

.df-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.df-text {
  max-width: 860px;
}

.df-archive {
  display: grid;
  gap: 14px;
}

.df-archive-item summary {
  cursor: pointer;
  display: grid;
  gap: 7px;
}

.df-archive-item summary span {
  color: #8d6a59;
  font-size: 13px;
}

.df-footer {
  padding: 34px clamp(18px, 5vw, 70px);
  background: var(--df-ink);
  color: #fff8ef;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 780px) {
  .df-header,
  .df-footer,
  .df-about-strip,
  .df-cards,
  .df-gallery {
    grid-template-columns: 1fr;
  }

  .df-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .df-hero {
    min-height: 500px;
  }
}
