/* ============================================
   GLOBAL
============================================ */

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  padding-top: 64px;

  background: #111111;
  color: #f4f2ee;

  font-family: 'Inter', sans-serif;
}


/* ============================================
   DESIGN TOKENS
============================================ */

:root {
  --bg: #111111;
  --bg-deep: #000000;
  --surface: #1a1a1a;
  --surface-focus: #1d1d1d;

  --text: #f4f2ee;
  --text-muted: #d6d6d6;
  --text-subtle: #999999;

  --accent: #b38b43;
  --border: #3a3a3a;

  --nav-height: 64px;

  /*
    All interior sections start at the same visual offset
    below the persistent navigation.
  */
  --section-top: 72px;
}


/* ============================================
   NAVIGATION
============================================ */

.menu {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: var(--nav-height);

  z-index: 9999;

  background: var(--bg-deep);
}

.menu-inner {
  width: 100%;
  max-width: 1400px;
  height: var(--nav-height);

  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--text);
  text-decoration: none;

  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.menu ul {
  list-style: none;

  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  gap: 32px;
}

.menu a {
  color: var(--text);
  text-decoration: none;
}

.menu ul a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;

  transition: color 0.2s ease;
}

.menu ul a:hover {
  color: var(--accent);
}


/* ============================================
   GENERIC SECTIONS
============================================ */

section {
  width: 100%;
}

.section-kicker {
  margin: 0 0 30px;

  color: var(--accent);

  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* ============================================
   HERO
============================================ */

.hero {
  position: relative;

  width: 100%;
  height: calc(100vh - var(--nav-height));
  min-height: 636px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  background: var(--bg-deep);

  overflow: hidden;
}

.hero-image {
  width: 90%;
  height: 90%;

  object-fit: cover;

  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding-right: 8%;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0.15) 60%,
      rgba(0, 0, 0, 0.45) 100%
    );
}

.hero-content {
  width: 520px;

  text-align: left;
}

.hero-kicker {
  margin: 0 0 0.75rem;

  color: var(--accent);

  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;

  color: var(--text);

  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.025em;
}

.hero-copy {
  max-width: 460px;

  margin: 1rem 0 1.75rem;

  color: var(--text);

  font-size: 1.15rem;
  line-height: 1.6;
}

.hero-button {
  display: inline-block;

  margin-top: 24px;
  padding: 0.9rem 1.4rem;

  color: var(--text);
  background: transparent;

  border: 1px solid var(--accent);

  text-decoration: none;

  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.hero-button:hover {
  background: var(--accent);
  color: var(--bg);
}


/* ============================================
   VIDEOS
============================================ */

.videos-section {
  min-height: calc(100vh - var(--nav-height));

  padding:
    var(--section-top)
    40px
    100px;

  background: var(--bg);
  color: var(--text);
}

.videos-inner {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;
}

.section-heading {
  width: 100%;
  max-width: 1150px;

  margin: 0 auto 30px;
}

.featured-video {
  width: 100%;
}

.video-frame {
  width: 100%;
  max-width: 1150px;
  aspect-ratio: 16 / 9;

  margin: 0 auto;

  overflow: hidden;

  border-radius: 16px;

  background: var(--bg-deep);

  box-shadow:
    0 25px 60px
    rgba(0, 0, 0, 0.45);
}

.video-frame iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;
}

.video-meta {
  width: 100%;
  max-width: 1150px;

  margin: 24px auto 0;
}

.video-meta h3 {
  margin: 0 0 6px;

  color: var(--text);

  font-size: 1.15rem;
  font-weight: 600;
}

.video-meta p {
  margin: 0;

  color: var(--text-subtle);

  font-size: 0.95rem;
}


/* ============================================
   ABOUT
============================================ */

.about-section {
  min-height: calc(100vh - var(--nav-height));

  padding:
    var(--section-top)
    0
    100px;

  background: var(--bg);
  color: var(--text);
}

.about-inner {
  width: 100%;
  max-width: 900px;

  margin: 0 auto;
  padding: 0 40px;
}

.about-text p,
.about-text li {
  color: var(--text-muted);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
}

.about-text p {
  margin: 0 0 26px;
}

