:root {
  --primary: #002366;
  --primary-deep: #00163f;
  --primary-mid: #001b52;
  --secondary: #c5a059;
  --accent: #700116;
  --background: #f2f2f2;
  --background-soft: #faf8f3;
  --text: #1a1a1b;
  --muted: #5e6674;
  --line: rgba(0, 35, 102, 0.12);
  --line-strong: rgba(0, 35, 102, 0.2);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-blue: rgba(0, 35, 102, 0.06);
  --shadow-soft: 0 14px 42px rgba(0, 19, 54, 0.08);
  --shadow-card: 0 18px 38px rgba(0, 16, 52, 0.1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background:
    radial-gradient(circle at top left, rgba(10, 46, 122, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(0, 21, 64, 0.28), transparent 26%),
    linear-gradient(180deg, #06245f 0%, #04183f 55%, #f2f2f2 85%, #eef2f8 100%);
}

main {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 32%, transparent 100%);
}

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

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

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

ul {
  padding-left: 1.15rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(calc(100% - 24px), var(--content-width));
  margin: 0 auto;
  padding: 16px 0 36px;
}

.site-header,
.section,
.site-footer {
  position: relative;
  overflow: clip;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 108px;
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.site-header,
.section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(252, 252, 252, 0.96)),
    var(--surface);
  backdrop-filter: blur(14px);
}

.section::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 35, 102, 0.12), transparent);
}

.site-header {
  border-radius: 34px;
  padding: 18px clamp(18px, 4vw, 40px) clamp(26px, 4vw, 44px);
  min-height: 86vh;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(197, 160, 89, 0.18), transparent 22%),
    radial-gradient(circle at 10% 10%, rgba(0, 35, 102, 0.07), transparent 26%);
  pointer-events: none;
}

.nav-bar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 22, 63, 0.92), rgba(0, 35, 102, 0.84));
  color: #f8f5ef;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 16, 52, 0.24);
}

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

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(27%) saturate(563%)
    hue-rotate(356deg) brightness(93%) contrast(91%);
}

.brand-text {
  font-family: "Fraunces", serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a,
.mobile-menu a {
  position: relative;
  font-size: 0.92rem;
  color: rgba(248, 245, 239, 0.8);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a::after,
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.mobile-menu a:hover,
.nav-links a:focus-visible,
.mobile-menu a:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.mobile-menu a:hover::after,
.nav-links a:focus-visible::after,
.mobile-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #f8f5ef;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  margin-top: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(0, 22, 63, 0.94);
  color: #f8f5ef;
}

.mobile-menu a + a {
  margin-top: 14px;
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, #dec185, var(--secondary));
  color: var(--primary-deep);
  box-shadow: 0 12px 22px rgba(197, 160, 89, 0.24);
}

.button-secondary {
  border-color: rgba(0, 35, 102, 0.18);
  background: rgba(0, 35, 102, 0.03);
  color: var(--primary);
}

.button-accent {
  background: linear-gradient(135deg, #8f0b25, var(--accent));
  color: #fff5f6;
  box-shadow: 0 12px 24px rgba(112, 1, 22, 0.18);
}

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

.button-primary:hover,
.button-accent:hover,
.nav-cta:hover {
  box-shadow: 0 16px 30px rgba(0, 16, 52, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  min-height: calc(86vh - 92px);
  padding-top: clamp(26px, 5vw, 56px);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.mail-copy h2,
.footer-cta h2 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 9.8ch;
  font-size: clamp(3.1rem, 6.5vw, 5.8rem);
  line-height: 0.94;
  color: var(--primary-deep);
}

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

.hero-text {
  max-width: 58ch;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  line-height: 1.7;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-stats article,
.tour-notes article,
.reviews-summary article,
.about-highlights article,
.trust-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 251, 0.92));
  box-shadow: var(--shadow-soft);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.hero-stats article:hover,
.tour-notes article:hover,
.reviews-summary article:hover,
.about-highlights article:hover,
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 35, 102, 0.2);
  box-shadow: 0 20px 34px rgba(0, 16, 52, 0.12);
}

.hero-stats article {
  padding: 16px;
}

.hero-stats strong,
.reviews-summary strong {
  display: block;
  color: var(--primary);
  font-size: 0.98rem;
}

.hero-stats span,
.reviews-summary span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.hero-card-main {
  inset: 0 0 118px 20px;
  overflow: hidden;
}

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

