:root {
  --gold: #d3b244;
  --gold-light: #f1d56c;
  --gold-dark: #aa8528;
  --black: #0d0d0d;
  --graphite: #1c1c1c;
  --text: #252525;
  --muted: #696969;
  --line: #e9dfbf;
  --sand: #fbf6e6;
  --cream: #fffaf0;
  --white: #ffffff;
  --green: #275337;
  --shadow: 0 18px 45px rgba(0, 0, 0, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.contact a:focus-visible,
.quick-contact a:focus-visible,
.mobile-cta a:focus-visible {
  outline-color: var(--black);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--black);
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, calc(100% - 32px));
}

.centered {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img,
.site-footer img {
  border-radius: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
  color: rgba(255, 255, 255, .86);
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
  border: 2px solid var(--gold);
  box-shadow: 0 12px 24px rgba(211, 178, 68, .24);
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 14px;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .42);
  box-shadow: none;
}

.btn-secondary:hover {
  color: var(--black);
}

.btn-secondary-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: none;
}

.section {
  padding: 84px 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-muted {
  background: var(--sand);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--gold-light);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 780px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 14px 0 0;
}

.lead {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--gold-light);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.hero {
  padding: 70px 0 62px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.hero-copy p:not(.eyebrow):not(.lead) {
  max-width: 650px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  font-size: 14px;
  font-weight: 700;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: linear-gradient(135deg, rgba(211, 178, 68, .38), rgba(39, 83, 55, .18));
  border-radius: 34px;
  transform: rotate(-2deg);
}

.hero-media img {
  position: relative;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .14);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.quick-contact {
  background: var(--gold);
  color: var(--black);
}

.quick-contact-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  text-align: center;
}

.quick-contact a {
  font-weight: 950;
  font-size: 20px;
  text-decoration: none;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.route-card,
.step,
.trip-box,
.notice {
  background: var(--white);
  border: 1px solid rgba(170, 133, 40, .16);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
}

.card {
  padding: 26px;
}

.card p,
.route-card p,
.step p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--sand);
  margin-bottom: 18px;
  font-size: 24px;
}

.pricing {
  background:
    radial-gradient(circle at top right, rgba(211, 178, 68, .18), transparent 34%),
    var(--sand);
}

.pricing-heading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(170, 133, 40, .18);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
}

.pricing-card-featured {
  background: linear-gradient(135deg, #ffffff, #fff2bd);
  border-color: rgba(170, 133, 40, .34);
}

.pricing-card-trip {
  background: linear-gradient(135deg, #151515, #2f280d);
  color: var(--white);
  border-color: rgba(255, 255, 255, .14);
}

.pricing-card h3 {
  margin-top: 0;
}

.pricing-card p {
  color: var(--muted);
}

.pricing-card-trip h3,
.pricing-card-trip .pricing-main-price {
  color: var(--gold-light);
}

.pricing-card-trip p {
  color: rgba(255, 255, 255, .78);
}

.pricing-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--sand);
  color: #5f4917;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pricing-card-trip .pricing-badge {
  background: rgba(255, 255, 255, .1);
  color: var(--gold-light);
}

.price-list {
  margin: 22px 0 0;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid #f0e6c9;
}

.price-list div:first-child {
  border-top: 1px solid #f0e6c9;
}

.price-list dt {
  color: var(--text);
  font-weight: 800;
}

.price-list dd {
  margin: 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
}

.pricing-note {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(211, 178, 68, .14);
  font-weight: 800;
}

.pricing-main-price {
  display: block;
  margin-top: 24px;
  font-size: clamp(38px, 7vw, 58px);
  line-height: 1;
  font-weight: 950;
}

