/* =============================================
   PUJCSIKOLO123 — Vinařský Design
   Velké Bílovice · Jižní Morava · Slovácko
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --earth:       #1e1510;
  --earth-mid:   #2c1f16;
  --earth-warm:  #3a2a1d;
  --wine:        #7c2d3f;
  --wine-deep:   #5a1f2d;
  --wine-bright: #a8435a;
  --wine-glow:   rgba(124, 45, 63, 0.18);
  --gold:        #d4a054;
  --gold-bright: #e8bb72;
  --gold-glow:   rgba(212, 160, 84, 0.16);
  --cream:       #f2e8d8;
  --parchment:   #e8d9c0;
  --stone:       #9a8a78;
  --dark:        #120d08;
  --white:       #faf4ea;
  --card-bg:     rgba(255, 248, 230, 0.04);
  --card-border: rgba(212, 160, 84, 0.18);
  --nav-h:       72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--earth);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(18, 13, 8, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  z-index: 1000;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.1rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--stone);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: var(--gold-glow);
}

.nav-social { display: flex; gap: 0.75rem; align-items: center; }
.nav-social a {
  color: var(--stone);
  font-size: 1.05rem;
  transition: color 0.2s, transform 0.2s;
}
.nav-social a:hover { color: var(--gold); transform: scale(1.1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(18, 13, 8, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 999;
  border-bottom: 1px solid var(--card-border);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile a {
  text-decoration: none;
  color: var(--parchment);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: var(--gold-glow);
}
.nav-mobile-social {
  display: flex;
  gap: 1rem;
  padding: 1rem 1rem 0.25rem;
}
.nav-mobile-social a { color: var(--stone); font-size: 1.35rem; transition: color 0.2s; }
.nav-mobile-social a:hover { color: var(--gold); }

main { padding-top: var(--nav-h); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 80% 60%, rgba(200, 120, 40, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(124, 45, 63, 0.35) 0%, transparent 55%),
    linear-gradient(160deg, #1e1510 0%, #2c1f16 40%, #3d2215 70%, #1e1510 100%);
}

/* Vineyard row pattern */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='80' viewBox='0 0 160 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q40 25 80 50 Q120 75 160 50' stroke='rgba(212,160,84,0.07)' stroke-width='1.2' fill='none'/%3E%3Ccircle cx='25' cy='43' r='4' fill='rgba(212,160,84,0.06)'/%3E%3Ccircle cx='60' cy='30' r='3.5' fill='rgba(212,160,84,0.06)'/%3E%3Ccircle cx='100' cy='43' r='4' fill='rgba(212,160,84,0.06)'/%3E%3Ccircle cx='140' cy='35' r='3' fill='rgba(212,160,84,0.06)'/%3E%3C/svg%3E");
  background-size: 160px 80px;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(18,13,8,0.75) 0%, rgba(30,21,16,0.5) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: clamp(2rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  animation: heroIn 1s cubic-bezier(0.22,0.61,0.36,1) forwards;
  opacity: 0;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wine-glow);
  border: 1px solid rgba(212,160,84,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8.5vw, 5.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  color: var(--parchment);
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(212,160,84,0.3);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(212,160,84,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid rgba(242,232,216,0.3);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

.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.4rem;
  color: var(--stone);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1.5px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── SECTIONS ── */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
}
.section-full {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.section-title span { color: var(--gold); }
.section-title em { font-style: italic; color: var(--gold); }

.section-intro {
  font-size: 1rem;
  color: var(--parchment);
  font-weight: 300;
  line-height: 1.75;
  max-width: 540px;
  opacity: 0.9;
}

.divider {
  border: none; height: 1px;
  background: linear-gradient(to right, transparent, var(--card-border), transparent);
  margin: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 3rem;
}
.feature-item {
  background: var(--earth);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.feature-item:hover { background: var(--earth-mid); }

.feature-icon {
  width: 44px; height: 44px;
  background: var(--gold-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.feature-text { font-size: 0.87rem; color: var(--stone); line-height: 1.65; }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--earth-mid);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-top: 3rem;
}
.contact-item {
  flex: 1 1 200px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--earth-mid);
  border-right: 1px solid var(--card-border);
  transition: background 0.2s;
}
.contact-item:last-child { border-right: none; }
.contact-item:hover { background: var(--earth-warm); }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--gold-glow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.95rem; flex-shrink: 0;
}
.contact-label { font-size: 0.68rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-value { font-size: 0.92rem; color: var(--cream); font-weight: 500; }
.contact-value a { color: var(--cream); text-decoration: none; transition: color 0.2s; }
.contact-value a:hover { color: var(--gold); }

/* ── REVIEWS & FOOTER ── */
#recenze { background: var(--dark); }
#recenze .section { max-width: 1200px; margin: 0 auto; }

.eu-section { padding: 2rem clamp(1.5rem,5vw,4rem); max-width: 900px; margin: 0 auto; }
.eu-section img { width: 100%; height: auto; border-radius: 10px; opacity: 0.85; }

footer {
  background: var(--dark);
  border-top: 1px solid var(--card-border);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: var(--stone); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--stone); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── PAGE HEADER ── */
.page-header {
  position: relative;
  padding: clamp(3rem, 10vw, 5.5rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--card-border);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,160,84,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,45,63,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-header-label { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.75rem; }
.page-header-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
  position: relative; z-index: 1;
}
.page-header-title span { color: var(--gold); }
.page-header-title em { font-style: italic; color: var(--gold); }
.page-header-sub { margin-top: 0.75rem; font-size: 0.95rem; color: var(--stone); font-weight: 300; position: relative; z-index: 1; }

/* ── BIKE CARDS ── */
.bikes-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(3rem, 8vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bike-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.bike-card:hover {
  border-color: rgba(212,160,84,0.35);
  box-shadow: 0 8px 48px rgba(0,0,0,0.35);
}
.bike-info {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex; flex-direction: column;
}
.bike-number { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.5rem; }
.bike-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.bike-highlights { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.bike-tag {
  background: var(--gold-glow);
  border: 1px solid rgba(212,160,84,0.25);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 0.3rem;
}

.bike-specs-toggle {
  background: none; border: none;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem; font-weight: 500;
  cursor: pointer;
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0; margin-bottom: 1rem;
  transition: opacity 0.2s;
}
.bike-specs-toggle:hover { opacity: 0.75; }
.bike-specs-toggle i { transition: transform 0.3s; }
.bike-specs-toggle.open i { transform: rotate(180deg); }

.bike-specs-content { display: none; }
.bike-specs-content.open { display: grid; }

.spec-row {
  display: flex; align-items: baseline; gap: 0.5rem;
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.82rem;
}
.spec-key { color: var(--stone); min-width: 138px; flex-shrink: 0; }
.spec-val { color: var(--parchment); font-weight: 500; line-height: 1.4; }

.bike-photos { position: relative; background: var(--dark); overflow: hidden; }
.bike-gallery {
  height: 100%; min-height: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.bike-gallery img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.4s, filter 0.3s; display: block; }
.bike-gallery img:first-child { grid-column: 1 / -1; }
.bike-gallery img:hover { transform: scale(1.04); filter: brightness(1.08); }

/* ── DOWNLOADS ── */
.downloads-bar {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem) 3rem;
  display: flex; flex-wrap: wrap; gap: 0.85rem;
}
.download-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--parchment);
  font-size: 0.85rem; font-weight: 500;
  padding: 0.72rem 1.2rem;
  border-radius: 8px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.download-btn i { color: var(--gold); }
.download-btn:hover { border-color: rgba(212,160,84,0.5); color: var(--gold); background: var(--gold-glow); }

/* ── IMAGE MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.93); z-index: 9999;
  align-items: center; justify-content: center; cursor: zoom-out;
}
.modal-overlay.open { display: flex; }
.modal-overlay img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 6px; box-shadow: 0 24px 80px rgba(0,0,0,0.8); cursor: default; }
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.08); border: none; color: white;
  font-size: 1.1rem; width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.modal-close:hover { background: rgba(212,160,84,0.25); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 4px;
  padding: 2rem clamp(1.5rem, 5vw, 4rem) 4rem;
  max-width: 1400px; margin: 0 auto;
}
.gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 6px; cursor: pointer; background: var(--earth-mid); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s, filter 0.3s; }
.gallery-item:hover img { transform: scale(1.07); filter: brightness(0.85) saturate(1.1); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(124,45,63,0.3) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover::after { opacity: 1; }

.glb { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; align-items: center; justify-content: center; }
.glb.open { display: flex; }
.glb img { max-width: 90vw; max-height: 86vh; object-fit: contain; border-radius: 6px; }
.glb-close, .glb-prev, .glb-next { position: absolute; background: rgba(255,255,255,0.07); border: none; color: white; cursor: pointer; border-radius: 50%; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: background 0.2s, transform 0.2s; }
.glb-close:hover, .glb-prev:hover, .glb-next:hover { background: rgba(212,160,84,0.25); }
.glb-close { top: 1.5rem; right: 1.5rem; }
.glb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.glb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.glb-prev:hover { transform: translateY(-50%) scale(1.1); }
.glb-next:hover { transform: translateY(-50%) scale(1.1); }
.glb-caption { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: var(--stone); font-size: 0.8rem; letter-spacing: 0.06em; white-space: nowrap; }

/* ── KONTAKT ── */
.contact-page {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 1100px; margin: 0 auto;
  padding: clamp(2rem,6vw,4rem) clamp(1.5rem,5vw,4rem) clamp(3rem,8vw,5rem);
}
.contact-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: clamp(1.5rem,4vw,2.5rem); }
.contact-card h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; }
.contact-card .subtitle { font-size: 0.86rem; color: var(--stone); margin-bottom: 2rem; }
.contact-rows { display: flex; flex-direction: column; gap: 1rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-row-icon { width: 38px; height: 38px; background: var(--gold-glow); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
.contact-row-label { font-size: 0.68rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.15rem; }
.contact-row-value { font-size: 0.92rem; color: var(--cream); font-weight: 500; }
.contact-row-value a { color: var(--cream); text-decoration: none; transition: color 0.2s; }
.contact-row-value a:hover { color: var(--gold); }
.map-card { background: var(--dark); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; min-height: 400px; display: flex; flex-direction: column; }
.map-card-header { padding: 1.5rem 2rem 1rem; }
.map-card-header h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--white); }
.map-card iframe { flex: 1; width: 100%; min-height: 300px; border: none; display: block; filter: invert(0.88) hue-rotate(180deg) saturate(0.4) brightness(0.75); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex; }
  .bike-card { grid-template-columns: 1fr; }
  .bike-photos { order: -1; }
  .bike-gallery { min-height: 240px; }
  .contact-page { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .downloads-bar { flex-direction: column; }
  .footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .contact-strip { flex-direction: column; }
  .contact-item { border-right: none; border-bottom: 1px solid var(--card-border); }
}

@media (max-width: 400px) {
  .features-grid { grid-template-columns: 1fr; }
}
