:root {
  --bg: #292B2E;
  --bg-soft: #303337;
  --surface: #383B40;
  --surface-2: #42464C;
  --gold: #C9A659;
  --gold-bright: #E4C989;
  --gold-deep: #8A6C2F;
  --gold-soft: rgba(201, 166, 89, 0.12);
  --gold-line: rgba(201, 166, 89, 0.18);
  --gold-grad: linear-gradient(135deg, #E4C989 0%, #C9A659 45%, #8A6C2F 100%);
  --emerald: #0F2E2A;
  --navy: #111A33;
  --ink: #F4F1EA;
  --ink-muted: #FFFFFF;
  --ink-dim: #8F8A80;
  --line-soft: rgba(255, 255, 255, 0.1);
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --maxw: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-locked {
  overflow: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--gold-bright);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: 0.005em;
}

p {
  margin: 0 0 1.1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

::selection {
  background: rgba(201, 166, 89, 0.35);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #26262e;
  border-radius: 20px;
  border: 3px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-deep);
}

.ic {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 300;
  background: var(--gold);
  color: #0B0B0D;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  transition: top 0.2s ease;
}

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

.text-gold {
  background: linear-gradient(120deg, #E4C989 0%, #C9A659 55%, #8A6C2F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding-block: clamp(4.25rem, 9vw, 7.5rem);
}

.section--tight {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.section--alt {
  background: linear-gradient(180deg, rgba(15, 46, 42, 0.16), rgba(17, 26, 51, 0.18)), var(--bg-soft);
}

.section__head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), rgba(201, 166, 89, 0.25));
}

.section__head--center .eyebrow::before {
  display: none;
}

.section__head--center .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 166, 89, 0.25), var(--gold-bright));
}

.h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
}

.h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
}

.lede {
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.8;
  max-width: 62ch;
}

.section__head--center .lede {
  margin-inline: auto;
}

.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 2.6rem auto;
}

.rule::before,
.rule::after {
  content: "";
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line));
}

.rule::after {
  background: linear-gradient(90deg, var(--gold-line), transparent);
}

.rule__diamond {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(201, 166, 89, 0.6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn .ic {
  transition: transform 0.2s ease;
}

.btn:hover .ic {
  transform: translateX(4px);
}

.btn--gold {
  background: var(--gold-grad);
  color: #0B0B0D;
  box-shadow: 0 10px 30px rgba(201, 166, 89, 0.25);
}

.btn--gold:hover {
  color: #0B0B0D;
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(201, 166, 89, 0.4), 0 0 20px rgba(201, 166, 89, 0.35);
}

.btn--ghost {
  border-color: rgba(201, 166, 89, 0.6);
  color: var(--gold);
  background: transparent;
}

.btn--ghost:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(201, 166, 89, 0.08);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 11px 22px;
}

.btn__arrow {
  width: 13px;
  height: 13px;
}

.topbar {
  background: rgba(41, 43, 46, 0.94);
  border-bottom: 1px solid rgba(201, 166, 89, 0.14);
  font-size: 0.8rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 16px;
}

.topbar__meta,
.topbar__actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  font-weight: 500;
}

.topbar__item .ic {
  color: var(--gold);
}

.topbar__item:hover {
  color: var(--gold);
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.topbar__phone .ic {
  color: var(--gold-bright);
}

.topbar__phone:hover {
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(228, 201, 137, 0.5);
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social__link {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201, 166, 89, 0.32);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.3s ease;
}

.social__link .ic {
  width: 13px;
  height: 13px;
}

.social__link:hover {
  background: rgba(201, 166, 89, 0.14);
  border-color: var(--gold);
  color: var(--gold-bright);
  box-shadow: 0 0 18px rgba(201, 166, 89, 0.35);
  transform: translateY(-2px);
}

.site-header {
  position: relative;
  z-index: 200;
}

.header-bar {
  position: sticky;
  top: 0;
  background: rgba(41, 43, 46, 0.72);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}

.header-bar.is-scrolled {
  background: rgba(41, 43, 46, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(201, 166, 89, 0.16);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand__logo {
  width: clamp(120px, 12vw, 150px);
  height: auto;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.brand__logo--lg {
  width: clamp(170px, 18vw, 210px);
}

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

.brand__top {
  font-family: var(--font-serif);
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.brand__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: 8px 2px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav__link:hover {
  color: var(--ink);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__link.is-active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  place-items: center;
}

.nav-toggle__box {
  display: block;
  width: 20px;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: max(100svh, 660px);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.1) translate(1.5%, -1.5%);
  }
}

.hero__mark {
  position: absolute;
  right: clamp(-30px, 6vw, 60px);
  bottom: -6%;
  width: clamp(240px, 32vw, 430px);
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 40px rgba(201, 166, 89, 0.4));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 90% at 72% 18%, transparent 0%, rgba(11, 11, 13, 0.5) 55%, rgba(11, 11, 13, 0.82) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.55) 0%, rgba(11, 11, 13, 0.12) 34%, rgba(11, 11, 13, 0.55) 72%, var(--bg) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(6rem, 12vw, 9rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.hero__title {
  font-size: clamp(2.7rem, 6.4vw, 5.1rem);
  line-height: 1.04;
  margin-bottom: 1.5rem;
  max-width: 18ch;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero__lede {
  color: #D8D3C9;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
  max-width: 58ch;
  margin-bottom: 2.4rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 3rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #CFC9BC;
}

.hero__badge .ic {
  color: var(--gold);
}

.hero__badge::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(201, 166, 89, 0.7);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(228, 201, 137, 0.8);
  z-index: 2;
}

.scroll-cue__line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  overflow: hidden;
  position: relative;
}

.scroll-cue__line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold-bright);
  animation: cue 2.2s ease-in-out infinite;
}

