:root {
  --forest: #071b16;
  --forest-2: #0d2b23;
  --ink: #16231f;
  --cream: #f4ecdf;
  --paper: #fbf6ed;
  --gold: #d9ad61;
  --gold-2: #b98234;
  --white: #fffaf1;
  --muted: #766f63;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --home-bg: url("assets/wolin-explorer-home-bg.png");
  --scene-bg: url("assets/wolin-explorer-hero-custom.png");
}

body.trip-page {
  --home-bg: url("../assets/wolin-explorer-home-bg.png");
  --scene-bg: url("../assets/wolin-explorer-hero-custom.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.is-nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(7, 27, 22, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(7, 27, 22, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 132px;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: clamp(92px, 10vw, 132px);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.36));
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 0 24px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-cta {
  border-radius: 999px;
  color: var(--gold);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #e7c57a, var(--gold));
  color: #111c18;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
}

.btn-ghost {
  border-color: rgba(255, 250, 241, 0.38);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 241, 0.34);
  border-radius: var(--radius);
  background: rgba(7, 27, 22, 0.42);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 152px clamp(20px, 6vw, 88px) 118px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero::after,
.section-dark::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -25px;
  width: 110%;
  height: 56px;
  background: var(--paper);
  clip-path: polygon(0 38%, 9% 52%, 18% 40%, 29% 58%, 41% 46%, 53% 60%, 65% 42%, 78% 56%, 90% 39%, 100% 52%, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 20, 17, 0.66) 0%, rgba(6, 20, 17, 0.28) 38%, rgba(6, 20, 17, 0.08) 70%, rgba(6, 20, 17, 0.26) 100%),
    linear-gradient(0deg, rgba(6, 20, 17, 0.62), rgba(6, 20, 17, 0.02) 54%, rgba(6, 20, 17, 0.24)),
    var(--home-bg) center / cover no-repeat;
}

.hero-content {
  max-width: 610px;
  padding-top: 220px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 54px;
  height: 2px;
  margin-right: 14px;
  vertical-align: middle;
  background: currentColor;
}

.section-kicker::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 12px;
  background: currentColor;
}

.audience .section-kicker::after,
.about .section-kicker::after,
.gallery .section-kicker::after {
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  margin: 0;
  max-width: 560px;
  text-transform: uppercase;
  font-family: Copperplate, "Copperplate Gothic Light", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-script {
  margin: 28px 0 34px;
  max-width: 610px;
  color: #fff3d6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-style: italic;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-social {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 4vw, 48px);
  top: 50%;
  display: grid;
  gap: 14px;
  transform: translateY(-50%);
}

.hero-social a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(7, 27, 22, 0.38);
  backdrop-filter: blur(8px);
}

.hero-social img,
.social-list img {
  display: block;
  width: 20px;
  height: 20px;
}

.section-light,
.section-cream,
.section-dark,
.site-footer {
  padding: clamp(72px, 9vw, 116px) clamp(20px, 6vw, 88px);
}

.section-light {
  background: var(--paper);
  background-image:
    radial-gradient(circle at 74% 42%, rgba(217, 173, 97, 0.14), transparent 30%),
    linear-gradient(rgba(22, 35, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 35, 31, 0.035) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1.22fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0;
}

.project-title {
  font-size: clamp(1.55rem, 2.6vw, 2.85rem);
  line-height: 1.05;
}

.offer-title {
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 1;
}

h3 {
  margin: 0;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-copy p:not(.section-kicker),
.booking p,
.footer-brand p,
.audience p,
.about p,
.car-copy p:not(.section-kicker),
.feature-grid p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--forest);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 900;
}

.text-link::after {
  content: ">";
  color: var(--gold-2);
  font-size: 1.2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(185, 130, 52, 0.28);
  background: rgba(255, 250, 241, 0.62);
  box-shadow: 0 20px 60px rgba(55, 40, 20, 0.08);
}

.feature-grid article {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid rgba(185, 130, 52, 0.28);
}

.feature-grid article:last-child {
  border-right: 0;
}

.feature-icon {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: 2.35rem;
}

