:root {
  --red: #d90b18;
  --red-dark: #b50813;
  --red-on-dark: #ff3b47; /* czerwień do drobnego tekstu na ciemnym tle — kontrast 5,4:1 na --black (WCAG AA) */
  --black: #101111;
  --ink: #171818;
  --muted: #636666;
  --soft: #f2f3f2;
  --line: #dedfdd;
  --white: #ffffff;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 62px);
  color: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.topbar nav {
  display: flex;
  gap: 28px;
  font-size: .92rem;
}

.topbar nav a,
.topbar-phone {
  text-shadow: 0 1px 12px rgba(0, 0, 0, .55);
}

.topbar-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-phone {
  display: grid;
  text-align: right;
  font-weight: 800;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  color: var(--white);
  transition: background-color .2s ease, border-color .2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.social-link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.topbar-phone span {
  color: rgba(255, 255, 255, .72);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .48) 38%, rgba(0, 0, 0, .08) 72%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 88vh;
  max-width: 760px;
  padding: 120px clamp(18px, 7vw, 108px) 110px;
}

.overline {
  margin: 0 0 14px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero .overline,
.achievements .overline,
.image-statement .overline,
.vehicle-detail .overline,
.contact .overline {
  color: var(--red-on-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: .91;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4.5vw, 5rem);
  line-height: .98;
}

.hero-copy > p:not(.overline) {
  max-width: 580px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 5px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .65);
  color: var(--white);
}

.hero-meta {
  position: absolute;
  right: clamp(18px, 4vw, 62px);
  bottom: 74px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 18px;
  max-width: 520px;
  color: rgba(255, 255, 255, .72);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  max-width: var(--max);
  margin: -38px auto 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.booking-bar label {
  display: grid;
  gap: 2px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  font-weight: 400;
}

.booking-bar span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-bar input {
  width: 100%;
  min-width: 0;
  padding: 3px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: .95rem;
  font-weight: 700;
}

.booking-bar input::placeholder {
  color: var(--ink);
  opacity: 1;
}

/* Podpowiedzi znikają od razu po wejściu w pole — łatwiej zacząć pisać. */
input::placeholder,
textarea::placeholder {
  transition: opacity .18s ease;
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

.booking-bar > button {
  display: grid;
  place-items: center;
  padding: 18px 26px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.booking-bar > button:hover {
  background: var(--red);
}

#quickBookingNote {
  grid-column: 1 / -1;
  margin: 0;
  padding: 8px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .75rem;
}

#quickBookingNote a {
  color: var(--red);
  font-weight: 800;
}

.services {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(42px, 7vw, 110px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 160px) 24px;
}

.section-intro {
  position: sticky;
  top: 34px;
  align-self: start;
}

.section-intro > p:not(.overline) {
  max-width: 460px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-list article > span {
  color: var(--red);
  font-size: .8rem;
  font-weight: 800;
}

.service-list h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-list article > strong {
  padding-top: 4px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.parallax-divider {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 420px;
  overflow: hidden;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .08) 68%), url("grafika/img/img2.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: var(--white);
}

.parallax-divider > div {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 24px;
}

.parallax-divider p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
}

.audience {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(40px, 7vw, 100px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 130px) 24px clamp(90px, 12vw, 150px);
}

.audience-heading {
  align-self: start;
}

.audience-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.audience-heading > p:not(.overline) {
  max-width: 430px;
  color: var(--muted);
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.audience-list li {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.audience-list span {
  color: var(--muted);
}

.audience-list li:last-child {
  grid-column: span 2;
}

.achievements {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(70px, 9vw, 120px) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--black);
  color: var(--white);
}

.achievements-heading {
  align-self: center;
}

.achievements-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.achievements-heading > p:not(.overline) {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .64);
}

.achievement-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.achievement-list > div {
  min-height: 190px;
  padding: clamp(22px, 4vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.achievement-list strong {
  display: flex;
  align-items: baseline;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: .92;
}

.achievement-list small {
  margin-left: 4px;
  color: var(--red-on-dark);
  font-size: .35em;
  font-weight: 900;
}

.achievement-list p {
  max-width: 190px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.image-statement {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.image-statement > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-statement::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 25%, rgba(0, 0, 0, .2) 48%, rgba(0, 0, 0, .88) 100%);
}

.image-statement > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  min-height: 720px;
  margin-left: auto;
  padding: 70px clamp(24px, 7vw, 110px);
}

.image-statement p:not(.overline) {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
}

.vehicle-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 24px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, .18);
  list-style: none;
}

.vehicle-features li {
  padding: 13px 14px;
  background: rgba(16, 17, 17, .82);
  color: rgba(255, 255, 255, .84);
  font-size: .82rem;
  font-weight: 700;
}

.vehicle-detail {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--black);
  color: var(--white);
}

.vehicle-detail-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, .18);
}

.vehicle-detail-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.vehicle-detail-copy > p:not(.overline) {
  max-width: 470px;
  color: rgba(255, 255, 255, .64);
}