@keyframes cue {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

.hero--page {
  align-items: center;
  min-height: clamp(420px, 56vh, 560px);
  padding-block: clamp(3rem, 6vw, 4rem);
}

.hero--page .hero__inner {
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--page .hero__title {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 1.1rem;
}

.hero--page .hero__lede {
  margin-bottom: 0;
  max-width: 60ch;
}

.hero--page .eyebrow::before {
  display: none;
}

.hero--page .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 166, 89, 0.25), var(--gold-bright));
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.intro__copy .h2 {
  margin-bottom: 1.1rem;
}

.intro__copy > p {
  color: var(--ink-muted);
  line-height: 1.85;
}

.intro__points {
  display: grid;
  gap: 14px;
  margin: 2rem 0 2.4rem;
}

.intro__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #D6D1C6;
  font-weight: 500;
}

.intro__point .ic {
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-top: 3px;
}

.media-stack {
  position: relative;
  padding-bottom: 46px;
}

.media-stack__main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-stack__main::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 166, 89, 0.35);
  border-radius: 14px;
  z-index: 2;
  pointer-events: none;
}

.media-stack__main img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
}

.media-stack__accent {
  position: absolute;
  right: clamp(0rem, 2vw, -6px);
  bottom: 0;
  width: 46%;
  border-radius: 14px;
  overflow: hidden;
  border: 5px solid var(--bg);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}

.media-stack__accent img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-stack__badge {
  position: absolute;
  left: -14px;
  top: 26px;
  z-index: 3;
  background: linear-gradient(135deg, #16130C, #0F0F13);
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.media-stack__badge-ic {
  color: var(--gold);
  margin-bottom: 8px;
}

.media-stack__badge-ic .ic {
  width: 22px;
  height: 22px;
}

.media-stack__badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 2px;
}

.media-stack__badge span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.svc-panel {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012));
  padding: clamp(1.75rem, 4vw, 2.75rem);
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.svc-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 166, 89, 0.45);
  box-shadow: var(--shadow);
}

.svc-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.svc-panel:hover::before {
  opacity: 1;
}

.svc-panel__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 1.75rem;
}

.svc-panel__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid var(--gold-line);
  background: rgba(201, 166, 89, 0.08);
  color: var(--gold);
}

.svc-panel__icon .ic {
  width: 26px;
  height: 26px;
}

.svc-panel__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
}

.svc-panel__tag {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.svc-panel__lede {
  color: var(--ink-muted);
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.svc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201, 166, 89, 0.14);
  border: 1px solid var(--gold-line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.9rem;
}

.svc-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11, 11, 13, 0.55);
  padding: 13px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #DAD5CA;
  min-height: 52px;
}

.svc-list__item .ic {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.svc-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.svc-panel__cta .ic {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.svc-panel__cta:hover .ic {
  transform: translateX(4px);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.6vw, 1.75rem);
}

.dest-grid--featured {
  grid-template-columns: repeat(3, 1fr);
}

.dest-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: var(--surface);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.dest-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 166, 89, 0.45);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5), 0 0 24px rgba(201, 166, 89, 0.12);
}

.dest-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.dest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.dest-card:hover .dest-card__media img {
  transform: scale(1.07);
}

.dest-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.05) 40%, rgba(11, 11, 13, 0.75) 100%);
}

.dest-card__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(11, 11, 13, 0.72);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.dest-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.6rem;
}

.dest-card__body::before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  margin-bottom: 1.15rem;
}

.dest-card__name {
  margin-bottom: 0.55rem;
  font-size: 1.34rem;
}