.feature-grid h3 {
  font-size: 0.98rem;
}

.feature-grid p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.section-dark {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(rgba(7, 27, 22, 0.92), rgba(7, 27, 22, 0.96)),
    var(--scene-bg) center 58% / cover no-repeat;
  overflow: hidden;
}

.routes-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.routes h2,
.booking h2 {
  max-width: 720px;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.route-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 250, 241, 0.36);
  border-radius: var(--radius);
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 27, 22, 0.1), rgba(7, 27, 22, 0.92) 70%),
    var(--scene-bg) center / cover no-repeat;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.route-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 173, 97, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.route-card-a {
  background-position: 45% center;
}

.route-card-b {
  background-position: 76% center;
}

.route-card-c {
  background-position: 58% center;
}

.route-card > p:first-child {
  margin: 0 auto auto 0;
  padding: 5px 9px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(7, 27, 22, 0.58);
}

.route-card h3 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.route-description {
  margin: 0 0 18px;
  color: #efe4d2;
  font-size: 0.94rem;
  line-height: 1.45;
}

.card-link {
  display: inline-flex;
  width: max-content;
  margin-top: 18px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.card-link::after {
  content: ">";
  margin-left: 10px;
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #f2d49a;
  font-size: 0.88rem;
  font-weight: 800;
}

.route-video {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  margin-top: 36px;
  padding: 26px;
  border: 1px solid rgba(217, 173, 97, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.06);
  backdrop-filter: blur(12px);
}

.route-video h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.route-video p:not(.section-kicker) {
  margin: 0;
  color: #efe4d2;
}

.video-link {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 27, 22, 0.08), rgba(7, 27, 22, 0.72)),
    url("https://img.youtube.com/vi/jfSLIRtykag/maxresdefault.jpg") center / cover no-repeat,
    var(--home-bg) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.video-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(217, 173, 97, 0.3);
  pointer-events: none;
}

.play-button {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 250, 241, 0.5);
  border-radius: 50%;
  background: rgba(217, 173, 97, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
  transition: transform 160ms ease, background 160ms ease;
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid #071b16;
}

.video-caption {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  padding: 8px 11px;
  border-radius: var(--radius);
  color: #f8e8c7;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(7, 27, 22, 0.72);
}

.video-link:hover .play-button {
  transform: scale(1.06);
  background: #e7c57a;
}

.trip-hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  padding-top: 156px;
}

.trip-hero-content {
  max-width: 900px;
}

.trip-hero h1 {
  margin: 0 0 22px;
  max-width: 900px;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
}

.trip-hero p:not(.section-kicker) {
  max-width: 760px;
  color: #f8e8c7;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
}

.trip-tags {
  margin: 24px 0 30px;
}

.trip-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.58fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.trip-copy p {
  max-width: 760px;
  color: var(--muted);
}

.trip-program {
  padding: 28px;
  border: 1px solid rgba(185, 130, 52, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.74);
  box-shadow: 0 20px 60px rgba(55, 40, 20, 0.08);
}

.trip-program h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.trip-program ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.audience,
.about {
  text-align: center;
}

.audience h2,
.about h2 {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
  text-align: left;
}

.audience-list article {
  padding: 28px;
  border-top: 3px solid var(--gold);
  background: rgba(255, 250, 241, 0.7);
}

.car {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.86fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  text-align: left;
}

.car-copy p:not(.section-kicker) {
  max-width: 700px;
}

.car-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(185, 130, 52, 0.32);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 27, 22, 0.04), rgba(7, 27, 22, 0.18)),
    var(--scene-bg) 76% center / cover no-repeat;
  box-shadow: 0 22px 60px rgba(32, 22, 10, 0.16);
}

.car-panel article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 27, 22, 0.08), rgba(7, 27, 22, 0.82));
  border-right: 1px solid rgba(255, 250, 241, 0.18);
}

.car-panel article:last-child {
  border-right: 0;
}

.car-panel strong {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  line-height: 0.95;
}

