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

:root {
  --brown-deep:   #2b1a0e;
  --brown-mid:    #4a2d18;
  --brown-warm:   #7a4a28;
  --gold:         #c8922a;
  --gold-light:   #e8b860;
  --canvas:       #f5efe4;
  --canvas-dark:  #ede3d4;
  --cream:        #faf6ef;
  --text-dark:    #1e1108;
  --text-mid:     #4a3728;
  --text-light:   #8a7060;

  --font-display: 'Bebas Neue', sans-serif;
  --font-accent:  'Playfair Display', serif;
  --font-body:    'Lato', sans-serif;

  --radius:       4px;
  --transition:   0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

strong {
  font-weight: 700;
  color: var(--brown-mid);
}

/* ===== UTILITY ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--brown-deep);
  letter-spacing: 0.04em;
}

.section-desc {
  max-width: 640px;
  margin-top: 16px;
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--brown-deep);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border-radius: var(--radius);
  margin-top: 28px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.35);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  background: rgba(43, 26, 14, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #f5efe4;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.nav-brand span:not(.brand-rope) {
  color: #f5efe4;
}

.nav-brand em {
  color: #e8b860;
  font-style: normal;
}

.brand-rope {
  font-size: 1.6rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--canvas-dark);
  font-weight: 700;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-links a:hover,
.nav-links a.current {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--canvas);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--brown-deep);
  padding-top: 70px;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 12px
    ),
    radial-gradient(ellipse at 30% 50%, rgba(122,74,40,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(200,146,42,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px 80px 80px;
}

.hero-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-title {
  display: flex;
  flex-direction: column;
}

.title-line {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--canvas);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.title-line.accent {
  color: var(--gold-light);
}

.hero-subtitle {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--canvas-dark);
  max-width: 420px;
  line-height: 1.6;
  opacity: 0.85;
}

.hero-image-block {
  position: relative;
  z-index: 2;
  height: 100vh;
  overflow: hidden;
}

.hero-image-frame {
  width: 100%;
  height: 100%;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 80px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--canvas);
  animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ===== INTRO BAND ===== */
.intro-band {
  background: var(--gold);
  padding: 72px 0;
}

.band-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: center;
}

.band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown-deep);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.band-text p {
  color: var(--brown-mid);
  font-size: 1.02rem;
  line-height: 1.75;
}

.band-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 3px solid var(--brown-deep);
  padding-left: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--brown-deep);
  line-height: 1;
  letter-spacing: 0.04em;
}

.stat-label {
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-mid);
  font-weight: 700;
}

/* ===== ROPERS INTRO ===== */
.ropers-intro {
  padding: 80px 0 0;
  text-align: center;
}

.ropers-intro .container {
  margin-bottom: 48px;
}

.ropers-intro .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.full-bleed-media {
  width: min(1100px, calc(100% - 64px));
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  height: auto;
  background: #111;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(122,74,40,0.22);
  box-shadow: 0 14px 36px rgba(43,26,14,0.18);
}

.team-run-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ===== ROPER SECTIONS ===== */
.roper-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--cream);
  border-top: 1px solid var(--canvas-dark);
}

.roper-section:nth-child(even) {
  background: var(--canvas);
}

.roper-image-col {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.roper-image-frame {
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}

.roper-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.roper-number {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--brown-deep);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.roper-info-col {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roper-eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.roper-name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--brown-deep);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
}

.roper-name span {
  color: var(--brown-warm);
}

.roper-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}

.roper-info-col p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.roper-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  padding: 5px 14px;
  background: var(--canvas-dark);
  color: var(--brown-mid);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  border: 1px solid rgba(122,74,40,0.2);
}

/* ===== ARENA SECTION ===== */
.arena-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brown-deep);
}

.arena-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

.arena-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px;
  background: rgba(43,26,14,0.75);
  border: 1px solid rgba(200,146,42,0.3);
  max-width: 600px;
  backdrop-filter: blur(4px);
}

.arena-overlay h1 {
  color: #e8b860;
}

.arena-overlay p {
  color: var(--canvas-dark);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===== LEGACY SECTION ===== */
.legacy-section {
  padding: 100px 0;
  background: var(--brown-deep);
}

.legacy-section .section-title {
  color: var(--canvas);
  margin-bottom: 48px;
}

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

.legacy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.legacy-text p {
  color: var(--canvas-dark);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
  opacity: 0.88;
}

.legacy-values {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,146,42,0.2);
  padding: 28px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}

.value-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--gold);
}

.value-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--canvas);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--canvas-dark);
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.8;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background: var(--canvas);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-text .section-title {
  margin-bottom: 16px;
}

.contact-text > p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-mid);
  font-weight: 700;
}

.contact-details span:last-child,
.contact-details a {
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-details a:hover {
  color: var(--gold);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  background: var(--cream);
  border: 1.5px solid var(--canvas-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.contact-form .btn-primary {
  align-self: flex-start;
  margin-top: 4px;
}

.form-success {
  display: none;
  color: #2a6b35;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(42,107,53,0.1);
  padding: 10px 16px;
  border-radius: var(--radius);
  border-left: 3px solid #2a6b35;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brown-deep);
  border-top: 2px solid var(--gold);
  padding: 32px 40px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--canvas);
  letter-spacing: 0.06em;
}

.footer-brand span:not(.brand-rope) {
  color: var(--canvas);
}

.footer-brand em {
  color: var(--gold);
  font-style: normal;
}

.footer-copy {
  font-size: 1rem;
  color: var(--canvas-dark);
  letter-spacing: 0.06em;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--canvas-dark);
  font-weight: 700;
  transition: color var(--transition);
}

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

/* ===== SCROLL FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 60px 40px 40px;
  }

  .hero-image-block {
    height: 420px;
  }

  .scroll-indicator {
    left: 40px;
    bottom: 24px;
  }

  .band-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .band-stats {
    flex-direction: row;
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--brown-deep);
    padding-top: 28px;
    gap: 36px;
  }

  .roper-section {
    grid-template-columns: 1fr;
  }

  .roper-image-col {
    min-height: 340px;
  }

  .roper-section.roper-right .roper-info-col {
    order: -1;
  }

  .roper-info-col {
    padding: 48px 40px;
  }

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

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

@media (max-width: 768px) {
  .navbar {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(43,26,14,0.98);
    padding: 20px 24px 28px;
    gap: 20px;
    border-bottom: 2px solid var(--gold);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 56px 24px 36px;
  }

  .intro-band {
    padding: 56px 0;
  }

  .band-inner {
    padding: 0 24px;
  }

  .band-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .ropers-intro .container {
    padding: 0 24px;
  }

  .full-bleed-media {
    width: calc(100% - 48px);
  }

  .roper-info-col {
    padding: 40px 24px;
  }

  .legacy-section .container,
  .contact-inner {
    padding: 0 24px;
  }

  .legacy-section {
    padding: 72px 0;
  }

  .contact-section {
    padding: 72px 0;
  }

  .arena-section {
    height: 360px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .roper-image-col {
    min-height: 260px;
  }

  .contact-form .btn-primary {
    width: 100%;
    text-align: center;
  }

  .band-stats {
    border-top: none;
    border-left: 3px solid var(--brown-deep);
    padding-left: 24px;
    flex-direction: column;
  }

  .full-bleed-media {
    width: calc(100% - 32px);
  }
}

/* Support the same site across multiple HTML pages */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 2000;
  background: #ffffff;
  color: #1e1108;
  padding: 10px 14px;
}
.nav-brand-link {
  color: inherit;
  text-decoration: none;
}
main {
  display: block;
}