.dest-card__desc {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.dest-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.dest-card__cta .ic {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.dest-card__cta:hover .ic {
  transform: translateX(4px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2.4vw, 1.6rem);
}

.why-card {
  border-radius: var(--radius);
  border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.01));
  padding: clamp(1.6rem, 3vw, 2.1rem);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 166, 89, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.why-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--gold-line);
  background: rgba(201, 166, 89, 0.08);
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.why-card__icon .ic {
  width: 21px;
  height: 21px;
}

.why-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.55rem;
}

.why-card p {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 50% 0%, rgba(201, 166, 89, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(15, 46, 42, 0.14), rgba(17, 26, 51, 0.1)), var(--bg-soft);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-band__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-band__lede {
  color: var(--ink-muted);
  max-width: 54ch;
  margin: 0 auto 2.2rem;
  line-height: 1.8;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-band__phone {
  margin-top: 1.9rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
}

.cta-band__phone .ic {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.cta-band__phone:hover {
  color: var(--gold);
}

.cta-band__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 2rem;
}

.cta-band__rule::before,
.cta-band__rule::after {
  content: "";
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line));
}

.cta-band__rule::after {
  background: linear-gradient(90deg, var(--gold-line), transparent);
}

.cta-band__rule .ic {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.page-lead {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.page-lead .lede {
  margin-inline: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.about-grid .media-stack {
  position: sticky;
  top: 120px;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.mv-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, rgba(201, 166, 89, 0.05), rgba(255, 255, 255, 0.012));
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  overflow: hidden;
}

.mv-card--navy {
  background: linear-gradient(180deg, rgba(17, 26, 51, 0.65), rgba(17, 26, 51, 0.25));
  border-color: rgba(110, 150, 220, 0.2);
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
}

.mv-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--gold-line);
  background: rgba(201, 166, 89, 0.08);
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.mv-card__icon .ic {
  width: 24px;
  height: 24px;
}

.mv-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.mv-card p {
  color: var(--ink-muted);
  line-height: 1.85;
  margin: 0;
}

.commit-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}

.commit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line-soft);
}

.commit-item .ic {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.commit-item span {
  color: #DAD5CA;
  font-weight: 500;
}

.commit-item strong {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 600;
  margin-right: 8px;
}

.svc-section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.svc-section + .svc-section {
  border-top: 1px solid var(--line-soft);
}

.svc-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.svc-section__head .h2 {
  margin-bottom: 0.5rem;
}

.svc-section__head .lede {
  margin: 0;
}

.svc-items {
  border-top: 1px solid var(--line-soft);
}

.svc-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: clamp(14px, 2.4vw, 22px);
  align-items: center;
  padding: 1.35rem 6px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s ease;
}

.svc-item:hover {
  background: linear-gradient(90deg, rgba(201, 166, 89, 0.05), transparent);
}

.svc-item__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--gold-line);
  background: rgba(201, 166, 89, 0.07);
  color: var(--gold);
}

.svc-item__icon .ic {
  width: 23px;
  height: 23px;
}

.svc-item__title {
  margin: 0 0 0.25rem;
  font-size: 1.12rem;
}

.svc-item__desc {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 60ch;
}

.svc-item__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.svc-item__link .ic {
  width: 13px;
  height: 13px;
  transition: transform 0.3s ease;
}

.svc-item__link:hover .ic {
  transform: translateX(4px);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.1rem, 2.4vw, 1.6rem);
}

.process__step {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--gold-line);
  background: rgba(255, 255, 255, 0.018);
}

.process__num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  background: rgba(11, 11, 13, 0.6);
}

.process__step h3 {
  font-size: 1.06rem;
  margin-bottom: 0.5rem;
}

.process__step p {
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.process__arrow {
  position: absolute;
  top: 50%;
  right: -1.2rem;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gold);
  z-index: 2;
  display: none;
}

.dest-grid--international .dest-card__cat {
  border-color: rgba(228, 201, 137, 0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
}

.info-card {
  border-radius: var(--radius);
  border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
}

.info-card + .info-card {
  margin-top: 1.4rem;
}

.info-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.info-card__title .ic {
  width: 19px;
  height: 19px;
  color: var(--gold);
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-list__ic {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 11px;
  border: 1px solid var(--gold-line);
  background: rgba(201, 166, 89, 0.07);
  color: var(--gold);
}

.info-list__ic .ic {
  width: 18px;
  height: 18px;
}

.info-list__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 600;
}

.info-list__value {
  display: block;
  color: #DDD8CD;
  font-weight: 600;
  font-size: 0.98rem;
}

.info-list__item a.info-list__value:hover {
  color: var(--gold-bright);
}

.social--contact {
  gap: 10px;
}

.social--contact .social__link {
  width: 42px;
  height: 42px;
}

.social--contact .social__link .ic {
  width: 17px;
  height: 17px;
}

.form-card {
  border-radius: var(--radius);
  border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, rgba(201, 166, 89, 0.05), rgba(255, 255, 255, 0.014));
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.form-card__title {
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  margin-bottom: 0.4rem;
}

.form-card__lede {
  color: var(--ink-muted);
  margin-bottom: 1.8rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

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

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

.form__group {
  display: grid;
  gap: 8px;
}

.form__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.field,
.field select,
select.field {
  width: 100%;
  background: rgba(11, 11, 13, 0.6);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 14px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.field::placeholder {
  color: var(--ink-dim);
}

.field:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 166, 89, 0.16);
}

select.field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A659' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 44px;
}

