:root {
  --red: #c8142f;
  --red-dark: #8f0d21;
  --red-deep: #5f0918;
  --red-soft: #f7e7ea;
  --ink: #181314;
  --muted: #6f6567;
  --line: #e7dfe0;
  --paper: #fffdf9;
  --cream: #f7f1e8;
  --white: #fff;
  --green: #1f9d62;
  --shadow-sm: 0 12px 36px rgba(60, 12, 22, 0.08);
  --shadow-lg: 0 28px 70px rgba(60, 12, 22, 0.18);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100vw - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(200, 20, 47, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100vw - 40px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section--red .eyebrow,
.section--ink .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 44px;
}

.section-heading h2,
.page-hero h1,
.tour-hero h1,
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(40px, 5vw, 68px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.section--red .section-heading p,
.section--ink .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 750;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

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

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

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

.btn--white {
  color: var(--red-dark);
  background: var(--white);
}

.btn--outline {
  color: var(--ink);
  border-color: rgba(24, 19, 20, 0.22);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}

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

.btn svg,
.whatsapp-float svg,
.mobile-contact-bar svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-header {
  position: sticky;
  z-index: 900;
  top: 0;
  border-bottom: 1px solid rgba(24, 19, 20, 0.08);
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px);
}

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

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

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 7px;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand-tagline {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav > a:not(.btn) {
  padding: 12px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav > a:not(.btn):hover {
  color: var(--red);
  background: var(--red-soft);
}

.site-nav .btn {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  display: block;
  margin: 4px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px), linear-gradient(120deg, transparent 0 54%, rgba(95, 9, 24, 0.22) 54% 100%);
  background-size: 19px 19px, auto;
  content: "";
  opacity: 0.42;
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  padding: 78px 0 88px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 7.2vw, 104px);
}

.hero h1 em {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.5em;
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

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

.hero .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn--outline:hover {
  border-color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
}

.hero-image-main,
.hero-image-secondary {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.hero-image-main {
  inset: 0 0 42px 40px;
  border-radius: 48% 48% 20px 20px;
}

.hero-image-secondary {
  right: auto;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 42%;
  border-radius: 18px;
}

.hero-image-main img,
.hero-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-main img {
  object-position: center 44%;
}

.hero-seal {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 8px;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  padding: 18px;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--red-dark);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.hero-seal strong {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 0.95;
}

.hero-seal small {
  display: block;
  margin-top: 5px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--line);
}

.trust-item + .trust-item {
  padding-left: 28px;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}

.trust-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.tour-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(60, 12, 22, 0.03);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.tour-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--red-soft);
}

.tour-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.tour-card:hover .tour-card-media img {
  transform: scale(1.035);
}

.tour-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(143, 13, 33, 0.92);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-card-body {
  padding: 24px;
}

.tour-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-card h3 {
  min-height: 2.45em;
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.tour-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 13px 0 18px;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink);
}

.destination-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 19, 20, 0.04) 20%, rgba(24, 19, 20, 0.9) 100%);
  content: "";
}

.destination-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 650ms ease;
}

.destination-card:hover img {
  transform: scale(1.035);
}

.destination-card-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 36px;
}

.destination-card-copy span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.destination-card h3 {
  margin: 7px 0 11px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.destination-card p {
  max-width: 540px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
}

.destination-card .text-link {
  color: var(--white);
}

.b2b-grid,
.about-grid,
.contact-grid,
.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: start;
  gap: clamp(40px, 8vw, 96px);
}

.b2b-copy h2,
.about-copy h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.b2b-copy > p,
.about-copy > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.b2b-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-list li:last-child {
  border-bottom: 0;
}

.feature-list strong {
  display: block;
  margin-bottom: 2px;
}

.feature-list span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.feature-number {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--serif);
  font-size: 22px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step > span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 34px;
}

.process-step h3 {
  margin: 14px 0 6px;
  font-size: 17px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.guide-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.guide-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.guide-card > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 38px 0 14px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.guide-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--red);
  content: "+";
  font-family: var(--sans);
  font-size: 26px;
}

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

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

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: var(--white);
  background: var(--red);
}

.cta-band::after {
  position: absolute;
  top: -180px;
  right: -80px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.04), 0 0 0 100px rgba(255, 255, 255, 0.03);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cta-inner p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero,
.tour-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.page-hero-inner {
  padding: 86px 0 94px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(58px, 8vw, 102px);
}

.page-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--white);
}

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

.list-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.list-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.tour-hero-grid {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: stretch;
}

.tour-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px max(40px, calc((100vw - 1180px) / 2)) 76px max(20px, calc((100vw - 1180px) / 2));
}

.tour-hero h1 {
  max-width: 760px;
  font-size: clamp(50px, 6.2vw, 82px);
}

.tour-hero-copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tour-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tour-hero-media {
  min-height: 620px;
  background: var(--red-dark);
}

.tour-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.tour-content,
.prose {
  color: #342e30;
}

.tour-content h2,
.tour-content h3,
.prose h2,
.prose h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.tour-content h2,
.prose h2 {
  margin: 52px 0 18px;
  font-size: clamp(36px, 5vw, 50px);
}

.tour-content h3,
.prose h3 {
  margin: 32px 0 12px;
  font-size: 27px;
}

.tour-content p,
.prose p {
  margin: 0 0 18px;
}

.tour-content ul,
.prose ul,
.prose ol {
  margin: 0 0 24px;
  padding-left: 22px;
}

.tour-content li + li,
.prose li + li {
  margin-top: 8px;
}

.tour-content blockquote,
.prose blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--cream);
}

