/* ============================================================
   THE WATCHMAN'S REPORT — Redesigned Stylesheet
   Inspired by Ryan Levesque's site layout
   Colors: Navy (#0A1A40) + Gold (#C9A227) + Off-White (#F6F4EE)
   ============================================================ */

:root {
  --navy:        #0A1A40;
  --navy-deep:   #060E28;
  --navy-mid:    #0D1D4A;
  --navy-light:  #132258;
  --gold:        #C9A227;
  --gold-bright: #E0C050;
  --gold-pale:   #F0DFA0;
  --silver:      #A9ADAE;
  --off-white:   #F6F4EE;
  --warm-white:  #FDFBF5;
  --text-dark:   #1C1C1C;
  --text-mid:    #3A3A3A;
  --text-light:  #6B7184;
  --border-gold: rgba(201, 162, 39, 0.30);

  --font-serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', Arial, sans-serif;

  --section-pad: 96px 24px;
  --radius:      4px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: 760px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-eyebrow--light {
  color: var(--gold-bright);
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-deep);
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.section-body strong {
  color: var(--text-dark);
  font-weight: 600;
}

.section-body em {
  font-style: italic;
  color: var(--navy);
}

.rule-gold {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  margin-bottom: 32px;
  border-radius: 2px;
}

.rule-gold--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 14, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-brand:hover {
  color: var(--gold-bright);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: filter 0.2s, transform 0.15s;
}

.nav-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, #0F2060 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 39, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(13, 29, 74, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative corner ornaments */
.hero::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  gap: 0;
}

.hero-logo-wrap {
  margin-bottom: 40px;
  filter: drop-shadow(0 8px 40px rgba(201, 162, 39, 0.25));
}

.hero-logo {
  width: 260px;
  max-width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--off-white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero-subhead {
  font-family: var(--font-sans);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: rgba(246, 244, 238, 0.75);
  max-width: 620px;
  margin-bottom: 44px;
}

.hero-subhead strong {
  color: var(--off-white);
  font-weight: 600;
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--navy-deep);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 44px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.35);
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 16px;
}

.btn-hero:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.45);
}

.hero-micro {
  font-size: 12px;
  color: rgba(246, 244, 238, 0.45);
  letter-spacing: 0.04em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================================
   CONTEXT BAND
   ============================================================ */
.context-band {
  background: var(--navy-deep);
  padding: 56px 32px;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.context-intro {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--off-white);
  text-align: center;
  margin-bottom: 48px;
  font-style: italic;
}

.context-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.context-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 20px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s, background 0.2s;
}

.context-item:hover {
  border-color: rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.04);
}

.context-icon {
  font-size: 18px;
  color: var(--gold);
}

.context-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246, 244, 238, 0.75);
}

.context-item p strong {
  color: var(--off-white);
  font-weight: 600;
}

/* ============================================================
   WHAT SECTION
   ============================================================ */
.what-section {
  padding: var(--section-pad);
  background: var(--warm-white);
  text-align: center;
}

.what-section .rule-gold {
  margin: 0 auto 32px;
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section {
  position: relative;
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #0F2060 100%);
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 0% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.story-bg-overlay {
  display: none;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--off-white);
  margin-bottom: 20px;
}

.story-body {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(246, 244, 238, 0.78);
  margin-bottom: 20px;
}

.story-body--emphasis {
  color: var(--gold-pale);
  font-style: italic;
  font-size: 18px;
}

.callout-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.30);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.callout-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-style: italic;
  line-height: 1.5;
  color: var(--off-white);
  margin-bottom: 20px;
}

.callout-attr {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   PILLARS SECTION
   ============================================================ */
.pillars-section {
  padding: var(--section-pad);
  background: var(--off-white);
  text-align: center;
}

.pillars-section .section-headline {
  margin-bottom: 16px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.pillar-card {
  background: var(--warm-white);
  border: 1px solid rgba(10, 26, 64, 0.08);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: left;
  transition: box-shadow 0.25s, transform 0.2s;
}

.pillar-card:hover {
  box-shadow: 0 12px 40px rgba(10, 26, 64, 0.10);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 14px;
  line-height: 1.3;
}

.pillar-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience-section {
  padding: var(--section-pad);
  background: var(--warm-white);
  text-align: center;
}

.audience-section .section-headline {
  margin-bottom: 16px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--warm-white);
  border: 1px solid rgba(10, 26, 64, 0.07);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.audience-item:hover {
  border-color: rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.03);
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding-top: 1px;
}

.audience-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
  padding-top: 2px;
}

.audience-item p strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* ============================================================
   SUBSCRIBE SECTION
   ============================================================ */
.subscribe-section {
  position: relative;
  padding: 100px 32px 80px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, #0F2060 100%);
  overflow: hidden;
}

.subscribe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 39, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.subscribe-overlay {
  display: none;
}

.subscribe-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.subscribe-logo-wrap {
  margin-bottom: 32px;
  filter: drop-shadow(0 4px 24px rgba(201, 162, 39, 0.20));
}

.subscribe-logo {
  width: 160px;
  margin: 0 auto;
}

.subscribe-headline {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--off-white);
  margin-bottom: 20px;
}

.subscribe-headline em {
  font-style: italic;
  color: var(--gold-bright);
}

.subscribe-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(246, 244, 238, 0.72);
  max-width: 560px;
  margin: 0 auto 44px;
}

/* ============================================================
   SUBSCRIBE FORM
   ============================================================ */
.subscribe-form {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field-row {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.30);
  border-radius: var(--radius);
  padding: 6px 6px 6px 18px;
  transition: border-color 0.2s;
}

.field-row:focus-within {
  border-color: var(--gold-bright);
}

input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--off-white);
  outline: none;
}

input[type="email"]::placeholder {
  color: rgba(246, 244, 238, 0.40);
}

/* Honeypot field — hidden from real users, visible to bots that ignore CSS */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--navy-deep);
  border: none;
  border-radius: 2px;
  padding: 13px 24px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.2s, transform 0.15s;
  flex-shrink: 0;
}

button:hover {
  filter: brightness(1.08);
}

button:active {
  transform: translateY(1px);
}

button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

button:disabled {
  opacity: 0.7;
  cursor: default;
}

.fineprint {
  font-size: 12px;
  color: rgba(246, 244, 238, 0.38);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.form-message {
  font-size: 14px;
  min-height: 20px;
  color: var(--gold-bright);
  text-align: center;
}

/* ============================================================
   TRUST ROW
   ============================================================ */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(246, 244, 238, 0.55);
  letter-spacing: 0.02em;
}

.trust-icon {
  font-size: 15px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  padding: 56px 32px 40px;
  text-align: center;
}

.footer-inner {
  max-width: 640px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 12px rgba(201, 162, 39, 0.15));
}

.footer-logo img {
  width: 100px;
  margin: 0 auto;
}

.footer-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(246, 244, 238, 0.40);
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(246, 244, 238, 0.50);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold-bright);
}

.footer-sep {
  color: rgba(246, 244, 238, 0.20);
  font-size: 13px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(246, 244, 238, 0.25);
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .context-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 600px) {
  :root {
    --section-pad: 72px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .hero {
    padding: 100px 20px 72px;
  }

  .hero-logo {
    width: 200px;
  }

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

  .field-row {
    flex-direction: column;
    padding: 12px;
    gap: 8px;
  }

  .field-row input[type="email"] {
    padding: 8px 6px;
  }

  .field-row button {
    width: 100%;
    padding: 14px;
  }

  .trust-row {
    flex-direction: column;
    gap: 16px;
  }

  .callout-card {
    padding: 28px 24px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
