:root {
  --forest: #0d2b1e;
  --forest-mid: #163828;
  --forest-light: #1f4d38;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --ivory: #f5f0e8;
  --ivory-dim: rgba(245, 240, 232, 0.66);
  --ivory-soft: rgba(245, 240, 232, 0.1);
  --ink: #071910;
  --line: rgba(201, 168, 76, 0.24);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--forest);
  color: var(--ivory);
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--forest);
  padding: 10px 14px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

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

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px 54px;
  background: linear-gradient(to bottom, rgba(13, 43, 30, 0.96), rgba(13, 43, 30, 0.1));
  transition: background 0.28s ease, padding 0.28s ease, border-color 0.28s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  padding-block: 16px;
  background: rgba(13, 43, 30, 0.96);
  border-bottom-color: rgba(201, 168, 76, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
}

.brand-text,
.footer-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav-links a,
.nav-link-button {
  border: 0;
  background: transparent;
  color: rgba(245, 240, 232, 0.68);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-link-button:hover {
  color: var(--gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-whatsapp {
  border: 1px solid rgba(201, 168, 76, 0.42);
  background: rgba(201, 168, 76, 0.1);
  color: var(--ivory);
  cursor: pointer;
  padding: 11px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-whatsapp:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: clamp(90px, 11vh, 140px);
}

.hero-video,
.hero-overlay,
.hero-texture {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 80% 20%, rgba(226, 201, 126, 0.13), transparent 33%),
    linear-gradient(90deg, rgba(13, 43, 30, 0.92), rgba(13, 43, 30, 0.58) 48%, rgba(5, 18, 12, 0.34)),
    linear-gradient(to top, rgba(13, 43, 30, 0.88), transparent 45%);
}

.hero-texture {
  opacity: 0.58;
  background-image: linear-gradient(rgba(245, 240, 232, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 240, 232, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8vw;
  right: 8vw;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(980px, calc(100% - 48px));
  margin-left: clamp(24px, 7vw, 86px);
  padding-top: 84px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
}

.hero h1 {
  max-width: 850px;
  color: var(--ivory);
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.96;
}

em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  max-width: 660px;
  margin-top: 30px;
  color: rgba(245, 240, 232, 0.76);
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
}

.hero-ctas,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  cursor: pointer;
  padding: 15px 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--forest);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-ghost {
  border: 1px solid rgba(201, 168, 76, 0.42);
  background: rgba(13, 43, 30, 0.22);
  color: var(--ivory);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-meta {
  display: grid;
  width: min(720px, 100%);
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  margin-top: 34px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(13, 43, 30, 0.62);
  backdrop-filter: blur(18px);
}

.hero-meta div {
  padding: 20px 22px;
  border-left: 1px solid rgba(201, 168, 76, 0.16);
}

.hero-meta div:first-child {
  border-left: 0;
}

.hero-meta span {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 240, 232, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-meta strong {
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.scroll-hint {
  position: absolute;
  left: clamp(24px, 7vw, 86px);
  bottom: 46px;
  z-index: 3;
  color: rgba(245, 240, 232, 0.56);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(82px, 9vw, 136px) clamp(24px, 6vw, 72px);
}

.section-grid {
  display: grid;
  max-width: 1240px;
  margin: 0 auto;
  gap: clamp(38px, 6vw, 82px);
}

.two-col {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
}

.image-panel {
  position: relative;
  height: clamp(520px, 52vw, 700px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.image-panel img {
  position: absolute;
  inset: 0;
}

.image-panel img,
.tier-media img,
.season-card img,
.signature-card img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.image-panel:hover img,
.tier-card:hover img,
.season-card:hover img,
.signature-card:hover img,
.gallery figure:hover img {
  transform: scale(1.045);
}

.image-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(13, 43, 30, 0.76);
  border: 1px solid rgba(201, 168, 76, 0.26);
  color: var(--gold-light);
  padding: 12px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.copy-panel h2,
.section-head h2,
.trust-copy h2,
.contact-copy h2 {
  margin-top: 18px;
  color: var(--ivory);
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.05;
}

.copy-panel p,
.section-head p:not(.section-label),
.trust-copy p,
.contact-copy p {
  margin-top: 24px;
  color: var(--ivory-dim);
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
}

.quiet-proof {
  display: grid;
  gap: 2px;
  margin-top: 36px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.quiet-proof span {
  display: block;
  background: rgba(245, 240, 232, 0.045);
  color: rgba(245, 240, 232, 0.78);
  padding: 17px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.arrangement,
.tiers,
.signatures,
.faq {
  background: var(--forest-mid);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

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

.arrange-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 76, 0.16);
}

.arrange-card {
  min-height: 280px;
  padding: clamp(28px, 3.4vw, 46px);
  background: rgba(13, 43, 30, 0.54);
  border-right: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: background 0.25s ease;
}

.arrange-card:hover {
  background: var(--forest-light);
}

.arrange-card span,
.step span {
  color: rgba(201, 168, 76, 0.24);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 58px;
  line-height: 1;
}

.arrange-card h3,
.tier-card h3,
.season-card h3,
.signature-card h3,
.step h3 {
  margin-top: 24px;
  color: var(--ivory);
  font-size: 31px;
  line-height: 1.12;
}

.arrange-card p,
.tier-card p,
.season-card p,
.signature-card p,
.step p,
.service-note,
.trust-point span,
.faq p,
.modal-sub,
.legal {
  color: var(--ivory-dim);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
}

.arrange-card p {
  margin-top: 18px;
}

.media-band {
  position: relative;
  min-height: 58vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 43, 30, 0.86), rgba(13, 43, 30, 0.34)),
    url("https://images.unsplash.com/photo-1445308394109-4ec2920981b1?auto=format&fit=crop&w=1800&q=82") center/cover fixed;
}

.band-copy {
  width: min(900px, calc(100% - 48px));
}

.band-copy h2 {
  margin-top: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 300;
  line-height: 1;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1260px;
  margin: 0 auto;
  gap: 20px;
}

.tier-card {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(13, 43, 30, 0.46);
  overflow: hidden;
}

.tier-card.featured {
  background: rgba(31, 77, 56, 0.62);
}

.tier-media {
  height: 270px;
  overflow: hidden;
}

.tier-card > .section-label,
.tier-card h3,
.tier-card p,
.tier-card button {
  margin-left: 30px;
  margin-right: 30px;
}

.tier-card > .section-label {
  margin-top: 30px;
}

.tier-card p {
  margin-top: 18px;
  flex: 1;
}

.tier-card button,
.submit-btn {
  border: 1px solid rgba(201, 168, 76, 0.38);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
  cursor: pointer;
  margin-top: 28px;
  margin-bottom: 30px;
  padding: 14px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.tier-card button:hover,
.submit-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest);
}

.service-note {
  max-width: 940px;
  margin: 32px auto 0;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(245, 240, 232, 0.045);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1240px;
  margin: 0 auto;
  gap: 20px;
}

.season-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(245, 240, 232, 0.045);
}

.season-card div {
  padding: 30px;
}

.season-card span,
.signature-card span,
.destination-list span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.season-card h3,
.signature-card h3 {
  margin-top: 14px;
}

.season-card p,
.signature-card p {
  margin-top: 16px;
}

.destinations {
  background: linear-gradient(180deg, var(--forest), #092016);
}

.dest-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  align-items: center;
}

.destination-list {
  display: grid;
  border: 1px solid rgba(201, 168, 76, 0.16);
}

.destination-list div {
  padding: 28px 30px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(245, 240, 232, 0.045);
}

.destination-list div:last-child {
  border-bottom: 0;
}

.destination-list p {
  margin-top: 12px;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.24;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1260px;
  margin: 0 auto;
  gap: 20px;
}

.signature-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: var(--forest);
}

.signature-card.large {
  grid-column: span 2;
}

.signature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 18, 12, 0.9), rgba(5, 18, 12, 0.05) 62%);
}