.pricing-info-list {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.pricing-info-list li + li {
  margin-top: 10px;
}

.pricing-cta {
  margin-top: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-cta p {
  color: rgba(255, 255, 255, .76);
}

.pricing-cta .btn {
  width: 100%;
}

.notice {
  padding: 18px 22px;
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(170, 133, 40, .16);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
}

.faq-item p {
  color: var(--muted);
}

.notice p {
  margin: 0;
  color: #4b432b;
  font-weight: 700;
}

.action-row {
  margin-top: 26px;
}

.action-row p {
  margin-bottom: 14px;
  color: var(--muted);
}

.routes {
  background:
    radial-gradient(circle at top left, rgba(211, 178, 68, .16), transparent 34%),
    var(--cream);
}

.routes-heading {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.routes-featured,
.routes-list {
  display: grid;
  gap: 18px;
}

.routes-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.routes-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-card {
  position: relative;
  min-height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.route-card::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--gold);
}

.route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(170, 133, 40, .34);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
}

.route-card h3 {
  color: var(--black);
  max-width: 460px;
}

.route-card p {
  font-size: 16px;
}

.route-card-featured {
  min-height: 280px;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff, #fff6d6);
}

.route-card-featured h3 {
  font-size: clamp(28px, 3vw, 38px);
}

.route-card-dark {
  background: linear-gradient(135deg, #151515, #2f280d);
  color: var(--white);
  border-color: rgba(255, 255, 255, .14);
}

.route-card-dark h3,
.route-card-dark .route-price {
  color: var(--gold-light);
}

.route-card-dark p {
  color: rgba(255, 255, 255, .78);
}

.route-card-content {
  position: relative;
  z-index: 1;
}

.route-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--sand);
  color: #5f4917;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.route-card-dark .route-badge {
  background: rgba(255, 255, 255, .1);
  color: var(--gold-light);
}

.route-price {
  display: block;
  color: var(--gold-dark);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  font-weight: 950;
}

.route-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.route-card-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 950;
}

.route-card-dark .route-card-footer a {
  background: var(--gold);
  color: var(--black);
}

.routes-cta {
  margin-top: 24px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
}

.routes-cta p {
  color: var(--muted);
}

.routes-cta .btn {
  white-space: nowrap;
}

.attractions {
  background:
    radial-gradient(circle at top left, rgba(211, 178, 68, .13), transparent 32%),
    var(--sand);
}

.attractions-heading {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.attractions-intro {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.attractions-intro p {
  margin-top: 0;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.attraction-card {
  min-height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  background: var(--white);
  border: 1px solid rgba(170, 133, 40, .16);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
}

.attraction-card-featured {
  background: linear-gradient(135deg, #ffffff, #fff2bd);
  border-color: rgba(170, 133, 40, .34);
}

.attraction-card-dark {
  background: linear-gradient(135deg, #151515, #2f280d);
  color: var(--white);
  border-color: rgba(255, 255, 255, .14);
}

.attraction-card h3 {
  color: var(--black);
}

.attraction-card-dark h3 {
  color: var(--gold-light);
}

.attraction-card p {
  color: var(--muted);
}

.attraction-card-dark p {
  color: rgba(255, 255, 255, .78);
}

.attraction-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--sand);
  color: #5f4917;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.attraction-card-dark .attraction-badge {
  background: rgba(255, 255, 255, .1);
  color: var(--gold-light);
}

.attraction-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 950;
}

.attraction-card-dark a {
  background: var(--gold);
  color: var(--black);
}

.trip-ideas {
  margin-top: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  background: var(--white);
  border: 1px solid rgba(170, 133, 40, .16);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
}

.trip-ideas ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.trip-ideas li + li {
  margin-top: 10px;
}

.trip-ideas strong {
  color: var(--black);
}

.attractions-cta {
  margin-top: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.attractions-cta p {
  color: rgba(255, 255, 255, .76);
}

.attractions-cta .btn {
  white-space: nowrap;
}

.trip {
  background: linear-gradient(135deg, #151515, #25200f);
  color: var(--white);
}

.trip-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 38px;
  align-items: center;
}

.trip p {
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
}

.trip .btn {
  margin-top: 26px;
}

.trip-box {
  padding: 34px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
  box-shadow: none;
}

.price-big {
  display: block;
  font-size: clamp(38px, 5vw, 58px);
  color: var(--gold-light);
  font-weight: 950;
  line-height: 1;
  margin-bottom: 22px;
}

.trip-box ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, .84);
}

.trip-box li + li {
  margin-top: 10px;
}

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

.step {
  padding: 28px;
}

.step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--gold-light);
  border-radius: 50%;
  font-weight: 950;
  margin-bottom: 18px;
}

.pickup-points {
  background: var(--white);
}

