/* ═══════════════════════════════════════════════════════════
   KANDY TUK TUK TOURS — style.css
   Design Direction: Editorial Luxury × Tropical Warmth
   Fonts: Syne (display/UI) + Fraunces (italic serif) + DM Mono (data)
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Palette */
  --clr-night:       #0D0D0D;
  --clr-dark:        #141414;
  --clr-surface:     #1C1C1C;
  --clr-surface-2:   #242424;
  --clr-border:      rgba(255,255,255,0.07);
  --clr-border-soft: rgba(255,255,255,0.04);

  --clr-gold:        #C9A96E;
  --clr-gold-light:  #E2C99A;
  --clr-gold-dim:    rgba(201,169,110,0.15);
  --clr-crimson:     #8D0000;

  --clr-sage:        #7A9E7E;
  --clr-sage-dim:    rgba(122,158,126,0.12);
  --clr-cream:       #F5F0E8;
  --clr-cream-dim:   rgba(245,240,232,0.06);

  --clr-text-primary:   #F0EAE0;
  --clr-text-secondary: rgba(240,234,224,0.55);
  --clr-text-muted:     rgba(240,234,224,0.35);

  /* Light surface tokens */
  --clr-bg-light:        #F7F4EE;
  --clr-surface-light:   #FFFFFF;
  --clr-border-light:    rgba(0,0,0,0.08);
  --clr-text-on-light:   #0D0D0D;
  --clr-text-on-light-2: rgba(13,13,13,0.55);

  /* Type scale */
  --font-display: 'Fraunces', serif;
  --font-ui:      'Syne', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Spacing */
  --section-py:    clamp(4rem, 8vw, 7rem);
  --container-px:  clamp(1.25rem, 5vw, 3rem);
  --container-max: 1200px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);
}

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

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

body {
  font-family: var(--font-ui);
  background: var(--clr-night);
  color: var(--clr-text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: var(--font-ui);
}

/* ── SCROLL-REVEAL ── */
.reveal-target {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal-target.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── SHARED BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn--gold {
  background: var(--clr-gold);
  color: var(--clr-night);
}
.btn--gold:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text-primary);
  border: 1.5px solid rgba(240,234,224,0.2);
}
.btn--ghost:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* ── SECTION SHARED ── */
.section {
  padding: var(--section-py) var(--container-px);
}

.section__container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section__header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-sage);
  margin-bottom: 0.75rem;
  display: block;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--clr-text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section__desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--clr-text-secondary);
}

/* Light variants */
.section__label--light { color: var(--clr-sage); }
.section__title--light { color: var(--clr-cream); }
.section__desc--light  { color: rgba(245,240,232,0.6); }

/* ═══════════════════════════════════════════ HERO ═══ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--clr-night);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem var(--container-px) 5rem;
  overflow: hidden;
  text-align: center;
}

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

/* Diagonal grid overlay */
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Glow blobs */
.hero::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(122,158,126,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 5%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 50%;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  background: var(--clr-cream-dim);
  backdrop-filter: blur(6px);
  animation: fadeUp 0.8s 0.1s both;
  position: relative;
  z-index: 2;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-sage);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Title */
.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 13vw, 9rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--clr-cream);
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-line.line-1 { color: var(--clr-text-secondary); font-weight: 300; font-style: italic; }
.hero__title-line.line-2 { color: var(--clr-gold); }
.hero__title-line.line-3 { color: var(--clr-cream); }

.hero__title em {
  font-style: italic;
  color: var(--clr-gold);
}

.line-1 { animation: fadeUp 0.9s 0.2s both; }
.line-2 { animation: fadeUp 0.9s 0.35s both; }
.line-3 { animation: fadeUp 0.9s 0.5s both; }

.hero__sub {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.75;
  color: var(--clr-text-secondary);
  max-width: 520px;
  margin: 0 auto 2.25rem;
  font-weight: 400;
  animation: fadeUp 0.9s 0.65s both;
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.9s 0.8s both;
}

/* Stats row */
.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-cream-dim);
  backdrop-filter: blur(8px);
  overflow: hidden;
  animation: fadeUp 0.9s 1s both;
}