.hero-card-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(0, 22, 63, 0.86) 100%);
}

.hero-card-copy {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  color: #f8f5ef;
}

.hero-card-copy p {
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.78);
}

.hero-card-copy h2 {
  max-width: 14ch;
  font-size: clamp(1.82rem, 3.4vw, 2.65rem);
  line-height: 1.03;
}

.hero-card-float {
  right: 12px;
  bottom: 0;
  z-index: 3;
  width: min(292px, 56%);
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 242, 242, 0.95));
}

.hero-card-float p {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card-float strong {
  color: var(--primary-deep);
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero-visual:hover .hero-card-main {
  transform: translateY(-4px);
}

.hero-visual:hover .hero-card-float {
  transform: translateY(-6px);
}

.section {
  margin-top: 18px;
  border-radius: 28px;
  padding: clamp(22px, 4vw, 40px);
}

.section-heading {
  max-width: 820px;
}

.section-heading.center,
.section-heading.narrow {
  margin: 0 auto;
  text-align: center;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2 {
  font-size: clamp(2.05rem, 4.3vw, 3.6rem);
  line-height: 0.98;
  color: var(--primary-deep);
}

.section-heading p:last-child,
.mail-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading p:last-child {
  max-width: 58ch;
  margin-top: 12px;
}

.section-heading.center p:last-child,
.section-heading.narrow p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.about-layout p,
.tour-content p,
.contact-grid p {
  color: var(--muted);
  line-height: 1.72;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.about-highlights article {
  padding: 18px;
}

.about-highlights h3,
.tour-content h3,
.tour-notes h3,
.contact-grid h3 {
  color: var(--primary);
  font-size: 1.04rem;
  line-height: 1.3;
}

.about-highlights p,
.tour-notes p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.tour-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.tour-notes article {
  padding: 18px;
}

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

.tour-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.92));
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(0, 16, 52, 0.13);
}

.tour-media {
  position: relative;
  height: 236px;
  overflow: hidden;
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.tour-card:hover .tour-image {
  transform: scale(1.03);
}

.tour-badges,
.tour-rating,
.tour-nav,
.tour-dots {
  position: absolute;
  z-index: 2;
}

.tour-badges {
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tour-badges span,
.tour-chip,
.tour-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 700;
}

.tour-rating {
  top: 14px;
  right: 14px;
}

.tour-nav {
  top: 50%;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 22, 63, 0.64);
  color: #f8f5ef;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  transition: opacity 180ms ease, background-color 180ms ease;
}

.tour-card:hover .tour-nav {
  opacity: 1;
}

.tour-nav:hover {
  background: rgba(0, 22, 63, 0.9);
}

.tour-nav.prev {
  left: 10px;
}

.tour-nav.next {
  right: 10px;
}

.tour-dots {
  right: 0;
  bottom: 14px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.tour-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.tour-dots button.is-active {
  width: 22px;
  background: #ffffff;
}

.tour-content {
  padding: 18px;
}

.tour-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.tour-meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.tour-content p:not(.tour-meta) {
  margin-top: 10px;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 35, 102, 0.08);
}

.tour-footer strong {
  color: var(--primary);
}

.tour-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--primary);
  color: #f8f5ef;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.tour-footer a:hover {
  transform: translateX(2px);
  box-shadow: 0 10px 20px rgba(0, 16, 52, 0.16);
}

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

.reviews-summary article {
  padding: 16px;
}

.reviews-marquee {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
  overflow: hidden;
  max-height: 720px;
  mask-image: linear-gradient(180deg, transparent, black 14%, black 86%, transparent);
}

.review-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform;
  animation: review-scroll var(--review-duration, 24s) linear infinite;
}

.review-column.slow {
  --review-duration: 29s;
}

.review-column.fast {
  --review-duration: 20s;
}

.review-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.92));
  box-shadow: var(--shadow-soft);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.review-column .review-card.reveal,
.review-column .review-card.reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 35, 102, 0.18);
  box-shadow: 0 20px 34px rgba(0, 16, 52, 0.12);
}

.review-card p {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.66;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.review-meta img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta strong {
  color: var(--primary);
}

.review-meta span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
}

.mail-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: clamp(22px, 3.7vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0, 35, 102, 0.02), rgba(197, 160, 89, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.94));
  box-shadow: var(--shadow-soft);
}