.car-panel span {
  margin-top: 8px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.section-cream {
  text-align: center;
  background: var(--cream);
}

.car.section-cream {
  text-align: left;
}

.gallery h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.gallery-item {
  min-height: 170px;
  border: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7, 27, 22, 0.04), rgba(7, 27, 22, 0.42)),
    var(--scene-bg) center / cover no-repeat;
  box-shadow: 0 12px 26px rgba(32, 22, 10, 0.14);
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  filter: saturate(1.08) contrast(1.06);
}

.item-one {
  background-position: 82% center;
}

.item-two {
  background-position: 42% center;
}

.item-three {
  background-position: 35% center;
}

.item-four {
  background-position: 72% center;
}

.item-five {
  background-position: 90% center;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(217, 173, 97, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.07);
  backdrop-filter: blur(14px);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: #f6dfab;
  font-weight: 800;
}

.contact-details a:hover {
  color: var(--gold);
}

.booking-form label {
  display: grid;
  gap: 6px;
  color: #f2d49a;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--white);
  background: rgba(2, 11, 9, 0.52);
  outline: none;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #f5d99f;
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 18%, rgba(217, 173, 97, 0.17), transparent 28%),
    var(--forest);
}

.site-footer .brand {
  margin-bottom: 18px;
}

.site-footer .brand-logo {
  width: 156px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #efe4d2;
}

.site-footer a:hover {
  color: var(--gold);
}

.social-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-funding-logos {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 4vw, 34px);
  margin: calc(clamp(72px, 9vw, 116px) * -1) calc(clamp(20px, 6vw, 88px) * -1) 8px;
  padding: 22px clamp(20px, 6vw, 88px);
  background: #fff;
  border-bottom: 1px solid rgba(217, 173, 97, 0.24);
}

.footer-funding-logos img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-eu-logo {
  max-width: 190px;
}

.footer-lgd-logo {
  max-height: 92px;
}

.poster-section {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 24px clamp(16px, 4vw, 48px) 28px;
  background: #fff;
}

.poster-section img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 245px);
  height: auto;
  padding: 10px;
  border: 2px solid rgba(7, 27, 22, 0.16);
  background: #fff;
  box-sizing: border-box;
}

.poster-note {
  max-width: 1100px;
  margin: 0;
  padding-top: 18px;
  border-top: 2px solid rgba(7, 27, 22, 0.16);
  color: #111;
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: fixed;
    inset: 82px 18px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(217, 173, 97, 0.3);
    border-radius: var(--radius);
    background: rgba(7, 27, 22, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 12px;
  }

  .intro,
  .car,
  .route-video,
  .trip-detail,
  .booking {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .car-panel,
  .route-grid,
  .audience-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 16px 18px;
  }

  .poster-section {
    gap: 16px;
    padding: 16px 14px 22px;
  }

  .poster-section img {
    max-height: calc(100vh - 285px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 84px;
  }

  .hero {
    min-height: 690px;
    padding: 126px 20px 96px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(6, 20, 17, 0.76) 0%, rgba(6, 20, 17, 0.38) 62%, rgba(6, 20, 17, 0.24) 100%),
      linear-gradient(0deg, rgba(6, 20, 17, 0.68), transparent 48%, rgba(6, 20, 17, 0.28)),
      var(--home-bg) 62% center / cover no-repeat;
  }

  .hero-content {
    padding-top: 250px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.7rem);
  }

  .hero-social {
    position: static;
    display: flex;
    margin-top: 36px;
    transform: none;
  }

  .hero-social a {
    width: 42px;
    height: 42px;
  }

  .feature-grid,
  .car-panel,
  .route-grid,
  .audience-list,
  .gallery-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-funding-logos {
    gap: 18px;
    margin-left: -20px;
    margin-right: -20px;
    padding: 18px 20px;
  }

  .footer-eu-logo {
    max-width: 150px;
  }

  .footer-lgd-logo {
    max-height: 72px;
  }

  .feature-grid article,
  .feature-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(185, 130, 52, 0.28);
  }

  .feature-grid article:last-child {
    border-bottom: 0;
  }

  .car-panel article {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.18);
  }

  .car-panel article:last-child {
    border-bottom: 0;
  }

  .routes-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-item {
    min-height: 210px;
  }
}
