/*
Theme Name: Carlos eBikes
Theme URI: https://carlos-ebike.de
Author: Carlos eBikes GmbH
Author URI: https://carlos-ebike.de
Description: Das offizielle Carlos eBikes Theme – Service, Eigenentwicklung & Abverkauf. Optimiert für WooCommerce.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://carlos-ebike.de
Text Domain: carlos-ebikes
Tags: e-commerce, woocommerce, one-column, two-columns, custom-colors, custom-menu, featured-images, sticky-post, translation-ready
*/

/* =========================================================
   CARLOS EBIKES THEME – DESIGN TOKENS
   ========================================================= */
:root {
  --yellow:       #F5C800;
  --yellow-dark:  #D4A800;
  --black:        #111111;
  --dark:         #1A1A1A;
  --mid:          #2C2C2C;
  --light-gray:   #F4F4F2;
  --white:        #FFFFFF;
  --text-muted:   #999999;
  --accent-green: #4CAF50;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius:       3px;
  --max-width:    1200px;
  --transition:   0.2s ease;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow-dark); }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn,
button.btn,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-yellow,
.woocommerce a.button,
.woocommerce button.button.alt {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-yellow:hover,
.woocommerce a.button:hover,
.woocommerce button.button.alt:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-black:hover { background: #333; color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: #444; }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-yellow { background: transparent; color: var(--yellow); border-color: var(--yellow); }
.btn-outline-yellow:hover { background: var(--yellow); color: var(--black); }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  display: block;
}
.section-title { color: var(--white); margin-bottom: 20px; }
.section-title span { color: var(--yellow); }
.section-sub { font-size: 1.05rem; line-height: 1.7; color: var(--text-muted); max-width: 600px; margin-bottom: 56px; }

/* =========================================================
   TOPBAR
   ========================================================= */
.site-topbar {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-topbar a { color: var(--black); text-decoration: none; }
.site-topbar a:hover { text-decoration: underline; }
.topbar-sep { opacity: 0.35; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-header {
  background: var(--black);
  border-bottom: 2px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-branding { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-icon {
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.1rem;
  color: var(--black);
  flex-shrink: 0;
}
.brand-text { font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; line-height: 1; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.14em; color: var(--yellow); text-transform: uppercase; display: block; margin-top: 2px; }

.main-navigation { display: flex; align-items: center; }
.main-navigation ul { list-style: none; display: flex; gap: 32px; align-items: center; }
.main-navigation a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  padding: 4px 0;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--yellow); }
.main-navigation .menu-cta > a {
  background: var(--yellow);
  color: var(--black);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 700;
}
.main-navigation .menu-cta > a:hover { background: var(--yellow-dark); color: var(--black); }

/* Dropdown */
.main-navigation ul li { position: relative; }
.main-navigation ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  border: 1px solid #333;
  border-top: 2px solid var(--yellow);
  min-width: 200px;
  flex-direction: column;
  gap: 0;
  z-index: 300;
  padding: 8px 0;
}
.main-navigation ul li:hover > ul { display: flex; }
.main-navigation ul li ul li { width: 100%; }
.main-navigation ul li ul a { display: block; padding: 10px 20px; color: #bbb; font-size: 0.82rem; white-space: nowrap; }
.main-navigation ul li ul a:hover { background: #222; color: var(--yellow); }

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #444;
  color: var(--white);
  padding: 8px 14px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: var(--radius);
}

/* =========================================================
   HERO (FRONT PAGE)
   ========================================================= */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  overflow: hidden;
}
.hero-panel { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.hero-left { background: var(--dark); position: relative; }
.hero-left::after {
  content: '';
  position: absolute; right: -38px; top: 0; bottom: 0; width: 76px;
  background: var(--dark);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 2;
}
.hero-right { background: var(--yellow); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--black);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 2px; margin-bottom: 28px; width: fit-content;
}
.hero-badge-dark { background: var(--black); color: var(--yellow); }
.hero-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; display: block; }
.hero-eyebrow-dark { color: rgba(0,0,0,0.55); }
.hero-panel h1 { margin-bottom: 22px; }
.hero-left h1 { color: var(--white); }
.hero-left h1 span { color: var(--yellow); }
.hero-right h1 { color: var(--black); }
.hero-right h1 span { text-decoration: underline; text-underline-offset: 5px; }
.hero-panel p { font-size: 1.05rem; line-height: 1.65; margin-bottom: 34px; max-width: 440px; }
.hero-left p { color: #aaa; }
.hero-right p { color: rgba(0,0,0,0.6); }
.hero-stats { display: flex; gap: 28px; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stats-dark { border-top-color: rgba(0,0,0,0.15); }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.hero-stats-dark .stat-num { color: var(--black); }
.stat-label { font-size: 0.72rem; color: #888; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.hero-stats-dark .stat-label { color: rgba(0,0,0,0.45); }

/* Pulse animation */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(245,200,0,0.4); }
  70%  { box-shadow: 0 0 0 12px rgba(245,200,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,200,0,0); }
}
.pulse { animation: pulse-ring 2.5s infinite; }

/* =========================================================
   VISION STRIP
   ========================================================= */
.vision-strip {
  background: var(--mid);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.vision-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(245,200,0,0.025) 30px, rgba(245,200,0,0.025) 60px);
}
.vision-strip .container { position: relative; }
.vision-quote { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.8rem, 4vw, 3rem); text-transform: uppercase; color: var(--white); line-height: 1.1; margin-bottom: 18px; }
.vision-quote span { color: var(--yellow); }
.vision-strip p { font-size: 1rem; color: #888; line-height: 1.7; max-width: 600px; margin: 0 auto 28px; }

/* =========================================================
   SALE SECTION
   ========================================================= */
.section-sale { background: var(--dark); position: relative; overflow: hidden; }
.section-sale::before {
  content: 'SALE';
  position: absolute; font-family: var(--font-display); font-weight: 900;
  font-size: 22vw; color: rgba(245,200,0,0.035);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; user-select: none; letter-spacing: -0.05em; white-space: nowrap;
}
.sale-banner {
  background: var(--yellow); color: var(--black);
  text-align: center;
  font-family: var(--font-display); font-weight: 900; font-size: 0.85rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 12px; margin-bottom: 60px;
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.sale-dot { width: 8px; height: 8px; background: var(--black); border-radius: 50%; opacity: 0.3; }

/* Bike grid */
.bike-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2px; }
.bike-card {
  background: var(--mid); padding: 36px;
  border-left: 3px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}
.bike-card:hover { background: #333; border-left-color: var(--yellow); }
.bike-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 10px; background: rgba(245,200,0,0.12); color: var(--yellow);
  border-radius: 2px; margin-bottom: 14px;
}
.bike-name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.bike-desc { font-size: 0.88rem; color: #888; line-height: 1.6; margin-bottom: 18px; }
.bike-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.price-now { font-family: var(--font-display); font-weight: 900; font-size: 1.8rem; color: var(--yellow); }
.price-old { font-size: 0.9rem; color: #555; text-decoration: line-through; }
.price-badge { font-size: 0.7rem; font-weight: 700; background: var(--yellow); color: var(--black); padding: 2px 8px; border-radius: 2px; }

.abverkauf-reason {
  background: #1E1E1E; border: 1px solid #333; border-left: 4px solid var(--yellow);
  padding: 28px 32px; border-radius: var(--radius);
  margin-top: 56px; display: grid; grid-template-columns: auto 1fr; gap: 20px;
  align-items: start; max-width: 800px;
}
.reason-icon { font-size: 2rem; }
.reason-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.reason-text { font-size: 0.92rem; line-height: 1.7; color: #999; }

/* =========================================================
   SERVICE SECTION
   ========================================================= */
.section-service { background: var(--black); }
.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.service-cards { display: flex; flex-direction: column; gap: 14px; }
.service-card {
  background: var(--dark); padding: 26px 30px; border-radius: var(--radius);
  border-left: 4px solid var(--yellow);
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateX(6px); }
.service-icon { font-size: 1.8rem; }
.service-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; color: var(--white); margin-bottom: 5px; }
.service-card-text { font-size: 0.87rem; color: #888; line-height: 1.6; }

.leasing-box { background: var(--yellow); padding: 38px; border-radius: var(--radius); margin-top: 20px; }
.leasing-title { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
.leasing-text { font-size: 0.9rem; color: rgba(0,0,0,0.6); line-height: 1.7; margin-bottom: 18px; }
.leasing-logos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.leasing-pill { background: var(--black); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; padding: 6px 14px; border-radius: 2px; text-transform: uppercase; }

/* =========================================================
   EIGENENTWICKLUNG SECTION
   ========================================================= */
.section-eigenentwicklung { background: var(--yellow); }
.section-eigenentwicklung .section-label { color: rgba(0,0,0,0.5); }
.section-eigenentwicklung .section-title { color: var(--black); }
.section-eigenentwicklung .section-title span { text-decoration: underline; text-underline-offset: 6px; color: var(--black); }
.section-eigenentwicklung .section-sub { color: rgba(0,0,0,0.6); }

.dev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.dev-card { background: var(--black); padding: 46px 38px; position: relative; overflow: hidden; }
.dev-card::before {
  content: attr(data-num);
  position: absolute; font-family: var(--font-display); font-weight: 900;
  font-size: 9rem; color: rgba(245,200,0,0.04);
  top: -15px; right: -10px; line-height: 1; pointer-events: none;
}
.dev-num { font-family: var(--font-display); font-weight: 900; font-size: 0.75rem; letter-spacing: 0.2em; color: var(--yellow); margin-bottom: 14px; display: block; }
.dev-title { font-family: var(--font-display); font-weight: 900; font-size: 1.7rem; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.dev-text { font-size: 0.9rem; color: #999; line-height: 1.7; }
.dev-feature { display: flex; gap: 8px; align-items: flex-start; margin-top: 14px; font-size: 0.85rem; color: #ccc; }
.dev-feature::before { content: '→'; color: var(--yellow); font-weight: 700; flex-shrink: 0; }

.dev-highlight {
  background: var(--yellow); padding: 44px 38px;
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.dev-highlight-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.4rem, 3vw, 2.1rem); text-transform: uppercase; color: var(--black); line-height: 1.1; }
.dev-highlight-sub { font-size: 0.9rem; color: rgba(0,0,0,0.6); margin-top: 10px; }

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.section-contact { background: var(--dark); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-icon { width: 40px; height: 40px; background: var(--yellow); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-body { font-size: 0.9rem; color: #999; line-height: 1.6; }
.contact-item-body strong { color: var(--white); display: block; margin-bottom: 2px; }
.contact-item-body a { color: var(--yellow); }

.hours-box { background: #1A1A1A; border: 1px solid #333; padding: 26px 30px; border-radius: var(--radius); margin-top: 28px; }
.hours-title { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 8px 0; border-bottom: 1px solid #252525; }
.hours-row:last-of-type { border-bottom: none; }
.hours-day { color: #888; }
.hours-time { color: var(--white); font-weight: 600; }
.hours-note { font-size: 0.8rem; color: #555; margin-top: 10px; }

/* =========================================================
   WOOCOMMERCE OVERRIDES
   ========================================================= */
.woocommerce-page { background: var(--black); color: var(--white); }

/* FIX: WooCommerce setzt float:left + width% auf li.product,
   was das Grid-Layout zerstört. Hier wird das überschrieben. */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 2px !important;
  float: none !important;
  clear: both;
}
.woocommerce ul.products li.product {
  background: var(--mid);
  padding: 28px;
  border-left: 3px solid transparent;
  transition: background var(--transition), border-color var(--transition);
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products li.product:hover { background: #333; border-left-color: var(--yellow); }
.woocommerce ul.products li.product img {
  width: 100%;
  height: auto;
  display: block;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 0 8px;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.woocommerce ul.products li.product .price { color: var(--yellow); font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; }
.woocommerce ul.products li.product .price del { color: #555; font-size: 0.9rem; }
.woocommerce ul.products li.product .button {
  margin-top: auto;
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.woocommerce .woocommerce-breadcrumb { color: #666; font-size: 0.85rem; padding: 20px 0; }
.woocommerce .woocommerce-breadcrumb a { color: var(--yellow); }
.woocommerce div.product .product_title { font-family: var(--font-display); color: var(--white); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--yellow); font-family: var(--font-display); font-size: 2rem; font-weight: 900; }
.woocommerce div.product .woocommerce-tabs ul.tabs { border-bottom: 1px solid #333; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: var(--mid); border-color: #333; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--dark); border-bottom-color: var(--dark); }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: #ccc; font-weight: 600; }
.woocommerce div.product .woocommerce-tabs .panel { background: var(--dark); padding: 28px; border: 1px solid #333; color: #ccc; }
.woocommerce-cart table.cart { background: var(--dark); color: var(--white); }
.woocommerce-cart .cart-collaterals .cart_totals { background: var(--mid); color: var(--white); padding: 28px; }
.woocommerce-checkout { background: var(--black); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: #1A1A1A; border: 1px solid #333; color: var(--white);
  border-radius: var(--radius); padding: 12px 16px;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--yellow); outline: none; box-shadow: none; }
.woocommerce-message, .woocommerce-info { background: var(--dark); border-top-color: var(--yellow); color: var(--white); }
.woocommerce-error { background: #2a1a1a; border-top-color: #e55; color: #ffaaaa; }

/* =========================================================
   ARCHIVE / SHOP HEADER
   ========================================================= */
.archive-header { background: var(--dark); padding: 60px 0 40px; border-bottom: 2px solid #222; margin-bottom: 60px; }
.archive-header h1 { color: var(--white); }
.archive-header p { color: var(--text-muted); max-width: 600px; }
.woocommerce .woocommerce-ordering select { background: var(--mid); color: var(--white); border: 1px solid #333; padding: 8px 12px; border-radius: var(--radius); }

/* =========================================================
   BLOG / POSTS
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; }
.post-card { background: var(--mid); padding: 36px; border-left: 3px solid transparent; transition: background var(--transition), border-color var(--transition); }
.post-card:hover { background: #333; border-left-color: var(--yellow); }
.post-category { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; display: block; }
.post-title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.post-title a { color: inherit; }
.post-title a:hover { color: var(--yellow); }
.post-excerpt { font-size: 0.88rem; color: #888; line-height: 1.65; margin-bottom: 18px; }
.post-meta { font-size: 0.78rem; color: #555; }

/* =========================================================
   SINGLE POST / PAGE
   ========================================================= */
.entry-header { padding: 60px 0 40px; border-bottom: 1px solid #222; margin-bottom: 48px; }
.entry-title { color: var(--white); margin-bottom: 12px; }
.entry-meta { font-size: 0.82rem; color: #555; }
.entry-content { color: #ccc; line-height: 1.8; max-width: 760px; }
.entry-content h2, .entry-content h3 { color: var(--white); margin: 36px 0 16px; }
.entry-content a { color: var(--yellow); }
.entry-content blockquote { border-left: 4px solid var(--yellow); padding-left: 24px; color: #888; font-style: italic; margin: 28px 0; }
.entry-content ul, .entry-content ol { padding-left: 24px; color: #ccc; margin-bottom: 16px; }
.entry-content li { margin-bottom: 6px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--black); border-top: 2px solid #222; padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; color: #555; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-heading { font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: #666; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: 24px; border-top: 1px solid #1e1e1e; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: #444; }
.footer-bottom a { color: #444; }
.footer-bottom a:hover { color: var(--yellow); }
.footer-rating { display: flex; align-items: center; gap: 10px; background: #1A1A1A; padding: 10px 18px; border-radius: var(--radius); }
.footer-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; }
.footer-score { font-family: var(--font-display); font-weight: 900; font-size: 1.1rem; color: var(--white); }
.footer-rating-text { font-size: 0.78rem; color: #888; }

/* =========================================================
   UTILITIES
   ========================================================= */
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--text-muted); }
.bg-dark { background: var(--dark); }
.bg-mid { background: var(--mid); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.55s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.45s; }
.fade-up-5 { animation-delay: 0.6s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero-panel { padding: 60px 40px; }
  .service-layout, .contact-layout { gap: 48px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .main-navigation { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); border-bottom: 2px solid var(--yellow); padding: 20px; z-index: 199; }
  .main-navigation.is-open { display: block; }
  .main-navigation ul { flex-direction: column; gap: 0; }
  .main-navigation ul li ul { position: static; border: none; background: #111; padding: 0 0 0 16px; display: block; }
  .main-navigation ul li ul a { padding: 8px 16px; }

  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-left::after { display: none; }
  .hero-panel { padding: 60px 28px; }

  .service-layout,
  .contact-layout,
  .dev-grid { grid-template-columns: 1fr; }
  .dev-highlight { grid-template-columns: 1fr; grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .site-topbar { font-size: 0.72rem; gap: 12px; }
  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .bike-grid { grid-template-columns: 1fr; }
}