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

:root {
  --black:    #0A0A0A;
  --charcoal: #1A1A1A;
  --slate:    #2D2D2D;
  --grey:     #8A8A8A;
  --silver:   #C0C0C0;
  --white:    #F5F5F5;
  --coral:    #E8563C;
}

html { background: var(--black); }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--coral); }

/* HEADER */
header.site-header {
  background: var(--black);
  border-bottom: 1px solid var(--slate);
  padding: 0 56px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}

.logo em { color: var(--coral); font-style: normal; }

.nav-right { display: flex; align-items: center; gap: 32px; }

.nav-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
}

.nav-link {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver);
}
.nav-link:hover { color: var(--coral); }

.nav-cta {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid var(--coral);
  padding: 7px 14px;
  display: inline-block;
}
.nav-cta:hover { background: var(--coral); color: var(--black); }

/* COMMON BAND */
.coral-strip { height: 4px; background: var(--coral); }

/* HOME HERO */
.home-hero {
  background: var(--charcoal);
  padding: 120px 56px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,86,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.home-hero .kicker { justify-content: center; }
.home-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 28px;
}
.home-hero h1 .italic-coral { font-style: italic; color: var(--coral); display: block; }
.home-hero .hero-deck {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto;
}

.kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.kicker-line { width: 32px; height: 1px; background: var(--coral); }
.kicker-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
}

/* POST GRID */
.posts-outer { background: var(--black); padding: 100px 56px; }
.posts-inner { max-width: 1100px; margin: 0 auto; }

.posts-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.posts-sub {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 48px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.post-card {
  background: var(--charcoal);
  border-top: 3px solid var(--coral);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, background 0.25s ease;
}
.post-card:hover { transform: translateY(-4px); background: #1f1f1f; }

.post-card-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.post-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.post-card-dek {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

.post-card-meta {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--slate);
  padding-top: 16px;
}

/* NEWSLETTER STRIP */
.newsletter {
  background: var(--charcoal);
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,86,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}
.newsletter p {
  font-size: 0.9rem;
  color: var(--silver);
  max-width: 520px;
  margin: 0 auto 28px;
  position: relative;
}
.newsletter form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.newsletter input[type="email"] {
  flex: 1;
  background: var(--black);
  border: 1px solid var(--slate);
  color: var(--white);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
}
.newsletter input[type="email"]:focus { border-color: var(--coral); }
.newsletter button {
  background: var(--coral);
  color: var(--black);
  border: none;
  padding: 14px 22px;
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
}
.newsletter button:hover { background: var(--white); }

/* ARTICLE HERO (post pages) */
.hero {
  background: var(--charcoal);
  padding: 100px 56px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(232,86,60,0.07) 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: end;
}
.hero-left { padding-bottom: 64px; }

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
h1 .italic-coral { font-style: italic; color: var(--coral); display: block; }

.hero-deck {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.85;
  max-width: 460px;
}

.hero-right {
  background: var(--slate);
  padding: 36px 28px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 3px solid var(--coral);
}
.hero-meta-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.hero-meta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
}
.hero-rule { width: 100%; height: 1px; background: var(--slate); margin: 0; border: none; }
.hero-byline { padding-top: 20px; display: flex; flex-direction: column; gap: 4px; }
.hero-byline-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
}
.hero-byline-date {
  font-size: 0.65rem;
  color: var(--grey);
  letter-spacing: 0.06em;
}

/* ARTICLE BODY */
.article-outer { background: var(--black); padding: 80px 56px 100px; }
.article-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 64px;
  align-items: start;
}

p {
  font-size: 0.95rem;
  color: var(--silver);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.9;
}
p strong { color: var(--white); font-weight: 600; }
p em { font-style: italic; color: var(--white); }

h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin: 3.5rem 0 1.2rem;
  line-height: 1.2;
}

.section-label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.section-label-line { width: 20px; height: 1px; background: var(--coral); }
.section-label-text {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
}

.pull-quote {
  position: relative;
  padding: 32px 32px 28px 36px;
  background: var(--charcoal);
  border-left: 3px solid var(--coral);
  margin: 3rem 0;
}
.pull-quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 6rem;
  color: var(--coral);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 10px;
  line-height: 1;
  pointer-events: none;
}
.pull-quote blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  font-weight: 400;
}
.pull-quote cite {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-style: normal;
}

.callout {
  padding: 36px 32px;
  background: var(--slate);
  border-top: 3px solid var(--coral);
  margin: 3rem 0;
}
.callout blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 400;
}
.callout cite {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-style: normal;
}

hr.divider { border: none; border-top: 1px solid var(--slate); margin: 3rem 0; }

/* SIDEBAR */
.article-sidebar { position: sticky; top: 88px; }
.sidebar-block {
  background: var(--charcoal);
  border-top: 2px solid var(--coral);
  padding: 28px 24px;
  margin-bottom: 16px;
}
.sidebar-block-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.sidebar-block p {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 0;
  line-height: 1.7;
}
.sidebar-block strong { color: var(--silver); font-weight: 500; }

/* CLOSING */
.closing-wrap {
  margin-top: 4rem;
  padding: 56px;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,86,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.closing-wrap p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 0;
  position: relative;
}
.closing-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  position: relative;
}

/* FOOTER */
footer.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--slate);
  padding: 36px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}
.footer-copy { font-size: 0.6rem; color: var(--grey); letter-spacing: 0.06em; }

/* ABOUT */
.about-outer { background: var(--black); padding: 80px 56px 100px; }
.about-inner { max-width: 760px; margin: 0 auto; }
.about-inner h2:first-of-type { margin-top: 0; }

/* MOBILE */
@media (max-width: 720px) {
  header.site-header { padding: 0 24px; }
  .nav-cta, .nav-right { display: none; }
  .home-hero { padding: 72px 24px 60px; }
  .posts-outer { padding: 64px 24px; }
  .post-grid { grid-template-columns: 1fr; gap: 20px; }
  .newsletter { padding: 56px 24px; }
  .newsletter form { flex-direction: column; gap: 12px; }
  .hero { padding: 60px 24px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-left { padding-bottom: 40px; }
  .hero-right { display: none; }
  .article-outer { padding: 48px 24px 72px; }
  .article-inner { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .closing-wrap { padding: 40px 24px; }
  footer.site-footer { padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .about-outer { padding: 56px 24px 72px; }
}