select.field option {
  background: var(--surface);
  color: var(--ink);
}

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

.form__submit {
  margin-top: 4px;
  width: 100%;
}

.form__note {
  font-size: 0.8rem;
  color: var(--ink-dim);
  text-align: center;
  margin: 0;
}

.form-success {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 2vw, 2rem);
  display: grid;
  gap: 14px;
  justify-items: center;
}

.form-success__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: rgba(201, 166, 89, 0.1);
  color: var(--gold);
}

.form-success__icon .ic {
  width: 28px;
  height: 28px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin: 0;
}

.form-success p {
  color: var(--ink-muted);
  max-width: 40ch;
  margin: 0;
}

.form-success a {
  margin-top: 10px;
}

.is-hidden {
  display: none !important;
}

.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.92) hue-rotate(185deg) saturate(0.6) brightness(0.9);
}

.map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(201, 166, 89, 0.2);
  border-radius: var(--radius);
}

.map-note {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 11, 13, 0.82);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.map-note .ic {
  width: 14px;
  height: 14px;
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #34373B, #292B2E);
  border-top: 1px solid rgba(201, 166, 89, 0.16);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr;
  gap: clamp(2rem, 4.5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 1.2rem;
}

.footer__lede {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 34ch;
  margin-bottom: 1.4rem;
}

.footer__title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.3rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.footer__links {
  display: grid;
  gap: 0.75rem;
}

.footer__link {
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer__link:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer__link--icon {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-left: 0;
}

.footer__link--icon:hover {
  padding-left: 0;
  color: var(--gold);
}

.footer__link--icon .ic {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex: 0 0 auto;
}

.footer__link--text {
  cursor: default;
}

.footer__link--text:hover {
  color: #FFFFFF;
}

.footer__bottom {
  border-top: 1px solid var(--line-soft);
  padding-block: 1.4rem;
}

.footer__bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--ink-dim);
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: rgba(11, 11, 13, 0.85);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, box-shadow 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(8px);
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: rgba(201, 166, 89, 0.14);
  box-shadow: 0 0 24px rgba(201, 166, 89, 0.4);
}

.back-top .ic {
  width: 18px;
  height: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease-out, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .dest-grid,
  .dest-grid--featured {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .footer__col--contact {
    grid-column: 2 / -1;
  }

  .about-grid .media-stack {
    position: static;
  }
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(41, 43, 46, 0.98);
    border-bottom: 1px solid var(--gold-line);
    padding: 1.4rem clamp(1.25rem, 4vw, 2.5rem) 1.8rem;
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-bottom: 1.4rem;
  }

  .nav__link {
    display: block;
    padding: 13px 4px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav__cta {
    width: 100%;
  }

  .nav-toggle {
    display: grid;
  }

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

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

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

  .intro__grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro__copy {
    order: -1;
  }

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

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

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

  .hero__inner {
    padding-top: clamp(5rem, 12vw, 7rem);
  }

  .topbar__item--loc {
    display: none;
  }
}

@media (max-width: 640px) {
  .dest-grid,
  .dest-grid--featured,
  .why-grid,
  .mv-grid,
  .process__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer__col--contact {
    grid-column: auto;
  }

  .hero__cta,
  .cta-band__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .svc-item {
    grid-template-columns: 48px 1fr;
  }

  .svc-item__link {
    grid-column: 2;
    justify-self: start;
  }

  .svc-item__icon {
    width: 48px;
    height: 48px;
  }

  .topbar__meta {
    display: none;
  }

  .topbar__inner {
    justify-content: flex-end;
  }

  .media-stack__badge {
    left: 4px;
    top: 14px;
    padding: 12px 14px;
  }

  .cta-band__rule {
    display: none;
  }

  .footer__bottom__inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 440px) {
  .brand__sub {
    letter-spacing: 0.3em;
  }

  .hero__title {
    font-size: 2.35rem;
  }
}