.tour-content .itinerary {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.itinerary-day {
  display: grid;
  grid-template-columns: 86px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.itinerary-day-label {
  display: grid;
  place-items: center;
  padding: 20px 12px;
  color: var(--white);
  background: var(--red);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
}

.itinerary-day-body {
  padding: 20px 22px;
}

.itinerary-day-body h3 {
  margin: 0 0 5px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.itinerary-day-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tour-aside {
  position: sticky;
  top: 104px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.tour-aside h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.tour-aside p {
  color: var(--muted);
  font-size: 14px;
}

.tour-aside .btn {
  width: 100%;
  margin-top: 12px;
}

.aside-facts {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.aside-fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.aside-fact span {
  color: var(--muted);
}

.page-content {
  padding: 86px 0 104px;
}

.prose > :first-child {
  margin-top: 0;
}

.prose .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.4;
}

.fact-cards,
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0;
}

.fact-card,
.service-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.fact-card strong,
.service-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.fact-card span,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.license-note {
  margin: 36px 0;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
}

.license-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 28px;
}

.license-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.license-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose .text-link {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.credential-list {
  overflow: hidden;
  margin: 28px 0 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.credential-list > div {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.5fr);
  gap: 24px;
  padding: 18px 22px;
}

.credential-list > div + div {
  border-top: 1px solid var(--line);
}

.credential-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.credential-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 600;
}

.contact-panel,
.form-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-panel {
  color: var(--white);
  background: var(--red);
}

.contact-panel h2,
.form-panel h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-detail {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-detail span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong {
  font-size: 15px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d8cdcf;
  border-radius: 9px;
  color: var(--ink);
  background: var(--paper);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  outline: 2px solid rgba(200, 20, 47, 0.12);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.pagination a,
.pagination span {
  display: inline-grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  margin: 0 3px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 13px;
}

.pagination .page-num-current,
.pagination span.current {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.72fr 0.72fr 1fr;
  gap: 48px;
  padding-bottom: 54px;
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 25px;
}

.footer-brand .brand-tagline {
  color: rgba(255, 255, 255, 0.48);
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0;
  font-size: 14px;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.footer-legal {
  max-width: 760px;
}

.whatsapp-float {
  position: fixed;
  z-index: 850;
  right: 22px;
  bottom: 24px;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(17, 92, 57, 0.3);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.mobile-contact-bar {
  display: none;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 50px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1040px) {
  .site-nav > a:not(.btn) {
    padding-inline: 7px;
    font-size: 12px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  }

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

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

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

  .trust-item:nth-child(2),
  .process-step:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2),
  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 899;
    inset: 78px 0 auto;
    display: grid;
    max-height: 0;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    transition: max-height 260ms ease, opacity 180ms ease;
  }

  body.nav-open .site-nav {
    max-height: calc(100vh - 78px);
    padding: 14px 20px 24px;
    opacity: 1;
  }

  .site-nav > a:not(.btn) {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 15px;
  }

  .site-nav .btn {
    margin: 16px 0 0;
  }

  body.nav-open .nav-toggle span {
    opacity: 0;
  }

  body.nav-open .nav-toggle::before {
    transform: translateY(6px) rotate(45deg);
  }

  body.nav-open .nav-toggle::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 70px 0 80px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .section-heading,
  .b2b-grid,
  .about-grid,
  .contact-grid,
  .tour-layout {
    grid-template-columns: 1fr;
  }

  .destination-card,
  .destination-card img {
    min-height: 440px;
  }

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

  .tour-hero-copy {
    padding: 70px max(20px, calc((100vw - 760px) / 2));
  }

  .tour-hero-media,
  .tour-hero-media img {
    min-height: 440px;
  }

  .tour-aside {
    position: static;
  }

  .guide-grid,
  .fact-cards,
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  body {
    padding-bottom: 64px;
  }

  .section {
    padding: 72px 0;
  }

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

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-tagline {
    font-size: 7px;
  }

  .site-nav {
    top: 70px;
  }

  .hero-inner {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

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

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-image-main {
    inset: 0 0 36px 22px;
    border-width: 6px;
  }

  .hero-image-secondary {
    border-width: 5px;
  }

  .hero-seal {
    right: -8px;
    width: 104px;
    height: 104px;
    padding: 12px;
  }

  .hero-seal strong {
    font-size: 21px;
  }

  .trust-grid,
  .process-grid,
  .card-grid,
  .tour-list-grid,
  .destination-grid,
  .guide-grid,
  .fact-cards,
  .service-cards,
  .footer-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .credential-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .trust-item,
  .trust-item + .trust-item {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .process-step,
  .process-step:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .section-heading {
    gap: 20px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .tour-card h3 {
    min-height: 0;
  }

  .destination-card-copy {
    padding: 26px;
  }

  .destination-card,
  .destination-card img {
    min-height: 400px;
  }

  .page-hero-inner {
    padding: 64px 0 72px;
  }

  .page-hero h1 {
    font-size: 54px;
  }

  .tour-hero h1 {
    font-size: 50px;
  }

  .tour-hero-media,
  .tour-hero-media img {
    min-height: 320px;
  }

  .page-content {
    padding: 68px 0 82px;
  }

  .itinerary-day {
    grid-template-columns: 66px 1fr;
  }

  .itinerary-day-label {
    font-size: 21px;
  }

  .itinerary-day-body {
    padding: 17px;
  }

  .contact-panel,
  .form-panel,
  .tour-aside {
    padding: 24px;
  }

  .field--full,
  .form-note {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 950;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    padding: 8px 12px max(8px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.97);
    backdrop-filter: blur(16px);
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
  }

  .mobile-contact-bar a:first-child {
    color: var(--ink);
  }

  .mobile-contact-bar a:last-child {
    color: var(--white);
    background: var(--green);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
