/* ============================================================
   THE MASON COLLECTIVE — GLOBAL STYLES
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* --- Custom Properties --- */
:root {
  --cream:         #FAF8F5;
  --navy:          #0E1B2C;
  --navy-mid:      #162238;
  --navy-dark:     #091420;
  --charcoal:      #2C2C2C;
  --charcoal-mid:  #4a4a4a;
  --charcoal-light:#7a7a7a;
  --gold:          #C5A572;
  --gold-light:    #d4b98a;
  --gold-pale:     #e8d5b5;
  --white:         #FFFFFF;
  --border:        rgba(14,27,44,0.11);
  --border-light:  rgba(14,27,44,0.07);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:       80px;
  --pad-section: clamp(80px, 10vw, 140px);
  --max-w:       1300px;
  --max-w-text:  780px;
  --ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.4rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h5 { font-size: 1.1rem; font-weight: 400; }

p {
  font-size: clamp(0.88rem, 1.5vw, 0.97rem);
  line-height: 1.85;
  color: var(--charcoal-mid);
}

.overline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.container--text { max-width: var(--max-w-text); }

.section { padding: var(--pad-section) 0; }
.section--navy  { background: var(--navy); }
.section--dark  { background: var(--navy-dark); }
.section--ivory { background: #F4F1EC; }

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy h5,
.section--navy .overline { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.62); }

/* White cards keep dark text even inside navy sections */
.section--navy .pkg-card h4,
.section--navy .pkg-card h5 { color: var(--navy); }
.section--navy .pkg-card p { color: var(--charcoal-mid); }
.section--navy .pkg-card .overline { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.section-header .overline { display: block; margin-bottom: 14px; }
.section-header h2        { margin-bottom: 18px; }
.section-header p         { max-width: 580px; margin: 0 auto; }

.divider {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.transparent { background: transparent; }
.nav.solid {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--navy);
  white-space: nowrap;
  transition: color 0.3s;
}
.nav.transparent .nav__logo { color: var(--white); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link:hover { color: var(--navy); }
.nav.transparent .nav__link { color: rgba(255,255,255,0.82); }
.nav.transparent .nav__link:hover { color: var(--white); }

.nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-mid);
  transition: color 0.3s;
}
.nav.transparent .nav__icon { color: rgba(255,255,255,0.82); }
.nav__icon:hover { color: var(--gold); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s;
  border: 1px solid var(--navy);
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--gold) !important; border-color: var(--gold) !important; }
.nav.transparent .nav__cta {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.nav.transparent .nav__cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.nav.transparent .nav__hamburger span { background: var(--white); }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--cream);
  padding: 32px 32px 40px;
  box-shadow: 0 8px 32px rgba(14,27,44,0.12);
  z-index: 999;
  border-top: 1px solid var(--border);
}
.nav__drawer.open { display: flex; flex-direction: column; gap: 0; }
.nav__drawer .nav__link {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.nav__drawer .nav__link::after { display: none; }
.nav__drawer .nav__cta {
  margin-top: 24px;
  justify-content: center;
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  padding: 14px 22px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero--short {
  height: 72vh;
  min-height: 480px;
}
.hero--medium {
  height: 82vh;
}

.hero__bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

/* Hero slideshow (crossfading slides, each with Ken Burns) */
.hero__slideshow .hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.8s var(--ease);
}
.hero__slideshow .hero-slide.active { opacity: 1; }
.hero__slideshow .hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__dots {
  position: absolute;
  bottom: 40px; right: clamp(24px, 4vw, 64px);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 26px; height: 2px;
  padding: 0;
  background: rgba(255,255,255,0.32);
  transition: background 0.4s var(--ease);
}
.hero__dot.active { background: var(--gold); }
.hero__dot:hover { background: var(--gold-light); }

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,27,44,0.22) 0%,
    rgba(14,27,44,0.14) 38%,
    rgba(14,27,44,0.62) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 920px;
  width: 100%;
}
.hero__content .overline {
  color: var(--gold-light);
  display: block;
  margin-bottom: 18px;
}
.hero__content h1 {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.28);
  margin-bottom: 20px;
}
.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 44px;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBob 2.5s ease-in-out infinite;
}
.hero__scroll svg { opacity: 0.5; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.32s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.btn--navy:hover { background: var(--gold); border-color: var(--gold); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--white);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn--gold:hover { background: var(--navy); border-color: var(--navy); }

/* ============================================================
   HOME — DIVISION CARDS
   ============================================================ */
.division-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.division-card {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.division-card__img {
  position: absolute; inset: 0;
}
.division-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.division-card:hover .division-card__img img { transform: scale(1.07); }

.division-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,27,44,0.88) 0%,
    rgba(14,27,44,0.3) 55%,
    transparent 100%
  );
  transition: opacity 0.5s;
}
.division-card:hover .division-card__overlay { opacity: 1.2; }

