/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,300;0,400;1,400&family=Public+Sans:wght@400;600&display=swap');

:root {
  --basalt: #F4F1EA;
  --milled-steel: #5C5E58;
  --anodized-grey: #6D6F69;
  --pure-white: #1A1C18;
  --surface-dim: #EBE7DF;
  --outline: rgba(0, 0, 0, 0.12);
  --on-surface: #2B2D28;
  --accent: #1A1C18;
  
  --spacing-unit: 8px;
  --container-max: 1280px;
  --gutter: 32px;
  --margin-page: 64px;
}

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

body {
  font-family: 'Public Sans', sans-serif;
  background-color: var(--basalt);
  color: var(--on-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Newsreader', serif;
  color: var(--pure-white);
}

.display-xl {
  font-size: clamp(2.5rem, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.headline-lg {
  font-size: clamp(2rem, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.headline-md {
  font-size: clamp(1.5rem, 3vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
}

.body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
}

.body-md {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--milled-steel);
}

.label-caps {
  font-family: 'Public Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.top-bar {
  background-color: var(--milled-steel);
  color: var(--basalt);
  text-align: center;
  padding: 8px 0;
  font-family: 'Public Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header {
  border-bottom: 1px solid var(--outline);
  background-color: var(--basalt);
  padding: 24px 0;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--margin-page);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  max-width: 140px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--milled-steel);
  color: var(--basalt);
  padding: 12px 24px;
  text-decoration: none;
  font-family: 'Public Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 0; /* Sharp corners */
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--pure-white);
  color: var(--basalt);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--milled-steel);
  padding: 12px 24px;
  text-decoration: none;
  font-family: 'Public Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--milled-steel);
  cursor: pointer;
  border-radius: 0; /* Sharp corners */
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  background-color: rgba(118, 119, 119, 0.1);
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.main-content {
  padding-top: 64px;
  padding-bottom: 64px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--margin-page);
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}

.col-8 {
  grid-column: span 8;
}

.col-4 {
  grid-column: span 4;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-5 {
  grid-column: span 5;
}

.start-6 {
  grid-column-start: 6;
}

.milled-border {
  border: 1px solid var(--outline);
  padding: 8px;
  background-color: var(--surface-dim);
}

.milled-border-inner {
  border: 1px solid var(--outline);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
}

.content-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

.byline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.byline-text {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  color: var(--milled-steel);
}

.byline-separator {
  width: 4px;
  height: 4px;
  background-color: var(--milled-steel);
  border-radius: 50%;
}

.editorial-divider {
  height: 1px;
  background-color: var(--outline);
  margin: 64px 0;
  width: 100%;
}

.cta-section {
  width: 100%;
  padding: 64px 0;
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
  background-color: var(--surface-dim);
  text-align: center;
  margin: 64px 0;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.cta-logo-link {
  display: inline-block;
  margin-bottom: 32px;
  outline: 1px solid var(--milled-steel);
  outline-offset: 8px;
}

.cta-logo {
  max-height: 60px;
  display: block;
  filter: grayscale(100%) brightness(20%);
}

.disclaimer-section {
  max-width: 800px;
  margin: 0 auto 64px auto;
  padding: 0 32px;
  text-align: center;
}

.disclaimer-text {
  font-family: 'Public Sans', sans-serif;
  font-size: 12px;
  color: var(--anodized-grey);
  line-height: 1.5;
}

.footer {
  background-color: var(--surface-dim);
  border-top: 1px solid var(--outline);
  padding: 64px 0;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--margin-page);
}

.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-nav a {
  color: var(--milled-steel);
  text-decoration: none;
  font-family: 'Public Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--pure-white);
}

.footer-contact {
  margin-top: 32px;
  border-top: 1px solid var(--outline);
  padding-top: 32px;
  color: var(--anodized-grey);
  font-family: 'Public Sans', sans-serif;
  font-size: 12px;
}

.footer-contact p {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .asymmetric-grid {
    display: flex;
    flex-direction: column;
  }
  
  .col-8, .col-4, .col-6, .col-7, .col-5 {
    width: 100%;
  }
  
  .header-inner {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }
}
