/* ============================================================
   DREAMY DESTINATION — EDITORIAL BOLD × BOSTON BLUE
   Clash Display 700 × Satoshi 300 · Boston Blue palette
   Deep navy #0c2028 · Mountain cool #e6f3fb · One accent.
   ============================================================

   1.  CUSTOM PROPERTIES
   2.  RESET & BASE
   3.  GRAIN TEXTURE
   4.  LAYOUT PRIMITIVES
   5.  SKIP LINK
   6.  HEADER & NAV (with dropdown)
   7.  HERO
   8.  SECTION FRAMEWORK
   9.  DESTINATIONS
   10. PACKAGES
   11. FLEET
   12. WHY US
   13. GALLERY
   14. TESTIMONIALS (marquee)
   15. INQUIRY FORM
   16. FOOTER + WATERMARK
   17. GLOBAL BUTTONS
   18. FORMS
   19. REVEAL ANIMATIONS
   20. RESPONSIVE
   21. REDUCED MOTION
   22. PRINT
   ============================================================ */


/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Boston Blue — full ramp */
  --bb-50:  #e6f3fb;
  --bb-100: #bee2f6;
  --bb-200: #74c8ee;
  --bb-300: #5dadd0;
  --bb-400: #4e93b1;
  --bb-500: #44829d;
  --bb-600: #376b82;
  --bb-700: #295365;
  --bb-800: #1b3946;
  --bb-900: #0c2028;
  --bb-950: #051319;

  /* Ground colors */
  --c-ink:      #0c2028;   /* deep blue-black */
  --c-paper:    #e6f3fb;   /* mountain-cool off-white */
  --c-white:    #FFFFFF;

  /* Blue-tinted grey scale */
  --c-grey-50:  #dff0f9;
  --c-grey-100: #bee2f6;
  --c-grey-200: #a8d8eb;
  --c-grey-300: #74c8ee;
  --c-grey-400: #5dadd0;
  --c-grey-500: #4e93b1;
  --c-grey-600: #376b82;
  --c-grey-700: #295365;
  --c-grey-800: #1b3946;
  --c-grey-900: #0c2028;

  /* Accent — Boston Blue 500 */
  --accent:       #44829d;
  --accent-hover: #376b82;
  --accent-light: #74c8ee;   /* used on dark backgrounds */

  /* Typography */
  --f-display: 'Clash Display', 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  --f-body:    'Satoshi', 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Type scale */
  --t-xs:   0.6875rem;
  --t-sm:   0.875rem;
  --t-base: 1rem;
  --t-lg:   1.125rem;
  --t-xl:   1.375rem;
  --t-2xl:  1.75rem;
  --t-3xl:  2.25rem;

  /* Spacing (8pt grid) */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* Radius — editorial: near-zero */
  --r-0:    0px;
  --r-sm:   3px;
  --r-full: 9999px;

  /* Z-index scale */
  --z-header:   100;
  --z-dropdown: 200;
  --z-nav:      300;
  --z-grain:    9000;

  /* Motion */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast:   150ms;
  --t-mid:    250ms;
  --t-slow:   400ms;
  --t-reveal: 600ms;

  /* Header height */
  --header-h: 68px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: var(--t-base);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

address { font-style: normal; }

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Selection */
::selection {
  background: var(--accent);
  color: var(--c-white);
}


/* ============================================================
   3. GRAIN TEXTURE
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-grain);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: overlay;
}


/* ============================================================
   4. LAYOUT PRIMITIVES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

.section {
  padding: var(--sp-24) 0;
}

.section--paper {
  background: var(--c-paper);
  --c-sec-text:   var(--c-ink);
  --c-sec-muted:  var(--c-grey-600);
  --c-sec-border: var(--c-grey-200);
}

.section--dark {
  background: var(--c-ink);
  --c-sec-text:   var(--c-white);
  --c-sec-muted:  rgba(255, 255, 255, 0.55);
  --c-sec-border: rgba(255, 255, 255, 0.1);
}

/* Section header — 2-column: display heading + body paragraph */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: end;
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid var(--c-sec-border);
  margin-bottom: var(--sp-12);
}

