/* ============================================================
   U-SAVE CLEARWATER — Main Stylesheet
   Design: Editorial luxury, gold + charcoal palette
   ============================================================ */

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

:root {
  --gold: #D4A020;
  --gold-light: #E8C44A;
  --gold-dark: #B8880A;
  --charcoal: #1A1A1A;
  --charcoal-mid: #2A2A2A;
  --gray-dark: #3A3A3A;
  --gray: #6B6B6B;
  --gray-light: #999;
  --gray-lighter: #E8E6E1;
  --cream: #FAF9F6;
  --white: #FFFFFF;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Menlo', 'Monaco', monospace;
  --header-height: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
  --side-pad: clamp(24px, 5vw, 80px);
  --max-width: 1280px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 42px;
}

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

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

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

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

/* --- Entrance Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================================
   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 var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(26, 26, 26, 0.97);
  box-shadow: 0 1px 0 rgba(212, 160, 32, 0.15);
}

.header-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.header-nav a:hover,
.header-nav a:focus {
  color: var(--white);
}

.header-nav a:hover::after,
.header-nav a:focus::after {
  width: 100%;
}

.header-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  background: var(--gold);
  padding: 10px 24px;
  transition: background var(--transition), transform var(--transition) !important;
}

.header-cta::after { display: none !important; }

.header-cta:hover,
.header-cta:focus {
  background: var(--gold-light);
  color: var(--charcoal) !important;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.5) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.95) 0%,
    rgba(26, 26, 26, 0.4) 40%,
    rgba(26, 26, 26, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad) clamp(60px, 8vw, 120px);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--white);
  max-width: 800px;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-cue .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(212, 160, 32, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.experience-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--charcoal);
}

.experience-text h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.experience-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.experience-stat-row {
  display: flex;
  gap: 48px;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-lighter);
}

.experience-stat {
  text-align: left;
}

.experience-stat .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.experience-stat .label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.experience-visual {
  position: relative;
}

.experience-visual .img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.experience-visual .img-accent {
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 55%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   FLEET SECTION
   ============================================================ */
.fleet {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.fleet-header {
  max-width: 600px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.fleet-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.fleet-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.fleet-header p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.fleet-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.fleet-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.7);
}

.fleet-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.5);
}

.fleet-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform var(--transition);
}

.fleet-card:hover .fleet-card-content {
  transform: translateY(0);
}

.fleet-card-content h3 {
  font-size: 1.375rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-weight: 400;
}

.fleet-card-content span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.fleet-card:hover .fleet-card-content span {
  opacity: 1;
}

/* Feature card — spans full width */
.fleet-feature {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}

/* ============================================================
   WHY U-SAVE SECTION
   ============================================================ */
.why-usave {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.why-usave-header {
  text-align: left;
  max-width: 600px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.why-usave-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.why-usave-header h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.why-usave-header p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.why-item {
  padding: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--gray-lighter);
  border-right: 1px solid var(--gray-lighter);
  transition: background var(--transition);
}

.why-item:nth-child(2n) {
  border-right: none;
}

.why-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.why-item:hover {
  background: var(--white);
}

.why-item .why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.4;
}

.why-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-weight: 400;
}

.why-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ============================================================
   CLEARWATER SECTION — editorial full-bleed
   ============================================================ */
.clearwater {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.clearwater-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.clearwater-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.clearwater-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad) var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.clearwater-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.clearwater-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.clearwater-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

.clearwater-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.clearwater-detail {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 32px;
  transition: border-color var(--transition);
}

.clearwater-detail:hover {
  border-color: rgba(212, 160, 32, 0.4);
}

.clearwater-detail h3 {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-weight: 400;
}

.clearwater-detail p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.contact-info > p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 2.5rem;
}

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

.contact-detail .detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.125rem;
}

.contact-detail .detail-content {
  display: flex;
  flex-direction: column;
}

.contact-detail .detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 4px;
}

.contact-detail .detail-value {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact-detail .detail-value a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-lighter);
  transition: border-color var(--transition), color var(--transition);
}

.contact-detail .detail-value a:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}

.contact-map {
  margin-top: 2rem;
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--gray-lighter);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3);
}

/* 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: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid var(--gray-lighter);
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 32, 0.1);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #c44;
}

.form-group .error-msg {
  font-size: 0.75rem;
  color: #c44;
  display: none;
}

.form-group.has-error .error-msg {
  display: block;
}

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

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

.form-note {
  font-size: 0.75rem;
  color: var(--gray-light);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.5);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  text-align: center;
  padding: var(--header-height) var(--side-pad) 0;
}

.page-404 h1 {
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -1rem;
}

.page-404 h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-404 p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.page-404 .btn-primary {
  display: inline-flex;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .experience-visual {
    order: -1;
  }

  .experience-visual .img-accent {
    bottom: -24px;
    left: -16px;
    width: 45%;
  }

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

  .fleet-feature {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }

  .clearwater-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
  }

  .header-nav.open {
    right: 0;
  }

  .header-nav a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .header-cta {
    margin-top: 16px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-secondary {
    justify-content: center;
    text-align: center;
  }

  .experience-stat-row {
    gap: 32px;
  }

  .experience-stat .number {
    font-size: 2rem;
  }

  .fleet-showcase {
    grid-template-columns: 1fr;
  }

  .fleet-feature {
    aspect-ratio: 16/9;
  }

  .fleet-card {
    aspect-ratio: 16/10;
  }

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

  .why-item {
    border-right: none !important;
  }

  .why-item:last-child {
    border-bottom: none;
  }

  .clearwater-details {
    gap: 16px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-content {
    padding-bottom: 48px;
  }

  .hero-scroll-cue {
    display: none;
  }

  .experience-visual .img-accent {
    display: none;
  }

  .clearwater-detail {
    padding: 20px 24px;
  }
}
