:root {
  --black: #030507;
  --navy: #07111a;
  --cream: #f4eee6;
  --muted: #c8beb0;
  --brass: #c09045;
  --brass-light: #e1c79b;
  --line: rgba(198, 164, 114, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #030507;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
}

a { color: inherit; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 78px;
  z-index: 20;
  display: flex;
  align-items: center;
  background: rgba(3, 5, 7, 0.72);
  border-bottom: 1px solid rgba(198, 164, 114, 0.18);
  backdrop-filter: blur(14px);
}

.nav-inner {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 260px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 18px rgba(198,164,114,0.22);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--brass);
  transform: translate(-50%, -50%);
}

.brand-mark::before { width: 2px; height: 54px; }
.brand-mark::after { width: 54px; height: 2px; }

.brand-name {
  display: block;
  color: var(--brass-light);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 17px;
  line-height: 1.05;
}

.brand-sub {
  display: block;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 10px;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  color: rgba(244, 238, 230, 0.86);
  position: relative;
}

.nav-links a:hover { color: var(--brass-light); }

.nav-links a:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 2px;
  background: var(--brass);
}

/* HERO LOCKED: do not alter this unless Nick wants the approved hero changed. */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3,5,7,0.05) 0%, rgba(3,5,7,0.24) 42%, rgba(3,5,7,0.92) 76%, rgba(3,5,7,0.98) 100%),
    url("images/approved-hero-compass.png") left center / auto 100% no-repeat,
    #030507;
  border-bottom: 1px solid rgba(198,164,114,0.24);
  padding-top: 78px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, #030507);
  pointer-events: none;
}

.hero-spacer { min-height: 620px; }

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 640px;
  padding: 80px min(7vw, 76px) 70px 20px;
}

.eyebrow {
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 18px;
}

h1, h2, h3 {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: normal;
}

h1 {
  color: #d9d0c6;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.12;
}

h2 {
  color: var(--brass-light);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}

h3 {
  color: var(--cream);
  font-size: 21px;
}

.rule {
  width: 285px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
  margin: 34px 0;
  position: relative;
}

.rule::after {
  content: "✦";
  position: absolute;
  right: 92px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
  background: #030507;
  padding: 0 12px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.hero-copy p {
  max-width: 430px;
  color: #ded6cc;
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--brass);
  color: var(--brass-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  padding: 16px 28px;
  margin-top: 18px;
  min-width: 260px;
  background: rgba(0,0,0,0.18);
  transition: background 0.25s ease, transform 0.25s ease;
}

.button:hover {
  background: rgba(198,164,114,0.12);
  transform: translateY(-2px);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background:
    radial-gradient(circle at 50% 0%, rgba(198,164,114,0.08), transparent 44%),
    linear-gradient(180deg, #030507 0%, #04080c 48%, #07111a 100%);
  border-top: 1px solid rgba(198,164,114,0.18);
  border-bottom: 1px solid rgba(198,164,114,0.22);
}

.feature {
  min-height: 205px;
  padding: 34px 28px;
  text-align: center;
  border-right: 1px solid rgba(198,164,114,0.22);
}

.feature:last-child { border-right: 0; }

.feature-icon {
  color: var(--brass);
  font-size: 30px;
  margin-bottom: 14px;
  line-height: 1;
}

.feature p {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
}

.feature-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brass-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
}

.join-form {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 350px;
  margin: 16px auto 8px;
  border: 1px solid rgba(198,164,114,0.34);
}

.join-form input {
  min-width: 0;
  border: 0;
  background: rgba(0,0,0,0.25);
  color: var(--cream);
  padding: 13px 14px;
  font-family: Georgia, "Times New Roman", serif;
}

.join-form button {
  border: 0;
  background: linear-gradient(135deg, #c09045, #e1c79b);
  color: #080b0f;
  padding: 0 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
}

.small-note {
  font-size: 13px;
  opacity: 0.72;
}

.content {
  background:
    radial-gradient(circle at 50% 0%, rgba(198,164,114,0.08), transparent 34%),
    linear-gradient(180deg, #030507 0%, #05090e 32%, #07111a 72%, #030507 100%);
  padding: 70px 20px 40px;
}

.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section {
  margin-bottom: 76px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.story-card {
  border: 1px solid var(--line);
  background: rgba(5, 10, 15, 0.72);
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.media-showcase {
  border: 1px solid var(--line);
  background: rgba(2, 6, 9, 0.44);
  padding: 34px;
}

.youtube-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
}

.video-card,
.insta-card {
  min-height: 260px;
  border: 1px solid rgba(198,164,114,0.28);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0,0,0,0.26);
}

.video-featured {
  min-height: 360px;
}

.video-card::after,
.insta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78), transparent 62%);
  pointer-events: none;
}

.play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.58);
  border: 1px solid rgba(225,199,155,0.38);
  color: var(--cream);
}

.media-caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
}

.media-caption h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.media-caption p {
  font-size: 14px;
  margin-bottom: 0;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
}

.insta-card.tall {
  grid-row: span 2;
}

.insta-card.wide {
  grid-column: span 2;
}

.center {
  text-align: center;
  margin-top: 26px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 20px;
  text-align: center;
  background: #030507;
}

.footer-logo {
  color: var(--brass-light);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 26px;
  margin-bottom: 8px;
}

.footer-note {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
}

.copyright {
  font-size: 13px;
  color: #8e826f;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(3,5,7,0.04) 0%, rgba(3,5,7,0.12) 40%, rgba(3,5,7,0.90) 77%, rgba(3,5,7,0.98) 100%),
      url("images/approved-hero-compass.png") center top / cover no-repeat,
      #030507;
  }

  .hero-spacer { min-height: 58vh; }

  .hero-copy {
    padding: 10px 28px 70px;
    max-width: 760px;
  }

  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .story-grid,
  .youtube-grid { grid-template-columns: 1fr; }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .nav { position: absolute; }

  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    gap: 14px;
    justify-content: flex-start;
  }

  .nav-links a:first-child::after { display: none; }

  .brand-name { font-size: 15px; }

  .hero {
    padding-top: 145px;
    min-height: 92vh;
    background-position: center top;
  }

  .hero-spacer { min-height: 45vh; }

  h1 { font-size: 40px; }

  .feature-row { grid-template-columns: 1fr; }

  .feature {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(198,164,114,0.24);
  }

  .join-form { grid-template-columns: 1fr; }
  .join-form button { padding: 14px; }

  .story-card,
  .media-showcase { padding: 24px; }

  .instagram-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 190px;
  }

  .insta-card.tall,
  .insta-card.wide {
    grid-row: auto;
    grid-column: auto;
  }
}


.form-message {
  min-height: 20px;
  margin: 10px auto 0;
  max-width: 350px;
  font-size: 13px;
  line-height: 1.5;
}

.form-message.success {
  color: var(--brass-light);
}

.form-message.error {
  color: #d98c8c;
}