.section-display {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-sec-text);
  text-wrap: balance;
}

.section-body {
  font-family: var(--f-body);
  font-size: var(--t-base);
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-sec-muted);
  max-width: 52ch;
}


/* ============================================================
   5. SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--accent);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 600;
  padding: var(--sp-3) var(--sp-4);
  z-index: 9999;
  transition: top var(--t-fast) ease;
}
.skip-link:focus { top: var(--sp-4); }


/* ============================================================
   6. HEADER & NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  background: transparent;
  transition: background var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: var(--c-ink);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.logo-mark {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.08);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--c-white);
}

.logo-tagline {
  font-family: var(--f-body);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}

/* Nav links container */
#nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

/* Nav item wrapper (for dropdown) */
.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
  transition: color var(--t-fast) ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Hover underline */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--accent-light);
  transition: width var(--t-mid) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--c-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Chevron for Himachal */
.nav-chevron {
  font-size: 0.55rem;
  transition: transform var(--t-mid) ease;
  flex-shrink: 0;
}

.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bb-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 190px;
  padding: var(--sp-2) 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid) ease, transform var(--t-mid) ease;
  z-index: var(--z-dropdown);
}

/* Triangle connector */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--bb-900);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  rotate: 45deg;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 9px 18px;
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--t-fast) ease, background var(--t-fast) ease,
              padding-left var(--t-fast) ease;
  white-space: nowrap;
}

.nav-dropdown-link:hover {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 22px;
}

/* Book Now CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--c-white);
  background: var(--accent);
  padding: 8px 20px;
  border-radius: var(--r-full);
  transition: background var(--t-fast) ease, transform var(--t-fast) ease;
  white-space: nowrap;
  margin-left: var(--sp-2);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}

.bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--c-white);
  transition: transform var(--t-mid) var(--ease), opacity var(--t-fast) ease;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  min-height: 100dvh;
  background: var(--c-ink);
  display: flex;
  flex-direction: column;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + var(--sp-20)) var(--sp-12) var(--sp-16)
           max(var(--sp-8), calc((100vw - 1440px) / 2 + var(--sp-8)));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--sp-8);
}

.hero-kicker {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero-heading {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--c-white);
}

.hh-line  { display: block; }
.hh-bold  { font-weight: 700; }
.hh-thin  { font-weight: 300; letter-spacing: 0.03em; }
.hero-dot { color: var(--accent-light); }

.hero-sub-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-6);
  align-items: center;
}

.hero-sub {
  font-family: var(--f-body);
  font-size: var(--t-base);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 42ch;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-width: 0;
}

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.25) brightness(0.55) saturate(0.7);
  display: block;
}

/* Stats bar */
.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 max(var(--sp-8), calc((100vw - 1440px) / 2 + var(--sp-8)));
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  min-height: 72px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--sp-4) var(--sp-8);
}

.hstat-num {
  font-family: var(--f-display);
  font-size: var(--t-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--c-white);
  font-variant-numeric: tabular-nums;
}

.hstat-plus { color: var(--accent-light); }

.hstat-label {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.hero-stat-cta {
  margin-left: auto;
  padding: var(--sp-4) var(--sp-8);
}

/* Book Now in hero stats bar */
.btn-book-hero {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--c-white);
  background: var(--accent);
  padding: 10px 22px;
  border-radius: var(--r-full);
  transition: background var(--t-fast) ease, transform var(--t-fast) ease;
  white-space: nowrap;
}

.btn-book-hero:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}


/* ============================================================
   8. GLOBAL BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--accent);
  color: var(--c-white);
  padding: 12px 24px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast) ease, transform var(--t-fast) ease;
  white-space: nowrap;
}

.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:active { transform: translateY(1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  background: transparent;
  color: inherit;
  padding: 11px 24px;
  border: 1px solid currentColor;
  border-radius: var(--r-sm);
  opacity: 0.8;
  transition: opacity var(--t-fast) ease, background var(--t-fast) ease, transform var(--t-fast) ease;
  white-space: nowrap;
}

.btn-outline:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.07);
}

.btn-outline:active { transform: translateY(1px); }

/* Package card CTA */
.btn-pkg {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 18px;
  letter-spacing: 0.02em;
  transition: border-color var(--t-fast) ease, background var(--t-fast) ease, color var(--t-fast) ease;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}