.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1.5rem;
  gap: 0.2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s 1.2s both;
  z-index: 2;
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.scroll-track {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
  border-radius: 2px;
  overflow: hidden;
}

.scroll-thumb {
  width: 100%;
  height: 50%;
  background: var(--clr-gold);
  border-radius: 2px;
  animation: scrollThumb 2s ease-in-out infinite;
}

@keyframes scrollThumb {
  0% { transform: translateY(-100%); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0; }
}

/* ═══════════════════════════════════ TRUST BAR ═══ */
.trust-bar {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 0.9rem var(--container-px);
}

.trust-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--clr-text-secondary);
}

.trust-item svg {
  color: var(--clr-sage);
  flex-shrink: 0;
}

/* ═══════════════════════════════════ PACKAGES ═══ */
.packages {
  background: var(--clr-bg-light);
}

.packages .section__label { color: var(--clr-sage); }
.packages .section__title { color: var(--clr-night); }
.packages .section__desc { color: var(--clr-text-on-light-2); }

.packages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ── PACKAGE CARD ── */
.pkg-card {
  background: var(--clr-surface-light);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

/* Featured card */
.pkg-card--featured {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 1px var(--clr-gold), 0 8px 32px rgba(201,169,110,0.12);
}

.pkg-card--featured:hover {
  box-shadow: 0 0 0 1px var(--clr-gold), 0 24px 64px rgba(201,169,110,0.2);
}

.pkg-card__popular-badge {
  position: absolute;
  top: 1rem;
  right: -2.2rem;
  background: var(--clr-crimson);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 3rem;
  transform: rotate(45deg);
  z-index: 10;
}

/* Media */
.pkg-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--clr-night);
  display: block;
}

.pkg-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}

.pkg-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--clr-night) 0%, #1a2820 50%, #0d1a14 100%);
  padding: 1.5rem;
  text-align: center;
}

.placeholder-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(201,169,110,0.6);
  font-weight: 300;
}

.placeholder-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}

/* Overlay tags (duration/km) */
.pkg-card__overlay-tags {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}

.otag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: 3px;
  background: rgba(13,13,13,0.75);
  color: var(--clr-gold);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201,169,110,0.2);
}

/* Card body */
.pkg-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pkg-card__head {}

.pkg-vehicle-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-sage);
  background: var(--clr-sage-dim);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0.65rem;
}

.pkg-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--clr-night);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.pkg-card__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.88rem;
  color: rgba(13,13,13,0.5);
  line-height: 1.5;
}

/* Price block */
.pkg-price-block {
  background: var(--clr-night);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.price-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.35rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-currency {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.7;
}

.price-basis {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--clr-text-muted);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

.price-block__right {
  text-align: right;
  flex-shrink: 0;
}

.price-extra-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.25rem;
}

.price-extra {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(201,169,110,0.65);
  white-space: nowrap;
}

.price-extra span {
  font-size: 0.65rem;
  font-family: var(--font-mono);
}

/* Stops */
.stops-section {}

.stops-heading {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.4);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stops-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-gold-dim);
  color: var(--clr-gold);
  font-size: 0.65rem;
  font-weight: 700;
}

.stops-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stop {
  border-bottom: 1px solid var(--clr-border-light);
}

.stop:last-child {
  border-bottom: none;
}

.stop__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.stop__toggle:hover {
  background: rgba(0,0,0,0.025);
}

.stop--open .stop__toggle {
  background: rgba(201,169,110,0.04);
}

.stop__num {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--clr-gold);
  flex-shrink: 0;
  width: 24px;
  opacity: 0.8;
}

.stop__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.stop__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-night);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stop__meta {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: rgba(13,13,13,0.4);
  letter-spacing: 0.05em;
}

.stop__chevron {
  color: rgba(13,13,13,0.3);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out-expo), color 0.2s;
}

.stop--open .stop__chevron {
  transform: rotate(180deg);
  color: var(--clr-gold);
}

.stop__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.stop--open .stop__detail {
  max-height: 200px;
}

.stop__detail p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(13,13,13,0.65);
  padding: 0 0.9rem 0.9rem 2.25rem;
}

