/* ════════════════════════════════════════════════
   GLOBAL BEAUTY COLLECTIVE — WEBSITE STYLES
   Pure White · Oxblood · Pitch Black · Slate Grey
   ════════════════════════════════════════════════ */

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

:root {
  --white: #FFFFFF;
  --oxblood: #722525;
  --oxblood-lifted: #A23838;
  --black: #0A0A0A;
  --slate: #555555;
  --grey-light: #E8E8E8;
  --grey-mid: #BBBBBB;
  --grey-bg: #FAFAFA;
}

html, body {
  background: var(--white);
  color: var(--black);
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.label, .category, .meta {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oxblood);
}

.tagline {
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--slate);
}

a {
  color: var(--oxblood);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--black);
}

/* ── HEADER / NAV ── */
.site-header {
  background: var(--white);
  border-bottom: 0.5px solid var(--grey-light);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.masthead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.masthead-beauty {
  font-size: 28px;
  font-weight: 700;
  color: var(--oxblood);
  letter-spacing: -0.02em;
  line-height: 1;
}
.masthead-sub {
  font-family: "Times New Roman", Times, serif;
  font-size: 9px;
  letter-spacing: 0.45em;
  color: var(--black);
  margin-top: 4px;
}
.nav {
  display: flex;
  gap: 36px;
}
.nav a {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
}
.nav a.active {
  color: var(--oxblood);
}
.nav a:hover {
  color: var(--oxblood);
}

/* ── HERO ── */
.hero {
  padding: 100px 32px;
  text-align: center;
  border-bottom: 0.5px solid var(--grey-light);
}
.hero-eyebrow {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 96px;
  color: var(--oxblood);
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 0.95;
}
.hero-sub {
  font-size: 14px;
  letter-spacing: 0.45em;
  color: var(--black);
  margin-top: 12px;
}
.hero-rule {
  width: 200px;
  height: 0.5px;
  background: var(--oxblood);
  margin: 32px auto;
}
.hero-tagline {
  font-style: italic;
  font-size: 16px;
  color: var(--slate);
}

/* ── SECTIONS ── */
section {
  padding: 80px 32px;
  border-bottom: 0.5px solid var(--grey-light);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 8px;
}
.section-rule {
  width: 40px;
  height: 0.5px;
  background: var(--oxblood);
  margin-bottom: 24px;
}
section h2 {
  font-size: 48px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
section h3 {
  font-size: 28px;
  margin-bottom: 16px;
}
section p {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 16px;
}

/* ── CARDS / GRID ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border: 0.5px solid var(--grey-light);
  padding: 32px;
  transition: border-color 0.2s ease;
}
.card:hover {
  border-color: var(--oxblood);
}
.card-label {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 8px;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.card p {
  font-size: 14px;
  color: var(--slate);
}

/* ── ISSUE FEATURE ── */
.issue-feature {
  background: var(--black);
  color: var(--white);
  padding: 120px 32px;
  text-align: center;
  border-bottom: none;
}
.issue-feature .section-label {
  color: var(--oxblood-lifted);
}
.issue-feature h2 {
  font-size: 64px;
  color: var(--white);
  font-style: italic;
  margin: 24px 0;
}
.issue-feature p {
  color: var(--grey-mid);
  margin: 0 auto 32px;
}
.issue-feature .section-rule {
  background: var(--oxblood-lifted);
  margin: 32px auto;
}

/* ── EMAIL SIGNUP ── */
.signup {
  background: var(--grey-bg);
  padding: 80px 32px;
  text-align: center;
}
.signup h2 {
  font-size: 36px;
  margin-bottom: 16px;
}
.signup p {
  margin: 0 auto 32px;
  font-size: 15px;
}
.signup-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 12px;
}
.signup-form input {
  flex: 1;
  padding: 14px 18px;
  font-family: "Times New Roman", Times, serif;
  font-size: 15px;
  border: 0.5px solid var(--grey-mid);
  background: var(--white);
  color: var(--black);
}
.signup-form input:focus {
  outline: none;
  border-color: var(--oxblood);
}
.signup-form button {
  padding: 14px 28px;
  background: var(--oxblood);
  color: var(--white);
  border: none;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.signup-form button:hover {
  background: var(--black);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  color: var(--grey-mid);
  padding: 80px 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .masthead-beauty {
  color: var(--oxblood-lifted);
  font-size: 32px;
}
.footer-brand .masthead-sub {
  color: var(--white);
}
.footer-tagline {
  margin-top: 16px;
  font-style: italic;
  font-size: 13px;
  color: var(--grey-mid);
  max-width: 320px;
}
.footer-col h4 {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oxblood-lifted);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  color: var(--grey-mid);
  font-size: 14px;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 32px;
  border-top: 0.5px solid #2A2A2A;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--grey-mid);
  text-transform: uppercase;
}

/* ── PAGE CONTENT (about, contact) ── */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 32px;
}
.page-content h1 {
  font-size: 56px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-content .lede {
  font-size: 22px;
  color: var(--oxblood);
  font-style: italic;
  margin: 24px 0 48px;
  line-height: 1.5;
  border-left: 2px solid var(--oxblood);
  padding-left: 24px;
}
.page-content h2 {
  font-size: 32px;
  margin: 48px 0 16px;
}
.page-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--black);
  max-width: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero h1 { font-size: 64px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .nav { gap: 20px; }
  .nav a { font-size: 10px; }
  .signup-form { flex-direction: column; }
  .issue-feature h2 { font-size: 40px; }
  section h2 { font-size: 32px; }
}