.division-card__body {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 3vw, 44px);
  width: 100%;
}
.division-card__body .overline {
  color: var(--gold-light);
  display: block;
  margin-bottom: 10px;
}
.division-card__body h3 {
  color: var(--white);
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  margin-bottom: 12px;
}
.division-card__body p {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  max-width: 280px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.05s, transform 0.4s 0.05s;
}
.division-card:hover .division-card__body p {
  opacity: 1;
  transform: translateY(0);
}
.division-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s;
}
.division-card:hover .division-card__arrow {
  opacity: 1;
  transform: translateY(0);
}
.division-card__arrow svg { transition: transform 0.3s; }
.division-card:hover .division-card__arrow svg { transform: translateX(4px); }

/* ============================================================
   WHY US STRIP
   ============================================================ */
.why-strip {
  background: var(--navy);
  padding: clamp(60px, 8vw, 100px) 0;
}
.why-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.why-item {
  text-align: center;
  padding: 0 12px;
}
.why-item__icon {
  width: 38px; height: 38px;
  color: var(--gold);
  margin: 0 auto 18px;
}
.why-item__title {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.why-item__text {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: var(--pad-section) 0;
  text-align: center;
}
.manifesto__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--navy);
  max-width: 820px;
  margin: 0 auto 28px;
}
.manifesto__attribution {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--navy-dark);
  padding: clamp(70px, 9vw, 110px) 0;
  text-align: center;
}
.newsletter h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  margin-bottom: 12px;
}
.newsletter .sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: 40px;
}
.newsletter__wrap {
  max-width: 460px;
  margin: 0 auto;
}
.newsletter__form {
  display: flex;
}
.newsletter__input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-right: none;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter__input:focus { border-color: var(--gold); }
.newsletter__btn {
  padding: 14px 22px;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.newsletter__btn:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.newsletter__success {
  display: none;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  padding: 18px 0;
}

/* ============================================================
   EXPERIENCE / CATEGORY GRID
   ============================================================ */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.exp-card {
  position: relative;
  height: 350px;
  overflow: hidden;
  cursor: pointer;
}
.exp-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.exp-card:hover .exp-card__img { transform: scale(1.06); }
.exp-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,27,44,0.82) 0%, transparent 60%);
}
.exp-card__label {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
}
.exp-card__label h4 { color: var(--white); font-size: 1.35rem; margin-bottom: 4px; }
.exp-card__label .overline { color: var(--gold-light); }

