/* Maive Trips — Main Stylesheet v1.0.0 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #1C2B1E;
  --deep:     #0F1A10;
  --sage:     #4A6741;
  --moss:     #6B8F5E;
  --cream:    #F5F0E8;
  --warm:     #EDE5D4;
  --sand:     #D4C4A8;
  --copper:   #B8784A;
  --rust:     #A0522D;
  --offwhite: #FAFAF7;
  --charcoal: #2C2C2C;
  --mid:      #5C5C5C;
  --light:    #9A9A9A;
  --white:    #FFFFFF;
  --border:   rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--offwhite); color: var(--charcoal); overflow-x: hidden; }

/* ── NAV ── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(15,26,16,0.85);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
#site-nav.scrolled { background: rgba(10,18,10,0.96); }

.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-mark { width: 32px; height: 32px; background: linear-gradient(135deg, var(--moss) 0%, var(--copper) 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--white); letter-spacing: 0.02em; }
.logo-sub { font-size: 0.65rem; font-weight: 300; color: var(--sand); letter-spacing: 0.15em; text-transform: uppercase; margin-top: -2px; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.75); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }

.nav-cta { display: flex; gap: 0.75rem; align-items: center; }
.btn-ghost { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; color: rgba(255,255,255,0.8); text-decoration: none; border: 1px solid rgba(255,255,255,0.25); padding: 0.5rem 1.2rem; border-radius: 4px; transition: all 0.2s; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.btn-primary { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--white); text-decoration: none; background: var(--copper); padding: 0.5rem 1.4rem; border-radius: 4px; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--rust); }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; padding-bottom: 6rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,18,10,0.3) 0%, rgba(10,18,10,0.1) 40%, rgba(10,18,10,0.7) 80%, rgba(10,18,10,0.95) 100%), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&q=80') center/cover no-repeat; }
.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 0 3rem; width: 100%; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); color: var(--sand); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.45rem 1rem; border-radius: 2px; margin-bottom: 1.75rem; }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--moss); }

.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 500; line-height: 1.1; color: var(--white); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--sand); }
.hero p { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 520px; margin-bottom: 2.5rem; }

.hero-search-tabs { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.search-tab { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); background: none; border: 1px solid rgba(255,255,255,0.12); padding: 0.4rem 0.85rem; border-radius: 3px; cursor: pointer; transition: all 0.2s; }
.search-tab:hover, .search-tab.active { color: var(--white); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

.hero-search { background: rgba(255,255,255,0.06); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 0.5rem; display: flex; gap: 0.5rem; max-width: 640px; }
.search-input-wrap { flex: 1; display: flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 0 1rem; }
.search-input-wrap svg { flex-shrink: 0; opacity: 0.5; }
.search-input-wrap input { flex: 1; background: none; border: none; outline: none; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--white); padding: 0.9rem 0; }
.search-input-wrap input::placeholder { color: rgba(255,255,255,0.4); }
.search-btn { background: var(--copper); color: var(--white); border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0 1.75rem; border-radius: 4px; transition: background 0.2s; }
.search-btn:hover { background: var(--rust); }

.hero-stats { display: flex; gap: 3rem; margin-top: 3rem; }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 600; color: var(--white); line-height: 1; }
.hero-stat .label { font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

/* ── SHARED SECTION ── */
section { padding: 6rem 3rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--copper); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 500; line-height: 1.2; color: var(--forest); letter-spacing: -0.02em; }
.section-title em { font-style: italic; }
.section-desc { font-size: 0.95rem; font-weight: 300; color: var(--mid); line-height: 1.8; max-width: 480px; margin-top: 0.75rem; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3rem; }

