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

  :root {
    --primary: #233D4D;
    --secondary: #215E61;
    --light: #F5FBE6;
    --accent: #FE7F2D;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--primary);
    color: var(--light);
    overflow-x: hidden;
    cursor: default;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.5rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(35,61,77,0.95) 0%, transparent 100%);
    transition: background 0.4s ease;
  }
  nav.scrolled { background: rgba(35,61,77,0.98); backdrop-filter: blur(12px); }

  .nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem; font-weight: 700;
    color: var(--light); letter-spacing: 0.05em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: rgba(245,251,230,0.75); font-size: 0.85rem;
    font-weight: 500; text-decoration: none; letter-spacing: 0.08em;
    text-transform: uppercase; transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
    height: 1px; background: var(--accent); transition: right 0.3s ease;
  }
  .nav-links a:hover { color: var(--light); }
  .nav-links a:hover::after { right: 0; }

  .nav-cta {
    background: var(--accent); color: var(--white);
    padding: 0.6rem 1.6rem; border: none; border-radius: 2px;
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 0 rgba(254,127,45,0);
    transition: box-shadow 0.3s ease, transform 0.3s ease; cursor: pointer;
  }
  .nav-cta:hover { box-shadow: 0 0 24px rgba(254,127,45,0.55); transform: translateY(-1px); }

  /* HERO */
  #hero {
    height: 100vh; position: relative;
    display: flex; align-items: center; justify-content: flex-start;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      linear-gradient(105deg, rgba(35,61,77,0.95) 0%, rgba(35,61,77,0.65) 45%, rgba(35,61,77,0.15) 100%),
      url('https://images.unsplash.com/photo-1690959129531-fb446280fc77?w=1800&q=90&auto=format&fit=crop') center/cover no-repeat;
    transform: scale(1.05);
    transition: transform 0.5s ease-out;
  }

  .hero-grain {
    position: absolute; inset: 0; z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.3; pointer-events: none;
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 0 4rem; max-width: 720px;
    animation: heroReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes heroReveal {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 1.5rem;
  }
  .hero-tag::before {
    content: ''; display: block;
    width: 36px; height: 1px; background: var(--accent);
  }

  .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 900; line-height: 1.0;
    color: var(--light); margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }
  .hero-title em { color: var(--accent); font-style: italic; }

  .hero-subtitle {
    font-size: 1.05rem; font-weight: 300; color: rgba(245,251,230,0.7);
    letter-spacing: 0.04em; margin-bottom: 2.8rem; max-width: 440px;
    line-height: 1.7;
  }

  .hero-actions { display: flex; align-items: center; gap: 1.5rem; }

  .hero-specs-strip {
    display: flex; align-items: center; gap: 1.2rem; margin-top: 2.5rem;
    padding: 1.1rem 1.6rem;
    background: rgba(35,61,77,0.55); backdrop-filter: blur(12px);
    border: 1px solid rgba(245,251,230,0.12);
    border-radius: 4px; width: fit-content;
  }
  .hspec { display: flex; flex-direction: column; gap: 0.2rem; }
  .hspec-val { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--light); line-height: 1; }
  .hspec-key { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,251,230,0.45); }
  .hspec-divider { width: 1px; height: 32px; background: rgba(245,251,230,0.15); }

  .btn-primary {
    background: var(--accent); color: var(--white);
    padding: 0.9rem 2.4rem; border: 2px solid var(--accent);
    font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
    text-decoration: none; display: inline-block;
    box-shadow: 0 0 0 rgba(254,127,45,0);
    transition: all 0.35s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .btn-primary:hover {
    box-shadow: 0 0 36px rgba(254,127,45,0.65), 0 0 72px rgba(254,127,45,0.2);
    transform: translateY(-2px);
  }

  .btn-ghost {
    color: var(--light); font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: color 0.3s, gap 0.3s;
  }
  .btn-ghost:hover { color: var(--accent); gap: 0.9rem; }
  .btn-ghost::after { content: '→'; }

  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    animation: float 2.5s ease-in-out infinite;
  }
  @keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
  .hero-scroll span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,251,230,0.45); }
  .scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--accent), transparent); }

  .hero-stats {
    position: absolute; bottom: 5rem; right: 4rem; z-index: 2;
    display: flex; gap: 3rem;
    animation: heroReveal 1.4s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700;
    color: var(--light); line-height: 1;
  }
  .stat-num span { color: var(--accent); }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,251,230,0.45); margin-top: 0.3rem; }

  /* SECTION SHARED */
  section { position: relative; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
  }
  .section-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--accent); }

  /* ABOUT */
  #about {
    background: var(--light);
    padding: 7rem 0; overflow: hidden;
  }

  .about-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 4rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }

  .about-image-wrap {
    position: relative;
  }
  .about-image-frame {
    position: relative;
    border-radius: 4px; overflow: hidden;
    box-shadow: 24px 24px 64px rgba(35,61,77,0.2), 0 0 0 1px rgba(35,61,77,0.06);
  }
  .about-image-frame img {
    width: 100%; display: block;
    transition: transform 0.7s ease;
  }
  .about-image-frame:hover img { transform: scale(1.04); }
  .about-accent-line {
    position: absolute; top: -2rem; left: -2rem;
    width: 80px; height: 80px;
    border-top: 3px solid var(--accent); border-left: 3px solid var(--accent);
  }
  .about-accent-dot {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    width: 120px; height: 120px; border-radius: 50%;
    background: var(--secondary); opacity: 0.12;
  }
  .about-year {
    position: absolute; bottom: 1.5rem; left: -2.5rem;
    background: var(--primary); color: var(--light);
    padding: 0.8rem 1.2rem; writing-mode: vertical-rl;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 500;
  }

  .about-text .section-tag { color: var(--secondary); }
  .about-text .section-tag::before { background: var(--secondary); }

  .about-heading {
    font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700; color: var(--primary); line-height: 1.15;
    margin-bottom: 1.5rem;
  }
  .about-heading em { color: var(--secondary); font-style: italic; }

  .about-body {
    font-size: 0.92rem; line-height: 1.85; color: rgba(35,61,77,0.7);
    margin-bottom: 2.5rem;
  }

  .feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

  .feat-card {
    background: var(--white); padding: 1.4rem 1.2rem;
    border-radius: 4px; border: 1px solid rgba(35,61,77,0.08);
    box-shadow: 0 4px 16px rgba(35,61,77,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  .feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(35,61,77,0.14);
  }
  .feat-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
  .feat-value { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--primary); }
  .feat-name { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(35,61,77,0.45); margin-top: 0.2rem; }

  .gallery-filters {
    max-width: 1200px; margin: 0 auto 2.5rem; padding: 0 4rem;
    display: flex; gap: 0.8rem; flex-wrap: wrap;
  }
  .filter-btn {
    background: transparent; border: 1px solid rgba(245,251,230,0.2);
    color: rgba(245,251,230,0.5); padding: 0.45rem 1.2rem; border-radius: 20px;
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
    transition: all 0.3s ease;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--accent); border-color: var(--accent);
    color: var(--white); box-shadow: 0 0 16px rgba(254,127,45,0.35);
  }
  #gallery {
    background: var(--primary);
    padding: 7rem 0;
  }

  .gallery-header {
    max-width: 1200px; margin: 0 auto 4rem; padding: 0 4rem;
    display: flex; align-items: flex-end; justify-content: space-between;
  }

  .gallery-title {
    font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700; color: var(--light); line-height: 1.1;
  }
  .gallery-title em { color: var(--accent); font-style: italic; }

  .gallery-subtitle {
    font-size: 0.85rem; color: rgba(245,251,230,0.45); max-width: 280px; text-align: right; line-height: 1.6;
  }

  .gallery-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 4rem;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }

  .bike-card {
    background: var(--secondary); border-radius: 6px;
    overflow: visible; position: relative;
    transform-style: preserve-3d; perspective: 800px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    cursor: pointer;
  }
  .bike-card:hover {
    transform: translateY(-12px) rotateX(4deg) scale(1.02);
    box-shadow: 0 28px 64px rgba(0,0,0,0.45), 0 8px 24px rgba(254,127,45,0.12);
  }

  .bike-img-wrap {
    height: 220px; overflow: hidden; border-radius: 6px 6px 0 0;
    position: relative;
  }
  .bike-img-wrap::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(33,94,97,0.8) 0%, transparent 60%);
  }
  .bike-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }
  .bike-card:hover .bike-img-wrap img { transform: scale(1.08); }

  .bike-badge {
    position: absolute; top: 1rem; right: 1rem; z-index: 1;
    background: rgba(35,61,77,0.8); backdrop-filter: blur(8px);
    color: var(--light); font-size: 0.62rem; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 20px;
    border: 1px solid rgba(245,251,230,0.15);
  }

  .bike-info { padding: 1.5rem; }

  .bike-name {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
    color: var(--light); margin-bottom: 1rem; letter-spacing: 0.01em;
  }

  .bike-specs {
    display: flex; gap: 1rem; margin-bottom: 1.2rem;
  }
  .spec-item { flex: 1; }
  .spec-val { font-size: 0.88rem; font-weight: 600; color: rgba(245,251,230,0.85); }
  .spec-key { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,251,230,0.35); margin-top: 0.15rem; }

  .bike-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1rem; border-top: 1px solid rgba(245,251,230,0.1);
  }
  .bike-price { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--accent); }
  .bike-price small { font-size: 0.7rem; font-family: var(--font-body); font-weight: 400; color: rgba(245,251,230,0.35); }

  .btn-book {
    background: transparent; border: 1.5px solid var(--accent);
    color: var(--accent); padding: 0.5rem 1.2rem; font-size: 0.72rem;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; border-radius: 2px;
    transition: all 0.3s ease;
  }
  .btn-book:hover { background: var(--accent); color: var(--white); box-shadow: 0 0 20px rgba(254,127,45,0.4); }

  /* MARQUEE STRIP */
  .marquee-strip {
    background: var(--accent); padding: 0.9rem 0; overflow: hidden;
  }
  .marquee-inner {
    display: flex; gap: 3rem; width: max-content;
    animation: marquee 28s linear infinite;
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-item {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--white); white-space: nowrap;
  }
  .marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.5); }

  /* CONTACT */
  #contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 7rem 0; position: relative; overflow: hidden;
  }
  #contact::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(254,127,45,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(245,251,230,0.04) 0%, transparent 50%);
  }
  .contact-inner {
    max-width: 680px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1;
    text-align: center;
  }

  .contact-heading {
    font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: var(--light); margin-bottom: 0.8rem; line-height: 1.15;
  }
  .contact-heading em { color: var(--accent); font-style: italic; }
  .contact-sub { font-size: 0.9rem; color: rgba(245,251,230,0.55); margin-bottom: 3rem; }

  .glass-form {
    background: rgba(245,251,230,0.06);
    border: 1px solid rgba(245,251,230,0.15);
    backdrop-filter: blur(20px);
    border-radius: 12px; padding: 2.5rem;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25), inset 0 1px 0 rgba(245,251,230,0.15);
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }

  .form-group { position: relative; }
  .form-group label {
    position: absolute; top: 50%; left: 1rem; transform: translateY(-50%);
    font-size: 0.78rem; color: rgba(245,251,230,0.4); letter-spacing: 0.06em;
    transition: all 0.3s ease; pointer-events: none;
  }
  .form-group.full label { top: 1.2rem; transform: none; }

  .form-group input, .form-group textarea {
    width: 100%; background: rgba(245,251,230,0.06);
    border: 1px solid rgba(245,251,230,0.2); border-radius: 4px;
    color: var(--light); font-family: var(--font-body); font-size: 0.88rem;
    padding: 1rem; outline: none; transition: border-color 0.3s, box-shadow 0.3s;
  }
  .form-group textarea { resize: vertical; min-height: 120px; padding-top: 1rem; }

  .form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(254,127,45,0.12);
  }
  .form-group input:focus + label, .form-group input:not(:placeholder-shown) + label,
  .form-group textarea:focus + label, .form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem; left: 0.8rem; font-size: 0.62rem; color: var(--accent);
    background: var(--secondary); padding: 0 0.3rem;
  }
  .form-group.full input:focus + label, .form-group.full textarea:focus + label,
  .form-group.full input:not(:placeholder-shown) + label, .form-group.full textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: transparent; }

  .form-full { margin-bottom: 1rem; }

  .btn-submit {
    width: 100%; background: var(--accent); color: var(--white);
    border: none; padding: 1rem; font-family: var(--font-body);
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; cursor: pointer; border-radius: 4px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(254,127,45,0.25);
    transition: all 0.35s ease;
  }
  .btn-submit:hover {
    box-shadow: 0 8px 40px rgba(254,127,45,0.6), 0 0 80px rgba(254,127,45,0.15);
    transform: translateY(-2px);
  }

  .btn-submit:disabled,
  .btn-submit:disabled:hover {
    cursor: wait;
    opacity: 0.72;
    transform: none;
    box-shadow: 0 4px 20px rgba(254,127,45,0.18);
  }

  .form-status {
    min-height: 1.25rem;
    margin-top: 1rem;
    color: rgba(245,251,230,0.72);
    font-size: 0.82rem;
    text-align: center;
  }

  .form-status.success { color: #9bd88f; }
  .form-status.error { color: #ffb1a3; }

  /* FOOTER */
  footer {
    background: rgba(20,34,42,0.98); padding: 3rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(245,251,230,0.06);
  }
  .footer-logo { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--light); }
  .footer-logo span { color: var(--accent); }
  .footer-copy { font-size: 0.72rem; color: rgba(245,251,230,0.3); letter-spacing: 0.06em; }
  .footer-links { display: flex; gap: 1.8rem; list-style: none; }
  .footer-links a { color: rgba(245,251,230,0.35); font-size: 0.72rem; text-decoration: none; letter-spacing: 0.08em; transition: color 0.3s; }
  .footer-links a:hover { color: var(--accent); }

  /* REVEAL ANIMATION */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }
  .delay-5 { transition-delay: 0.5s; }

  /* ─── HAMBURGER MENU ─── */
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px; z-index: 200;
  }
  .nav-hamburger span {
    display: block; width: 26px; height: 2px;
    background: var(--light); border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 150;
    background: rgba(35,61,77,0.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a {
    font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
    color: var(--light); text-decoration: none; letter-spacing: 0.04em;
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--accent); }
  .mobile-menu .mobile-cta {
    margin-top: 1rem; background: var(--accent); color: var(--white);
    padding: 0.9rem 2.5rem; border-radius: 2px; font-family: var(--font-body);
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  }

  /* ─── TABLET: 768px – 1024px ─── */
  @media (max-width: 1024px) {
    nav { padding: 1.2rem 2.5rem; }

    .hero-content { padding: 0 2.5rem; max-width: 600px; }

    .hero-stats { right: 2.5rem; gap: 2rem; }
    .stat-num { font-size: 1.8rem; }

    .about-inner { padding: 0 2.5rem; gap: 3.5rem; }

    .gallery-header { padding: 0 2.5rem; }
    .gallery-filters { padding: 0 2.5rem; }
    .gallery-grid { padding: 0 2.5rem; grid-template-columns: repeat(2, 1fr); }

    footer { padding: 2rem 2.5rem; }
  }

  /* ─── MOBILE: ≤ 768px ─── */
  @media (max-width: 768px) {
    /* NAV */
    nav { padding: 1rem 1.5rem; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    /* HERO */
    .hero-content {
      padding: 0 1.5rem;
      max-width: 100%;
      text-align: center;
    }
    .hero-tag { justify-content: center; }
    .hero-title { font-size: clamp(2.4rem, 10vw, 3.8rem); }
    .hero-subtitle { font-size: 0.9rem; max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; flex-wrap: wrap; gap: 1rem; }
    .hero-specs-strip { width: 100%; justify-content: center; flex-wrap: wrap; gap: 0.8rem; }

    .hero-stats {
      position: static;
      display: flex; justify-content: center; gap: 1.8rem;
      padding: 1.5rem 1.5rem 0;
      animation: none;
      width: 100%;
    }
    #hero {
      flex-direction: column;
      justify-content: center;
      padding-top: 5rem;
      padding-bottom: 5rem;
      height: auto; min-height: 100vh;
    }
    .stat-num { font-size: 1.6rem; }
    .hero-scroll { display: none; }
    .hero-bg { background-position: 65% center; }

    /* ABOUT */
    #about { padding: 4rem 0; }
    .about-inner {
      padding: 0 1.5rem;
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .about-accent-line { top: -1rem; left: -0.5rem; width: 50px; height: 50px; }
    .about-accent-dot { display: none; }
    .about-year { display: none; }
    .feature-cards { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
    .feat-card { padding: 1rem 0.6rem; }
    .feat-value { font-size: 1rem; }

    /* GALLERY */
    #gallery { padding: 4rem 0; }
    .gallery-header {
      flex-direction: column; align-items: flex-start; gap: 0.8rem;
      padding: 0 1.5rem; margin-bottom: 2rem;
    }
    .gallery-subtitle { text-align: left; max-width: 100%; font-size: 0.78rem; }
    .gallery-filters { padding: 0 1.5rem; gap: 0.6rem; }
    .filter-btn { padding: 0.4rem 0.9rem; font-size: 0.68rem; }
    .gallery-grid {
      padding: 0 1.5rem;
      grid-template-columns: 1fr;
      gap: 1.2rem;
    }
    .bike-card:hover { transform: none; }
    .bike-img-wrap { height: 200px; }

    /* CONTACT */
    #contact { padding: 4rem 0; }
    .contact-inner { padding: 0 1.5rem; }
    .glass-form { padding: 1.8rem 1.2rem; }
    .form-row { grid-template-columns: 1fr; }

    /* FOOTER */
    footer {
      flex-direction: column; gap: 1rem; text-align: center;
      padding: 2rem 1.5rem;
    }
    .footer-links { justify-content: center; }
  }

  /* ─── SMALL MOBILE: ≤ 480px ─── */
  @media (max-width: 480px) {
    .hero-title { font-size: clamp(2rem, 11vw, 3rem); }
    .hero-stats { gap: 1.2rem; }
    .stat-num { font-size: 1.4rem; }
    .feature-cards { grid-template-columns: 1fr; }
    .feat-card { padding: 1rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .btn-primary { padding: 0.8rem 1.6rem; font-size: 0.76rem; }
    .glass-form { padding: 1.4rem 1rem; }
    nav { padding: 1rem 1.2rem; }
    .nav-logo { font-size: 1.2rem; }
  }

  /* ─── LARGE DESKTOP: ≥ 1400px ─── */
  @media (min-width: 1400px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    nav { padding: 1.8rem 5rem; }
    .hero-content { padding: 0 5rem; }
    .about-inner { padding: 0 5rem; }
    .gallery-header, .gallery-filters, .gallery-grid { padding-left: 5rem; padding-right: 5rem; }
  }
