/* ASG Travel — Ultra-Premium Tour Offers */
@page { size: A4; margin: 0; }
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #B8965A;
  --gold-light: #D4B77C;
  --gold-dim: rgba(184,150,90,0.15);
  --cream: #FAFAF7;
  --dark: #0C0C0C;
  --dark-surface: #151515;
  --charcoal: #1E1E1E;
  --text: #1A1A1A;
  --text-light: #6B6B6B;
  --text-lighter: #999;
  --white: #FAFAF7;
  --border: rgba(0,0,0,0.08);
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #E8E8E4;
  color: var(--text);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ========== PAGE ========== */
.page {
  width: 210mm;
  min-height: 297mm;
  margin: 0 auto 2px;
  padding: 50px 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  page-break-after: always;
}

.dark-page { background: var(--dark); color: var(--white); }

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ========== HEADER ========== */
.pg-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.pg-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  color: var(--text-light);
}

.pg-num {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-lighter);
}

.pg-head.light .pg-logo, .pg-head.light .pg-num { color: rgba(255,255,255,0.3); }

.content-area { position: relative; z-index: 1; }

/* ========== TYPOGRAPHY ========== */
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow.gold { color: var(--gold-light); }
.eyebrow.small { font-size: 9px; letter-spacing: 4px; margin-bottom: 12px; }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

h2 em { font-style: italic; font-weight: 400; }
h2.light-text { color: var(--white); }

.intro {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 30px;
}

.intro.light-muted { color: rgba(255,255,255,0.5); }

/* ========== COVER ========== */
.cover-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  padding: 0;
}

.cover-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(184,150,90,0.25);
  border-style: solid;
  border-width: 0;
}
.cover-corner.tl { top: 30px; left: 30px; border-top-width: 1px; border-left-width: 1px; }
.cover-corner.tr { top: 30px; right: 30px; border-top-width: 1px; border-right-width: 1px; }
.cover-corner.bl { bottom: 30px; left: 30px; border-bottom-width: 1px; border-left-width: 1px; }
.cover-corner.br { bottom: 30px; right: 30px; border-bottom-width: 1px; border-right-width: 1px; }

.cover-content { position: relative; z-index: 1; }

.cover-pre {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 40px;
}

.cover-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  font-weight: 300;
  letter-spacing: 24px;
  color: var(--gold);
  line-height: 1;
}

.cover-logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 16px;
  color: var(--gold-light);
  margin-top: 4px;
}

.line {
  width: 1px;
  height: 50px;
  background: var(--gold);
  margin: 40px auto;
  opacity: 0.4;
}

.gold-line { opacity: 0.6; }

.cover-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 8px;
  line-height: 1.2;
  color: var(--white);
}

.cover-year {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 8px;
  color: var(--gold);
  margin: 20px 0;
}

.cover-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}

.cover-meta {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sep { color: var(--gold); opacity: 0.4; }

.cover-bottom {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  text-align: center;
}

.cover-bottom p {
  font-family: 'Outfit', sans-serif;
  font-size: 7px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.15);
}

/* ========== STATS ========== */
.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 30px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item { flex: 1; text-align: center; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
}

.stat-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-lighter);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ========== HIGHLIGHTS ========== */
.highlights { display: flex; flex-direction: column; gap: 0; }

.hl-item {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.hl-item:last-child { border-bottom: none; }

.hl-num {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  padding-top: 2px;
  min-width: 24px;
}

.hl-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 3px;
}

.hl-item p { font-size: 11px; color: var(--text-light); line-height: 1.5; }

/* ========== ITINERARY ========== */
.itin-day {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.itin-day:last-child { border-bottom: none; }

.day-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  min-width: 44px;
  padding-top: 2px;
  flex-shrink: 0;
}

.day-content { flex: 1; }

.day-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
  color: var(--text);
}

.day-desc {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 4px;
}

