:root {
  --orange: #f36f21;
  --orange-dark: #d9570d;
  --orange-soft: #fff4ec;
  --black: #101010;
  --charcoal: #242424;
  --grey: #676767;
  --light-grey: #f5f5f3;
  --border: #e8e4df;
  --white: #ffffff;
  --max: 1220px;
  --content: 820px;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(16,16,16,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, video { max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 72px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  position: relative;
  text-decoration: none;
  color: var(--black);
  font: 700 1.28rem/1.1 Georgia, "Times New Roman", serif;
  letter-spacing: -.02em;
  padding-left: 18px;
}
.brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  transform: translateY(-50%);
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  position: relative;
  padding: 26px 0 23px;
  color: var(--charcoal);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 650;
  letter-spacing: .015em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 17px;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-links a:hover { color: var(--black); }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 28px 72px;
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(260px,.6fr);
  gap: 72px;
  align-items: end;
}
.eyebrow {
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .72rem;
  font-weight: 800;
}
.hero h1, .page-title {
  max-width: 860px;
  margin: .16em 0 .24em;
  color: var(--black);
  font: 700 clamp(3.4rem,8vw,7rem)/.92 Georgia, "Times New Roman", serif;
  letter-spacing: -.055em;
}
.hero p {
  max-width: 720px;
  margin: 0;
  color: var(--grey);
  font-size: 1.08rem;
  line-height: 1.75;
}
.hero-note {
  border-top: 4px solid var(--orange);
  padding: 20px 0 0;
  color: var(--grey);
  font-size: .95rem;
}
.hero-note strong { color: var(--black); font-size: 1.1rem; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px 88px; }
.section-head {
  margin: 0 0 28px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.section-head h2 {
  margin: .1em 0 0;
  color: var(--black);
  font: 700 clamp(2rem,4vw,3rem)/1.05 Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
}
.search {
  width: min(100%, 390px);
  padding: 13px 18px;
  border: 1px solid #d8d5d1;
  border-radius: 8px;
  outline: none;
  background: var(--white);
  color: var(--black);
  font: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.search:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(243,111,33,.12); }
.search::placeholder { color: #949494; }
.filters { display: flex; gap: 9px; flex-wrap: wrap; margin: 0 0 34px; }
.filter {
  border: 1px solid var(--black);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--white);
  color: var(--black);
  font: 700 .78rem/1 Inter, sans-serif;
  cursor: pointer;
  transition: .18s ease;
}
.filter:hover { border-color: var(--orange); color: var(--orange-dark); }
.filter.active { border-color: var(--orange); background: var(--orange); color: var(--white); }

.grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; }
.card {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 0 rgba(16,16,16,.015);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-6px); border-color: #d9d1ca; box-shadow: var(--shadow); }
.card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(145deg, var(--orange-soft), #ffe2ce);
  border-bottom: 1px solid var(--border);
}
.card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(transparent, rgba(16,16,16,.09));
  pointer-events: none;
}
.card-media:empty::before {
  content: "A";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--orange);
  font: 700 4rem Georgia, serif;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.card:hover .card-media img { transform: scale(1.035); }
.card-body { padding: 23px 24px 25px; display: flex; flex: 1; flex-direction: column; }
.meta {
  color: var(--orange-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.card h3 {
  margin: 11px 0 12px;
  color: var(--black);
  font: 700 1.45rem/1.18 Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
  transition: color .18s;
}
.card:hover h3 { color: var(--orange-dark); }
.card p { margin: 0 0 22px; color: var(--grey); font-size: .94rem; line-height: 1.65; }
.read {
  margin-top: auto;
  color: var(--black);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .015em;
}
.read::after { content: ""; display: inline-block; width: 24px; height: 2px; margin: 0 0 3px 9px; background: var(--orange); transition: width .2s; }
.read:hover::after { width: 38px; }

.article {
  max-width: var(--content);
  margin: 0 auto;
  padding: 82px 28px 100px;
}
.article > .meta { margin-bottom: 16px; }
.article h1 {
  margin: 0 0 28px;
  color: var(--black);
  font: 700 clamp(2.8rem,7vw,5.4rem)/.98 Georgia, "Times New Roman", serif;
  letter-spacing: -.05em;
}
.article-body {
  color: #252525;
  font: 1.12rem/1.82 Georgia, "Times New Roman", serif;
}
.article-body > p:first-child { font-size: 1.25rem; line-height: 1.72; color: #333; }
.article-body h2, .article-body h3, .article-body h4 {
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.article-body h2 { margin: 2.4em 0 .7em; font-size: 2rem; }
.article-body h3 { margin: 2em 0 .65em; font-size: 1.45rem; }
.article-body p { margin: 1.2em 0; }
.article-body a { color: var(--orange-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-body img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 2rem auto;
  border-radius: 10px;
}
.article-body figure { margin: 2.4rem 0; }
.article-body figcaption { margin-top: .65rem; color: var(--grey); font: italic .82rem/1.5 Inter, sans-serif; text-align: center; }
.article-body blockquote {
  margin: 2.3rem 0;
  padding: 1.35rem 1.6rem;
  border: 0;
  border-left: 5px solid var(--orange);
  background: var(--orange-soft);
  color: var(--black);
  font-size: 1.25rem;
  line-height: 1.65;
}
.article-body hr { border: 0; border-top: 1px solid var(--border); margin: 3rem 0; }
.article-body iframe { width: 100%; max-width: 100%; border: 0; }
.article-body table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; font-family: Inter, sans-serif; font-size: .92rem; }
.article-body th, .article-body td { padding: 12px 14px; border: 1px solid var(--border); text-align: left; }
.article-body th { background: var(--light-grey); color: var(--black); }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 36px 0; padding-top: 24px; border-top: 1px solid var(--border); }
.tag { border: 1px solid var(--orange); border-radius: 999px; padding: 6px 10px; background: var(--white); color: var(--orange-dark); font: 700 .74rem/1 Inter,sans-serif; }

.archive-list { list-style: none; margin: 24px 0 0; padding: 0; }
.archive-list li {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.archive-list time, .archive-list small { color: var(--grey); font-size: .82rem; }
.archive-list a { color: var(--black); text-decoration: none; font: 700 1.05rem Georgia,serif; }
.archive-list a:hover { color: var(--orange-dark); }

.footer {
  margin-top: 10px;
  padding: 34px 28px;
  border-top: 5px solid var(--orange);
  background: var(--black);
  color: #d3d3d3;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .025em;
}

::selection { background: var(--orange); color: var(--white); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 34px; padding-top: 68px; }
  .grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .nav-links { gap: 18px; }
}
@media (max-width: 680px) {
  .nav { min-height: 64px; padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 54px 20px 48px; }
  .hero h1 { font-size: clamp(3rem,16vw,4.7rem); }
  .wrap { padding: 0 20px 68px; }
  .section-head { align-items: stretch; flex-direction: column; }
  .search { max-width: none; }
  .grid { grid-template-columns: 1fr; gap: 22px; }
  .article { padding: 58px 20px 76px; }
  .article-body { font-size: 1.05rem; }
  .archive-list li { grid-template-columns: 1fr; gap: 5px; }
}
