/* ===================================================================
   Oxtail Bicycle Trailers
   Earth-tone palette with orange accent. Purple for brand mark only. No filters on photos.
   =================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary:       #2c5530;
  --color-primary-light:  #3a7341;
  --color-primary-dark:   #1e3b22;
  --color-accent:         #b74f15;
  --color-accent-hover:   #9a4211;
  --color-dark:           #1c1c1c;
  --color-text:           #333;
  --color-text-light:     #5a5a5a;
  --color-text-muted:     #767676;
  --color-bg:             #fff;
  --color-bg-alt:         #f7f5f2;
  --color-bg-dark:        #1c2a1f;
  --color-border:         #e0ddd8;
  --font-heading:         'Oswald', sans-serif;
  --font-body:            'Inter', sans-serif;
  --max-width:            1200px;
  --header-height:        72px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-accent); }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--color-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .04em; }

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading h2 {
  margin-bottom: 12px;
}
.section-heading p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.btn--primary:hover { background: var(--color-accent-hover); color: #fff; }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn--outline:hover { background: rgba(255,255,255,.15); color: #fff; }

.btn--dark {
  background: var(--color-dark);
  color: #fff;
}
.btn--dark:hover { background: #333; color: #fff; }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s, transform .3s;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scrolled {
  background: rgba(28, 42, 31, .97);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.site-header.header-hidden {
  transform: translateY(-100%);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
}
.logo__ox { color: #fff; }
.logo__tail { color: rgba(255,255,255,.6); }
.scrolled .logo__ox { color: #fff; }
.scrolled .logo__tail { color: rgba(255,255,255,.5); }

.main-nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
.main-nav a {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.main-nav a:hover { color: #fff; }
.nav-cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--color-accent-hover) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: transform .3s, opacity .2s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0; bottom: 0;
    background: rgba(28, 42, 31, .98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
  }
  .main-nav.is-open { opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; gap: 24px; text-align: center; }
  .main-nav a { font-size: 1.3rem; }
}

/* --- Hero Video Section --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero__video-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.hero__video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;
  border: none;
  pointer-events: none;
}

.hero__fallback {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('/assets/img/slide_one.webp') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.15) 40%,
    rgba(0,0,0,.4) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.hero__content h1 {
  color: #fff;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: .08em;
  margin-bottom: 8px;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero__content h1 span {
  font-weight: 400;
  font-size: .45em;
  display: block;
  letter-spacing: .04em;
  opacity: .85;
  margin-top: 0;
}
.hero__content p {
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 32px;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__sound-btn {
  position: absolute;
  bottom: 100px;
  right: 32px;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-family: var(--font-body);
  font-size: .85rem;
  padding: 10px 18px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s;
  z-index: 10;
}
.hero__sound-btn:hover { background: rgba(0,0,0,.7); }
.hero__sound-btn svg { width: 18px; height: 18px; fill: #fff; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.4);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --- Intro strip --- */
.intro-strip {
  background: var(--color-primary);
  color: #fff;
  padding: 48px 0;
}
.intro-strip .container {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.intro-strip__text {
  flex: 1 1 400px;
  max-width: 600px;
}
.intro-strip__text p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: .95;
}
.intro-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.intro-stat {
  text-align: center;
}
.intro-stat__number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.intro-stat__label {
  font-size: .85rem;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 4px;
}

/* --- Trailers Section --- */
.trailers-section {
  padding: 96px 0;
  background: var(--color-bg-alt);
}

.trailer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
  margin-top: 16px;
}

.trailer-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
}
.trailer-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  transform: translateY(-4px);
}

.trailer-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.trailer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.trailer-card:hover .trailer-card__image img { transform: scale(1.03); }

.trailer-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
}

.trailer-card__body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.trailer-card__body h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.trailer-card__tagline {
  color: var(--color-text-muted);
  font-size: .9rem;
  margin-bottom: 16px;
}
.trailer-card__desc {
  color: var(--color-text-light);
  margin-bottom: 24px;
  flex: 1;
}

.trailer-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.trailer-card__price .price-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
}
.trailer-card__price .price-from {
  font-size: .9rem;
  color: var(--color-text-muted);
}
.trailer-card__shipping {
  color: var(--color-primary);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.trailer-card__features {
  list-style: none;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
}
.trailer-card__features li {
  padding: 5px 0;
  padding-left: 24px;
  position: relative;
  font-size: .92rem;
  color: var(--color-text-light);
}
.trailer-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(-45deg);
}

.trailer-card .btn { width: 100%; }