.day-meals {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.dark-page .day-title { color: var(--white); }
.dark-page .day-desc { color: rgba(255,255,255,0.5); }
.dark-page .itin-day { border-color: rgba(255,255,255,0.06); }

/* ========== HOTEL TABLE ========== */
.hotel-grid {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.hotel-grid th {
  font-family: 'Outfit', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-lighter);
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
}

.hotel-grid td {
  font-size: 11px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--text-light);
  vertical-align: top;
  line-height: 1.5;
}

.hotel-grid td:first-child {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text);
  white-space: nowrap;
}

.hotel-grid tr.hl td { background: rgba(184,150,90,0.06); }

.dark-page .hotel-grid th { color: rgba(255,255,255,0.35); border-color: rgba(255,255,255,0.08); }
.dark-page .hotel-grid td { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.04); }
.dark-page .hotel-grid td:first-child { color: var(--gold-light); }

.hotel-name { font-weight: 400; }
.hotel-room { font-size: 10px; color: var(--text-lighter); display: block; margin-top: 2px; }
.dark-page .hotel-room { color: rgba(255,255,255,0.3); }

/* ========== PRICING TABLE ========== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.price-table th {
  font-family: 'Outfit', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-lighter);
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
}

.price-table th:not(:first-child) { text-align: center; }

.price-table td {
  font-size: 12px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--text-light);
  text-align: center;
}

.price-table td:first-child {
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text);
}

.price-table tr.hl td { background: rgba(184,150,90,0.06); }
.price-table tfoot td {
  font-weight: 500;
  color: var(--text);
  border-top: 2px solid var(--gold);
  border-bottom: none;
}

.price-mxn {
  display: block;
  font-size: 10px;
  color: var(--text-lighter);
  margin-top: 2px;
}

.season-label {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin: 20px 0 8px;
}

.season-label:first-of-type { margin-top: 0; }

.price-note {
  font-size: 10px;
  color: var(--text-lighter);
  line-height: 1.6;
  margin-top: 12px;
  font-style: italic;
}

/* ========== INCLUDED / EXCLUDED ========== */
.incl-section { margin-bottom: 24px; }

.incl-section h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.incl-list {
  list-style: none;
  padding: 0;
}

.incl-list li {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.incl-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
}

.excl-list li::before {
  content: '—';
  color: var(--text-lighter);
}

/* ========== SUPPLEMENT TABLE ========== */
.supp-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.supp-table th {
  font-family: 'Outfit', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-lighter);
  text-align: left;
  padding: 6px 8px;
  border-bottom: 1px solid var(--border);
}

.supp-table td {
  font-size: 11px;
  padding: 5px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--text-light);
}

.supp-table td:last-child { text-align: right; font-weight: 400; }

.supp-header {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text);
  margin: 16px 0 6px;
}

/* ========== FLIGHTS BOX ========== */
.flights-box {
  background: rgba(184,150,90,0.05);
  border: 1px solid rgba(184,150,90,0.15);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
}

.flights-box h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 10px;
}

.flight-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 11px;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.flight-row:last-child { border-bottom: none; }
.flight-row span:last-child { font-weight: 500; color: var(--text); }

/* ========== CANCELLATION ========== */
.cancel-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}

.cancel-table td {
  font-size: 10px;
  padding: 5px 8px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--text-light);
}

.cancel-table td:last-child { text-align: right; font-weight: 500; color: var(--text); }

/* ========== CLOSE PAGE ========== */
.last-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.close-content { position: relative; z-index: 1; }

.close-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--white) !important;
  margin-bottom: 12px;
}

.close-title em { font-style: italic; font-weight: 400; }

.close-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 50px;
}

.contact-block { margin-bottom: 60px; }

.contact-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-role {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.contact-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.9;
}

.legal {
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.12);
}

/* ========== DUAL COLUMNS ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ========== PRINT ========== */
@media print {
  body { background: white; }
  .page { margin: 0; box-shadow: none; }
}
