/* ============================================
   SHOE CREW - Styles
   Brand Colors: Orange #BE5C2D, Dark #1A1A1A,
   Steel #4A4A4A, Silver #C0C0C0
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --orange: #BE5C2D;
  --orange-dark: #9E4A1F;
  --orange-light: #D4792A;
  --dark: #1A1A1A;
  --dark-lighter: #2A2A2A;
  --steel: #4A4A4A;
  --silver: #C0C0C0;
  --light: #F5F5F5;
  --white: #FFFFFF;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);

  --radius: 8px;
  --radius-lg: 12px;

  --transition: 0.3s ease;
  --nav-height: 95px;
}

/* ---------- Under Construction Gate ---------- */
.gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  z-index: 10000;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
}

.gate-overlay.hidden {
  display: none;
}

.gate-content {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.gate-logo {
  width: clamp(160px, 35vw, 280px);
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 20px rgba(190, 92, 45, 0.3));
}

.gate-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 8px;
}

.gate-subheading {
  font-family: var(--font-body);
  color: var(--silver);
  font-size: 1rem;
  margin-bottom: 32px;
}

.gate-password-section {
  margin-bottom: 8px;
}

.gate-password-label {
  font-family: var(--font-body);
  color: var(--silver);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.gate-password-row {
  display: flex;
  gap: 8px;
  max-width: 320px;
  margin: 0 auto;
}

.gate-password-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--steel);
  border-radius: var(--radius);
  background: var(--dark-lighter);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.gate-password-input:focus {
  border-color: var(--orange);
}

.gate-password-btn {
  padding: 12px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background var(--transition);
}

.gate-password-btn:hover {
  background: var(--orange-dark);
}

.gate-error {
  color: #e74c3c;
  font-family: var(--font-body);
  font-size: 0.85rem;
  margin-top: 8px;
  display: none;
}

.gate-error.visible {
  display: block;
}

.gate-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
  color: var(--steel);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.gate-divider::before,
.gate-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--steel);
}

.gate-form-section {
  text-align: left;
}

.gate-form-heading {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
  text-align: center;
}

.gate-form-subtext {
  font-family: var(--font-body);
  color: var(--silver);
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-align: center;
}

.gate-form-row {
  display: flex;
  gap: 12px;
}

.gate-form-group {
  margin-bottom: 16px;
  flex: 1;
}

.gate-form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px;
}

.gate-form-group input,
.gate-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--steel);
  border-radius: var(--radius);
  background: var(--dark-lighter);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.gate-form-group input:focus,
.gate-form-group textarea:focus {
  border-color: var(--orange);
}

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

.gate-form-group textarea {
  resize: vertical;
}

.gate-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background var(--transition);
}

.gate-form-submit:hover {
  background: var(--orange-dark);
}

.gate-form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: var(--dark-lighter);
  border-radius: var(--radius);
  margin-top: 16px;
}

.gate-form-success.visible {
  display: block;
}

.gate-form-success p {
  color: #2ecc71;
  font-family: var(--font-body);
  font-size: 1rem;
}

.gate-contact-info {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--steel);
}

.gate-contact-info p {
  font-family: var(--font-body);
  color: var(--silver);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.gate-contact-info strong {
  color: var(--orange);
}

@media (max-width: 480px) {
  .gate-form-row {
    flex-direction: column;
    gap: 0;
  }
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
}

html {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.hidden {
  display: none !important;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--steel);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 121, 42, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--dark);
  z-index: 1000;
  transition: all var(--transition);
  border-bottom: 3px solid var(--orange);
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  max-width: 320px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  color: var(--silver);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link--cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px;
}

.nav-link--cta:hover {
  background: var(--orange-dark);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 121, 42, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(212, 121, 42, 0.05) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.01) 50px,
      rgba(255, 255, 255, 0.01) 51px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.01) 50px,
      rgba(255, 255, 255, 0.01) 51px
    );
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 40px 24px;
}

.hero-logo {
  width: clamp(200px, 40vw, 500px);
  margin: 0 auto 32px;
  filter: drop-shadow(0 4px 30px rgba(212, 121, 42, 0.3));
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--silver);
  margin-bottom: 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-arrow {
  width: 28px;
  height: 28px;
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
  opacity: 0.6;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50% { transform: rotate(45deg) translateY(10px); opacity: 1; }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--orange);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-desc {
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   TRAILERS
   ============================================ */
.trailers {
  padding: 100px 0;
  background: var(--light);
}

.trailers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trailer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.trailer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.trailer-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--dark-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trailer-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--steel);
}

.trailer-img-placeholder svg {
  width: 80px;
  height: 60px;
  opacity: 0.4;
}

.trailer-img-placeholder span {
  font-size: 0.85rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trailer-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trailer-badge--available {
  background: #22c55e;
  color: var(--white);
}

.trailer-badge--reserved {
  background: var(--orange);
  color: var(--white);
}

.trailer-info {
  padding: 24px;
}

.trailer-name {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.trailer-size {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 12px;
}

.trailer-desc {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.how-it-works .section-title {
  color: var(--white);
}

.how-it-works .section-subtitle {
  color: var(--silver);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--silver);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--orange);
}

.step-desc {
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  min-width: 60px;
  height: 3px;
  background: var(--steel);
  margin-top: 72px;
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--orange);
  border-top: 3px solid var(--orange);
  transform: rotate(45deg);
}

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

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 12px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  color: var(--orange);
  margin-top: 2px;
}

.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.contact-info-item p {
  color: var(--steel);
  font-size: 0.95rem;
}

/* Form */
.contact-form {
  background: var(--light);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e5e5;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 6px;
}

.required {
  color: var(--orange);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  border: 2px solid #ddd;
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212, 121, 42, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Form Success */
.form-success {
  background: var(--light);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e5e5;
  text-align: center;
}

.success-content {
  max-width: 400px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.form-success p {
  color: var(--steel);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.form-success .btn--outline {
  color: var(--dark);
  border-color: var(--steel);
}

.form-success .btn--outline:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--silver);
  padding: 60px 0 0;
  border-top: 3px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--silver);
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--silver);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--steel);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--steel);
}

.footer-credit-link {
  color: var(--orange);
  transition: color var(--transition);
}

.footer-credit-link:hover {
  color: var(--orange-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .trailers-grid .trailer-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-logo-img {
    height: 40px;
    max-width: 160px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 0;
    width: 100%;
  }

  .nav-link--cta {
    margin-top: 16px;
    text-align: center;
    padding: 14px 24px;
  }

  .hero-logo {
    width: clamp(180px, 50vw, 280px);
  }

  .hero-tagline {
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 0 8px;
  }

  .tagline-item {
    display: block;
    margin-bottom: 4px;
  }

  .tagline-separator {
    display: none;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 8px;
  }

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

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

  .services-grid .service-card:last-child {
    max-width: none;
  }

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

  .trailers-grid .trailer-card:last-child {
    max-width: none;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .step {
    padding: 24px;
  }

  .step-connector {
    width: 3px;
    min-width: 3px;
    height: 40px;
    margin-top: 0;
  }

  .step-connector::after {
    right: -4px;
    top: auto;
    bottom: -4px;
    transform: rotate(135deg);
  }

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

  .contact-form {
    padding: 28px 20px;
  }

  .contact-info {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .section-title {
    font-size: 1.75rem;
  }
}
