/* Bicikleta — servis bicikala, Split, Hrvatska
   Design system: navy/green brand, Barlow / Barlow Condensed type (system fallback, no external fonts) */

:root {
  --navy: #0A1F3C;
  --navy-deep: #061529;
  --navy-soft: #0F2B50;
  --navy-border: #16305a;
  --green: #35C97C;
  --green-hi: #5FE09B;
  --green-dark: #0F7B47;
  --green-bg: #EAF7EF;
  --green-bg-2: #D6F0E1;
  --bg: #FDFDFC;
  --bg-alt: #F4F6F3;
  --bg-alt-2: #F7F9F6;
  --border: #E7E9E5;
  --border-2: #EDEFEB;
  --text: #0A1F3C;
  --text-body: #2C3742;
  --muted: #4F5B69;
  --muted-2: #6C7885;
  --muted-3: #5F6B77;
  --faint: #8A939C;
  --on-navy: #C6D6E8;
  --on-navy-soft: #9DB4D4;
  --on-navy-faint: #7FA3CC;
  --font-display: 'Barlow Condensed', 'Arial Narrow', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Barlow', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --container: 1240px;
  --radius-s: 8px;
  --radius-m: 12px;
  --radius-l: 14px;
  --radius-xl: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; margin: 0; letter-spacing: -0.005em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: var(--font-body); font-size: 15px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--green); color: var(--navy-deep); padding: 12px 18px; border-radius: 0 0 8px 0;
  font: 700 14px var(--font-body);
}
.skip-link:focus { left: 0; }

