:root {
  --bg: #f8f1e7;
  --bg-soft: #fbf6ef;
  --ink: #2b241f;
  --muted: #6d6258;
  --line: rgba(180, 135, 65, 0.24);
  --gold: #b98633;
  --gold-dark: #936723;
  --white: #fffaf2;
  --shadow: 0 26px 80px rgba(73, 49, 24, 0.15);
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.96), transparent 32rem),
    linear-gradient(115deg, #fbf5ec 0%, #f3eadf 54%, #f9f2e7 100%);
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(110, 82, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 82, 46, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 10px;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  width: min(1120px, calc(100% - 28px));
  margin-top: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(185, 134, 51, 0.2);
  border-radius: 999px;
  background: rgba(250, 244, 236, 0.88);
  box-shadow: 0 16px 50px rgba(55, 37, 18, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 270px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

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

.desktop-nav a.active {
  color: var(--gold-dark);
}

.phone-link,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease);
  will-change: transform;
}

.phone-link {
  gap: 10px;
  padding: 0 20px;
  color: #fffaf1;
  background: linear-gradient(135deg, var(--gold), #c99a4c);
  box-shadow: 0 14px 34px rgba(185, 134, 51, 0.28);
  font-weight: 700;
  white-space: nowrap;
}

.phone-link svg,
.secure svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.button {
  gap: 10px;
  min-width: 208px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  color: #fffaf1;
  background: linear-gradient(135deg, #bd8735, #cf9f4c);
  box-shadow: 0 18px 44px rgba(158, 103, 35, 0.24);
}

.button.secondary {
  color: var(--ink);
  border-color: rgba(174, 123, 45, 0.56);
  background: rgba(255, 250, 242, 0.64);
}

.button.compact {
  min-width: 212px;
}

.button:hover,
.phone-link:hover {
  transform: translateY(-2px);
}

.button:active,
.phone-link:active {
  transform: translateY(1px) scale(0.98);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.menu-button.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 84px;
  right: 18px;
  z-index: 19;
  display: grid;
  gap: 4px;
  width: min(260px, calc(100% - 36px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 6px;
}

.mobile-nav a:hover {
  background: rgba(185, 134, 51, 0.1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(400px, 1.18fr);
  gap: 24px;
  width: min(1120px, calc(100% - 48px));
  min-height: 590px;
  margin: 0 auto;
  padding: 70px 0 0;
}

.hero::after {
  position: absolute;
  right: calc(50% - 50vw);
  bottom: 0;
  left: calc(50% - 50vw);
  z-index: -1;
  height: 52%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(242, 231, 218, 0.88));
}

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

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

h1 {
  max-width: 590px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 300;
  line-height: 1.12;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.16;
}

h3 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 400;
}

.lead,
.section-copy p,
.service-card p,
.commitment-list p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 430px;
  margin-bottom: 30px;
  font-size: 18px;
}

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

.hero-media {
  position: relative;
  align-self: end;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-bottom-left-radius: 8px;
  min-height: 520px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 0.48) 22%, #000 48%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 0.48) 22%, #000 48%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.04);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, #fbf5ec 0%, rgba(251, 245, 236, 0.94) 16%, rgba(251, 245, 236, 0.58) 35%, rgba(251, 245, 236, 0.12) 62%, transparent 82%),
    linear-gradient(180deg, rgba(251, 245, 236, 0.34) 0%, transparent 28%, rgba(248, 241, 231, 0.18) 100%);
}

.soft-halo {
  position: absolute;
  right: 20%;
  bottom: 10%;
  z-index: 1;
  width: 170px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 245, 220, 0.42);
  filter: blur(18px);
  animation: breathe 4.5s ease-in-out infinite;
}

.hero-points {
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 26px;
  width: min(560px, 100%);
}

.point {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.point:last-child {
  border-right: 0;
}

.point svg,
.service-card svg,
.commitment-list svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}

.point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.point span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.promise {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 70px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 34px;
}

.section-copy {
  max-width: 430px;
}

.wide-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(61, 40, 18, 0.12);
}

.wide-image img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.wide-image:hover img {
  transform: scale(1.035);
}

.services,
.route-section,
.testimonials {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 0;
}

.section-heading {
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.service-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 178px;
  padding: 28px 18px 22px;
  overflow: hidden;
  border: 1px solid rgba(180, 135, 65, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.42);
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.service-card::after {
  width: 34px;
  height: 2px;
  margin-top: 10px;
  content: "";
  background: var(--gold);
  transform: scaleX(0.7);
  transition: transform 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 135, 65, 0.52);
  background: rgba(255, 250, 242, 0.75);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card p {
  margin-bottom: 0;
  font-size: 12px;
}

.commitments {
  width: min(1120px, calc(100% - 48px));
  margin: 16px auto 0;
  padding: 18px 30px 24px;
  border-radius: 8px;
  background: linear-gradient(100deg, rgba(246, 237, 226, 0.95), rgba(255, 250, 242, 0.7), rgba(238, 225, 211, 0.95));
  box-shadow: 0 18px 60px rgba(57, 37, 16, 0.08);
  text-align: center;
}

.commitments .eyebrow {
  margin-bottom: 8px;
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.commitment-list article {
  padding: 8px 26px 0;
  border-right: 1px solid var(--line);
}

.commitment-list article:last-child {
  border-right: 0;
}

.commitment-list svg {
  margin: 0 auto 12px;
}

.commitment-list p {
  margin-bottom: 0;
  font-size: 12px;
}

.route-layout {
  display: grid;
  grid-template-columns: 0.86fr 1fr 0.82fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.route-image,
.route-image img,
.coverage-card {
  border-radius: 8px;
}

.route-image {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(41, 27, 12, 0.11);
}

.route-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.route-image:hover img {
  transform: scale(1.04);
}

.route-details {
  display: grid;
  gap: 12px;
}

.route-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  min-height: 102px;
  padding: 20px;
  border: 1px solid rgba(180, 135, 65, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.48);
}

.route-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(185, 134, 51, 0.38);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
}

.route-card h3,
.coverage-card h3 {
  margin-bottom: 6px;
}

.route-card p,
.coverage-card li,
.coverage-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.route-card p {
  margin-bottom: 0;
  font-size: 13px;
}

.coverage-card {
  padding: 22px;
  border: 1px solid rgba(180, 135, 65, 0.24);
  background: linear-gradient(145deg, rgba(255, 250, 242, 0.72), rgba(241, 229, 214, 0.72));
  box-shadow: 0 18px 56px rgba(41, 27, 12, 0.08);
}

.coverage-card .eyebrow {
  margin-bottom: 12px;
}

.coverage-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.coverage-card li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
}

