
:root {
  --blue-900: #0b2f49;
  --blue-800: #0e5e87;
  --blue-600: #1386b8;
  --blue-100: #eaf6fb;
  --orange: #f28c18;
  --orange-dark: #d97509;
  --ink: #102231;
  --muted: #657483;
  --line: #dce5eb;
  --surface: #f5f8fa;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(10, 48, 73, .12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section--soft { background: var(--surface); }
.section--blue { background: var(--blue-900); color: var(--white); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px; color: var(--blue-600);
  font-size: .82rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 3px; border-radius: 99px; background: var(--orange); }
.section-title { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.08; letter-spacing: -.04em; }
.section-intro { max-width: 730px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; font-weight: 800; cursor: pointer; transition: .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 28px rgba(242, 140, 24, .28); }
.btn--primary:hover { background: var(--orange-dark); }
.btn--secondary { background: #fff; color: var(--blue-900); border-color: rgba(255,255,255,.38); }
.btn--outline { background: transparent; color: var(--blue-900); border-color: var(--line); }
.btn--outline:hover { border-color: var(--blue-600); color: var(--blue-600); }
.icon { width: 20px; height: 20px; flex: 0 0 auto; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 10000; padding: 10px 14px; background: #fff; color: #000; }
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(220,229,235,.88);
  backdrop-filter: blur(14px);
}
.header-inner { height: 82px; display: flex; align-items: center; gap: 28px; }
.logo-link { display: flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.logo-link img { width: 230px; height: 60px; object-fit: contain; object-position: left center; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.main-nav a { text-decoration: none; font-weight: 750; font-size: .94rem; color: #2d4353; }
.main-nav a:hover { color: var(--blue-600); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-link { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); text-decoration: none; font-weight: 850; font-size: .8rem; }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.menu-toggle span { width: 19px; height: 2px; display: block; background: var(--ink); margin: 4px auto; }

/* Hero */
.hero {
  min-height: 790px; padding-top: 82px; position: relative; display: grid; align-items: center;
  background: linear-gradient(90deg, rgba(4,25,44,.92) 0%, rgba(4,25,44,.72) 47%, rgba(4,25,44,.22) 100%),
              url("../images/hero-primosten.webp") center/cover no-repeat;
  color: #fff; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 120px;
  background: linear-gradient(to top, #fff, transparent);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .7fr); gap: 72px; align-items: center; padding: 80px 0 140px; }
.hero-copy { max-width: 720px; }
.hero-kicker { color: #fff; margin-bottom: 18px; }
.hero-kicker::before { background: var(--orange); }
.hero h1 { margin: 0; font-size: clamp(3.1rem, 6.4vw, 6.2rem); line-height: .98; letter-spacing: -.06em; }
.hero-lead { margin: 26px 0 32px; max-width: 660px; font-size: clamp(1.06rem, 1.7vw, 1.28rem); color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 34px; }
.hero-fact { display: flex; align-items: center; gap: 10px; font-weight: 700; color: rgba(255,255,255,.92); }
.hero-fact svg { color: var(--orange); }
.hero-card {
  background: rgba(255,255,255,.96); color: var(--ink); border-radius: var(--radius-xl);
  padding: 28px; box-shadow: 0 28px 80px rgba(3,20,33,.3);
}
.hero-card__top { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; margin-bottom: 20px; }
.hero-card h2 { margin: 0; font-size: 1.45rem; }
.preview-badge { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: #fff2df; color: #9c5500; font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.quick-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.quick-form .field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 6px; color: #50606c; font-size: .78rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--ink); outline: 0;
}
.field textarea { min-height: 110px; padding-top: 12px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(19,134,184,.11); }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .78rem; }
.form-status { display: none; margin-top: 13px; padding: 12px 14px; border-radius: 10px; background: var(--blue-100); color: var(--blue-900); font-weight: 700; font-size: .86rem; }

/* Trust bar */
.trust-bar { position: relative; z-index: 3; margin-top: -54px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.trust-item { display: flex; align-items: center; gap: 16px; padding: 24px 28px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--blue-100); color: var(--blue-600); }
.trust-item strong { display: block; line-height: 1.2; }
.trust-item span { color: var(--muted); font-size: .88rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 1.22; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.about-badge { position: absolute; right: -22px; bottom: 26px; max-width: 230px; padding: 20px; background: var(--blue-900); color: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-badge strong { display: block; font-size: 2rem; line-height: 1; color: var(--orange); margin-bottom: 8px; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .check { margin-top: 3px; width: 23px; height: 23px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--blue-100); color: var(--blue-600); font-weight: 900; }

/* Fleet */
.section-heading-row { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 38px; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vehicle-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; overflow: hidden; transition: .25s ease; }
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.vehicle-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #eceeef;
}
.vehicle-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.price-pill { position: absolute; left: 16px; bottom: 16px; padding: 9px 13px; background: rgba(11,47,73,.93); color: #fff; border-radius: 999px; font-size: .8rem; font-weight: 850; backdrop-filter: blur(8px); }
.vehicle-body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.vehicle-body h3 { margin: 0; font-size: 1.28rem; }
.vehicle-category { margin: 5px 0 15px; color: var(--muted); font-size: .9rem; }
.spec-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.spec { padding: 7px 10px; background: var(--surface); border-radius: 999px; color: #4b5e6c; font-size: .76rem; font-weight: 700; }
.card-link { margin-top: auto; color: var(--blue-600); font-weight: 850; text-decoration: none; }
.card-link:hover { color: var(--orange-dark); }
.disclaimer { margin: 28px 0 0; padding: 16px 18px; border-radius: 14px; background: #fff7ec; color: #74501f; font-size: .88rem; }

/* Prices */
.price-panel { margin-top: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-xl); overflow: hidden; background: rgba(255,255,255,.055); }
.price-table-wrap { overflow-x: auto; }
.price-table { width: 100%; min-width: 940px; border-collapse: collapse; }
.price-table th, .price-table td { padding: 17px 15px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.price-table th:last-child, .price-table td:last-child { border-right: 0; }
.price-table thead th { background: rgba(255,255,255,.08); color: #fff; font-size: .82rem; letter-spacing: .03em; }
.price-table tbody th { text-align: left; font-weight: 800; }
.price-table .group { color: var(--orange); font-weight: 900; }
.price-table td { color: rgba(255,255,255,.9); font-weight: 750; }
.price-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 24px; }
.price-note { display: flex; gap: 12px; color: rgba(255,255,255,.8); font-size: .88rem; }
.price-note strong { color: #fff; }

/* Terms */
.terms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.term-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.term-icon { width: 46px; height: 46px; display: grid; place-items: center; background: var(--blue-100); color: var(--blue-600); border-radius: 14px; margin-bottom: 17px; font-size: 1.25rem; }
.term-card h3 { margin: 0 0 7px; font-size: 1.05rem; }
.term-card p { margin: 0; color: var(--muted); font-size: .91rem; }

/* CTA image */
.image-cta { position: relative; min-height: 470px; display: grid; align-items: center; overflow: hidden; color: #fff; background: linear-gradient(90deg, rgba(4,25,44,.93), rgba(4,25,44,.4)), url("../images/coastal-drive.webp") center/cover no-repeat; }
.image-cta__content { max-width: 680px; position: relative; z-index: 2; }
.image-cta h2 { margin: 0 0 18px; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1.02; letter-spacing: -.05em; }
.image-cta p { max-width: 590px; color: rgba(255,255,255,.84); font-size: 1.08rem; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 19px 20px; background: #fff; border: 0; text-align: left; color: var(--ink); font-weight: 850; cursor: pointer; }
.faq-question span:last-child { color: var(--blue-600); font-size: 1.4rem; transition: transform .2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { margin: 0; padding: 0 20px 20px; color: var(--muted); }
.faq-item.is-open .faq-answer { max-height: 260px; }
.faq-item.is-open .faq-question span:last-child { transform: rotate(45deg); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; align-items: stretch; }
.contact-card { border-radius: var(--radius-xl); padding: 34px; background: var(--blue-900); color: #fff; }
.contact-card h2 { margin-top: 0; font-size: 2.1rem; }
.contact-list { display: grid; gap: 14px; margin: 28px 0; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row a { text-decoration: none; }
.contact-row a:hover { color: var(--orange); }
.contact-icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.1); color: var(--orange); }
.location-card { position: relative; min-height: 100%; border-radius: var(--radius-xl); overflow: hidden; background: url("../images/primosten-location.webp") center/cover no-repeat; }
.location-card::after { content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(5,26,43,.88), rgba(5,26,43,.08)); }
.location-card__inner { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; color: #fff; }
.location-card h3 { margin: 0 0 7px; font-size: 1.65rem; }
.location-card p { margin: 0 0 18px; color: rgba(255,255,255,.84); }

/* Booking full form */
.booking-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 55px; align-items: start; }
.booking-copy { position: sticky; top: 120px; }
.booking-form { padding: 32px; border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line); }
.booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.booking-form-grid .full { grid-column: 1 / -1; }
.consent { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .82rem; }
.consent input { margin-top: 4px; }
.booking-form .btn { width: 100%; margin-top: 6px; }

/* Footer */
.site-footer { background: #061c2c; color: rgba(255,255,255,.78); }
.footer-main { padding: 56px 0 38px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 60px; }
.footer-logo { width: 250px; filter: brightness(0) invert(1); opacity: .95; }
.footer-copy { max-width: 430px; color: rgba(255,255,255,.62); }
.footer-col h3 { color: #fff; margin: 0 0 16px; font-size: .95rem; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: .82rem; }

/* Floating mobile contact */
.floating-contact { display: none; position: fixed; z-index: 900; left: 12px; right: 12px; bottom: 12px; background: #fff; border-radius: 999px; padding: 7px; box-shadow: 0 12px 35px rgba(6,28,44,.28); }
.floating-contact a { flex: 1; min-height: 45px; display: flex; align-items: center; justify-content: center; gap: 7px; border-radius: 999px; text-decoration: none; font-weight: 850; }
.floating-contact a:first-child { color: var(--blue-900); }
.floating-contact a:last-child { background: #25d366; color: #fff; }

/* Responsive */
@media (max-width: 1080px) {
  .main-nav { display: none; position: absolute; left: 20px; right: 20px; top: 74px; padding: 20px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  .main-nav.is-open { display: flex; }
  .menu-toggle { display: block; }
  .header-actions .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 35px; }
  .hero-card { max-width: 680px; }
  .about-grid, .faq-grid, .contact-grid, .booking-layout { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .terms-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-copy { position: static; }
}
@media (max-width: 740px) {
  body { padding-bottom: 72px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .header-inner { height: 70px; }
  .logo-link img { width: 178px; height: 50px; }
  .hero { padding-top: 70px; min-height: auto; background-position: 58% center; }
  .hero-grid { padding: 72px 0 110px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.4rem); }
  .hero-facts { display: grid; gap: 11px; }
  .quick-form, .booking-form-grid { grid-template-columns: 1fr; }
  .quick-form .field--full, .booking-form-grid .full { grid-column: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .about-badge { right: 12px; bottom: 12px; }
  .section-heading-row { display: block; }
  .section-heading-row .btn { margin-top: 22px; }
  .fleet-grid, .terms-grid { grid-template-columns: 1fr; }
  .price-notes { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { display: block; }
  .floating-contact { display: flex; }
  .header-actions { margin-left: auto; }
  .lang-link { width: 38px; height: 38px; }
}


/* Production additions */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status {
  display: none;
  margin-top: 13px;
  padding: 13px 15px;
  border-radius: 11px;
  font-weight: 750;
  font-size: .88rem;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: #e8f7ef; color: #17603c; border: 1px solid #bde7cf; }
.form-status.is-error { background: #fff0f0; color: #8b2525; border: 1px solid #f2c3c3; }
.btn[disabled] { opacity: .65; cursor: wait; transform: none; }
.legal-hero {
  padding: 160px 0 70px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(4,25,44,.96), rgba(14,94,135,.82)),
    url("../images/hero-primosten.webp") center/cover no-repeat;
}
.legal-hero h1 { margin: 0 0 12px; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; letter-spacing: -.05em; }
.legal-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.82); }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 50px; align-items: start; }
.legal-nav {
  position: sticky; top: 112px; padding: 22px; border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: var(--surface);
}
.legal-nav strong { display: block; margin-bottom: 12px; }
.legal-nav a { display: block; padding: 7px 0; text-decoration: none; color: var(--muted); font-size: .9rem; }
.legal-nav a:hover { color: var(--blue-600); }
.legal-content { max-width: 850px; }
.legal-content section { scroll-margin-top: 110px; margin-bottom: 45px; }
.legal-content h2 { margin: 0 0 14px; font-size: 1.65rem; letter-spacing: -.02em; }
.legal-content h3 { margin: 26px 0 8px; font-size: 1.08rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content ul { padding-left: 22px; }
.legal-notice { padding: 17px 19px; border-radius: 13px; background: #fff7ec; color: #74501f; border: 1px solid #f6ddba; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-legal a { text-decoration: none; }
.footer-legal a:hover { color: var(--orange); }
.not-found {
  min-height: 100vh; display: grid; place-items: center; text-align: center; color: #fff;
  background: linear-gradient(115deg, rgba(4,25,44,.95), rgba(14,94,135,.82)), url("../images/hero-primosten.webp") center/cover;
}
.not-found__inner { width: min(680px, calc(100% - 36px)); }
.not-found strong { display: block; font-size: clamp(5rem, 20vw, 10rem); line-height: .8; color: var(--orange); }
.not-found h1 { margin: 28px 0 10px; font-size: clamp(2rem, 5vw, 4rem); }
.not-found p { color: rgba(255,255,255,.82); }
@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
}
