:root {
  --white: #ffffff;
  --offwhite: #f7f7f7;
  --text: #333336;
  --muted: #6f6f75;
  --brand-orange: #ef8730;
  --brand-dark: #66666a;
  --brand-dark-2: #3f3f44;
  --line: #e8e8ea;
  --dark-bg: #17171a;
  --dark-panel: #232327;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --container: 1180px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  height: 24px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  font-weight: 600;
  color: var(--brand-dark-2);
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--brand-orange);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-dark-2);
  margin: 5px auto;
}

.hero-dark {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  height: 56.25vw;
  min-width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 20, 0.82) 0%, rgba(18, 18, 20, 0.60) 40%, rgba(18, 18, 20, 0.45) 100%),
    linear-gradient(180deg, rgba(239, 135, 48, 0.18), rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0;
}

.hero-copy {
  max-width: 700px;
  color: white;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
}

.eyebrow.orange {
  color: var(--brand-orange);
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
}

.hero-copy p {
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--brand-orange);
  color: white;
  box-shadow: 0 14px 28px rgba(239, 135, 48, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #e4781f;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.intro-white,
.section-white,
.section-highlight {
  padding: 6rem 0;
  background: var(--white);
}

.intro-grid,
.feature-grid,
.highlight-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.intro-copy h2,
.section-heading h2,
.feature-copy h2,
.highlight-copy h2,
.cta-wrap h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.intro-copy p,
.section-heading p,
.card p,
.feature-copy p,
.highlight-copy p,
.site-footer p,
.site-footer li {
  color: var(--muted);
}

.intro-image img,
.feature-image img,
.highlight-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-heading.center {
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.card {
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  transition: all var(--transition);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.card:hover {
  transform: translateY(-5px);
  border-color: #ddd;
}

.card h3 {
  margin-bottom: 0.8rem;
  color: var(--brand-dark-2);
}

.section-dark-feature {
  padding: 6rem 0;
  background: linear-gradient(180deg, #1b1b1f 0%, #101013 100%);
  color: white;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.86);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  background: #f1f1f1;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.large {
  grid-column: span 7;
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item:not(.large):not(.wide) {
  grid-column: span 5;
}

.cta-band {
  padding: 4rem 0 5rem;
  background: var(--offwhite);
}

.cta-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #fafafa;
  border-top: 1px solid var(--line);
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.9fr;
  gap: 2rem;
}

.footer-logo {
  height: 24px;
  width: auto;
  margin-bottom: 1rem;
}

.site-footer h4 {
  margin-bottom: 0.8rem;
  color: var(--brand-dark-2);
}

.site-footer ul {
  display: grid;
  gap: 0.65rem;
}

.site-footer a:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .intro-grid,
  .feature-grid,
  .highlight-grid,
  .footer-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide,
  .gallery-item:not(.large):not(.wide) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 88px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .brand-logo {
    height: 42px;
  }

  .hero-content,
  .intro-white,
  .section-white,
  .section-dark-feature,
  .section-highlight {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}