/* Minimal icon tiles (Alpine experiences) */
.exp-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.exp-icon-tile {
  background: var(--cream);
  padding: clamp(36px, 4vw, 56px) clamp(24px, 3vw, 40px);
  text-align: center;
  position: relative;
  transition: background 0.4s var(--ease);
}
.exp-icon-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.45s var(--ease);
}
.exp-icon-tile:hover { background: var(--white); }
.exp-icon-tile:hover::after { width: 56px; }
.exp-icon-tile__icon {
  width: 44px; height: 44px;
  margin: 0 auto 20px;
  color: var(--navy);
  transition: color 0.35s, transform 0.45s var(--ease);
}
.exp-icon-tile:hover .exp-icon-tile__icon {
  color: var(--gold);
  transform: translateY(-3px);
}
.exp-icon-tile__icon svg { width: 100%; height: 100%; }
.exp-icon-tile h4 {
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.exp-icon-tile p {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--charcoal-light);
  max-width: 250px;
  margin: 0 auto;
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.pkg-card:hover {
  box-shadow: 0 16px 48px rgba(14,27,44,0.1);
  transform: translateY(-3px);
}
.pkg-card__img {
  height: 230px;
  overflow: hidden;
}
.pkg-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pkg-card:hover .pkg-card__img img { transform: scale(1.06); }
.pkg-card__body { padding: 28px; }
.pkg-card__body .overline { display: block; margin-bottom: 8px; }
.pkg-card__body h4 { margin-bottom: 10px; }
.pkg-card__body p { font-size: 0.87rem; margin-bottom: 16px; line-height: 1.7; }
.pkg-card__price {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ============================================================
   ITINERARY TABS
   ============================================================ */
.itinerary-section { padding: var(--pad-section) 0; background: var(--cream); }
.itinerary-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.itin-tab {
  padding: 14px 28px;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s;
  background: none;
  font-family: var(--font-sans);
  font-weight: 400;
}
.itin-tab:hover { color: var(--navy); }
.itin-tab.active { color: var(--navy); border-bottom-color: var(--navy); }

.itin-panel { display: none; }
.itin-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.itin-panel__img {
  height: 520px;
  overflow: hidden;
}
.itin-panel__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.itin-panel__info .overline { display: block; margin-bottom: 8px; }
.itin-panel__info h3 { margin-bottom: 8px; line-height: 1.2; }
.itin-price {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.itin-desc { margin-bottom: 32px; }
.itin-days { margin-bottom: 32px; }
.itin-day {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.itin-day__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 3px;
}
.itin-day__content h5 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 3px;
}
.itin-day__content p { font-size: 0.84rem; line-height: 1.6; }
.itin-includes {
  background: var(--navy);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.itin-includes p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.6;
}
.itin-includes strong { color: var(--gold-light); font-weight: 400; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.blog-card { cursor: pointer; }
.blog-card__img {
  height: 248px;
  overflow: hidden;
  margin-bottom: 22px;
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.blog-card__tag {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.blog-card__date { font-size: 0.78rem; color: var(--charcoal-light); }
.blog-card h4 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s;
}
.blog-card:hover h4 { color: var(--gold); }
.blog-card p { font-size: 0.87rem; line-height: 1.72; }
.blog-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  transition: gap 0.3s;
}
.blog-card:hover .blog-card__readmore { gap: 10px; color: var(--gold); }

/* Article overlay */
.article-overlay {
  position: fixed; inset: 0;
  z-index: 2000;
  background: var(--cream);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.article-overlay.open { opacity: 1; pointer-events: all; }
.article-overlay__bar {
  position: sticky;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
.article-overlay__bar .site-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
}
.article-overlay__close {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.3s;
}
.article-overlay__close:hover { color: var(--gold); }
.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 40px 120px;
}
.article-body .overline { display: block; margin-bottom: 14px; }
.article-body h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.article-body .article-meta {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.article-body .hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  margin-bottom: 48px;
}
.article-body h2 { font-size: 1.7rem; margin: 48px 0 18px; }
.article-body p { margin-bottom: 22px; color: var(--charcoal); line-height: 1.9; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 24px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.6;
}

/* ============================================================
   ESCAPES — DESTINATIONS
   ============================================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.dest-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
}
.dest-card--tall { height: 410px; }
.dest-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.dest-card:hover .dest-card__img { transform: scale(1.07); }
.dest-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,27,44,0.8) 0%, transparent 55%);
}
.dest-card__label {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
}
.dest-card__label h4 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.dest-card__label .dest-hotel {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  font-family: var(--font-serif);
}

/* FORA grid */
.fora-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 48px 0;
}
.fora-item {
  background: var(--white);
  padding: 22px 26px;
  transition: background 0.3s;
}
.fora-item:hover { background: #f6f4f0; }
.fora-item h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.fora-item p { font-size: 0.82rem; color: var(--charcoal-light); line-height: 1.5; }
.fora-note {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  font-style: italic;
  margin-top: -24px;
  margin-bottom: 40px;
  text-align: center;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.event-card {
  position: relative;
  height: 440px;
  overflow: hidden;
  cursor: pointer;
}
.event-card--tall { height: 520px; grid-row: span 1; }
.event-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.event-card:hover .event-card__img { transform: scale(1.06); }
.event-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,27,44,0.92) 0%, rgba(14,27,44,0.2) 55%, transparent 100%);
}
.event-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 24px 28px;
  z-index: 2;
}
.event-card__content .overline { color: var(--gold-light); display: block; margin-bottom: 6px; }
.event-card__content h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 8px; }
.event-card__content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card__includes {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.event-tag {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(197,165,114,0.4);
  padding: 3px 8px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.event-card:hover .event-tag { opacity: 1; transform: translateY(0); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.step { padding: 40px 28px; }
.step__num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 20px;
}
.step h4 { margin-bottom: 12px; }
.step p { font-size: 0.88rem; }

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.enquiry-section { padding: var(--pad-section) 0; }
.enquiry-section .section-header { margin-bottom: 48px; }
.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 680px;
  margin: 0 auto;
}
.enquiry-form .span-2 { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.65; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-submit { grid-column: 1 / -1; }
.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.form-success__icon {
  width: 48px; height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.form-success h4 { font-size: 1.8rem; margin-bottom: 8px; }
.form-success p { color: var(--charcoal-light); }

/* Navy enquiry variant */
.enquiry-section--navy { background: var(--navy); }
.enquiry-section--navy .section-header h2,
.enquiry-section--navy .section-header h3 { color: var(--white); }
.enquiry-section--navy .section-header p { color: rgba(255,255,255,0.6); }
.enquiry-section--navy .form-group label { color: rgba(255,255,255,0.45); }
.enquiry-section--navy .form-group input,
.enquiry-section--navy .form-group select,
.enquiry-section--navy .form-group textarea {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  color: var(--white);
}
.enquiry-section--navy .form-success h4 { color: var(--white); }
.enquiry-section--navy .form-success p { color: rgba(255,255,255,0.6); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split__img {
  height: 560px;
  overflow: hidden;
}
.about-split__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-split__text .overline { display: block; margin-bottom: 14px; }
.about-split__text h2 { margin-bottom: 20px; }
.about-split__text p { margin-bottom: 18px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-card {
  border-top: 2px solid var(--gold);
  padding-top: 24px;
}
.value-card h4 { margin-bottom: 12px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  text-align: center;
  transition: box-shadow 0.3s;
}
.contact-card:hover { box-shadow: 0 8px 32px rgba(14,27,44,0.08); }
.contact-card__icon { width: 38px; height: 38px; margin: 0 auto 18px; color: var(--gold); }
.contact-card h5 { color: var(--navy); margin-bottom: 8px; }
.contact-card a, .contact-card p { font-size: 0.88rem; color: var(--charcoal-light); transition: color 0.3s; }
.contact-card a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: clamp(64px,8vw,100px) 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
.footer__brand-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 16px;
}
.footer__brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.84rem;
  max-width: 270px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  transition: all 0.3s;
}
.footer__socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer__col-title {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer__col ul li a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p, .footer__bottom a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.6); }
.footer__legal { display: flex; gap: 20px; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(14,27,44,0.32);
  color: var(--white);
  transition: all 0.35s var(--ease);
}
.wa-float:hover {
  background: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* ============================================================
   POLICY / TERMS
   ============================================================ */
.policy-page { padding: var(--pad-section) 0; }
.policy-content { max-width: 740px; margin: 0 auto; }
.policy-content h2 {
  font-size: 1.5rem;
  margin: 44px 0 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.policy-content h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.policy-content p { margin-bottom: 16px; color: var(--charcoal); }
.policy-content ul, .policy-content ol {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 18px;
}
.policy-content li { font-size: 0.95rem; color: var(--charcoal); margin-bottom: 8px; line-height: 1.75; }
.policy-content a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.policy-content a:hover { color: var(--gold); }
.policy-content .updated {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 0.78rem;
  color: var(--charcoal-light);
  font-style: italic;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0)     translateY(0); }
  100% { transform: scale(1.09) translateX(-0.8%) translateY(-0.4%); }
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }
.pb-0  { padding-bottom: 0 !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .division-grid { grid-template-columns: 1fr; }
  .division-card { height: 440px; }
  .why-strip__grid { grid-template-columns: repeat(2,1fr); }
  .packages-grid { grid-template-columns: repeat(2,1fr); }
  .itin-panel.active { grid-template-columns: 1fr; gap: 32px; }
  .itin-panel__img { height: 380px; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .exp-icon-grid { grid-template-columns: repeat(2,1fr); }
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .dest-card--tall { height: 340px; }
  .events-grid { grid-template-columns: repeat(2,1fr); }
  .event-card--tall { height: 440px; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step { border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-split__img { height: 400px; }
  .values-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .experience-grid { grid-template-columns: 1fr; }
  .exp-icon-grid { grid-template-columns: 1fr; }
  .hero__dots { right: 50%; transform: translateX(50%); bottom: 76px; }
  .packages-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .enquiry-form { grid-template-columns: 1fr; }
  .enquiry-form .span-2 { grid-column: 1; }
  .fora-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { border-right: 1px solid rgba(255,255,255,0.18); }
  .hero__actions { flex-direction: column; align-items: center; }
  .itin-nav { overflow-x: auto; flex-wrap: nowrap; }
  .wa-float { bottom: 18px; right: 18px; width: 46px; height: 46px; }
  .article-overlay__bar { padding: 0 20px; }
  .article-body { padding: 40px 20px 80px; }
  .article-body .hero-img { height: 260px; }
}

@media (max-width: 540px) {
  .dest-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .event-card--tall { height: 340px; }
  .why-strip__grid { grid-template-columns: 1fr; }
  .division-card { height: 380px; }
}
