:root {
  --navy: #0d2033;
  --navy-soft: #16314d;
  --ink: #11263a;
  --gold: #b17c47;
  --gold-soft: #d7bc9b;
  --sand: #f4ede4;
  --sand-deep: #eadfce;
  --paper: #fbf8f4;
  --mist: #eef3f6;
  --white: #ffffff;
  --line: rgba(17, 38, 58, 0.12);
  --shadow-lg: 0 28px 90px rgba(13, 32, 51, 0.18);
  --shadow-md: 0 18px 45px rgba(13, 32, 51, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(177, 124, 71, 0.08), transparent 25%),
    linear-gradient(180deg, #fcfaf7 0%, #f7f1ea 100%);
  overflow-x: hidden;
}

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

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

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

.page-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 10%, rgba(177, 124, 71, 0.12), transparent 28%),
    radial-gradient(circle at 20% 60%, rgba(13, 32, 51, 0.05), transparent 24%);
  z-index: -1;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(251, 248, 244, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(251, 248, 244, 0.94);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(13, 32, 51, 0.08);
}

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

.brand img {
  width: auto;
  max-width: min(300px, 100%);
  height: clamp(34px, 4vw, 50px);
  object-fit: contain;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(17, 38, 58, 0.82);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

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

.header-cta,
.mobile-menu-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.mobile-menu-cta {
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--navy);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
}

.mobile-menu {
  display: none;
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
  background: rgba(251, 248, 244, 0.98);
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(17, 38, 58, 0.08);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: clip;
}

.hero-backdrop,
.hero-backdrop img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 23, 37, 0.92) 0%, rgba(10, 28, 45, 0.84) 35%, rgba(10, 28, 45, 0.24) 72%, rgba(10, 28, 45, 0.10) 100%),
    radial-gradient(circle at 28% 38%, rgba(177, 124, 71, 0.18), transparent 25%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 360px);
  gap: 48px;
  align-items: end;
  min-height: calc(100vh - 86px);
  padding: 110px 0 72px;
}

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

.hero-topline,
.section-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-topline {
  color: rgba(215, 188, 155, 0.94);
  margin-bottom: 20px;
}

.hero-mark {
  width: 108px;
  margin-bottom: 28px;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.18));
}

.hero h1,
.section-heading h2,
.statement-copy h2,
.tour-card h2,
.map-card h2,
.contact-copy h2,
.plan-copy h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 6.4vw, 82px);
  max-width: 920px;
  text-wrap: balance;
  line-height: 0.96;
}

.hero p {
  margin: 28px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.68;
}

.hero p strong {
  color: var(--white);
  font-weight: 800;
}

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

.button {
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(177, 124, 71, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-panel-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(10, 24, 38, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero-panel-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(215, 188, 155, 0.96);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
}

.hero-panel-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.62;
}

.trust-bar {
  position: relative;
  z-index: 4;
  margin-top: -30px;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.trust-items span {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 38, 58, 0.08);
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--gold);
}

.section-heading h2,
.statement-copy h2,
.tour-card h2,
.map-card h2,
.contact-copy h2,
.plan-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 56px);
  color: var(--navy);
  line-height: 0.98;
}

.section-heading p,
.statement-copy p,
.tour-card p,
.map-card p,
.contact-copy p,
.plan-copy p,
.video-copy p,
.differential-card li,
.offer li,
.contact-box p {
  color: rgba(17, 38, 58, 0.76);
  line-height: 1.72;
  font-size: 16px;
}

.statement-grid,
.plan-grid,
.immersion-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 40px;
  align-items: center;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-pills span {
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(17, 38, 58, 0.1);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 700;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.mosaic-card.tall {
  grid-row: span 2;
  min-height: 520px;
}

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

.mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(13, 32, 51, 0.66) 100%);
}

.mosaic-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.differentials-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(177, 124, 71, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.72) 100%);
}

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

.differential-card,
.video-card,
.tour-card,
.map-card,
.contact-form,
.contact-box,
.plan-visual,
.plan-point {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 38, 58, 0.08);
  box-shadow: var(--shadow-md);
}

.differential-card,
.tour-card,
.map-card,
.contact-form {
  border-radius: var(--radius-xl);
}

.differential-card {
  padding: 26px 26px 24px;
}

.differential-index {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, #c49261 100%);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.differential-card h3,
.video-copy h3,
.plan-point strong {
  margin: 0 0 10px;
  font-size: 24px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
}

.differential-card ul,
.plan-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.differential-card li,
.plan-point span,
.footer-brand p {
  position: relative;
  padding-left: 18px;
}

.differential-card li + li {
  margin-top: 12px;
}

.differential-card li::before,
.plan-point span::before,
.contact-form label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.video-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.video-embed {
  overflow: hidden;
  background: #000;
}

.video-embed iframe,
.video-embed video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

.video-copy {
  padding: 22px 24px 26px;
}

.plan-visual {
  border-radius: 32px;
  padding: 16px;
}

.plan-visual img {
  width: 100%;
  border-radius: 22px;
}

.plan-points {
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
}

.plan-point {
  border-radius: 20px;
  padding: 18px 18px 18px 20px;
}

.plan-point strong {
  display: block;
}

.plan-point span {
  display: block;
  padding-left: 18px;
  color: rgba(17, 38, 58, 0.72);
}

.tour-card,
.map-card {
  padding: 28px;
}

.tour-cover {
  position: relative;
  display: block;
  margin-top: 22px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tour-cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tour-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 32, 51, 0.08) 0%, rgba(13, 32, 51, 0.7) 100%);
}

.tour-cover span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-frame {
  overflow: hidden;
  border-radius: 24px;
  margin-top: 20px;
  box-shadow: var(--shadow-md);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.inline-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 700;
}

.contact-grid {
  align-items: start;
}

.contact-box {
  margin-top: 28px;
  padding: 24px;
  border-radius: 26px;
}

.contact-box span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-number {
  display: inline-block;
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1;
  color: var(--navy);
}

.contact-form {
  padding: 28px;
}

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

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row label::before {
  display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(17, 38, 58, 0.12);
  background: #fffdfb;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(177, 124, 71, 0.9);
  box-shadow: 0 0 0 4px rgba(177, 124, 71, 0.12);
}

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

.form-feedback {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0 54px;
  background: linear-gradient(180deg, rgba(13, 32, 51, 0.96) 0%, rgba(9, 22, 35, 0.98) 100%);
  color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-brand img {
  width: auto;
  max-width: min(300px, 100%);
  height: clamp(58px, 7vw, 84px);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-brand p {
  max-width: 520px;
  margin: 14px 0 0;
  padding-left: 0;
}

.footer-signature {
  display: inline-flex;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-brand p::before {
  display: none;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  padding: 16px 20px;
  border-radius: 999px;
  background: #1fb267;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(31, 178, 103, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

@media (max-width: 1120px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .statement-grid,
  .plan-grid,
  .immersion-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
    align-items: end;
    padding-top: 86px;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .differential-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-inner {
    min-height: 78px;
    gap: 8px;
    justify-content: space-between;
  }

  .brand img {
    height: 32px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: 0;
  }

  .hero-grid {
    padding: 74px 0 44px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions,
  .feature-pills,
  .footer-inner,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

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

  .trust-bar {
    margin-top: -16px;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

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

  .mosaic-card.tall {
    min-height: 380px;
  }

  .mosaic-card {
    min-height: 220px;
  }

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

  .contact-form,
  .tour-card,
  .map-card {
    padding: 22px;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
  }
}
