:root {
  --ink: #13243f;
  --navy: #12355f;
  --navy-2: #0b274a;
  --blue: #476f9f;
  --steel: #8599bd;
  --sky: #edf3f8;
  --gold: #e9ad2a;
  --gold-soft: #f7e6b6;
  --teal: #278e8d;
  --cream: #f7f3ec;
  --paper: #fffdf9;
  --line: #dfe6ed;
  --muted: #627083;
  --white: #ffffff;
  --danger: #b13a45;
  --shadow: 0 18px 50px rgba(18, 53, 95, .12);
  --shadow-sm: 0 10px 28px rgba(18, 53, 95, .09);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.7rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); letter-spacing: -.04em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -.02em; }
p { color: var(--muted); }

.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 3000;
  transform: translateY(-150%); padding: 10px 16px;
  border-radius: 8px; color: var(--white); background: var(--navy);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 850px); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-cream { background: var(--cream); }
.section-blue { color: var(--white); background: var(--navy); }
.section-blue h2, .section-blue h3, .section-blue p { color: var(--white); }
.section-sky { background: var(--sky); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
  color: var(--teal); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { width: 36px; height: 2px; content: ""; background: currentColor; }
.eyebrow.light { color: #d8e5f3; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading p { max-width: 680px; margin-bottom: 0; font-size: 1.05rem; }
.section-heading.center p { margin-inline: auto; }
.kicker { color: var(--gold); font-size: .82rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(18,53,95,.18); }
.btn-primary { color: var(--white); background: var(--navy); }
.btn-gold { color: var(--navy-2); background: var(--gold); }
.btn-light { color: var(--navy); background: var(--white); }
.btn-outline { color: var(--navy); border-color: var(--navy); background: transparent; }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.04); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.text-link { color: var(--navy); font-weight: 800; }
.text-link::after { margin-left: 8px; content: "→"; transition: margin .2s ease; }
.text-link:hover::after { margin-left: 12px; }

/* Header */
.site-header { position: relative; z-index: 1000; background: var(--white); box-shadow: 0 4px 24px rgba(18,53,95,.08); }
.topbar { color: var(--white); background: var(--steel); font-size: .86rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 24px; }
.topbar-group { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.topbar a { opacity: .96; }
.topbar a:hover { opacity: 1; text-decoration: underline; }
.social-links { display: flex; gap: 8px; }
.social-links a {
  display: grid; place-items: center; width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,.42); border-radius: 50%; font-size: .68rem; font-weight: 800;
}
.navbar { min-height: 96px; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 96px; gap: 28px; }
.brand { display: flex; align-items: center; min-width: 235px; gap: 12px; }
.brand img { width: 64px; height: 64px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { color: var(--navy); font-size: 1.08rem; letter-spacing: .04em; }
.brand-copy span { margin-top: 6px; color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; flex: 1; gap: 2px; }
.nav-link, .nav-button {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 13px;
  border: 0; border-radius: 999px; color: #35465d; background: transparent; font-size: .91rem; font-weight: 680;
}
.nav-link:hover, .nav-button:hover, .nav-link.active { color: var(--navy); background: var(--sky); }
.nav-item { position: relative; }
.nav-button::after { margin-left: 7px; content: "⌄"; font-size: .9rem; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 0; width: 250px; padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px); border: 1px solid var(--line); border-radius: 16px;
  background: var(--white); box-shadow: var(--shadow-sm); transition: .18s ease;
}
.dropdown::before { position: absolute; top: -14px; left: 0; width: 100%; height: 16px; content: ""; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 13px; border-radius: 10px; color: #42516a; font-size: .9rem; font-weight: 650; }
.dropdown a:hover { color: var(--navy); background: var(--sky); }
.header-cta { margin-left: 8px; white-space: nowrap; }
.menu-toggle {
  position: relative; z-index: 1200; display: none; width: 48px; height: 48px; border: 0; border-radius: 12px; color: var(--navy); background: var(--sky); font-size: 1.4rem;
}

/* Home hero */
.hero {
  position: relative; display: grid; align-items: end; min-height: 720px; overflow: hidden;
  background: #1c3554 url('/static/images/anxing/hero-lion.jpg') center 43% / cover no-repeat;
}
.hero::before { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(7,26,51,.88) 0%, rgba(11,39,74,.58) 50%, rgba(11,39,74,.12) 100%); }
.hero::after { position: absolute; right: 5vw; top: 5vw; width: 280px; height: 280px; content: ""; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.hero-content { position: relative; z-index: 1; max-width: 790px; padding: 110px 0 90px; }
.hero h1 { margin-bottom: 24px; color: var(--white); }
.hero p { max-width: 720px; margin-bottom: 34px; color: #e8eef5; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero .eyebrow { color: #f7ce68; }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 34px; color: #e8eef5; font-size: .9rem; }
.hero-note span { width: 38px; height: 1px; background: rgba(255,255,255,.58); }

.stats-band { position: relative; z-index: 4; margin-top: -52px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.stat { padding: 28px 30px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1; }
.stat span { display: block; margin-top: 9px; color: var(--muted); font-size: .82rem; font-weight: 700; }

.offer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.offer-card { position: relative; min-height: 335px; overflow: hidden; border-radius: 180px 180px 22px 22px; background: var(--navy); box-shadow: var(--shadow-sm); }
.offer-card img { width: 100%; height: 100%; min-height: 335px; object-fit: cover; transition: transform .45s ease; }
.offer-card:hover img { transform: scale(1.05); }
.offer-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(5,25,49,.92) 0%, rgba(5,25,49,.05) 66%); }
.offer-copy { position: absolute; z-index: 1; right: 20px; bottom: 20px; left: 20px; }
.offer-copy b { display: block; color: var(--white); font-size: 1.08rem; }
.offer-copy span { color: #dce6f0; font-size: .82rem; }

.operations { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; gap: 52px; }
.operations-media { min-height: 620px; overflow: hidden; border-radius: var(--radius); }
.operations-media img { width: 100%; height: 100%; object-fit: cover; }
.operations-list { display: grid; align-content: center; }
.operation-item { display: grid; grid-template-columns: 62px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.operation-item:last-child { border-bottom: 0; }
.operation-number { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; color: var(--white); background: var(--navy); font-weight: 850; }
.operation-item h3 { margin: 2px 0 8px; }
.operation-item p { margin-bottom: 0; font-size: .94rem; }

.special-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; overflow: hidden; border-radius: 32px; box-shadow: var(--shadow); }
.special-image { min-height: 520px; background: url('/static/images/anxing/snow-window.jpg') center/cover no-repeat; }
.special-copy { display: grid; align-content: center; padding: 64px; color: var(--white); background: var(--navy); }
.special-copy h2, .special-copy p { color: var(--white); }
.special-copy p { color: #d8e2ee; }
.check-list { display: grid; gap: 15px; margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 27px 1fr; gap: 12px; color: #eef4fa; }
.check-list li::before { display: grid; place-items: center; width: 24px; height: 24px; content: "✓"; border-radius: 50%; color: var(--navy); background: var(--gold); font-weight: 900; }

.destination-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.destination-card { position: relative; min-height: 260px; overflow: hidden; border-radius: 18px; background: var(--navy); box-shadow: var(--shadow-sm); }
.destination-card.large { grid-column: span 2; min-height: 300px; }
.destination-card img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transition: transform .45s ease; }
.destination-card:hover img { transform: scale(1.045); }
.destination-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(4,22,43,.88), rgba(4,22,43,0) 62%); }
.destination-meta { position: absolute; z-index: 1; right: 18px; bottom: 17px; left: 18px; display: flex; align-items: end; justify-content: space-between; }
.destination-meta strong { color: var(--white); font-size: 1.15rem; }
.destination-meta span { color: #d9e5ef; font-size: .8rem; }
.round-arrow { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: var(--white); }

.cta-panel { display: grid; grid-template-columns: 1.2fr auto; align-items: center; gap: 36px; padding: 52px 58px; border-radius: var(--radius); color: var(--white); background: linear-gradient(125deg,var(--navy),#315f92); box-shadow: var(--shadow); }
.cta-panel h2 { margin-bottom: 12px; color: var(--white); }
.cta-panel p { max-width: 700px; margin-bottom: 0; color: #d8e5f0; }

/* Shared inner pages */
.page-hero { position: relative; display: grid; align-items: end; min-height: 500px; overflow: hidden; background: var(--navy); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg,rgba(6,28,55,.9),rgba(6,28,55,.22)); }
.page-hero-content { position: relative; z-index: 1; max-width: 810px; padding: 110px 0 68px; }
.page-hero h1 { margin-bottom: 18px; color: var(--white); }
.page-hero p { max-width: 700px; margin-bottom: 0; color: #e3ebf3; font-size: 1.08rem; }
.breadcrumbs { margin-bottom: 20px; color: #d2deea; font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.breadcrumbs a { color: #f3cb68; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; }
.split.reverse .split-media { order: 2; }
.split-media { min-height: 460px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.split-media img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.split-copy p:last-child { margin-bottom: 0; }
.quote-line { padding: 22px 0 0 24px; border-left: 3px solid var(--gold); color: var(--navy); font-size: 1.2rem; font-weight: 750; }
.mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 30px; }
.mini-stat { padding: 18px; border-radius: 14px; background: var(--sky); }
.mini-stat strong { display: block; color: var(--navy); font-size: 1.5rem; }
.mini-stat span { color: var(--muted); font-size: .78rem; font-weight: 650; }
.image-card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.image-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.image-card img { width: 100%; height: auto; }
.image-card.full { grid-column: 1 / -1; }

/* Trip cards and category pages */
.category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.category-card { position: relative; min-height: 310px; overflow: hidden; border-radius: 20px; box-shadow: var(--shadow-sm); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.category-card:hover img { transform: scale(1.04); }
.category-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg,rgba(7,28,55,.93),rgba(7,28,55,.05)); }
.category-card-copy { position: absolute; z-index: 1; right: 22px; bottom: 22px; left: 22px; }
.category-card-copy span { color: var(--gold); font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.category-card-copy h3 { margin: 8px 0 0; color: var(--white); }
.trip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.trip-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.trip-card-media { position: relative; height: 245px; overflow: hidden; }
.trip-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.trip-card:hover .trip-card-media img { transform: scale(1.04); }
.trip-tag { position: absolute; top: 15px; left: 15px; padding: 6px 11px; border-radius: 999px; color: var(--navy); background: var(--gold); font-size: .7rem; font-weight: 850; }
.trip-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.trip-card h3 { margin-bottom: 12px; font-size: 1.18rem; }
.trip-card p { margin-bottom: 22px; font-size: .9rem; }
.trip-facts { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; font-weight: 700; }
.trip-price { display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-top: 18px; }
.trip-price strong { color: var(--navy); font-size: 1.45rem; }
.trip-price small { color: var(--muted); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-chip { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--white); font-weight: 700; }
.filter-chip.active { color: var(--white); border-color: var(--navy); background: var(--navy); }

/* Trip detail */
.detail-hero { padding: 72px 0; background: linear-gradient(135deg,var(--navy-2),var(--blue)); }
.detail-hero-grid { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 44px; }
.detail-hero h1 { margin-bottom: 20px; color: var(--white); font-size: clamp(2.3rem,5vw,4.6rem); }
.detail-hero p { color: #e0e9f2; }
.duration-badge { display: grid; place-items: center; width: 150px; height: 150px; margin-left: auto; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; color: var(--white); }
.duration-badge strong { display: block; font-size: 3.4rem; line-height: 1; }
.duration-badge span { display: block; text-align: center; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }
.trip-info-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: -34px; }
.trip-info { padding: 22px; border-radius: 16px; background: var(--white); box-shadow: var(--shadow-sm); }
.trip-info span { display: block; color: var(--muted); font-size: .72rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.trip-info strong { display: block; margin-top: 6px; color: var(--navy); }
.detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 350px; align-items: start; gap: 44px; }
.detail-sidebar { position: sticky; top: 24px; }
.booking-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.booking-card .price { color: var(--navy); font-size: 2.2rem; font-weight: 850; }
.booking-card .price small { color: var(--muted); font-size: .82rem; font-weight: 600; }
.booking-card ul { display: grid; gap: 10px; margin: 22px 0; padding: 0; list-style: none; color: var(--muted); font-size: .9rem; }
.booking-card li::before { margin-right: 8px; color: var(--teal); content: "✓"; font-weight: 900; }
.content-block { margin-bottom: 52px; }
.content-block h2 { margin-bottom: 22px; font-size: clamp(1.8rem,3vw,2.5rem); }
.highlight-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.highlight-list li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; }
.highlight-list li::before { display: grid; place-items: center; width: 22px; height: 22px; margin-top: 2px; content: "✓"; border-radius: 50%; color: var(--white); background: var(--teal); font-size: .72rem; font-weight: 900; }
.route-map { position: relative; padding: 42px 34px; overflow: hidden; border-radius: 20px; background: #f4ead0; }
.route-map::before { position: absolute; inset: 0; content: ""; opacity: .42; background: radial-gradient(circle at 20% 30%,#e9ad2a 0 2px,transparent 3px), radial-gradient(circle at 75% 65%,#12355f 0 2px,transparent 3px); background-size: 44px 44px; }
.route-line { position: relative; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; gap: 18px; }
.route-line::before { position: absolute; top: 25px; right: 16%; left: 16%; height: 2px; content: ""; background: var(--navy); }
.route-stop { position: relative; z-index: 1; text-align: center; }
.route-stop i { display: grid; place-items: center; width: 52px; height: 52px; margin: auto; border: 6px solid #f4ead0; border-radius: 50%; color: var(--white); background: var(--navy); font-style: normal; font-weight: 850; }
.route-stop strong { display: block; margin-top: 12px; color: var(--navy); }
.accordion { display: grid; gap: 12px; }
.accordion-item { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.accordion-button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 22px; border: 0; color: var(--ink); background: var(--white); text-align: left; font-weight: 780; }
.accordion-button::after { content: "+"; color: var(--navy); font-size: 1.4rem; }
.accordion-item.open .accordion-button::after { content: "−"; }
.accordion-panel { display: none; padding: 0 22px 22px; }
.accordion-item.open .accordion-panel { display: block; }
.accordion-panel p { margin-bottom: 8px; }
.cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cost-card { padding: 28px; border-radius: 18px; background: var(--sky); }
.cost-card.exclude { background: #f8ecee; }
.cost-card ul { display: grid; gap: 10px; padding-left: 20px; color: var(--muted); }

/* Tailor made */
.conversation { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; padding: 48px; border-radius: 28px; background: var(--sky); }
.conversation-copy { align-self: center; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: step; }
.process-card { position: relative; padding: 34px 26px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); counter-increment: step; }
.process-card::before { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 24px; content: "0" counter(step); border-radius: 50%; color: var(--navy); background: var(--gold); font-weight: 900; }
.process-card:not(:last-child)::after { position: absolute; top: 58px; right: -24px; z-index: 2; content: "→"; color: var(--teal); font-size: 1.7rem; font-weight: 900; }
.process-card h3 { margin-bottom: 10px; }
.process-card p { margin-bottom: 0; font-size: .9rem; }
.highlight-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.highlight-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.highlight-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 22px; border-radius: 16px; color: var(--white); background: var(--navy); font-size: 1.35rem; font-weight: 900; }
.inspiration-row { display: grid; grid-template-columns: 2fr repeat(4,1fr); gap: 14px; }
.inspiration { position: relative; min-height: 380px; overflow: hidden; border-radius: 80px; background: var(--navy); transition: flex .3s ease; }
.inspiration:first-child { border-radius: 22px 90px 90px 22px; }
.inspiration img { width: 100%; height: 100%; object-fit: cover; }
.inspiration::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg,rgba(5,24,47,.92),transparent 65%); }
.inspiration-copy { position: absolute; z-index: 1; right: 20px; bottom: 22px; left: 20px; }
.inspiration-copy h3 { margin-bottom: 6px; color: var(--white); }
.inspiration:not(:first-child) .inspiration-copy h3 { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 1rem; }
.inspiration-copy span { color: #e5edf4; font-size: .78rem; }

/* Forms */
.form-card { padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .82rem; font-weight: 750; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #ccd6e1; border-radius: 10px; color: var(--ink); background: var(--white); outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(71,111,159,.15); }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .77rem; }
.form-status { display: none; margin: 16px 0 0; padding: 12px 14px; border-radius: 10px; color: #174b39; background: #e5f4ed; font-size: .88rem; font-weight: 700; }
.form-status.show { display: block; }

/* Hotels */
.hotel-hero { overflow: hidden; background: var(--navy); }
.hotel-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 610px; }
.hotel-hero-copy { display: grid; align-content: center; padding: 80px max(40px,calc((100vw - var(--max))/2)); padding-right: 70px; }
.hotel-hero-copy h1, .hotel-hero-copy p { color: var(--white); }
.hotel-hero-copy p { color: #dce7f1; font-size: 1.1rem; }
.hotel-hero-media { min-height: 610px; background: var(--sky); }
.hotel-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hotel-stats { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.city-name-grid { grid-template-columns: repeat(6,1fr); }
.hotel-stat { padding: 34px 24px; text-align: center; }
.hotel-stat strong { display: block; color: var(--navy); font-size: 2.25rem; }
.hotel-stat span { color: var(--muted); font-size: .82rem; font-weight: 700; }
.advantage-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.advantage-card { padding: 34px; border-radius: 18px; background: var(--sky); }
.advantage-card span { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px; border-radius: 50%; color: var(--white); background: var(--teal); font-weight: 850; }
.brand-wall { padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.hotel-list { display: grid; gap: 22px; }
.hotel-card { display: grid; grid-template-columns: 310px 1fr auto; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.hotel-card img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.hotel-card-body { padding: 28px; }
.hotel-card-body h3 { margin-bottom: 8px; }
.hotel-card-body p { margin-bottom: 12px; }
.hotel-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hotel-tags span { padding: 5px 10px; border-radius: 999px; color: var(--navy); background: var(--sky); font-size: .72rem; font-weight: 750; }
.hotel-card-price { display: grid; align-content: center; min-width: 190px; padding: 28px; border-left: 1px solid var(--line); text-align: center; }
.hotel-card-price strong { color: var(--navy); font-size: 1.8rem; }
.hotel-card-price small { color: var(--muted); }
.rate-table { width: 100%; margin-top: 16px; border-collapse: collapse; font-size: .82rem; }
.rate-table th, .rate-table td { padding: 9px 10px; border: 1px solid var(--line); text-align: left; }
.rate-table th { color: var(--navy); background: var(--sky); }

/* Footer and modal */
.site-footer { color: #d9e5ef; background: var(--navy-2); }
.footer-main { display: grid; grid-template-columns: 1.25fr .75fr .85fr 1.15fr; gap: 54px; padding: 72px 0 52px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 70px; height: 70px; border-radius: 50%; background: var(--white); }
.footer-brand strong { display: block; color: var(--white); font-size: 1.1rem; }
.footer-brand span { color: #adc0d2; font-size: .72rem; font-weight: 800; letter-spacing: .13em; }
.footer-intro { margin: 22px 0 0; color: #adc0d2; font-size: .9rem; }
.footer-col h3 { margin-bottom: 20px; color: var(--white); font-size: 1rem; }
.footer-links { display: grid; gap: 10px; padding: 0; list-style: none; }
.footer-links a { color: #b8c9d8; font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); color: #8fa6bb; font-size: .78rem; }
.contact-fab { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: grid; place-items: center; width: 58px; height: 58px; border: 0; border-radius: 50%; color: var(--navy); background: var(--gold); box-shadow: 0 12px 30px rgba(8,35,68,.28); font-size: 1.25rem; }
.contact-fab:hover { transform: translateY(-2px); }
.modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(5,20,40,.72); backdrop-filter: blur(8px); }
.modal.open { display: flex; }
.modal-dialog { position: relative; width: min(760px,100%); max-height: calc(100vh - 48px); overflow: auto; border-radius: 24px; background: var(--white); box-shadow: 0 30px 80px rgba(3,17,34,.35); }
.modal-head { padding: 30px 34px 0; }
.modal-head h2 { margin-bottom: 8px; font-size: 2rem; }
.modal-head p { margin-bottom: 0; }
.modal-body { padding: 26px 34px 34px; }
.modal-close { position: absolute; top: 18px; right: 18px; z-index: 1; display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--navy); background: var(--sky); font-size: 1.3rem; }

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

@media (max-width: 1080px) {
  .navbar-inner { gap: 14px; }
  .brand { min-width: auto; }
  .brand-copy { display: none; }
  .nav-link, .nav-button { padding-inline: 10px; font-size: .84rem; }
  .offer-grid, .category-grid { grid-template-columns: repeat(2,1fr); }
  .trip-grid { grid-template-columns: repeat(2,1fr); }
  .highlight-grid { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1.1fr .9fr .9fr; }
  .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .section { padding: 76px 0; }
  .topbar-group:first-child span { display: none; }
  .navbar { min-height: 78px; }
  .navbar-inner { min-height: 78px; }
  .brand img { width: 54px; height: 54px; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 1100; display: block; width: min(380px,88vw); padding: 94px 24px 32px;
    overflow-y: auto; transform: translateX(105%); background: var(--white); box-shadow: -20px 0 60px rgba(5,25,49,.22); transition: transform .25s ease;
  }
  .menu-open .main-nav { transform: translateX(0); }
  .main-nav::before { position: absolute; top: 26px; left: 24px; content: "Menu"; color: var(--navy); font-size: 1.4rem; font-weight: 850; }
  .nav-link, .nav-button { width: 100%; min-height: 48px; justify-content: space-between; padding-inline: 14px; font-size: 1rem; }
  .dropdown { position: static; display: none; width: auto; margin: 4px 0 10px; opacity: 1; visibility: visible; transform: none; box-shadow: none; }
  .nav-item.open .dropdown { display: block; }
  .header-cta { margin: 12px 0 0; }
  .header-cta .btn { width: 100%; }
  .hero { min-height: 650px; background-position: 62% 43%; }
  .hero::before { background: linear-gradient(90deg,rgba(7,26,51,.9),rgba(11,39,74,.55)); }
  .stats-grid, .hotel-stats { grid-template-columns: repeat(2,1fr); }
  .city-name-grid { grid-template-columns: repeat(3,1fr); }
  .stat:nth-child(2), .hotel-stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2), .hotel-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .operations, .special-panel, .split, .conversation { grid-template-columns: 1fr; }
  .special-image { min-height: 420px; }
  .split.reverse .split-media { order: initial; }
  .destination-grid { grid-template-columns: repeat(2,1fr); }
  .detail-hero-grid { grid-template-columns: 1fr; }
  .duration-badge { width: 110px; height: 110px; margin: 0; }
  .duration-badge strong { font-size: 2.3rem; }
  .trip-info-grid { grid-template-columns: repeat(2,1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-card:nth-child(2)::after { display: none; }
  .inspiration-row { grid-template-columns: 1.5fr repeat(2,1fr); }
  .inspiration:nth-child(n+4) { display: none; }
  .hotel-hero-grid { grid-template-columns: 1fr; }
  .hotel-hero-copy { padding: 72px 30px; }
  .hotel-hero-media { min-height: 420px; }
  .advantage-grid { grid-template-columns: 1fr; }
  .hotel-card { grid-template-columns: 250px 1fr; }
  .hotel-card-price { grid-column: 1 / -1; grid-template-columns: 1fr auto; min-width: 0; align-items: center; border-top: 1px solid var(--line); border-left: 0; text-align: left; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-col:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .topbar { display: none; }
  .hero { min-height: 620px; }
  .hero-content { padding: 92px 0 74px; }
  .hero::after { display: none; }
  .stats-band { margin-top: 0; }
  .stats-grid { border-radius: 0 0 18px 18px; }
  .stat { padding: 22px 18px; }
  .offer-grid, .category-grid, .trip-grid, .highlight-grid, .cost-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 370px; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination-card.large { grid-column: auto; }
  .cta-panel { grid-template-columns: 1fr; padding: 38px 28px; }
  .special-copy { padding: 42px 28px; }
  .mini-stats, .image-card-grid { grid-template-columns: 1fr; }
  .image-card.full { grid-column: auto; }
  .trip-info-grid { grid-template-columns: 1fr 1fr; }
  .trip-info { padding: 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card::after { display: none; }
  .conversation { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .inspiration-row { grid-template-columns: 1fr 1fr; }
  .inspiration:first-child { grid-column: 1 / -1; border-radius: 22px; }
  .inspiration:nth-child(3) { display: none; }
  .hotel-stats { grid-template-columns: 1fr 1fr; }
  .city-name-grid { grid-template-columns: 1fr 1fr; }
  .hotel-stat { padding: 24px 10px; }
  .hotel-card { grid-template-columns: 1fr; }
  .hotel-card img { min-height: 240px; }
  .hotel-card-price { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding-top: 54px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .modal { padding: 0; align-items: stretch; }
  .modal-dialog { max-height: 100vh; border-radius: 0; }
  .modal-head { padding: 26px 24px 0; }
  .modal-body { padding: 22px 24px 30px; }
  .contact-fab { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