.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-left: 1px solid rgba(255, 255, 255, .18);
  list-style: none;
}

.vehicle-specs li {
  padding: clamp(18px, 3vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.vehicle-specs strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.vehicle-specs span {
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
}

.journeys {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 160px) 24px;
}

.journeys-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(30px, 7vw, 100px);
  align-items: end;
  margin-bottom: 34px;
}

.journeys-heading h2 {
  margin-bottom: 0;
}

.journeys-heading > p {
  max-width: 520px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.journey-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.journey-options article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.journey-options article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .12) 65%);
}

.journey-options img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-options article > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(22px, 4vw, 38px);
}

.journey-options span,
.journeys-action span {
  color: rgba(255, 255, 255, .66);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journey-options h3 {
  max-width: 440px;
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
}

.journey-options p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
}

.journeys-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 0;
}

.journeys-action span {
  color: var(--muted);
}

.journeys-action a {
  padding-bottom: 4px;
  border-bottom: 2px solid var(--red);
  font-weight: 800;
}

.faq {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(40px, 8vw, 120px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px clamp(90px, 12vw, 150px);
}

.faq-heading {
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.faq-heading > p:not(.overline) {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  color: var(--red);
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(80px, 11vw, 140px) max(24px, calc((100vw - var(--max)) / 2));
  background: var(--black);
  color: var(--white);
}

.contact-details > p:not(.overline) {
  max-width: 500px;
  color: rgba(255, 255, 255, .68);
}

.contact-phone {
  display: inline-block;
  margin: 20px 0 34px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
}

.availability {
  display: grid;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.availability span {
  color: rgba(255, 255, 255, .52);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact form {
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  color: var(--ink);
}

.contact label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-size: .82rem;
  font-weight: 800;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
}

.contact textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#contactFormNote {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px 20px;
  padding: 20px clamp(18px, 4vw, 62px);
  border-top: 1px solid #2b2d2d;
  background: var(--black);
  color: rgba(255, 255, 255, .7);
}

.footer-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

footer a {
  color: var(--white);
  font-weight: 800;
}

.footer-credit {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 4px 16px;
  margin: 0;
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
}

.footer-credit > span:first-child {
  grid-column: 2;
  text-align: center;
}

.footer-credit > span:last-child {
  grid-column: 3;
  justify-self: end;
}

.footer-credit a {
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .booking-bar {
    grid-template-columns: 1fr 1fr;
    margin-right: 14px;
    margin-left: 14px;
  }

  .booking-bar label:nth-child(2),
  .booking-bar label:nth-child(4) {
    border-right: 0;
  }

  .booking-bar > button {
    grid-column: span 2;
  }

  .services,
  .audience,
  .achievements,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

  .journeys-heading,
  .journey-options {
    grid-template-columns: 1fr;
  }

  .parallax-divider {
    background-attachment: scroll;
  }
}

@media (max-width: 680px) {
  .topbar {
    padding: 14px;
  }

  .brand span {
    display: none;
  }

  .hero,
  .hero-copy {
    min-height: 760px;
  }

  .hero > img {
    object-position: 65% center;
  }

  .hero-copy {
    justify-content: flex-end;
    padding: 110px 18px 128px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-meta {
    left: 18px;
    right: 18px;
    bottom: 58px;
    justify-content: flex-start;
  }

  .booking-bar {
    grid-template-columns: 1fr;
  }

  .booking-bar label,
  .booking-bar label:nth-child(2),
  .booking-bar label:nth-child(4) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-bar > button {
    grid-column: auto;
  }

  .services {
    padding-right: 18px;
    padding-left: 18px;
  }

  .parallax-divider {
    min-height: 340px;
    background-position: 58% center;
  }

  .parallax-divider > div {
    padding: 30px 18px;
  }

  .achievements {
    padding-right: 18px;
    padding-left: 18px;
  }

  .audience,
  .faq {
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-list article {
    grid-template-columns: 28px 1fr;
  }

  .service-list article > strong {
    display: none;
  }

  .achievement-list {
    grid-template-columns: 1fr;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .audience-list li:last-child {
    grid-column: auto;
  }

  .achievement-list > div {
    min-height: 150px;
  }

  .image-statement,
  .image-statement > div {
    min-height: 680px;
  }

  .image-statement > img {
    object-position: 42% center;
  }

  .image-statement::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .18) 70%);
  }

  .image-statement > div {
    justify-content: flex-end;
    margin: 0;
    padding: 44px 18px;
  }

  .vehicle-features {
    grid-template-columns: 1fr;
  }

  .vehicle-detail {
    grid-template-columns: 1fr;
    padding-right: 18px;
    padding-left: 18px;
  }

  .vehicle-specs {
    grid-template-columns: 1fr;
  }

  .journeys {
    padding-right: 18px;
    padding-left: 18px;
  }

  .journey-options article {
    min-height: 400px;
  }

  .journeys-action {
    display: grid;
  }

  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer > span {
    display: none;
  }

  .footer-credit {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