.signature-card div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
}

.way {
  background: var(--forest);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  border-left: 1px solid rgba(201, 168, 76, 0.18);
}

.step {
  min-height: 340px;
  padding: 34px 28px;
  border-right: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.step h3 {
  font-size: 29px;
}

.step p {
  margin-top: 18px;
}

.trust {
  background:
    linear-gradient(90deg, rgba(13, 43, 30, 0.94), rgba(13, 43, 30, 0.74)),
    url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.trust-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  align-items: center;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: rgba(201, 168, 76, 0.14);
}

.trust-point {
  min-height: 180px;
  background: rgba(13, 43, 30, 0.78);
  padding: 28px;
}

.trust-point strong {
  display: block;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

.trust-point span {
  display: block;
  margin-top: 14px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1260px;
  margin: 0 auto;
  gap: 18px;
}

.gallery figure {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.14);
}

.gallery .tall {
  grid-row: span 2;
  min-height: 580px;
}

.gallery .wide {
  grid-column: span 2;
}

.gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--ivory);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 18, 12, 0.7), transparent 52%);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.faq details {
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  padding: 26px 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
}

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

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
}

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

.faq p {
  max-width: 720px;
  margin-top: 16px;
}

.contact {
  background:
    radial-gradient(circle at 10% 10%, rgba(201, 168, 76, 0.12), transparent 32%),
    var(--forest);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  max-width: 1260px;
  margin: 0 auto;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.text-link {
  align-self: center;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-decoration: none;
}

.form-shell {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(245, 240, 232, 0.055);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

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

label {
  display: block;
  margin-bottom: 18px;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 0;
  outline: 0;
  background: rgba(13, 43, 30, 0.58);
  color: var(--ivory);
  padding: 15px 16px;
  font-size: 14px;
  font-weight: 300;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-inline-end: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
  cursor: pointer;
}

html[dir="rtl"] select {
  background-position: left 16px center;
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 240, 232, 0.34);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.botcheck,
.submit-loading,
.form-error,
.form-success {
  display: none;
}

.submit-btn {
  width: 100%;
  margin: 4px 0 0;
  min-height: 52px;
}

.submit-btn.loading .submit-text {
  display: none;
}

.submit-btn.loading .submit-loading {
  display: inline;
}

.form-error {
  margin-top: 16px;
  color: #ffc8c8;
  font-size: 13px;
  line-height: 1.7;
}

.form-success {
  text-align: center;
  padding: 66px 20px;
}

.form-success span {
  display: block;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
}

.form-success p {
  margin-top: 12px;
  color: var(--ivory-dim);
  line-height: 1.8;
}

.site-footer {
  padding: 64px 24px 90px;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  background: #071910;
  text-align: center;
}

.footer-logo {
  color: var(--ivory);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin: 24px 0 20px;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 4px 0 26px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: 50%;
  color: var(--gold-light, #e2c97e);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--ivory);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer p {
  color: rgba(245, 240, 232, 0.42);
  font-size: 12px;
  line-height: 1.8;
}

.legal {
  max-width: 780px;
  margin: 22px auto 0;
  color: rgba(245, 240, 232, 0.32);
  font-size: 10px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(3, 12, 8, 0.72);
  backdrop-filter: blur(14px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100svh - 44px));
  overflow: auto;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: var(--forest);
  padding: clamp(28px, 5vw, 46px);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal h2 {
  margin-top: 16px;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.04;
}

.modal-sub {
  margin-top: 16px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(245, 240, 232, 0.045);
  padding: 14px;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-card:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.contact-card img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.contact-card strong {
  display: block;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.contact-card small {
  display: block;
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mobile-bar {
  display: none;
}

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

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

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

  .hero-video {
    display: none;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(13, 43, 30, 0.92), rgba(13, 43, 30, 0.58)),
      url("https://uvxkbqrjelmdbcszcjmi.supabase.co/storage/v1/object/public/videos/elvania-hero-poster.jpg") center/cover;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    padding-inline: 28px;
    grid-template-columns: auto auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(201, 168, 76, 0.24);
    background: rgba(13, 43, 30, 0.38);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--ivory);
  }

  .site-nav.menu-open {
    background: rgba(7, 25, 16, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    padding-bottom: 24px;
  }

  .site-nav.menu-open .nav-links,
  .site-nav.menu-open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-nav.menu-open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 14px;
    gap: 16px;
  }

  .site-nav.menu-open .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin-top: 18px;
  }

  .site-nav.menu-open .nav-link-button,
  .site-nav.menu-open .nav-whatsapp {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(201, 168, 76, 0.42);
    background: rgba(201, 168, 76, 0.1);
    color: var(--ivory);
    text-align: center;
  }

  .scroll-hint {
    display: none;
  }

  .two-col,
  .dest-grid,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-grid {
    gap: 38px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    padding: 16px 18px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .brand-text {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .hero {
    align-items: flex-start;
    min-height: 100svh;
    padding-top: 120px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 74px);
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-ctas {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
  }

  .hero-meta {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-meta div {
    border-left: 0;
    border-top: 1px solid rgba(201, 168, 76, 0.16);
  }

  .hero-meta div:first-child {
    border-top: 0;
  }

  .section {
    padding: 76px 18px;
  }

  .image-panel {
    height: 420px;
    min-height: 0;
  }

  .copy-panel h2,
  .section-head h2,
  .trust-copy h2,
  .contact-copy h2 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .section-head {
    text-align: left;
  }

  .arrange-grid,
  .tier-grid,
  .season-grid,
  .signature-grid,
  .steps,
  .trust-points,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .arrange-card,
  .step {
    min-height: auto;
  }

  .tier-card {
    min-height: auto;
  }

  .season-card {
    grid-template-columns: 1fr;
  }

  .season-card img {
    height: 240px;
  }

  .signature-card.large,
  .gallery .wide,
  .gallery .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .signature-card,
  .gallery figure,
  .gallery .tall {
    min-height: 370px;
  }

  .media-band {
    min-height: 50vh;
    background-attachment: scroll;
  }

  .destination-list p {
    font-size: 27px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .form-shell {
    padding: 22px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(201, 168, 76, 0.22);
    background: rgba(13, 43, 30, 0.96);
    backdrop-filter: blur(16px);
  }

  .mobile-bar button {
    min-height: 58px;
    border: 0;
    border-right: 1px solid rgba(201, 168, 76, 0.16);
    background: transparent;
    color: var(--gold-light);
    cursor: pointer;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
}