.btn-pkg:hover {
  border-color: var(--accent-light);
  background: rgba(116, 200, 238, 0.08);
  color: var(--accent-light);
}

/* Form submit */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--c-ink);
  color: var(--c-white);
  padding: 14px 32px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--t-fast) ease, transform var(--t-fast) ease;
}

.btn-submit:hover { background: var(--bb-800); }
.btn-submit:active { transform: translateY(1px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }


/* ============================================================
   9. DESTINATIONS
   ============================================================ */
.dest-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: 240px 240px;
  gap: 2px;
  background: var(--c-grey-200);
}

.dest-card--featured {
  grid-column: 1;
  grid-row: 1 / 3;
}

.dest-card {
  background: var(--c-paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.dest-img-wrap {
  overflow: hidden;
  flex: 1;
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.1);
  transition: filter var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

.dest-card:hover .dest-img {
  filter: contrast(1.2) brightness(0.82);
  transform: scale(1.04);
}

.dest-card:hover .dest-title { color: var(--accent); }

.dest-card--featured .dest-body {
  padding: var(--sp-6) var(--sp-6) var(--sp-8);
  background: var(--c-paper);
  flex-shrink: 0;
}

.dest-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.dest-region {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-grey-600);
}

.dest-alt {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 400;
  color: var(--c-grey-500);
  font-variant-numeric: tabular-nums;
}

.dest-title {
  font-family: var(--f-display);
  font-size: var(--t-3xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--c-ink);
  margin-bottom: var(--sp-3);
  transition: color var(--t-fast) ease;
}

.dest-card--small .dest-title { font-size: var(--t-xl); }

.dest-desc {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 300;
  color: var(--c-grey-600);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
  max-width: 40ch;
}

.dest-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-grey-600);
  transition: color var(--t-fast) ease, gap var(--t-mid) var(--ease-out);
}

.dest-link:hover {
  color: var(--accent);
  gap: var(--sp-4);
}

.dest-card--small .dest-body {
  padding: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--c-paper);
  flex-shrink: 0;
  min-height: 60px;
}


/* ============================================================
   10. PACKAGES
   ============================================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.pkg-card {
  background: var(--bb-800);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-mid) ease, transform var(--t-slow) ease;
}

.pkg-card:hover {
  border-color: rgba(116, 200, 238, 0.25);
  transform: translateY(-3px);
}

.pkg-card:hover .pkg-title { color: var(--accent-light); }

.pkg-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}

.pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.15) brightness(0.8);
  transition: filter var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

.pkg-card:hover .pkg-img {
  filter: contrast(1.25) brightness(0.7);
  transform: scale(1.04);
}

.pkg-badge {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: var(--c-ink);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-sm);
}

.pkg-body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.pkg-title {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-white);
  line-height: 1.15;
  transition: color var(--t-fast) ease;
}

.pkg-desc {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  flex: 1;
}

.pkg-footer {
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: auto;
}


/* ============================================================
   11. FLEET
   ============================================================ */
.fleet-list {
  display: flex;
  flex-direction: column;
}

.fleet-row {
  display: grid;
  grid-template-columns: 44px 80px 1fr auto auto;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-4);
  border-top: 1px solid var(--c-grey-100);
  transition: background var(--t-fast) ease;
  cursor: default;
}

.fleet-row:last-child { border-bottom: 1px solid var(--c-grey-100); }

.fleet-row:hover {
  background: rgba(68, 130, 157, 0.05);
}

.fleet-row:hover .fleet-name { color: var(--accent); }

.fleet-num {
  font-family: var(--f-display);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-grey-400);
  font-variant-numeric: tabular-nums;
}

