/* ============================================
   SUPER BIG COMPANY — Newspaper Style Design
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --ink-light: #4a4a4a;
  --ink-muted: #888;
  --paper: #faf9f6;
  --paper-warm: #f5f3ee;
  --rule: #2a2a2a;
  --rule-light: #d0cec8;
  --accent: #c4382f;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Source Serif 4', 'Georgia', serif;
  --font-ui: 'Inter', 'Helvetica Neue', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Rules / Dividers --- */
.top-rule {
  height: 4px;
  background: var(--ink);
}

.rule-double {
  height: 1px;
  background: var(--rule);
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
}
.rule-double::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule);
}

.rule-thin {
  height: 1px;
  background: var(--rule-light);
  margin: 3rem auto;
  max-width: 1100px;
}

.rule-ornament {
  text-align: center;
  margin: 3rem auto;
  max-width: 1100px;
  font-size: 1.2rem;
  color: var(--ink-muted);
  position: relative;
}
.rule-ornament::before,
.rule-ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  background: var(--rule-light);
  width: calc(50% - 2rem);
}
.rule-ornament::before { left: 0; }
.rule-ornament::after { right: 0; }

/* --- Masthead --- */
.masthead {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
}

.masthead-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.dateline {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.masthead-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ink);
}

.masthead-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink-light);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Section Labels --- */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

/* --- Lede --- */
.lede {
  padding: 3.5rem 0;
  text-align: center;
}

.lede-inner {
  max-width: 780px;
  margin: 0 auto;
}

.lede-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.lede-deck {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ink-light);
}

/* --- Story --- */
.story-section {
  padding: 2rem 0 3rem;
}

.story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.story-columns::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--rule-light);
}

.story-col {
  padding: 0 2.5rem;
}

.story-col:first-child {
  padding-left: 0;
}

.story-col:last-child {
  padding-right: 0;
}

.story-col p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  color: var(--ink);
  text-align: justify;
  hyphens: auto;
}

.drop-cap {
  float: left;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.8;
  padding-right: 0.12em;
  padding-top: 0.08em;
  color: var(--ink);
}

/* --- Products --- */
.products-section {
  padding: 2rem 0 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.product-card {
  background: var(--paper-warm);
  border: 1px solid var(--rule-light);
  padding: 2rem 2rem 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.product-category {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-status {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.product-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.product-tld {
  font-weight: 400;
  font-style: italic;
  color: var(--ink-light);
}

.product-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-light);
  margin-bottom: 1rem;
}

.product-rule {
  height: 1px;
  background: var(--rule-light);
  margin-bottom: 1.25rem;
}

.product-description {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
}

.product-features {
  list-style: none;
  border-top: 1px solid var(--rule-light);
  padding-top: 1rem;
}

.product-features li {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-light);
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
  letter-spacing: 0.01em;
}

.product-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* --- What's Next --- */
.next-section {
  padding: 2rem 0 3rem;
}

.next-content {
  max-width: 680px;
}

.next-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.next-cta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem !important;
  color: var(--ink-light) !important;
  margin-top: 1rem !important;
}

/* --- Footer --- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(250, 249, 246, 0.6);
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(250, 249, 246, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--paper);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .story-columns {
    grid-template-columns: 1fr;
  }

  .story-columns::before {
    display: none;
  }

  .story-col {
    padding: 0 !important;
  }

  .story-col:first-child {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem !important;
    border-bottom: 1px solid var(--rule-light);
  }

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

  .lede-headline br {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* --- Fade-in animation --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lede,
.story-section,
.products-section,
.next-section {
  animation: fadeInUp 0.8s ease-out both;
}

.story-section { animation-delay: 0.1s; }
.products-section { animation-delay: 0.2s; }
.next-section { animation-delay: 0.3s; }