/* ── CATEGORIES ── */
.categories { background: var(--deep); }
.categories .section-title { color: var(--cream); }
.categories .section-desc { color: rgba(245,240,232,0.55); }
.categories .section-label { color: var(--sand); }
.categories .section-label::before { background: var(--sand); }
.cat-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; margin-top: 3rem; }
.cat-card { position: relative; aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; cursor: pointer; text-decoration: none; transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94); display: block; }
.cat-card:hover { transform: translateY(-6px); }
.cat-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.cat-card:hover .cat-card-bg { transform: scale(1.05); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,18,10,0.92) 0%, rgba(10,18,10,0.2) 60%, transparent 100%); }
.cat-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem 1rem; }
.cat-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 0.6rem; font-size: 1rem; }
.cat-name { font-size: 0.82rem; font-weight: 600; color: var(--white); letter-spacing: 0.04em; }
.cat-count { font-size: 0.65rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

/* ── STAYS ── */
.stays { background: var(--cream); }
.stays-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; gap: 2rem; }
.view-all { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; padding-bottom: 0.25rem; border-bottom: 1px solid var(--forest); transition: color 0.2s, border-color 0.2s; }
.view-all:hover { color: var(--copper); border-color: var(--copper); }
.stays-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.stay-card { background: var(--white); border-radius: 8px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.stay-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(28,43,30,0.12); }
.stay-img { width: 100%; aspect-ratio: 4/3; background: var(--sand); position: relative; overflow: hidden; }
.stay-img-inner { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.stay-card:hover .stay-img-inner { transform: scale(1.04); }
.stay-badge { position: absolute; top: 1rem; left: 1rem; background: rgba(15,26,16,0.75); backdrop-filter: blur(8px); color: var(--cream); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 3px; }
.stay-body { padding: 1.4rem; }
.stay-location { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); margin-bottom: 0.4rem; }
.stay-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--forest); line-height: 1.3; margin-bottom: 0.75rem; }
.stay-meta { display: flex; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.stay-meta-item { display: flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; color: var(--light); }
.stay-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--warm); }
.stay-price .from { font-size: 0.65rem; color: var(--light); }
.stay-price .amount { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--forest); }
.stay-price .night { font-size: 0.7rem; color: var(--mid); }
.btn-book { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: var(--forest); color: var(--white); padding: 0.55rem 1.1rem; border-radius: 4px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s; }
.btn-book:hover { background: var(--sage); }

/* ── SERVICES ── */
.services { background: var(--offwhite); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3rem; }
.service-card { border: 1px solid var(--sand); border-radius: 8px; padding: 1.75rem 1.5rem; background: var(--white); transition: all 0.3s ease; cursor: pointer; }
.service-card:hover { border-color: var(--sage); box-shadow: 0 12px 32px rgba(28,43,30,0.08); transform: translateY(-3px); }
.service-icon { width: 48px; height: 48px; background: var(--warm); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.service-cat { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--copper); margin-bottom: 0.4rem; }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--forest); margin-bottom: 0.6rem; }
.service-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.25rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.service-tag { font-size: 0.65rem; font-weight: 500; background: var(--warm); color: var(--mid); padding: 0.25rem 0.6rem; border-radius: 2px; }
.service-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--warm); }
.service-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--forest); }
.service-price span { font-size: 0.7rem; color: var(--light); font-family: 'Inter', sans-serif; font-weight: 400; }

/* ── BUNDLES ── */
.bundles { background: linear-gradient(165deg, var(--forest) 0%, var(--deep) 100%); position: relative; overflow: hidden; }
.bundles::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(107,143,94,0.12) 0%, transparent 70%); border-radius: 50%; }
.bundles .section-title { color: var(--cream); }
.bundles .section-label { color: var(--sand); }
.bundles .section-label::before { background: var(--sand); }
.bundles-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 2rem; }
.bundles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.bundle-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; transition: all 0.35s ease; cursor: pointer; }
.bundle-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); transform: translateY(-4px); }
.bundle-img { width: 100%; aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.bundle-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(10,18,10,0.7) 100%); }
.bundle-duration { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 3px; }
.bundle-body { padding: 1.5rem; }
.bundle-combo { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.bundle-pill { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.06em; background: rgba(107,143,94,0.2); color: var(--moss); border: 1px solid rgba(107,143,94,0.3); padding: 0.25rem 0.65rem; border-radius: 2px; }
.bundle-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--cream); line-height: 1.3; margin-bottom: 0.6rem; }
.bundle-desc { font-size: 0.8rem; color: rgba(245,240,232,0.55); line-height: 1.7; margin-bottom: 1.25rem; }
.bundle-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); }
.bundle-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--cream); }
.bundle-price-note { font-size: 0.7rem; color: rgba(255,255,255,0.4); font-family: 'Inter', sans-serif; }
.btn-bundle { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: var(--copper); color: var(--white); padding: 0.55rem 1.1rem; border-radius: 4px; text-decoration: none; transition: background 0.2s; }
.btn-bundle:hover { background: var(--rust); }