.coverage-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mini-gallery img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  border-radius: 6px;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 12px auto 0;
  max-width: 940px;
}

.testimonial-card {
  min-height: 140px;
  padding: 22px 30px;
  border: 1px solid rgba(180, 135, 65, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.46);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.testimonial-card.is-active,
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 250, 242, 0.8);
  box-shadow: 0 18px 50px rgba(56, 37, 16, 0.1);
}

.testimonial-card span {
  display: block;
  height: 18px;
  color: var(--gold);
  font-size: 34px;
  line-height: 0.8;
}

.testimonial-card p {
  margin: 0 0 14px;
  font-size: 12px;
}

.testimonial-card strong,
.testimonial-card small {
  display: block;
  font-size: 12px;
}

.testimonial-card small {
  color: var(--muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--gold);
}

.booking {
  position: relative;
  display: grid;
  grid-template-columns: 230px 1fr 130px;
  gap: 26px;
  align-items: center;
  width: min(1160px, calc(100% - 36px));
  margin: 28px auto 28px;
  padding: 20px 34px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(246, 237, 226, 0.92);
  box-shadow: 0 18px 70px rgba(57, 37, 16, 0.12);
}

.booking-title .eyebrow {
  margin-bottom: 10px;
}

.booking-title h2 {
  margin-bottom: 0;
  font-size: 24px;
}

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

.booking-form label {
  display: grid;
  gap: 4px;
}

.booking-form span {
  color: var(--muted);
  font-size: 11px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 34px;
  border: 0;
  border-bottom: 1px solid rgba(116, 81, 35, 0.35);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--gold);
  background: rgba(255, 250, 242, 0.42);
}

.booking-form .button {
  grid-column: 3;
  min-width: 0;
  width: 100%;
}

.secure {
  display: inline-flex;
  grid-column: 3;
  gap: 8px;
  align-items: center;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.booking-mark {
  width: 110px;
  opacity: 0.86;
  transform: translateX(10px);
}

.site-footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 28px;
  padding: 34px 34px 22px;
  border: 1px solid rgba(170, 121, 49, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(226, 211, 190, 0.94), rgba(239, 226, 207, 0.96) 48%, rgba(217, 198, 171, 0.92)),
    radial-gradient(circle at 86% 12%, rgba(185, 134, 51, 0.2), transparent 22rem);
  color: var(--ink);
  box-shadow: 0 24px 86px rgba(73, 49, 24, 0.16), inset 0 1px 0 rgba(255, 250, 242, 0.55);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 0.82fr 0.82fr;
  gap: 34px;
}

.footer-brand img {
  width: 250px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom {
  color: var(--muted);
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 9px;
  font-size: 13px;
}

.footer-column a {
  transition: color 0.25s var(--ease);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(180, 135, 65, 0.22);
  font-size: 12px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  padding: 14px 18px;
  border: 1px solid rgba(185, 134, 51, 0.3);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes breathe {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.42;
  }
  50% {
    transform: scaleX(1.25);
    opacity: 0.75;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    width: min(100% - 32px, 760px);
  }

  .desktop-nav,
  .phone-link {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .brand img {
    width: 230px;
  }

  .hero,
  .promise,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-media {
    margin-right: 0;
    min-height: 430px;
    border-radius: 8px;
  }

  .hero-media img {
    min-height: 430px;
  }

  .hero-points {
    position: relative;
    bottom: auto;
    margin-top: 18px;
  }

  .service-grid,
  .commitment-list,
  .testimonial-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-layout,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .route-image {
    grid-column: 1 / -1;
  }

  .commitment-list article:nth-child(2) {
    border-right: 0;
  }

  .commitment-list article {
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
  }

  .commitment-list article:nth-child(n + 3) {
    border-bottom: 0;
    padding-top: 22px;
  }

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

  .booking-form .button,
  .secure {
    grid-column: auto;
  }

  .booking-mark {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 22px);
  }

  .brand img {
    width: 196px;
  }

  .hero,
  .promise,
  .services,
  .route-section,
  .testimonials,
  .commitments,
  .site-footer {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: 46px;
  }

  .hero-actions,
  .hero-points {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .point {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .point:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .commitment-list,
  .testimonial-track,
  .booking-form,
  .route-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .commitment-list article {
    border-right: 0;
  }

  .commitment-list article:nth-child(n) {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .commitment-list article:last-child {
    border-bottom: 0;
  }

  .route-card {
    grid-template-columns: 40px 1fr;
    padding: 18px;
  }

  .mini-gallery {
    grid-template-columns: repeat(4, minmax(96px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .booking {
    width: calc(100% - 22px);
    padding: 22px;
  }

  .site-footer {
    padding: 26px 22px 20px;
  }

  .footer-bottom {
    display: grid;
  }
}