.about-text ul {
  margin: 12px 0 30px;
  padding-left: 38px;
}

.about-text li {
  margin-bottom: 4px;
}


/* ============================================
   CONTACT
============================================ */

.contact-section {
  min-height: calc(100vh - var(--nav-height));

  padding:
    var(--section-top)
    40px
    100px;

  background: var(--bg);
  color: var(--text);

  text-align: left;
}

.contact-inner {
  width: 100%;
  max-width: 760px;

  margin: 0 auto;
}

.contact-section h2 {
  margin: 18px 0 20px;

  color: var(--text);

  font-family: 'Inter', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.contact-intro {
  margin: 0 0 40px;

  color: var(--text-muted);

  font-size: 1.05rem;
  line-height: 1.6;
}

#contact-form {
  width: 100%;

  margin: 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  color: var(--text-muted);

  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 14px 16px;

  color: var(--text);
  background: var(--surface);

  border: 1px solid var(--border);
  border-radius: 0;

  font-family: 'Inter', sans-serif;
  font-size: 1rem;

  outline: none;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--surface-focus);
}

.form-group textarea {
  min-height: 180px;

  resize: vertical;
}

.g-recaptcha {
  margin: 26px 0 0;
}

button[type="submit"] {
  display: inline-block;

  margin-top: 0;
  padding: 0.9rem 1.4rem;

  color: var(--text);
  background: transparent;

  border: 1px solid var(--accent);
  border-radius: 0;

  cursor: pointer;

  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

button[type="submit"]:hover {
  background: var(--accent);
  color: var(--bg);
}

.form-success {
  margin-top: 24px;

  color: var(--accent);
}

.form-error {
  margin-top: 24px;

  color: #ff7a7a;
}


/* ============================================
   RESPONSIVE — TABLET
============================================ */

@media (max-width: 900px) {

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

  .menu ul {
    gap: 18px;
  }

  .menu ul a {
    font-size: 0.75rem;
  }

  .hero {
    min-height: 620px;
  }

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

  .hero-overlay {
    align-items: flex-end;
    justify-content: flex-start;

    padding: 0 32px 70px;

    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 35%,
        rgba(0, 0, 0, 0.8) 100%
      );
  }

  .hero-content {
    width: 100%;
    max-width: 560px;
  }

  .hero-content h1 {
    font-size: clamp(4rem, 14vw, 6rem);
  }

  .videos-section {
    padding:
      var(--section-top)
      24px
      90px;
  }

  .about-inner {
    padding: 0 28px;
  }

  .contact-section {
    padding:
      var(--section-top)
      28px
      90px;
  }
}


/* ============================================
   RESPONSIVE — SMALL TABLET
============================================ */

@media (max-width: 700px) {

  :root {
    --nav-height: 58px;
    --section-top: 60px;
  }

  body {
    padding-top: var(--nav-height);
  }

  .menu {
    height: var(--nav-height);
  }

  .menu-inner {
    height: var(--nav-height);
  }

  .brand {
    font-size: 1.45rem;
  }

  .menu ul {
    gap: 14px;
  }

  .menu ul a {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero {
    height: calc(100vh - var(--nav-height));
  }

  .hero-kicker {
    font-size: 0.78rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .about-section p,
  .about-section li {
    font-size: 1.05rem;
  }
}


/* ============================================
   RESPONSIVE — PHONE
============================================ */

@media (max-width: 560px) {

  .menu-inner {
    padding: 0 16px;
  }

  .menu ul {
    gap: 10px;
  }

  .menu ul a {
    font-size: 0.62rem;
  }

  .hero-overlay {
    padding: 0 22px 50px;
  }

  .hero-content h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .hero-copy {
    max-width: 330px;
  }

  .videos-section {
    padding:
      var(--section-top)
      18px
      75px;
  }

  .about-section {
    padding:
      var(--section-top)
      0
      75px;
  }

  .about-inner {
    padding: 0 22px;
  }

  .contact-section {
    padding:
      var(--section-top)
      22px
      75px;
  }

  .contact-section h2 {
    font-size: 1.5rem;
  }

  .contact-intro {
    font-size: 1rem;
  }
}