/* ── DESTINATIONS ── */
.destinations { background: var(--cream); }
.dest-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 1.25rem; margin-top: 3rem; }
.dest-card { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; text-decoration: none; display: block; }
.dest-card:first-child { grid-row: 1 / 3; }
.dest-card:first-child { aspect-ratio: unset; }
.dest-card:not(:first-child) { aspect-ratio: 4/3; }
.dest-bg { width: 100%; height: 100%; min-height: 200px; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.dest-card:first-child .dest-bg { min-height: 400px; }
.dest-card:hover .dest-bg { transform: scale(1.05); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,18,10,0.85) 0%, transparent 60%); }
.dest-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.dest-country { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.3rem; }
.dest-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: var(--white); line-height: 1.2; }
.dest-card:not(:first-child) .dest-name { font-size: 1.1rem; }
.dest-listings { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }
.dest-coming { opacity: 0.6; }

/* ── HOW IT WORKS ── */
.how { background: var(--offwhite); }
.how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3.5rem; }
.how-step { position: relative; }
.how-step-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--warm); line-height: 1; margin-bottom: 1.25rem; position: relative; }
.how-step-num::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 2px; background: var(--copper); }
.how-step h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--forest); margin-bottom: 0.6rem; margin-top: 1rem; }
.how-step p { font-size: 0.85rem; color: var(--mid); line-height: 1.7; }
.how-step::after { content: '→'; position: absolute; top: 0.6rem; right: -1rem; font-size: 1.2rem; color: var(--sand); }
.how-step:last-child::after { display: none; }

/* ── PROVIDER STRIP (compact CTA) ── */
.list-cta { background: var(--warm); border-top: 1px solid var(--sand); padding: 4rem 3rem; }
.provider-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.provider-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 500; line-height: 1.25; color: var(--forest); margin-bottom: 0.75rem; }
.provider-strip h2 em { font-style: italic; }
.provider-strip p { font-size: 0.88rem; color: var(--mid); line-height: 1.75; margin-bottom: 0; }
.provider-strip-right { display: flex; flex-direction: column; gap: 1.5rem; }
.provider-strip-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.strip-pill { font-size: 0.75rem; font-weight: 500; background: var(--white); border: 1px solid var(--sand); color: var(--forest); padding: 0.4rem 0.85rem; border-radius: 20px; }
.provider-strip-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--deep); }
.testimonials .section-title { color: var(--cream); }
.testimonials .section-label { color: var(--sand); }
.testimonials .section-label::before { background: var(--sand); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 2rem; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 1.25rem; font-size: 0.85rem; color: var(--copper); }
.testi-text { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 400; font-style: italic; color: var(--cream); line-height: 1.7; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sage); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); font-weight: 600; }
.testi-name { font-size: 0.82rem; font-weight: 600; color: var(--cream); }
.testi-role { font-size: 0.7rem; color: rgba(245,240,232,0.4); }

/* ── FOOTER ── */
#site-footer { background: var(--deep); border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 3rem 2.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand .logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--cream); }
.footer-brand .logo-sub { font-size: 0.65rem; letter-spacing: 0.15em; color: var(--sand); text-transform: uppercase; margin-bottom: 1rem; display: block; }
.footer-tagline { font-size: 0.85rem; color: rgba(245,240,232,0.5); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.2s; }
.social-link:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.82rem; color: rgba(245,240,232,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-copy a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  #site-nav { padding: 1rem 1.75rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.75rem; }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .stays-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .bundles-grid { grid-template-columns: repeat(2,1fr); }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card:first-child { grid-row: auto; }
  .how-grid { grid-template-columns: repeat(2,1fr); }
  .how-step::after { display: none; }
  .provider-strip { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  #site-nav { padding: 1rem 1.25rem; }
  .hero-content { padding: 0 1.25rem; }
  .hero h1 { font-size: 2.4rem; }
  section { padding: 3.5rem 1.25rem; }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .stays-grid, .services-grid, .bundles-grid, .dest-grid, .how-grid, .testi-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .nav-cta .btn-ghost { display: none; }
  #site-footer { padding: 3rem 1.25rem 2rem; }
  .section-header-row { flex-direction: column; gap: 0.5rem; }
  .stays-header, .bundles-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