/* Extras block */
.pkg-card__extras {
  font-size: 0.75rem;
  color: rgba(13,13,13,0.5);
  line-height: 1.6;
  padding: 0.65rem 0.85rem;
  background: #FBF8F2;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--clr-gold);
}

.extras-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.4);
  margin-bottom: 0.3rem;
}

/* Drop-off */
.pkg-card__dropoff {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(13,13,13,0.5);
  line-height: 1.5;
}

.pkg-card__dropoff svg {
  color: var(--clr-sage);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pkg-card__dropoff strong {
  color: var(--clr-night);
  font-weight: 600;
}

/* Book button */
.pkg-card__book-btn {
  display: block;
  width: 100%;
  background: var(--clr-gold);
  color: var(--clr-night);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: auto;
  border: none;
  cursor: pointer;
}

.pkg-card__book-btn:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}

.pkg-card--featured .pkg-card__book-btn {
  background: var(--clr-gold);
  box-shadow: 0 4px 16px rgba(201,169,110,0.25);
}

/* ═══════════════════════════════ PRICING SECTION ═══ */
.pricing-section {
  background: var(--clr-dark);
  border-top: 1px solid var(--clr-border);
}

.pricing-section .section__header--light {
  max-width: 580px;
}

/* Table */
.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  margin-bottom: 2rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.pricing-table thead tr {
  background: var(--clr-surface);
}

.pricing-table th {
  text-align: left;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-sage);
  border-bottom: 1px solid var(--clr-border);
}

.pricing-table td {
  padding: 0.9rem 1.1rem;
  color: var(--clr-text-secondary);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--clr-border-soft);
  vertical-align: middle;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: var(--clr-cream-dim);
}

.tr-featured {
  background: rgba(201,169,110,0.04);
}

.td-pkg {
  color: var(--clr-text-primary) !important;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.95rem !important;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.td-pkg, .pricing-table td.td-pkg {
  display: table-cell;
}

.table-popular {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--clr-crimson);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.td-price {
  font-family: var(--font-display);
  font-size: 1.1rem !important;
  color: var(--clr-gold) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.td-extra {
  font-family: var(--font-mono);
  font-size: 0.75rem !important;
  color: var(--clr-text-muted) !important;
}

/* Pricing notes */
.pricing-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pricing-note-item {
  padding: 1.1rem 1.25rem;
  border-right: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pricing-note-item:nth-child(even) { border-right: none; }
.pricing-note-item:nth-child(3),
.pricing-note-item:nth-child(4) { border-bottom: none; }

.pn-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.pn-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-gold);
}

/* ═══════════════════════════════════════ TIPS ═══ */
.tips-section {
  background: var(--clr-bg-light);
}

.tips-section .section__label { color: var(--clr-sage); }
.tips-section .section__title { color: var(--clr-night); }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tip-card {
  background: var(--clr-surface-light);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-sage));
  opacity: 0;
  transition: opacity 0.3s;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.tip-card:hover::before {
  opacity: 1;
}

.tip-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--clr-gold-dim), var(--clr-sage-dim));
  border-radius: var(--radius-sm);
  color: var(--clr-gold);
  margin-bottom: 1rem;
}

.tip-card__title {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-night);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.tip-card__body {
  font-size: 0.8rem;
  color: var(--clr-text-on-light-2);
  line-height: 1.7;
}

/* ═══════════════════════════════════ STICKY CTA ═══ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-night);
  border-top: 1px solid var(--clr-border);
  padding: 0.85rem 1.25rem;
  z-index: 200;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.sticky-cta--visible {
  transform: translateY(0);
}

.sticky-cta__text {
  display: flex;
  flex-direction: column;
}

.sticky-cta__text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.sticky-cta__text span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-top: 0.15rem;
}

.sticky-cta__btn {
  background: var(--clr-gold);
  color: var(--clr-night);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.sticky-cta__btn:hover {
  background: var(--clr-gold-light);
}

/* ─────────────────── ANIMATIONS ─────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════ */

/* ── Ultra-wide (1400px+) ── */
@media (min-width: 1400px) {
  :root {
    --container-max: 1360px;
  }

  .packages__grid {
    gap: 2rem;
  }

  .hero__title {
    font-size: 10rem;
  }

  .tips-grid {
    gap: 1.75rem;
  }
}