.fleet-icon {
  width: 80px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-grey-500);
  flex-shrink: 0;
}

.fleet-icon svg {
  width: 100%;
  height: 100%;
}

.fleet-info { min-width: 0; }

.fleet-name {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 2px;
  transition: color var(--t-fast) ease;
}

.fleet-spec {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 400;
  color: var(--c-grey-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fleet-tags {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.fleet-tag {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--c-grey-100);
  color: var(--c-grey-600);
  white-space: nowrap;
}

.fleet-cap {
  font-family: var(--f-display);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-grey-500);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  min-width: 60px;
  text-align: right;
}


/* ============================================================
   12. WHY US
   ============================================================ */
.why-list {
  display: flex;
  flex-direction: column;
}

.why-feat {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-8);
  padding: var(--sp-8) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--t-fast) ease;
}

.why-feat:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

.why-num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  transition: color var(--t-mid) ease;
  padding-top: 4px;
}

.why-feat:hover .why-num { color: var(--accent-light); }

.why-title {
  font-family: var(--f-display);
  font-size: var(--t-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}

.why-text {
  font-family: var(--f-body);
  font-size: var(--t-base);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 65ch;
}


/* ============================================================
   13. GALLERY
   ============================================================ */
.gallery-section {
  overflow: hidden;
  background: var(--c-ink);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-track {
  display: flex;
  gap: var(--sp-2);
  width: max-content;
  animation: galleryScroll 40s linear infinite;
  padding: var(--sp-4) 0;
}

.gallery-track img {
  height: 200px;
  width: auto;
  object-fit: cover;
  display: block;
  filter: contrast(1.15) brightness(0.65) saturate(0.75);
  flex-shrink: 0;
  transition: filter var(--t-mid) ease;
}

.gallery-track img:hover {
  filter: contrast(1.1) brightness(0.85) saturate(1);
}

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   14. TESTIMONIALS — continuous horizontal marquee
   ============================================================ */
.testi-marquee {
  overflow: hidden;
  padding: var(--sp-6) 0 var(--sp-10);
}

.testi-marquee:hover .testi-marquee-track {
  animation-play-state: paused;
}

.testi-marquee-track {
  display: flex;
  gap: var(--sp-4);
  width: max-content;
  animation: testiScroll 50s linear infinite;
}

@keyframes testiScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi-card {
  width: 380px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: border-color var(--t-mid) ease, background var(--t-mid) ease;
}

.testi-card:hover {
  border-color: rgba(116, 200, 238, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

/* 5-star rating */
.testi-stars {
  display: flex;
  gap: 3px;
  color: #f5b40a;
  font-size: 0.8rem;
}

.testi-quote {
  flex: 1;
}

.testi-quote p {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--c-white);
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.testi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-name {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--c-white);
  font-style: normal;
  display: block;
}

.testi-loc {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}


/* ============================================================
   15. INQUIRY FORM
   ============================================================ */
.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-16);
  align-items: start;
}

.inquiry-form {
  background: var(--c-white);
  border: 1px solid var(--c-grey-100);
  padding: var(--sp-10);
}

/* Contact info sidebar */
.inquiry-info {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.inquiry-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--c-grey-100);
}

.inquiry-contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--c-grey-100);
  transition: background var(--t-fast) ease;
  text-decoration: none;
  color: var(--c-ink);
}

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

.inquiry-contact-item:hover { background: var(--bb-50); }

.inquiry-icon {
  width: 40px;
  height: 40px;
  background: var(--bb-100);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--t-lg);
  flex-shrink: 0;
}

.inquiry-label {
  display: block;
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-grey-600);
  margin-bottom: 2px;
}

.inquiry-value {
  display: block;
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-ink);
}

/* Trust signals */
.inquiry-trust {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--c-grey-100);
  padding: var(--sp-5) var(--sp-6);
}

.inquiry-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--c-grey-50);
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 400;
  color: var(--c-grey-700);
}

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

