:root {
  --ink: #17130f;
  --ink-soft: #2b251f;
  --sand: #f2eadf;
  --sand-light: #fbf7f0;
  --white: #ffffff;
  --orange: #f06a28;
  --orange-dark: #d54f12;
  --muted: #6e655c;
  --line: rgba(23, 19, 15, 0.14);
  --radius: 22px;
  --shadow: 0 28px 70px rgba(15, 10, 6, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--sand-light);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(240, 106, 40, 0.55);
  outline-offset: 4px;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(23, 19, 15, 0.08);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.06em;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.15);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 750;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.languages {
  display: flex;
  align-items: center;
  gap: 4px;
}

.languages a {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
}

.languages a:hover,
.languages a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

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

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(240, 106, 40, 0.24);
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.13);
}

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

.button-white:hover {
  background: var(--ink);
  color: var(--white);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 10, 7, 0.91) 0%, rgba(14, 10, 7, 0.71) 42%, rgba(14, 10, 7, 0.08) 75%),
    linear-gradient(0deg, rgba(14, 10, 7, 0.76) 0%, transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  align-items: center;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.62fr);
  gap: 80px;
  padding-block: 92px;
}

.hero-copy {
  max-width: 750px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ff9b68;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(48px, 6.1vw, 88px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: #ff8b51;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94em;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero-body {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.78;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 32px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.hero-notes span {
  margin-right: 6px;
  color: #ff9b68;
}

.planner-card {
  align-self: end;
  margin-bottom: -28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(20, 15, 11, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.planner-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ff9b68;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.planner-card h2 {
  margin: 28px 0 7px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.planner-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.planner-card ol {
  display: grid;
  gap: 0;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.planner-card li {
  display: grid;
  align-items: center;
  grid-template-columns: 36px 1fr;
  min-height: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
  font-weight: 750;
}

.planner-card li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.planner-card li span {
  color: #ff9b68;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.planner-card .planner-foot {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.section {
  padding-block: 118px;
}

.section-heading h2,
.pickup-copy h2,
.faq-intro h2,
.final-inner h2 {
  margin: 0;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 72px;
  margin-bottom: 54px;
}

.split-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.tour-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(240, 106, 40, 0.12), transparent 26%),
    var(--sand-light);
}

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

.tour-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.tour-card::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 36px solid rgba(240, 106, 40, 0.08);
  border-radius: 50%;
  content: "";
}

.tour-card:hover {
  background: var(--white);
  box-shadow: 0 25px 60px rgba(50, 34, 22, 0.12);
  transform: translateY(-6px);
}

.tour-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-number {
  color: var(--orange-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
}

.tour-tag {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-card h3 {
  max-width: 280px;
  margin: 66px 0 14px;
  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.tour-card p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.tour-card > a {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.pickup-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.pickup-section::before {
  position: absolute;
  top: -280px;
  right: -250px;
  width: 720px;
  height: 720px;
  border: 120px solid rgba(240, 106, 40, 0.1);
  border-radius: 50%;
  content: "";
}

.pickup-layout {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.pickup-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 15px;
  line-height: 1.78;
}

.text-link-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 850;
}

.area-panel {
  padding: 12px 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.area-list > div {
  display: grid;
  align-items: center;
  grid-template-columns: 40px 1fr;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.area-list > div:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.area-list > div:nth-child(even) {
  padding-left: 28px;
}

.area-list span {
  color: #ff9b68;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.area-list strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.area-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.6;
}

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

.centered-heading {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.process-grid > li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  min-height: 190px;
  padding: 30px 34px 30px 0;
  border-top: 1px solid var(--line);
}

.process-grid > li:not(:last-child) {
  margin-right: 34px;
  border-right: 1px solid var(--line);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
}

.process-grid h3 {
  margin: 5px 0 12px;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.safety-note {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 22px;
  max-width: 920px;
  margin: 50px auto 0;
  padding: 24px 28px;
  border: 1px solid rgba(213, 79, 18, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
}

.safety-symbol {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(240, 106, 40, 0.12);
  color: var(--orange-dark);
  font-size: 18px;
  font-weight: 900;
}

.safety-note h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.safety-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 94px;
}

.faq-intro {
  position: relative;
}

.faq-intro h2 {
  max-width: 410px;
}

.faq-decoration {
  display: flex;
  margin-top: 58px;
  color: rgba(240, 106, 40, 0.1);
  font-size: 100px;
  font-weight: 950;
  letter-spacing: -0.16em;
  line-height: 0.8;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 76px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  font-size: 16px;
  font-weight: 850;
}

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

.faq-list summary b {
  color: var(--orange-dark);
  font-size: 25px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 42px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.74;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 112px;
  background: var(--orange);
  color: var(--white);
}

.final-rings {
  position: absolute;
  top: 50%;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 90px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  transform: translateY(-50%);
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
}

.final-inner .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.final-inner > p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px auto 30px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.site-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.45);
}

.footer-top {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  padding-block: 54px;
}

.footer-top > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.site-footer .languages a {
  color: rgba(255, 255, 255, 0.56);
}

.site-footer .languages a:hover,
.site-footer .languages a[aria-current="page"] {
  background: var(--white);
  color: var(--ink);
}

.footer-bottom {
  display: grid;
  min-height: 70px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
}

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 6px 17px 6px 6px;
  border-radius: 999px;
  background: #1fbf61;
  color: var(--white);
  box-shadow: 0 14px 38px rgba(7, 83, 39, 0.3);
  font-size: 11px;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: #118a43;
  font-weight: 950;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .hero-inner {
    gap: 44px;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.7fr);
  }

  .hero h1 {
    font-size: clamp(48px, 7vw, 72px);
  }

  .pickup-layout {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 70px;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu > summary {
    display: grid;
    width: 42px;
    height: 42px;
    cursor: pointer;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 50%;
    list-style: none;
  }

  .mobile-menu > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu > summary span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--ink);
  }

  .mobile-panel {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: min(310px, calc(100vw - 32px));
    gap: 2px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 22px 55px rgba(24, 17, 11, 0.18);
  }

  .mobile-panel > a:not(.button) {
    padding: 10px 4px;
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-panel .languages {
    margin: 10px 0 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero {
    padding-top: 0;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 10, 7, 0.89), rgba(14, 10, 7, 0.45)),
      linear-gradient(0deg, rgba(14, 10, 7, 0.94) 0%, transparent 55%);
  }

  .hero-inner {
    display: block;
    padding-block: 88px 64px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero h1 {
    max-width: 640px;
    font-size: clamp(46px, 11vw, 72px);
  }

  .planner-card {
    max-width: 520px;
    margin: 64px 0 0;
  }

  .section {
    padding-block: 84px;
  }

  .split-heading,
  .pickup-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .tour-card {
    min-height: 300px;
  }

  .tour-card h3 {
    margin-top: 44px;
  }

  .pickup-layout {
    gap: 54px;
  }

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

  .process-grid > li {
    min-height: auto;
    padding: 26px 0;
  }

  .process-grid > li:not(:last-child) {
    margin-right: 0;
    border-right: 0;
  }

  .faq-decoration {
    display: none;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 25px;
  }

  .footer-bottom {
    gap: 10px;
    padding-block: 22px;
  }

  .footer-bottom span:nth-child(2) {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .shell {
    width: min(100% - 28px, 500px);
  }

  .brand-copy small {
    display: none;
  }

  .hero-inner {
    padding-block: 66px 48px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.2vw, 62px);
  }

  .hero-body {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-buttons {
    display: grid;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-notes {
    display: grid;
    gap: 8px;
  }

  .planner-card {
    padding: 22px;
  }

  .section-heading h2,
  .pickup-copy h2,
  .faq-intro h2,
  .final-inner h2 {
    font-size: 38px;
  }

  .area-panel {
    padding-inline: 22px;
  }

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

  .area-list > div:nth-child(odd),
  .area-list > div:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .safety-note {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding-block: 84px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding-right: 6px;
  }

  .floating-whatsapp strong {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