/* ── Large Desktop (1200px–1399px) ── */
@media (min-width: 1200px) {
  .packages__grid {
    gap: 1.75rem;
  }
}

/* ── Standard Desktop (1024px–1199px) ── */
@media (max-width: 1199px) {
  .hero__stats {
    max-width: 520px;
  }

  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* ── Tablet Landscape (900px–1023px) ── */
@media (max-width: 1023px) {
  .packages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-notes {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-note-item:nth-child(3) { border-bottom: 1px solid var(--clr-border); }
  .pricing-note-item:nth-child(4) { border-bottom: none; }
}

/* ── Tablet Portrait (768px–899px) ── */
@media (max-width: 899px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero__stats {
    gap: 0;
    width: 100%;
    max-width: 480px;
  }

  .packages__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pkg-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile (max 767px) ── */
@media (max-width: 767px) {
  :root {
    --section-py: 3rem;
    --container-px: 1.1rem;
  }

  /* Show sticky CTA */
  .sticky-cta {
    display: flex;
  }

  /* Body padding for sticky bar */
  body {
    padding-bottom: 72px;
  }

  /* Hero */
  .hero {
    padding: 6rem 1.25rem 4rem;
    min-height: 100svh;
  }

  .hero__badge {
    font-size: 0.6rem;
    padding: 0.45rem 0.9rem;
  }

  .hero__title {
    font-size: clamp(3rem, 16vw, 5rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
  }

  .hero__sub {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    margin-top: 2.5rem;
  }

  .hero__stat {
    padding: 0.9rem 0.6rem;
  }

  .stat-num {
    font-size: 1.25rem;
  }

  .hero__scroll-indicator {
    display: none;
  }

  /* Trust bar */
  .trust-bar__inner {
    gap: 0.6rem 1.2rem;
  }

  .trust-item {
    font-size: 0.72rem;
  }

  /* Packages */
  .packages__grid {
    grid-template-columns: 1fr;
  }

  .pkg-card {
    max-width: 100%;
  }

  .pkg-card__body {
    padding: 1.1rem;
    gap: 0.9rem;
  }

  .pkg-card__name {
    font-size: 1.2rem;
  }

  .pkg-price-block {
    padding: 0.85rem;
  }

  .price-amount {
    font-size: 1.5rem;
  }

  .stop__toggle {
    padding: 0.65rem 0.75rem;
  }

  .stop__name {
    font-size: 0.78rem;
  }

  /* Pricing */
  .pricing-notes {
    grid-template-columns: 1fr;
  }

  .pricing-note-item {
    border-right: none !important;
    border-bottom: 1px solid var(--clr-border) !important;
  }

  .pricing-note-item:last-child {
    border-bottom: none !important;
  }

  /* Tips */
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .tip-card {
    padding: 1.1rem;
  }

  /* Section */
  .section__header {
    margin-bottom: 2rem;
  }

  .section__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  /* Pricing table */
  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem 0.85rem;
    font-size: 0.78rem;
  }

  .td-price {
    font-size: 0.95rem !important;
  }
}

/* ── Small Mobile (max 360px) ── */
@media (max-width: 360px) {
  .hero__title {
    font-size: 2.75rem;
  }

  .hero__stat {
    padding: 0.75rem 0.35rem;
  }

  .stat-num {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.52rem;
  }

  .pkg-card__body {
    padding: 1rem 0.85rem;
  }

  .price-amount {
    font-size: 1.3rem;
  }

  .pkg-card__name {
    font-size: 1.1rem;
  }
}

/* ── Print ── */
@media print {
  .hero__scroll-indicator,
  .hero__grid-lines,
  .hero__noise,
  .sticky-cta,
  .trust-bar { display: none !important; }

  body { background: #fff; color: #000; padding-bottom: 0; }

  .hero {
    background: #fff;
    color: #000;
    min-height: auto;
    padding: 2rem;
  }

  .hero__title { color: #000; font-size: 3rem; }
  .hero__title-line.line-2 { color: #9B6900; }
  .pkg-card { break-inside: avoid; }
}