.inquiry-trust-item i {
  color: var(--accent);
  font-size: var(--t-base);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Inquiry success */
.inquiry-success {
  padding: var(--sp-5);
  background: #f0fdf4;
  border: 1px solid #86efac;
  margin-top: var(--sp-4);
  border-radius: var(--r-sm);
}

.inquiry-success-msg {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: var(--t-sm);
  color: #166534;
}

.inquiry-success-msg .fa-circle-check {
  font-size: var(--t-lg);
}


/* ============================================================
   16. FOOTER + WATERMARK
   ============================================================ */
.site-footer {
  background: var(--c-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--sp-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}

/* Brand column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.footer-logo .logo-mark {
  background: rgba(255, 255, 255, 0.05);
}

.footer-logo .logo-name {
  font-family: var(--f-display);
  font-size: var(--t-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-white);
}

.footer-tagline {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-link {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transition: color var(--t-fast) ease;
  text-decoration: none;
}

.footer-link:hover { color: var(--c-white); }

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.footer-nav-title {
  font-family: var(--f-display);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.footer-social .footer-nav-title {
  margin-bottom: var(--sp-4);
}

.social-links {
  display: flex;
  gap: var(--sp-3);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--t-base);
  transition: border-color var(--t-fast) ease, color var(--t-fast) ease, background var(--t-fast) ease;
}

.social-link:hover {
  border-color: var(--accent-light);
  color: var(--c-white);
  background: rgba(116, 200, 238, 0.08);
}

/* Footer base line */
.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy,
.footer-addr {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  color: rgba(255, 255, 255, 0.25);
}

/* Krafted by Ansh watermark */
.footer-watermark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.watermark-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.45;
}

.watermark-text {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

.watermark-text strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.watermark-email {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--t-fast) ease;
}

.watermark-email:hover { color: var(--accent-light); }


/* ============================================================
   18. FORMS
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.form-group:last-of-type { margin-bottom: var(--sp-5); }

.form-label {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-grey-700);
}

.req {
  color: var(--accent);
  margin-left: 2px;
}

.form-opt {
  font-weight: 300;
  color: var(--c-grey-500);
}

.form-ctrl {
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-white);
  border: 1px solid var(--c-grey-100);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
  width: 100%;
  min-height: 46px;
  appearance: none;
  -webkit-appearance: none;
}

.form-ctrl:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(68, 130, 157, 0.12);
}

.form-ctrl.error { border-color: #dc2626; }

.form-ctrl::placeholder { color: var(--c-grey-400); }

textarea.form-ctrl {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

select.form-ctrl {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23376b82' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-2);
}

.form-err {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 500;
  color: #dc2626;
  min-height: 1em;
}

.char-count {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  color: var(--c-grey-500);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}


/* ============================================================
   19. REVEAL ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 1;
  transform: none;
}

.js-loaded .reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-reveal) var(--ease-out),
              transform var(--t-reveal) var(--ease-out);
}

.js-loaded .reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up.visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-up.visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-up.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-up.visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-up.visible > *:nth-child(6) { transition-delay: 400ms; }


/* ============================================================
   20. RESPONSIVE
   ============================================================ */

/* ---- Tablet: ≤ 1024px ---- */
@media (max-width: 1024px) {
  .container { padding: 0 var(--sp-6); }

  /* Destinations: 2 col */
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .dest-card--featured {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .dest-card--featured .dest-body { padding: var(--sp-5); }
  .dest-card--featured .dest-img-wrap { aspect-ratio: 16/7; flex: none; }

  /* Packages: 2 col */
  .pkg-grid { grid-template-columns: 1fr 1fr; }

  /* Fleet: hide capacity */
  .fleet-row { grid-template-columns: 44px 64px 1fr auto; }
  .fleet-cap { display: none; }

  /* Inquiry layout: single col */
  .inquiry-layout { grid-template-columns: 1fr; gap: var(--sp-10); }
  .inquiry-info { position: static; }

  /* Footer: 2 col */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }

  /* Dropdown: hide on mobile (handled by mobile nav) */
}

/* ---- Mobile: ≤ 768px ---- */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .container { padding: 0 var(--sp-5); }
  .section   { padding: var(--sp-16) 0; }

  .section-head {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
    margin-bottom: var(--sp-8);
  }

  /* Header: mobile nav */
  #nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--sp-8) var(--sp-6);
    gap: var(--sp-4);
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease);
    z-index: var(--z-nav);
    overflow-y: auto;
  }

  #nav-links.open { transform: translateX(0); }

  .nav-item { width: 100%; }

  .nav-link {
    font-size: var(--t-xl);
    font-weight: 600;
    font-family: var(--f-display);
    letter-spacing: -0.02em;
    color: var(--c-white);
  }

  /* Mobile dropdown: always visible when parent is expanded */
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border: none;
    padding: var(--sp-2) 0 0 var(--sp-5);
    display: none;
  }

  .nav-dropdown::before { display: none; }

  .nav-item.mobile-open .nav-dropdown { display: block; }

  .nav-dropdown-link {
    font-size: var(--t-base);
    padding: 7px 0;
    color: rgba(255,255,255,0.55);
  }

  .nav-dropdown-link:hover {
    padding-left: 0;
    color: rgba(255,255,255,0.85);
    background: transparent;
  }

  .nav-cta {
    margin-top: var(--sp-4);
    margin-left: 0;
    font-size: var(--t-base);
    padding: 12px 24px;
  }

  .nav-toggle { display: flex; }
  .nav-chevron { font-size: 0.7rem; }

  /* Hero: single column */
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 40vw;
  }

  .hero-content {
    padding: calc(var(--header-h) + var(--sp-10)) var(--sp-5) var(--sp-8);
    justify-content: flex-start;
  }

  .hero-sub-row {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-stats {
    flex-wrap: wrap;
    padding: 0 var(--sp-5);
    gap: 0;
  }

  .hero-stat-divider { display: none; }

  .hero-stat {
    padding: var(--sp-3) var(--sp-5);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-stat:last-of-type { border-right: none; }

  .hero-stat-cta {
    width: 100%;
    padding: var(--sp-4) var(--sp-5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-left: 0;
  }

  /* Destinations: single column */
  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--sp-3);
    background: transparent;
  }

  .dest-card--featured { grid-column: 1; grid-row: auto; }
  .dest-card--featured .dest-img-wrap { aspect-ratio: 4/3; flex: none; }

  .dest-card--small {
    display: grid;
    grid-template-columns: 120px 1fr;
    height: 80px;
  }

  .dest-card--small .dest-img-wrap { height: 80px; aspect-ratio: unset; }
  .dest-card--small .dest-body { min-height: unset; padding: var(--sp-3); }

  /* Packages: single column */
  .pkg-grid { grid-template-columns: 1fr; }

  /* Fleet: simplified */
  .fleet-row {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: var(--sp-2) var(--sp-3);
  }

  .fleet-icon { display: none; }
  .fleet-info { grid-column: 2; }
  .fleet-tags { grid-column: 2; justify-content: flex-start; }
  .fleet-cap { display: none; }
  .fleet-num { grid-row: 1; align-self: start; padding-top: 4px; }

  .why-feat { grid-template-columns: 60px 1fr; gap: var(--sp-5); }

  /* Testimonials: narrower cards on mobile */
  .testi-card { width: 300px; }

  /* Inquiry form */
  .inquiry-form { padding: var(--sp-6); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-brand { grid-column: 1 / 3; }

  .footer-base {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-2);
  }

  .footer-watermark {
    flex-direction: column;
    gap: var(--sp-2);
    padding: var(--sp-5) 0;
  }
}

/* ---- Small mobile: ≤ 480px ---- */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }

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


/* ============================================================
   21. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .gallery-track,
  .testi-marquee-track {
    animation: none;
  }

  .js-loaded .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   22. PRINT
   ============================================================ */
@media print {
  .site-header,
  .gallery-section,
  .testi-marquee,
  .nav-toggle,
  .footer-watermark,
  body::after {
    display: none;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .section--dark {
    background: #1b3946;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.75em;
    color: #376b82;
  }
}