.mail-copy h2 {
  font-size: clamp(1.92rem, 3.7vw, 3rem);
  line-height: 1;
  color: var(--primary-deep);
}

.mail-checklist {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--primary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.mail-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.mail-form label,
.textarea-label {
  display: block;
}

.mail-form span,
.textarea-label span {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.mail-form input,
.mail-form textarea,
.mail-form select {
  width: 100%;
  border: 1px solid rgba(0, 35, 102, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 14px;
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.mail-form textarea {
  min-height: 148px;
  resize: vertical;
}

.mail-form input:focus,
.mail-form textarea:focus,
.mail-form select:focus {
  border-color: rgba(0, 35, 102, 0.42);
  box-shadow: 0 0 0 4px rgba(0, 35, 102, 0.08);
}

.mail-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.form-status {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-status.success {
  color: var(--primary);
}

.form-status.error {
  color: var(--accent);
}

.site-footer {
  margin-top: 18px;
  border-radius: 30px;
  padding: clamp(22px, 4vw, 40px);
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(0, 22, 63, 0.98), rgba(0, 15, 43, 1));
  color: #f8f5ef;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 4.1vw, 3.7rem);
  line-height: 0.98;
  color: #f8f5ef;
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.trust-card {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 247, 0.94));
}

.trust-label,
.contact-kicker {
  color: var(--secondary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-card p:last-child {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}

.trust-logos a {
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.trust-logos a:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.trust-logos img {
  max-height: 74px;
  width: auto;
  object-fit: contain;
}

.payment-strip {
  margin-top: 16px;
  height: 34px;
  width: auto;
  object-fit: contain;
}

.trust-note {
  margin-top: 16px;
  color: rgba(248, 245, 239, 0.72);
  font-size: 0.92rem;
  line-height: 1.62;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.contact-grid article {
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease;
}

.contact-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-grid h3 {
  margin-top: 10px;
  color: #f8f5ef;
}

.contact-grid article p,
.contact-grid article a {
  color: rgba(248, 245, 239, 0.78);
  line-height: 1.7;
}

.contact-grid article p {
  margin-top: 10px;
}

.contact-grid article a {
  display: block;
  margin-top: 7px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  color: rgba(248, 245, 239, 0.62);
  font-size: 0.86rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f8f5ef;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(27%) saturate(563%)
    hue-rotate(356deg) brightness(93%) contrast(91%);
}

.reveal {
  opacity: 0;
  will-change: transform, opacity, filter;
  filter: blur(8px);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-up {
  transform: translate3d(0, 32px, 0) scale(0.985);
}

.reveal-left {
  transform: translate3d(-42px, 0, 0) scale(0.985);
}

.reveal-right {
  transform: translate3d(42px, 0, 0) scale(0.985);
}

.reveal-down {
  transform: translate3d(0, -26px, 0) scale(0.985);
}

.scrolling-up .reveal.is-visible {
  transition-duration: 640ms;
}

.scrolling-down .section.is-visible,
.scrolling-down .site-footer.is-visible {
  box-shadow: 0 22px 46px rgba(0, 16, 52, 0.12);
}

@keyframes review-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, var(--review-shift, -50%), 0);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .mail-card,
  .about-layout,
  .tours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights,
  .reviews-summary,
  .footer-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .reviews-marquee {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-card-main {
    inset: 0 0 104px 0;
  }

  .hero-card-float {
    right: 10px;
    bottom: -6px;
    width: min(286px, 74%);
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--content-width));
    padding-top: 8px;
  }

  .site-header,
  .section,
  .site-footer {
    border-radius: 24px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-stats,
  .about-highlights,
  .reviews-summary,
  .form-grid,
  .contact-grid,
  .footer-bottom,
  .mail-actions,
  .footer-trust {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-card-main {
    inset: 0 0 118px 0;
  }

  .hero-card-copy h2 {
    max-width: 100%;
    font-size: 1.6rem;
  }

  .hero-card-float {
    right: 9px;
    bottom: 0;
    width: calc(100% - 20px);
  }

  .tours-grid,
  .reviews-marquee {
    grid-template-columns: 1fr;
  }

  .review-column:nth-child(3) {
    display: none;
  }

  .trust-logos {
    gap: 12px;
  }

  .trust-logos img {
    max-height: 62px;
  }
}

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