.pickup-heading {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.pickup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pickup-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: var(--cream);
  border: 1px solid rgba(170, 133, 40, .2);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
  overflow: hidden;
}

.pickup-card-featured {
  background: linear-gradient(135deg, #151515, #2f280d);
  color: var(--white);
  border-color: rgba(255, 255, 255, .14);
}

.pickup-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 950;
  font-size: 20px;
}

.pickup-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--sand);
  color: #5f4917;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pickup-card-featured .pickup-badge {
  background: rgba(255, 255, 255, .1);
  color: var(--gold-light);
}

.pickup-card h3 {
  color: var(--black);
}

.pickup-card-featured h3 {
  color: var(--gold-light);
}

.pickup-card p {
  color: var(--muted);
}

.pickup-card-featured p {
  color: rgba(255, 255, 255, .78);
}

.pickup-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 950;
}

.pickup-card-featured a {
  background: var(--gold);
  color: var(--black);
}

.pickup-cta {
  margin-top: 24px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
}

.pickup-cta p {
  color: var(--muted);
}

.pickup-cta .btn {
  white-space: nowrap;
}

.fleet {
  background: var(--white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.fleet-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fleet-list div {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--sand);
  border: 1px solid var(--line);
  text-align: center;
}

.fleet-list strong {
  display: block;
  font-size: 68px;
  line-height: 1;
  color: var(--gold-dark);
}

.fleet-list span {
  display: block;
  margin-top: 10px;
  font-weight: 900;
}

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

.practical article {
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
}

.practical p {
  color: rgba(255, 255, 255, .78);
}

.contact {
  background: var(--gold);
  color: var(--black);
}

.contact .eyebrow {
  color: rgba(0, 0, 0, .7);
}

.contact p {
  font-size: 18px;
}

.phone-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.phone-list a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 18px;
  border-radius: 20px;
  background: var(--black);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.phone-list a:hover,
.phone-list a:focus-visible {
  transform: translateY(-2px);
  background: #1a1a1a;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}

.phone-list a span {
  color: rgba(241, 213, 108, .76);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.phone-list a strong {
  color: var(--gold-light);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.05;
  white-space: nowrap;
}

.phone-list a small {
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 800;
}

.contact-pickup-note {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, .28);
  border: 1px solid rgba(13, 13, 13, .12);
  text-align: left;
}

.contact-pickup-note p {
  margin: 0;
  font-weight: 850;
}

.contact-pickup-note a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--black);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 950;
  white-space: nowrap;
}

.google-review-cta {
  margin-top: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border-radius: 22px;
  background: var(--black);
  color: var(--white);
  text-align: left;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .16);
}

.google-review-cta h3 {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: clamp(22px, 2.2vw, 30px);
}

.google-review-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  font-weight: 750;
}

.google-review-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-weight: 950;
  white-space: nowrap;
  transition: transform .18s ease, background-color .18s ease;
}

.google-review-cta a:hover,
.google-review-cta a:focus-visible {
  transform: translateY(-1px);
  background: var(--gold-light);
}

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, .78);
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-links a,
.footer-phone {
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
  font-weight: 800;
}

.footer-phone {
  color: var(--gold-light);
  font-size: 20px;
}

.footer-credit {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, .42);
  font-size: 13px;
}

.footer-credit a {
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  font-weight: 800;
}

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

.mobile-cta {
  display: none;
}

.legal-hero {
  padding: 78px 0 62px;
}

.legal-hero h1 {
  max-width: 900px;
}

.legal-section {
  background:
    radial-gradient(circle at top right, rgba(211, 178, 68, .12), transparent 34%),
    var(--cream);
}

.legal-content {
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(170, 133, 40, .18);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
}

.legal-content h2 {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: clamp(25px, 3vw, 36px);
}

.legal-content h2:first-of-type {
  margin-top: 26px;
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 20px;
  color: var(--black);
}

.legal-content p,
.legal-content li {
  color: var(--text);
}

.legal-content ul {
  margin: 16px 0 0;
  padding-left: 24px;
}

.legal-content li + li {
  margin-top: 9px;
}

.legal-content a {
  color: #6f5519;
  font-weight: 850;
  overflow-wrap: anywhere;
}