/* --- Features Section --- */
.features-section {
  padding: 96px 0;
  background: var(--color-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 24px;
}
.feature-item__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.feature-item p {
  color: var(--color-text-light);
  font-size: .92rem;
  max-width: 320px;
  margin: 0 auto;
}

/* --- Feature showcase (image + text) --- */
.feature-showcase {
  padding: 80px 0;
  background: var(--color-bg-dark);
  color: #fff;
}
.feature-showcase .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-showcase__image {
  border-radius: 8px;
  overflow: hidden;
}
.feature-showcase__image img,
.feature-showcase__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-showcase__text h2 {
  color: #fff;
  margin-bottom: 20px;
}
.feature-showcase__text p {
  color: rgba(255,255,255,.8);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .feature-showcase .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- FAQ Section --- */
.faq-section {
  padding: 96px 0;
  background: var(--color-bg-alt);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 48px 22px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
  cursor: pointer;
  position: relative;
  transition: color .2s;
}
.faq-question:hover { color: var(--color-primary); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-text-muted);
  transition: transform .3s;
}
.faq-item.is-open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer__inner {
  padding: 0 0 24px;
  color: var(--color-text-light);
  line-height: 1.7;
}
.faq-item.is-open .faq-answer {
  max-height: 300px;
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 96px 0;
  background: var(--color-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 36px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: .2;
  position: absolute;
  top: 16px;
  left: 24px;
}
.testimonial-card blockquote {
  color: var(--color-text);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: .9rem;
  color: var(--color-primary);
}

/* --- Videos Section --- */
.videos-section {
  padding: 96px 0;
  background: var(--color-bg-dark);
  color: #fff;
}
.videos-section .section-heading h2 { color: #fff; }
.videos-section .section-heading p { color: rgba(255,255,255,.7); }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Gallery Section --- */
.gallery-section {
  padding: 96px 0;
  background: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  transition: transform .3s;
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: rgba(0,0,0,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  cursor: pointer;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* --- Article Pages --- */
.article-section {
  padding: 80px 0;
}
.article-content {
  max-width: 720px;
  margin: 0 auto;
}
.article-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}
.article-content p {
  margin-bottom: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
}
.article-cta {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Read More Links --- */
.read-more-section {
  padding: 64px 0;
  background: var(--color-bg-alt);
}
.read-more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.read-more-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow .3s, transform .3s;
}
.read-more-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.read-more-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.read-more-card p {
  color: var(--color-text-light);
  font-size: .92rem;
  margin-bottom: 16px;
}
.read-more-card a {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-accent);
}
.read-more-card a:hover {
  color: var(--color-accent-hover);
}

/* --- Order Page --- */
.order-hero {
  padding: 140px 0 64px;
  background: var(--color-bg-dark);
  color: #fff;
  text-align: center;
}
.order-hero h1 { color: #fff; margin-bottom: 12px; }
.order-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; }

.order-section {
  padding: 80px 0;
}

.order-note {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-primary);
  padding: 20px 24px;
  margin-bottom: 40px;
  border-radius: 0 4px 4px 0;
  font-size: .95rem;
  color: var(--color-text-light);
}

.order-product-group {
  margin-bottom: 56px;
}
.order-product-group h2 {
  margin-bottom: 8px;
}
.order-product-group > p {
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.pricing-table thead th {
  background: var(--color-bg-alt);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--color-text-light);
}
.pricing-table tbody td {
  font-size: .95rem;
}
.pricing-table .price-cell {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-dark);
}
.pricing-table .shipping-label {
  color: var(--color-primary);
  font-weight: 600;
  font-size: .8rem;
}

.order-form {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 16px;
}
.order-form h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.order-form label {
  display: block;
  font-weight: 500;
  font-size: .9rem;
  margin-bottom: 6px;
  color: var(--color-text-light);
}
.order-form select,
.order-form input[type="number"],
.order-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: #fff;
  margin-bottom: 16px;
}
.order-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.order-price-display {
  text-align: center;
  padding: 20px;
  margin-bottom: 16px;
}
.order-price-display .price-label {
  font-size: .85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.order-price-display .price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-dark);
}
.order-price-display .price-shipping {
  font-size: .9rem;
  color: var(--color-primary);
  font-weight: 600;
}

.order-form [id$="-paypal-buttons"] {
  max-width: 400px;
  margin: 0 auto;
}

.order-hitch-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.order-hitch-image {
  border-radius: 8px;
  overflow: hidden;
}
.order-hitch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .order-hitch-layout {
    grid-template-columns: 1fr;
  }
  .order-hitch-image { display: none; }
}

.order-info {
  margin-top: 56px;
}
.order-info h3 {
  margin-bottom: 12px;
}
.order-info p {
  color: var(--color-text-light);
  margin-bottom: 16px;
}
.order-info ul {
  padding-left: 24px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}
.order-info li {
  margin-bottom: 6px;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-tagline {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
}
.site-footer h4 {
  color: #fff;
  font-size: .9rem;
  margin-bottom: 12px;
}
.site-footer a {
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.site-footer a:hover { color: #fff; }
.site-footer p, .site-footer address {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

/* --- Utilities --- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .trailer-cards { grid-template-columns: 1fr; }
  .hero__sound-btn { bottom: 80px; right: 16px; }
  .intro-strip .container { gap: 32px; }
  .intro-stats { gap: 24px; }
  .pricing-table { font-size: .85rem; }
  .pricing-table th, .pricing-table td { padding: 10px 12px; }
}
