:root {
  --black: #191714;
  --text: #555555;
  --accent: #d97745;
  --background: #f7f5f2;
  --light: #ffffff;
  --line: rgba(0,0,0,0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--background);
  color: var(--black);
  line-height: 1.7;
}

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

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

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 2rem;
}

/* HEADER */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.brand-name {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-sub {
  margin-top: 0.3rem;
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

nav a {
  font-weight: 700;
  position: relative;
}

nav a.active {
  color: var(--accent);
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 100%;
  height: 3px;
  background: var(--accent);
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.header-button:hover {
  transform: translateY(-2px);
}

/* HERO */

.article-hero {
  padding: 7rem 0 5rem;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  font-weight: 800;
}

.article-hero h1 {
  max-width: 980px;
  margin-top: 1.2rem;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.article-intro {
  max-width: 760px;
  margin-top: 2rem;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.75;
}

.meta {
  margin-top: 2rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  margin-top: 2rem;
}

.tags li {
  border: 1px solid rgba(217,119,69,0.35);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  background: rgba(217,119,69,0.05);
}

/* ARTICLE */

.article-wrap {
  padding: 6rem 0;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 5rem;
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 2;
  margin-top: 1.5rem;
}

/* PULL QUOTES */

.pull-quote {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pull-quote blockquote {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-align: left;
}

.pull-quote span {
  color: var(--accent);
  display: block;
  margin-top: 0.18em;
}
.quote-highlight {
  color: var(--accent);
  white-space: nowrap;
}

.quote-highlight::after {
  content: "”";
  color: var(--black);
}
/* FOOTER */

.article-footer {
  max-width: 760px;
  margin: 5rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 1rem 1.6rem;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  transition: transform 0.2s ease,
              box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217,119,69,0.2);
}

/* RELATED */

.related-section {
  padding: 7rem 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.related-title {
  margin-bottom: 3rem;
}

.related-title h2 {
  margin-top: 1rem;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-card {
  background: var(--background);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.related-card p:first-child {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
}

.related-card h3 {
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.related-card p:last-child {
  margin-top: 1rem;
  color: var(--text);
  line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 980px) {

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {

  .container {
    padding: 0 1.25rem;
  }

  .article-hero,
  .article-wrap,
  .related-section {
    padding: 4rem 0;
  }

  .article-hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .article-intro {
    font-size: 1.15rem;
  }

  .article-body p {
    font-size: 1.05rem;
  }

  .pull-quote {
    padding: 2rem 1rem;
  }

  .pull-quote blockquote {
    font-size: 2rem;
  }
}