main { flex: 1; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--green-dark); color: #EAF7EF;
  font: 600 13px var(--font-body); letter-spacing: .04em;
  padding: 9px 24px; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; text-align: center;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--navy); color: #fff; border-bottom: 1px solid var(--navy-border);
}
.site-header__inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 50%; border: 3px solid var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand__mark span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: block; }
.brand__text { display: block; }
.brand__title { display: block; font: 700 24px var(--font-display); letter-spacing: .06em; line-height: 1; color: #fff; }
.brand__subtitle { display: block; font: 500 9px var(--font-body); letter-spacing: .22em; color: var(--on-navy-faint); white-space: nowrap; }

.nav { display: flex; gap: 2px; flex-wrap: wrap; margin-left: auto; }
.nav__link {
  padding: 9px 12px; border-radius: 7px; cursor: pointer; font: 600 14px var(--font-body);
  letter-spacing: .02em; color: #DCE7F3; background: transparent; white-space: nowrap;
}
.nav__link:hover, .nav__link:focus-visible { background: var(--navy-border); color: #DCE7F3; }
.nav__link.is-active { color: var(--green); background: var(--navy-soft); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.cart-btn {
  display: flex; align-items: center; gap: 8px; background: var(--green); color: #062B18;
  font: 700 13px var(--font-body); padding: 10px 15px; border-radius: 8px; border: none; cursor: pointer;
}
.cart-btn:hover { background: var(--green-hi); }
.cart-btn__count {
  background: var(--navy); color: #fff; min-width: 22px; height: 22px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--navy-border); color: #fff;
  border-radius: 7px; width: 40px; height: 38px; flex-shrink: 0; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 18px; height: 2px; background: #fff; position: relative; transition: .15s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 700 15px var(--font-body); letter-spacing: .03em; padding: 15px 28px; border-radius: 9px;
  cursor: pointer; border: none; text-align: center;
}
.btn--sm { padding: 12px 20px; font-size: 14px; }
.btn--primary { background: var(--green); color: #062B18; }
.btn--primary:hover { background: var(--green-hi); color: #062B18; }
.btn--outline-light { border: 1px solid #46628C; color: #fff; background: transparent; }
.btn--outline-light:hover { background: var(--navy-border); color: #fff; }
.btn--outline-dark { border: 1px solid var(--navy); color: var(--navy); background: transparent; }
.btn--outline-dark:hover { background: var(--navy); color: #fff; }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--green-dark); color: #fff; }
.btn--green { background: var(--green-dark); color: #fff; }
.btn--green:hover { background: #0c6b3d; color: #fff; }
.btn--block { display: flex; width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; }

/* ---------- Hero (home) ---------- */
.hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.hero__inner {
  max-width: var(--container); margin: 0 auto; padding: 76px 24px 84px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.eyebrow-pill {
  display: inline-block; border: 1px solid var(--green); color: var(--green);
  font: 600 11px var(--font-body); letter-spacing: .18em; padding: 6px 12px; border-radius: 99px; margin-bottom: 22px;
}
.hero__title { font: 700 74px/0.95 var(--font-display); letter-spacing: -.01em; margin: 0 0 20px; }
.hero__title span { color: var(--green); }
.hero__lead { font-size: 19px; line-height: 1.65; color: var(--on-navy); max-width: 520px; margin: 0 0 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stat-num { font: 700 34px var(--font-display); color: var(--green); }
.hero__stat-label { font-size: 13px; color: var(--on-navy-soft); }
.hero__media { border-radius: 16px; overflow: hidden; height: 470px; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Inner page hero ---------- */
.page-hero { background: var(--navy); color: #fff; }
.page-hero__inner { max-width: var(--container); margin: 0 auto; padding: 60px 24px; }
.page-hero--split .page-hero__inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center;
}
.page-hero__eyebrow { font: 600 11px var(--font-body); letter-spacing: .2em; color: var(--green); margin-bottom: 12px; }
.page-hero h1 { font: 700 58px var(--font-display); margin: 0 0 14px; }
.page-hero__lead { font-size: 18px; line-height: 1.65; color: var(--on-navy); max-width: 760px; margin: 0; }
.page-hero__media { border-radius: 14px; overflow: hidden; height: 340px; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Trust bar ---------- */
.trust-bar { background: #fff; border-bottom: 1px solid var(--border); }
.trust-bar__inner {
  max-width: var(--container); margin: 0 auto; padding: 26px 24px;
  display: flex; gap: 34px; flex-wrap: wrap; justify-content: space-between;
  font: 600 13px var(--font-body); color: var(--muted); letter-spacing: .06em;
}

/* ---------- Sections ---------- */
.section { max-width: var(--container); margin: 0 auto; padding: 78px 24px 40px; }
.section--tight { padding: 60px 24px; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--alt > .section-inner { max-width: var(--container); margin: 0 auto; padding: 70px 24px; }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.section__eyebrow { font: 600 11px var(--font-body); letter-spacing: .2em; color: var(--green-dark); margin-bottom: 10px; }
.section__title { font: 700 46px var(--font-display); margin: 0; }
.section__link { font: 700 14px var(--font-body); color: var(--green-dark); cursor: pointer; letter-spacing: .04em; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { border: 1px solid var(--border); border-radius: var(--radius-l); padding: 28px; background: #fff; transition: border-color .15s; }
.service-card:hover { border-color: var(--green); }
.service-card__num {
  width: 44px; height: 44px; border-radius: 10px; background: var(--green-bg);
  display: flex; align-items: center; justify-content: center; font: 700 20px var(--font-display);
  color: var(--green-dark); margin-bottom: 18px;
}
.service-card h3 { font: 700 25px var(--font-display); margin: 0 0 10px; }
.service-card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 14px; }
.service-card__price { font: 700 15px var(--font-body); color: var(--navy); }

/* ---------- Process (dark panel) ---------- */
.process { background: var(--navy); border-radius: var(--radius-xl); padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; color: #fff; }
.process h2 { font: 700 42px var(--font-display); margin: 0 0 16px; }
.process p { font-size: 16px; line-height: 1.7; color: var(--on-navy); margin: 0 0 26px; }
.process__steps { display: grid; gap: 16px; }
.process__step { display: flex; gap: 14px; }
.process__step-num { font: 700 17px var(--font-display); color: var(--green); min-width: 26px; }
.process__step-title { font: 700 16px var(--font-body); margin-bottom: 3px; }
.process__step-text { font-size: 14px; color: var(--on-navy-soft); }
.process__media { border-radius: var(--radius-l); overflow: hidden; min-height: 380px; height: 100%; }
.process__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Routes ---------- */
.routes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.route-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; }
.route-card__media { height: 170px; overflow: hidden; }
.route-card__media img { width: 100%; height: 100%; object-fit: cover; }
.route-card__body { padding: 22px; }
.route-card h3 { font: 700 23px var(--font-display); margin: 0 0 8px; }
.route-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 12px; }
.route-card__tag { font: 600 12px var(--font-body); color: var(--green-dark); letter-spacing: .08em; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { border: 1px solid var(--border); border-radius: var(--radius-l); padding: 26px; background: #fff; }
.testimonial__stars { color: var(--green); font-size: 15px; letter-spacing: .2em; margin-bottom: 12px; }
.testimonial p { font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 0 0 16px; }
.testimonial__author { font: 700 14px var(--font-body); }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--green-dark); color: #fff; }
.cta-banner__inner {
  max-width: var(--container); margin: 0 auto; padding: 56px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner h2 { font: 700 40px var(--font-display); margin: 0 0 8px; }
.cta-banner p { font-size: 17px; color: #D6F0E1; margin: 0; max-width: 620px; }
.cta-banner .btn--primary { background: #fff; color: var(--navy); }
.cta-banner .btn--primary:hover { background: var(--green-bg); }

.cta-strip { background: var(--green-bg); }
.cta-strip__inner {
  max-width: var(--container); margin: 0 auto; padding: 52px 24px;
  display: flex; gap: 30px; justify-content: space-between; align-items: center; flex-wrap: wrap;
}
.cta-strip h2 { font: 700 34px var(--font-display); margin: 0 0 6px; color: var(--navy); }
.cta-strip p { font-size: 16px; color: #3C5A4A; margin: 0; }

/* ---------- FAQ (native details/summary) ---------- */
.faq-list { display: grid; gap: 10px; max-width: 900px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-m); }
.faq-item summary {
  padding: 20px 24px; cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  gap: 18px; align-items: center; font: 700 18px var(--font-body); color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--green-dark); font-size: 22px; font-weight: 700; flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item__a { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; padding: 0 24px 20px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 52px; }
.price-card { border: 1px solid var(--border); border-radius: var(--radius-l); padding: 30px; background: #fff; position: relative; }
.price-card--featured { border: 2px solid var(--green); }
.price-card__badge {
  position: absolute; top: -13px; left: 30px; background: var(--green); color: #062B18;
  font: 700 11px var(--font-body); letter-spacing: .14em; padding: 5px 12px; border-radius: 99px;
}
.price-card__eyebrow { font: 600 11px var(--font-body); letter-spacing: .18em; color: var(--green-dark); margin-bottom: 10px; }
.price-card h3 { font: 700 30px var(--font-display); margin: 0 0 6px; }
.price-card__amount { font: 700 40px var(--font-display); margin-bottom: 16px; }
.price-card__list { display: grid; gap: 8px; font-size: 15px; color: var(--muted); line-height: 1.5; }

.price-table { border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; background: #fff; }
.price-table__head {
  display: grid; grid-template-columns: 2.4fr 1fr 1fr; background: var(--navy); color: #fff;
  font: 600 12px var(--font-body); letter-spacing: .1em; padding: 14px 22px;
}
.price-table__row {
  display: grid; grid-template-columns: 2.4fr 1fr 1fr; padding: 14px 22px; border-top: 1px solid var(--border-2);
  font-size: 15px; align-items: center;
}
.price-table__name { color: var(--navy); font-weight: 500; }
.price-table__time { color: var(--muted-2); }
.price-table__price { text-align: right; font-weight: 700; color: var(--green-dark); }
.price-note { font-size: 14px; color: var(--muted-2); line-height: 1.6; margin: 18px 0 0; max-width: 840px; }

/* ---------- Safety ---------- */
.safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 56px; }
.safety-card { border-top: 4px solid var(--green); background: #fff; border-radius: 0 0 12px 12px; padding: 24px; box-shadow: 0 0 0 1px var(--border); }
.safety-card__title { font: 700 26px var(--font-display); margin: 0 0 8px; }
.safety-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.rules-list { display: grid; gap: 14px; font-size: 16px; line-height: 1.7; color: var(--text-body); }
.aside-media { border-radius: var(--radius-l); overflow: hidden; height: 250px; margin-bottom: 22px; }
.aside-media img { width: 100%; height: 100%; object-fit: cover; }
.emergency-box { background: var(--navy); color: #fff; border-radius: var(--radius-l); padding: 26px; }
.emergency-box h3 { font: 700 24px var(--font-display); margin: 0 0 12px; }
.emergency-box__list { display: grid; gap: 9px; font-size: 15px; color: var(--on-navy); }
.emergency-box__list strong { color: var(--green); }

.visibility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.visibility-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.visibility-card h3 { font: 700 22px var(--font-display); margin: 0 0 8px; }
.visibility-card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- Season prep ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 60px; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); padding: 26px; }
.step-card__num { font: 700 44px var(--font-display); color: #DCE4E0; line-height: 1; }
.step-card h3 { font: 700 24px var(--font-display); margin: 6px 0 10px; }
.step-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

.calendar-list { display: grid; gap: 12px; }
.calendar-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 22px 26px;
}
.calendar-row__period { font: 700 22px var(--font-display); color: var(--green-dark); }
.calendar-row__text { font-size: 15px; line-height: 1.65; color: var(--text-body); }

/* ---------- Tips / Savjeti ---------- */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tip-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; }
.tip-card__media { height: 150px; overflow: hidden; }
.tip-card__media img { width: 100%; height: 100%; object-fit: cover; }
.tip-card__body { padding: 24px; }
.tip-card__tag { font: 600 11px var(--font-body); letter-spacing: .14em; color: var(--green-dark); margin-bottom: 8px; }
.tip-card h3 { font: 700 24px var(--font-display); margin: 0 0 10px; }
.tip-card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

.guide-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 44px; }
.guide-main h2 { font: 700 40px var(--font-display); margin: 0 0 14px; }
.guide-main p { font-size: 16px; line-height: 1.75; color: var(--text-body); margin: 0 0 16px; }
.guide-main h3 { font: 700 26px var(--font-display); margin: 26px 0 10px; text-transform: none; }
.tip-callout { background: var(--green-bg); border-left: 4px solid var(--green); padding: 20px 24px; border-radius: 0 10px 10px 0; margin-top: 24px; }
.tip-callout__title { font: 700 17px var(--font-body); margin-bottom: 6px; }
.tip-callout p { font-size: 15px; line-height: 1.65; color: #3C5A4A; margin: 0; }

.topics-box { background: var(--navy); color: #fff; border-radius: var(--radius-l); padding: 26px; margin-bottom: 20px; }
.topics-box h3 { font: 700 24px var(--font-display); margin: 0 0 14px; }
.topics-box ul { display: grid; gap: 11px; font-size: 15px; color: var(--on-navy); line-height: 1.5; }
.newsletter-box { border: 1px solid var(--border); border-radius: var(--radius-l); padding: 26px; background: #fff; }
.newsletter-box h3 { font: 700 24px var(--font-display); margin: 0 0 10px; }
.newsletter-box p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 14px; }
.newsletter-box small { display: block; font-size: 12px; color: var(--faint); line-height: 1.5; margin: 10px 0 0; }

/* ---------- Routes page ---------- */
.route-list { display: grid; gap: 18px; }
.route-row { display: grid; grid-template-columns: 260px 1fr 200px; gap: 26px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; align-items: stretch; }
.route-row__media { min-height: 170px; overflow: hidden; }
.route-row__media img { width: 100%; height: 100%; object-fit: cover; }
.route-row__body { padding: 24px 0; }
.route-row h3 { font: 700 28px var(--font-display); margin: 0 0 8px; }
.route-row p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0 0 10px; }
.route-row__watch { font-size: 14px; color: var(--green-dark); font-weight: 600; }
.route-row__stats { padding: 24px; background: var(--bg-alt-2); display: grid; gap: 8px; align-content: center; font-size: 14px; color: var(--text-body); }

/* ---------- Shop ---------- */
.shop-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-pill {
  padding: 10px 16px; border-radius: 99px; cursor: pointer; font: 700 12px var(--font-body); letter-spacing: .08em;
  border: 1px solid #DCE0D9; background: #fff; color: var(--muted);
}
.filter-pill.is-active { border-color: var(--navy); background: var(--navy); color: #fff; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; display: flex; flex-direction: column; }
.product-card__media { height: 160px; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-card__cat { font: 600 10px var(--font-body); letter-spacing: .14em; color: var(--green-dark); margin-bottom: 7px; }
.product-card h3 { font: 700 20px var(--font-display); margin: 0 0 8px; line-height: 1.15; }
.product-card p { font-size: 13px; line-height: 1.55; color: var(--muted-3); margin: 0 0 14px; flex: 1; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-card__price { font: 700 22px var(--font-display); }
.product-card__add {
  background: var(--navy); color: #fff; font: 700 12px var(--font-body); padding: 10px 14px; border-radius: 8px;
  cursor: pointer; letter-spacing: .05em; border: none;
}
.product-card__add:hover { background: var(--green-dark); }

.shop-info-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-box { border: 1px solid var(--border); border-radius: 12px; padding: 22px; background: #fff; }
.info-box h3 { font: 700 20px var(--font-display); margin: 0 0 8px; }
.info-box p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- About ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px; }
.value-card { border: 1px solid var(--border); border-radius: var(--radius-l); padding: 24px; background: #fff; }
.value-card__title { font: 700 22px var(--font-display); margin-bottom: 8px; }
.value-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; }
.team-card__media { height: 180px; overflow: hidden; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 20px; }
.team-card__name { font: 700 20px var(--font-display); }
.team-card__role { font-size: 13px; color: var(--green-dark); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 13px; line-height: 1.55; color: var(--muted-3); margin: 0; }

/* ---------- Contact / forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-grid h2 { font: 700 32px var(--font-display); margin: 0 0 18px; }
.form-stack { display: grid; gap: 12px; max-width: 520px; }
.field {
  border: 1px solid #D9DDD6; border-radius: 9px; padding: 13px 14px; font: 15px var(--font-body); width: 100%; background: #fff; color: var(--text);
}
.field:focus { outline: 2px solid var(--green); outline-offset: 1px; }
textarea.field { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label.checkbox {
  display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted-3); line-height: 1.5;
}
label.checkbox input { margin-top: 3px; flex-shrink: 0; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-note { font-size: 12px; color: var(--faint); line-height: 1.55; margin: 4px 0 0; }
.form-success {
  background: var(--green-bg); border: 1px solid var(--green); color: #0c4a2c; border-radius: 9px;
  padding: 16px 18px; font: 600 14px var(--font-body); margin-bottom: 14px;
}
.form-error {
  background: #FCEBEA; border: 1px solid #E0625A; color: #7A1F19; border-radius: 9px;
  padding: 16px 18px; font: 600 14px var(--font-body); margin-bottom: 14px;
}

.info-stack { display: grid; gap: 18px; }
.info-card { border: 1px solid var(--border); border-radius: var(--radius-l); padding: 24px; background: #fff; }
.info-card h3 { font: 700 22px var(--font-display); margin: 0 0 10px; }
.info-card__text { font-size: 15px; line-height: 1.8; color: var(--text-body); }
.map-placeholder {
  height: 230px; border-radius: var(--radius-l); background: var(--bg-alt);
  border: 1px dashed #C7CFC5; display: flex; align-items: flex-end; padding: 12px; overflow: hidden;
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

/* ---------- Legal ---------- */
.legal-page { max-width: 900px; margin: 0 auto; padding: 56px 24px 76px; }
.legal-page h1 { font: 700 46px var(--font-display); margin: 0 0 10px; }
.legal-updated { font-size: 13px; color: var(--faint); margin-bottom: 30px; }
.legal-blocks { display: grid; gap: 22px; }
.legal-blocks h2 { font: 700 26px var(--font-display); margin: 0 0 8px; }
.legal-blocks p { font-size: 16px; line-height: 1.75; color: var(--text-body); margin: 0; white-space: pre-line; }
.legal-company-box {
  margin-top: 40px; padding: 24px; border: 1px solid var(--border); border-radius: 12px; background: var(--bg-alt-2);
  font-size: 14px; line-height: 1.7; color: var(--muted);
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 60; background: rgba(6,21,41,.55);
  display: none; justify-content: flex-end;
}
.cart-overlay.is-open { display: flex; }
.cart-drawer {
  width: 440px; max-width: 100%; background: #fff; height: 100%; display: flex; flex-direction: column;
  animation: slideIn .22s ease-out;
}
@keyframes slideIn { from { transform: translateX(30px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.cart-drawer__head {
  padding: 22px 26px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center;
}
.cart-drawer__head h2 { font: 700 26px var(--font-display); }
.cart-drawer__close { cursor: pointer; font-size: 22px; color: var(--muted-2); background: none; border: none; line-height: 1; }
.cart-drawer__body { flex: 1; overflow: auto; padding: 20px 26px; }
.cart-empty { padding: 40px 0; text-align: center; color: var(--muted-2); }
.cart-empty__title { font: 700 22px var(--font-display); color: var(--navy); margin-bottom: 8px; }
.cart-empty p { font-size: 15px; line-height: 1.6; margin: 0 0 18px; }
.cart-lines { display: grid; gap: 14px; }
.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; border-bottom: 1px solid var(--border-2); padding-bottom: 14px; }
.cart-line__media { height: 64px; width: 64px; border-radius: 8px; overflow: hidden; background: var(--bg-alt); }
.cart-line__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__name { font: 700 16px var(--font-body); line-height: 1.25; }
.cart-line__price { font-size: 13px; color: var(--muted-2); margin: 3px 0 7px; }
.cart-line__qty { display: flex; align-items: center; gap: 9px; }
.qty-btn {
  width: 26px; height: 26px; border: 1px solid #D9DDD6; border-radius: 6px; display: flex; align-items: center;
  justify-content: center; cursor: pointer; background: #fff; font-size: 15px; line-height: 1; padding: 0;
}
.cart-line__num { font: 700 15px var(--font-body); min-width: 16px; text-align: center; }
.cart-line__remove { font-size: 12px; color: #9AA3AC; cursor: pointer; margin-left: 6px; text-decoration: underline; background: none; border: none; }
.cart-line__sum { font: 700 17px var(--font-display); }
.cart-drawer__foot { border-top: 1px solid var(--border); padding: 20px 26px; background: var(--bg-alt-2); }
.cart-totals { display: grid; gap: 7px; font-size: 15px; color: var(--muted); margin-bottom: 14px; }
.cart-totals__row { display: flex; justify-content: space-between; }
.cart-totals__row strong { color: var(--navy); }
.cart-totals__row--total { font-size: 19px; padding-top: 7px; border-top: 1px solid #E2E6DF; }
.cart-totals__row--total span { color: var(--navy); font-weight: 700; }
.cart-totals__row--total strong { color: var(--green-dark); }

/* ---------- Cookie consent ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; background: var(--navy); color: #fff;
  border-top: 2px solid var(--green); display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__inner {
  max-width: var(--container); margin: 0 auto; padding: 22px 24px; display: grid;
  grid-template-columns: 1fr auto; gap: 28px; align-items: center;
}
.cookie-banner h2 { font: 700 20px var(--font-display); margin: 0 0 6px; }
.cookie-banner p { font-size: 14px; line-height: 1.6; color: var(--on-navy); margin: 0; max-width: 760px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--on-navy-faint); margin-top: auto; }
.footer__grid {
  max-width: var(--container); margin: 0 auto; padding: 56px 24px 30px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.footer__brand { font: 700 26px var(--font-display); letter-spacing: .06em; color: #fff; margin-bottom: 12px; }
.footer__grid p { font-size: 14px; line-height: 1.7; margin: 0 0 16px; }
.footer__contact { font-size: 14px; line-height: 1.9; }
.footer__col-title { font: 700 13px var(--font-body); letter-spacing: .14em; color: #fff; margin-bottom: 14px; }
.footer__links { display: grid; gap: 9px; font-size: 14px; }
.footer__links a { color: var(--on-navy-faint); cursor: pointer; }
.footer__links a:hover { color: var(--green); }
.footer__bottom-bar { border-top: 1px solid #12294A; }
.footer__bottom-inner {
  max-width: var(--container); margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; font-size: 13px;
}
.footer__bottom-inner button { background: none; border: none; color: var(--on-navy-faint); cursor: pointer; text-decoration: underline; font-size: 13px; font-family: var(--font-body); padding: 0; }
.footer__bottom-inner button:hover { color: var(--green); }

/* ================= Responsive ================= */
@media (max-width: 1080px) {
  .services-grid, .routes-grid, .testimonials-grid, .steps-grid, .products-grid, .team-grid, .values-grid, .safety-grid, .visibility-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 58px; }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); border-bottom: 1px solid var(--navy-border); padding: 10px 16px 16px; gap: 4px;
  }
  .nav-toggle { display: flex; }
  .site-header__inner { position: relative; flex-wrap: wrap; }
  .hero__inner, .process, .two-col, .guide-grid, .contact-grid, .page-hero--split .page-hero__inner { grid-template-columns: 1fr; }
  .hero__media, .process__media { height: 320px; order: -1; }
  .hero__title { font-size: 46px; }
  .page-hero h1 { font-size: 42px; }
  .section__title { font-size: 34px; }
}

@media (max-width: 700px) {
  .services-grid, .routes-grid, .testimonials-grid, .steps-grid, .products-grid, .team-grid, .values-grid, .safety-grid, .visibility-grid, .shop-info-grid, .field-row { grid-template-columns: 1fr; }
  .route-row { grid-template-columns: 1fr; }
  .route-row__media { height: 180px; }
  .price-table__head, .price-table__row { grid-template-columns: 1.6fr 1fr 1fr; font-size: 13px; padding: 12px 14px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 24px; }
  .trust-bar__inner { justify-content: flex-start; gap: 18px; }
  .cart-drawer { width: 100%; }
  .cta-banner__inner, .cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .calendar-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 38px; }
  .page-hero h1 { font-size: 34px; }
  .btn { padding: 13px 20px; font-size: 14px; }
}

@media print {
  .site-header, .cart-overlay, .cookie-banner, .promo-bar { display: none; }
}