@media (max-width: 1020px) {
  .hero-grid,
  .trip-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-cta {
    grid-template-columns: 1fr auto;
  }

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

  .pricing-cta .btn {
    width: auto;
    white-space: nowrap;
  }

  .routes-featured,
  .routes-list,
  .attractions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trip-ideas,
  .attractions-cta {
    grid-template-columns: 1fr;
  }

  .attractions-cta {
    text-align: center;
  }

  .attractions-cta .btn {
    justify-self: center;
  }

  .routes-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .routes-cta .btn {
    justify-self: center;
  }

  .pickup-grid {
    grid-template-columns: 1fr;
  }

  .pickup-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pickup-cta .btn {
    justify-self: center;
  }

  .practical-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 62px;
  }

  body {
    padding-bottom: 74px;
  }

  .site-header {
    background: rgba(13, 13, 13, .96);
    transition: background-color .2s ease, box-shadow .2s ease;
  }

  .header-inner {
    min-height: 76px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 0 10px;
    transition: min-height .22s ease, gap .22s ease, padding .22s ease;
  }

  .brand {
    justify-content: center;
    max-height: 42px;
    overflow: hidden;
    transition: max-height .22s ease, opacity .18s ease, transform .22s ease;
  }

  .brand img {
    width: 122px;
    height: auto;
    border-radius: 7px;
    transition: width .22s ease;
  }

  .site-header.is-compact {
    background: rgba(13, 13, 13, .98);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
  }

  .site-header.is-compact .header-inner {
    min-height: 48px;
    gap: 0;
    padding: 6px 0 7px;
  }

  .site-header.is-compact .brand {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .site-header .btn-small {
    display: none;
  }

  .main-nav {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 7px;
    overflow-x: auto;
    padding: 1px max(0px, calc((100% - 286px) / 2)) 3px;
    color: rgba(255, 255, 255, .92);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .94);
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    scroll-snap-align: center;
  }

  .main-nav a[href="#trasy"],
  .main-nav a[href="#wycieczka"],
  .main-nav a[href="#kontakt"],
  .main-nav a[href="/#trasy"],
  .main-nav a[href="/#kontakt"] {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--black);
    background: var(--gold);
    border-color: var(--gold);
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding: 34px 0 46px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-media {
    order: -1;
  }

  .hero-media::before {
    inset: -8px;
    border-radius: 24px;
  }

  .hero-media img {
    border-radius: 20px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .quick-contact-inner {
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
  }

  .cards.four,
  .steps,
  .fleet-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .routes-featured,
  .routes-list,
  .attractions-grid {
    grid-template-columns: 1fr;
  }

  .attraction-card {
    padding: 24px;
  }

  .attraction-card a,
  .attractions-cta .btn {
    width: 100%;
  }

  .trip-ideas,
  .attractions-cta {
    padding: 24px;
    text-align: left;
  }

  .route-card,
  .route-card-featured {
    min-height: auto;
    padding: 24px;
  }

  .route-card-footer,
  .routes-cta .btn {
    width: 100%;
  }

  .route-card-footer a,
  .routes-cta .btn {
    width: 100%;
  }

  .routes-cta {
    padding: 24px;
    text-align: left;
  }

  .pickup-card {
    padding: 24px;
  }

  .pickup-card a,
  .pickup-cta .btn {
    width: 100%;
  }

  .pickup-cta {
    padding: 24px;
    text-align: left;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 22px;
  }

  .pricing-cta {
    grid-template-columns: 1fr;
  }

  .pricing-cta .btn {
    width: 100%;
    white-space: normal;
  }

  .price-list div {
    gap: 12px;
  }

  .price-list dd {
    font-size: 16px;
  }

  .pricing-cta {
    text-align: left;
  }

  .phone-list,
  .contact-pickup-note,
  .google-review-cta {
    grid-template-columns: 1fr;
  }

  .contact-pickup-note,
  .google-review-cta {
    text-align: center;
  }

  .contact-pickup-note a,
  .google-review-cta a {
    width: 100%;
  }

  .footer-inner,
  .footer-links {
    text-align: center;
    justify-content: center;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(13, 13, 13, .96);
    z-index: 100;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .18);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 950;
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
