/* ============================================================
   PICK MY HOLIDAYS — MAIN CSS  (v4 — mobile-first, hero fixed)
   Brand: #ff6a00 / #000 / #fff / #2e8b57
   ============================================================ */






   /* ================= MOBILE FIX START ================= */

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Universal container fix */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* Flex fix */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* Images always responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Fix large sections */
section {
  width: 100%;
  overflow: hidden;
}

/* Buttons & inputs */
input, button {
  max-width: 100%;
}

/* Remove desktop cursor in mobile */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
}

/* ================= MOBILE BREAKPOINT ================= */

@media (max-width: 768px) {

  h1 { font-size: 28px !important; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 20px !important; }

  /* Hero section fix */
  .hero {
    height: auto !important;
    padding: 60px 20px !important;
    text-align: center;
  }

  .hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Cards */
  .card, .service-card, .package-card {
    width: 100% !important;
    margin-bottom: 20px;
  }

  /* Navigation */
  nav {
    flex-direction: column;
  }

  /* Grid fix */
  .grid {
    display: grid;
    grid-template-columns: 1fr !important;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

  body {
    font-size: 14px;
  }

  .hero {
    padding: 40px 15px !important;
  }

}





* {
  max-width: 100%;
}

body {
  overflow-x: hidden;
}
/* ================= MOBILE FIX END ================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Outfit:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --orange:       #ff6a00;
  --orange-dark:  #e05a00;
  --orange-light: #ff8c38;
  --black:        #000000;
  --black-soft:   #0a0a0a;
  --black-card:   #111111;
  --black-mid:    #1a1a1a;
  --black-border: #2a2a2a;
  --white:        #ffffff;
  --white-soft:   #f5f2ee;
  --white-muted:  #c8c3bc;
  --green:        #2e8b57;
  --green-light:  #3aad6e;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Outfit', sans-serif;
  --transition:   0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  --shadow-orange:0 0 36px rgba(255,106,0,.28);
  --shadow-card:  0 16px 50px rgba(0,0,0,.5);
  --radius:       12px;
  --radius-lg:    20px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::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-body);
  background: var(--black-soft);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; }

/* ── CUSTOM CURSOR (desktop only) ──────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  width: 34px; height: 34px; border: 2px solid rgba(255,106,0,.55);
  border-radius: 50%; position: fixed; pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%); transition: width .3s, height .3s, border-color .3s;
}
.cursor-ring.hover { width: 52px; height: 52px; border-color: var(--orange); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }

/* ── LOADING SCREEN FIX ───────────────────────── */

#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 100000;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* PERFECT CENTER */

  text-align: center;
}

/* LOGO */
.loader-logo {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 3px solid var(--white);
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

/* CANVAS */
#loader-canvas {
  width: 120px;
  height: 120px;
  margin-bottom: 15px;

}

/* BRAND */
.loader-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--white);
}

.loader-brand span {
  color: white;
}

/* TAGLINE */
.loader-tagline {
  font-size: 0.75rem;
  color: var(--white-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* LOADING BAR */
.loader-bar {
  width: 180px;
  height: 2px;
  background: var(--black-border);
  border-radius: 2px;
  margin-top: 20px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  width: 0%;
  animation: loaderFill 2s ease forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* SPINNER */
.loader-ring {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255,106,0,.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spinRing .8s linear infinite;
  margin-top: 20px;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}
/* ── SCROLL PROGRESS ────────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg,var(--orange),var(--orange-light));
  z-index: 99997; width: 0%; transition: width .1s linear;
}




/* ── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 18px 0;
  transition: all .4s ease;
  background: transparent;
}

/* SCROLL EFFECT */
#navbar.scrolled {
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--black-border);
}

/* BRAND + LOGO ALIGN */
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand span {
  color: var(--orange);
}

/* LOGO CIRCLE */
.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--orange);
  flex-shrink: 0;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .5px;
  color: rgba(255,255,255,.85) !important;
  padding: 6px 12px !important;
  position: relative;
  transition: color .3s;
}

/* UNDERLINE EFFECT */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--orange);
  transition: left .3s, right .3s;
}

.navbar-nav .nav-link:hover {
  color: var(--orange) !important;
}

.navbar-nav .nav-link:hover::after {
  left: 12px;
  right: 12px;
}

/* CTA BUTTON */
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 6px;
  padding: 7px 18px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
}

.nav-cta::after {
  display: none !important;
}

/* TOGGLER */
.navbar-toggler {
  border-color: var(--orange);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* MOBILE MENU */
.navbar-collapse {
  background: rgba(0,0,0,.97);
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--black-border);
  border-top: none;
}

/* DESKTOP RESET */
@media (min-width: 992px) {
  .navbar-collapse {
    background: transparent;
    border: none;
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

  #navbar {
    padding: 12px 0;
  }

  .nav-logo {
    width: 34px;
    height: 34px;
  }

  .nav-brand {
    font-size: 1.2rem;
  }

  .navbar-nav {
    padding: 10px 0;
  }

  .navbar-nav .nav-link {
    padding: 10px 15px !important;
  }

}
/* ══════════════════════════════════════════════════════════════
   HOME HERO — full viewport, image carousel behind content
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%; 
   min-height: 100vh;
  height: auto;
  display: flex; align-items: center;
  overflow: hidden;
}

/* fallback bg shown before carousel image loads */
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,#0a0a0a 0%,#1a0a00 50%,#0a0a0a 100%);
  z-index: 0;
}

/* ─── CAROUSEL (z-index 1, sits above fallback bg) ─── */
.hero-carousel {
  position: absolute; inset: 0;
  z-index: 1; overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}

/* ─── OVERLAY (z-index 2, above carousel) ─── */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.80) 0%,
    rgba(0,0,0,.55) 55%,
    rgba(0,0,0,.22) 100%
  );
}
/* On mobile: darker uniform overlay so text is always readable */
@media (max-width: 767px) {
  .hero-overlay {
    background: rgba(0,0,0,.65);
  }
}

/* ─── CONTENT (z-index 3, above overlay) ─── */
.hero-content-wrap {
  position: relative; z-index: 3; width: 100%;
}
.hero-content { position: relative; z-index: 3; }

/* ─── CAROUSEL CONTROLS ─── */
.hero-dots {
  position: absolute; bottom: 28px; right: 20px;
  z-index: 4; display: flex; gap: 8px; align-items: center;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer;
  transition: all .3s; border: none; padding: 0; flex-shrink: 0;
}
.hero-dot.active { background: var(--orange); width: 22px; border-radius: 4px; }
.hero-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--orange); z-index: 4; width: 0%;
}

/* ─── HERO TEXT ─── */
.hero-eyebrow {
  font-size: .75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); font-weight: 500; margin-bottom: 14px; display: block;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: .95; letter-spacing: 2px; margin-bottom: 18px;
}
.hero-title .line-orange { color: var(--orange); display: block; }
.hero-title .line-white  { color: var(--white);  display: block; }
.hero-title .line-sub {
  color: var(--orange); display: block;
  font-size: clamp(.9rem, 2.2vw, 2rem); letter-spacing: 4px;
}
.hero-subtitle {
  font-size: clamp(.88rem, 1.4vw, 1.05rem);
  color: var(--white-muted); line-height: 1.7;
  max-width: 500px; margin-bottom: 28px; font-weight: 300;
}
.hero-cta-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  display: flex; gap: clamp(14px,4vw,38px);
  margin-top: 36px; flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,3vw,2.4rem);
  color: var(--orange); line-height: 1;
}
.hero-stat-label {
  font-size: .7rem; color: var(--white-muted);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 4px;
}
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  color: var(--white-muted); font-size: .7rem;
  letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom,var(--orange),transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform:scaleY(1); }
  50%      { opacity:.4; transform:scaleY(.6); }
}
@media (max-width: 576px) { .hero-scroll-hint { display: none; } }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative; min-height: 52vh;
  display: flex; align-items: center; overflow: hidden;
}
.page-hero .hero-carousel { z-index: 0; }
.page-hero .hero-overlay {
  z-index: 1;
  background: linear-gradient(135deg,rgba(0,0,0,.88) 0%,rgba(0,0,0,.45) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.8rem);
  letter-spacing: 2px; line-height: 1; margin-bottom: 12px;
}
.page-hero-title span { color: var(--orange); }

/* ── BOOKING STRIP ──────────────────────────────────────────── */
.booking-strip-section {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 0;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary-orange {
  background: var(--orange); color: var(--white); border: none;
  padding: 12px 28px; border-radius: 8px; font-family: var(--font-body);
  font-size: .9rem; font-weight: 600; letter-spacing: .5px;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s; position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary-orange::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.15),transparent);
  transform: translateX(-100%); transition: transform .5s;
}
.btn-primary-orange:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255,106,0,.4); color: var(--white);
}
.btn-primary-orange:hover::before { transform: translateX(100%); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4); padding: 12px 28px;
  border-radius: 8px; font-family: var(--font-body); font-size: .9rem;
  font-weight: 500; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .3s; white-space: nowrap;
}
.btn-outline-white:hover {
  border-color: var(--white); background: rgba(255,255,255,.08); color: var(--white);
}
.btn-green {
  background: var(--green); color: var(--white); border: none;
  padding: 10px 24px; border-radius: 8px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center;
  gap: 8px; transition: all .3s;
}
.btn-green:hover { background: var(--green-light); color: var(--white); transform: translateY(-2px); }

/* ── SECTIONS ───────────────────────────────────────────────── */
section { padding: 80px 0; }
.section-eyebrow {
  font-size: .76rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); font-weight: 500; display: block; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--orange); font-style: italic; }
.section-lead {
  font-size: clamp(.9rem,1.4vw,1rem);
  color: var(--white-muted); line-height: 1.8; max-width: 580px;
}

/* ── FORMS ──────────────────────────────────────────────────── */
.form-label {
  font-size: .78rem; font-weight: 500; letter-spacing: .5px;
  color: var(--white-muted); text-transform: uppercase; margin-bottom: 7px;
  display: block;
}
.form-control, .form-select {
  background: var(--black-mid) !important;
  border: 1px solid var(--black-border) !important;
  color: var(--white) !important; border-radius: 8px !important;
  padding: 11px 14px !important; font-family: var(--font-body) !important;
  font-size: .88rem !important; transition: border-color .3s !important;
  width: 100%;
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(255,106,0,.14) !important; outline: none !important;
}
.form-control::placeholder { color: rgba(255,255,255,.28) !important; }
.form-select option { background: var(--black-mid); }

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.service-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all var(--transition); position: relative;
  overflow: hidden; height: 100%;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg,var(--orange),var(--orange-light));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange); box-shadow: var(--shadow-orange);
}
.service-card:hover::before { transform: scaleX(1); }
/* Service card image (injected by JS) */
.service-card-img {
  height: 190px; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -28px -24px 22px -24px; position: relative;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.45));
}
.service-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.service-name {
  font-family: var(--font-serif); font-size: 1.2rem;
  font-weight: 700; margin-bottom: 8px; color: var(--white);
}
.service-tagline {
  font-size: .76rem; color: var(--orange);
  text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 500; margin-bottom: 12px;
}
.service-desc {
  font-size: .86rem; color: var(--white-muted);
  line-height: 1.7; margin-bottom: 20px;
}
.service-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--orange); }
.service-price small { font-family: var(--font-body); font-size: .72rem; color: var(--white-muted); }

/* ── FEATURES LIST ──────────────────────────────────────────── */
.features-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag {
  background: rgba(255,106,0,.1); border: 1px solid rgba(255,106,0,.28);
  color: var(--orange); font-size: .78rem; font-weight: 500;
  padding: 5px 12px; border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
}
.feature-tag::before { content: '✓'; font-weight: 700; }

/* ── PACKAGE CARDS ──────────────────────────────────────────── */
.package-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); height: 100%;
}
.package-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card), var(--shadow-orange);
  border-color: rgba(255,106,0,.4);
}
/* Package image injected by JS */
.package-card-img { height: 170px; overflow: hidden; position: relative; }
.package-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.package-card:hover .package-card-img img { transform: scale(1.06); }
.package-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,rgba(0,0,0,.15),rgba(0,0,0,.5));
}
.package-header {
  background: linear-gradient(135deg,var(--orange) 0%,var(--orange-dark) 100%);
  padding: 22px 24px 18px; position: relative;
}
.package-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,.3); color: var(--white);
  font-size: .68rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.3);
}
.package-type { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 7px; }
.package-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.package-duration { font-size: .85rem; color: rgba(255,255,255,.8); }
.package-body { padding: 22px 24px; }
.package-price { font-family: var(--font-display); font-size: 1.8rem; color: var(--orange); }
.package-price small { font-family: var(--font-body); font-size: .78rem; color: var(--white-muted); }
.package-ideal { font-size: .76rem; color: var(--green-light); font-weight: 500; margin-bottom: 16px; }
.package-highlights { list-style: none; margin-bottom: 18px; }
.package-highlights li {
  font-size: .84rem; color: var(--white-muted); padding: 4px 0;
  display: flex; align-items: flex-start; gap: 7px;
}
.package-highlights li::before { content: '✦'; color: var(--orange); font-size: .58rem; margin-top: 5px; flex-shrink: 0; }

/* ── BLOG CARDS ─────────────────────────────────────────────── */
.blog-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); height: 100%;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,106,0,.28); box-shadow: var(--shadow-card);
}
.blog-card-img {
  height: 210px; overflow: hidden; position: relative;
  background: var(--black-mid);
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease; display: block;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-category {
  background: rgba(255,106,0,.1); color: var(--orange);
  border: 1px solid rgba(255,106,0,.28); font-size: .7rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 2px 9px; border-radius: 20px;
}
.blog-date, .blog-read { font-size: .76rem; color: var(--white-muted); }
.blog-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 10px; }
.blog-title a { color: inherit; text-decoration: none; transition: color .3s; }
.blog-title a:hover { color: var(--orange); }
.blog-excerpt { font-size: .85rem; color: var(--white-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-read-more {
  font-size: .83rem; font-weight: 600; color: var(--orange);
  text-decoration: none; display: inline-flex; align-items: center;
  gap: 5px; transition: gap .3s;
}
.blog-read-more:hover { color: var(--orange-light); gap: 9px; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); padding: 28px; position: relative; overflow: hidden;
}
.testimonial-bg-img { position: absolute; inset: 0; opacity: .06; z-index: 0; }
.testimonial-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card > *:not(.testimonial-bg-img) { position: relative; z-index: 1; }
.testimonial-stars { color: #ffc107; font-size: .95rem; margin-bottom: 14px; }
.testimonial-text { font-size: .92rem; color: var(--white-muted); line-height: 1.8; font-style: italic; margin-bottom: 20px; font-family: var(--font-serif); }
.testimonial-author { font-weight: 600; font-size: .88rem; }
.testimonial-location { font-size: .76rem; color: var(--orange); margin-top: 2px; }

/* ── BOOKING WIDGET ─────────────────────────────────────────── */
.booking-widget {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-lg); padding: 36px;
}
.booking-widget h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 6px; }

/* ── WHY CARDS ──────────────────────────────────────────────── */
.why-card { text-align: center; padding: 36px 24px; }
.why-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.why-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.why-text { font-size: .86rem; color: var(--white-muted); line-height: 1.7; }

/* ── CONTACT INFO CARDS ─────────────────────────────────────── */
.contact-info-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 24px;
  display: flex; align-items: flex-start; gap: 18px; transition: border-color .3s;
}
.contact-info-card:hover { border-color: var(--orange); }
.contact-icon {
  width: 48px; height: 48px; background: rgba(255,106,0,.1);
  border: 1px solid rgba(255,106,0,.28); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-info-label { font-size: .72rem; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-bottom: 3px; }
.contact-info-value { font-size: .95rem; font-weight: 500; }
.contact-info-sub { font-size: .78rem; color: var(--white-muted); margin-top: 2px; }

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-stat { text-align: center; padding: 24px; background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius); }
.about-stat-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--orange); line-height: 1; margin-bottom: 7px; }
.about-stat-label { font-size: .78rem; color: var(--white-muted); text-transform: uppercase; letter-spacing: 1px; }
.about-story-img { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 460px; }
.about-story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.about-story-img:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(0,0,0,.72); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,106,0,.35); border-radius: 10px; padding: 12px 18px;
}

/* ── SIGHTSEEING SPOTS ──────────────────────────────────────── */
.spot-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 24px; transition: all var(--transition); overflow: hidden;
}
.spot-card:hover { border-color: rgba(255,106,0,.38); transform: translateY(-4px); }
.spot-img-wrap {
  height: 170px; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -24px -24px 18px -24px; position: relative;
}
.spot-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.spot-card:hover .spot-img-wrap img { transform: scale(1.07); }
.spot-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.45)); }
.spot-type { font-size: .7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.spot-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.spot-distance { font-size: .78rem; color: var(--green-light); margin-bottom: 10px; }
.spot-desc { font-size: .85rem; color: var(--white-muted); line-height: 1.7; margin-bottom: 12px; }
.spot-best-time { font-size: .76rem; color: var(--white-muted); }
.spot-best-time strong { color: var(--white); }

/* ── ADMIN ──────────────────────────────────────────────────── */
.admin-table { font-size: .83rem; }
.admin-table th { background: var(--black-mid); color: var(--orange); font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; }
.admin-table td { border-color: var(--black-border) !important; color: var(--white-muted); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(255,106,0,.04); }

/* ── PLACES MASONRY ─────────────────────────────────────────── */
.places-section { background: var(--black); padding: 90px 0; overflow: hidden; }
.places-masonry {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 10px;
}
.place-tile { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.place-tile:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.place-tile:nth-child(2) { grid-column: 2; grid-row: 1; }
.place-tile:nth-child(3) { grid-column: 3; grid-row: 1; }
.place-tile:nth-child(4) { grid-column: 2; grid-row: 2; }
.place-tile:nth-child(5) { grid-column: 3; grid-row: 2; }
.place-tile:nth-child(6) { display: none; }
.place-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.place-tile:hover img { transform: scale(1.09); }
.place-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 55%);
  transition: background .4s;
}
.place-tile:hover .place-tile-overlay { background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.2) 60%); }
.place-tile-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; }
.place-tile-tag { font-size: .65rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 3px; }
.place-tile-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--white); }
.place-tile-arrow {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,106,0,.8); display: flex;
  align-items: center; justify-content: center;
  font-size: .85rem; opacity: 0; transform: scale(.7);
  transition: opacity .3s, transform .3s;
}
.place-tile:hover .place-tile-arrow { opacity: 1; transform: scale(1); }

/* ── IMAGE TICKER ───────────────────────────────────────────── */
.image-ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.image-ticker { display: flex; gap: 14px; animation: tickerScroll 32s linear infinite; width: max-content; }
.image-ticker:hover { animation-play-state: paused; }
@keyframes tickerScroll { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
.ticker-item { flex-shrink: 0; width: 260px; height: 180px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--black-border); transition: transform .3s; }
.ticker-item:hover { transform: scale(1.03); }
.ticker-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── FULL WIDTH BANNER ──────────────────────────────────────── */
.full-banner { position: relative; height: 360px; overflow: hidden; }
.full-banner img { width: 100%; height: 120%; object-fit: cover; object-position: center; }
.full-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(0,0,0,.8) 0%,rgba(0,0,0,.35) 100%);
  display: flex; align-items: center;
}

/* ── GALLERY GRIDS ──────────────────────────────────────────── */
.safari-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 28px; }
.safari-gallery-item { border-radius: var(--radius); overflow: hidden; height: 190px; }
.safari-gallery-item:first-child { grid-column: 1/3; height: 260px; }
.safari-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.safari-gallery-item:hover img { transform: scale(1.07); }

.rooms-gallery-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 28px; }
.rooms-gallery-grid .item { height: 190px; overflow: hidden; border-radius: var(--radius); }
.rooms-gallery-grid .item:first-child { grid-column: 1; grid-row: 1/3; height: 100%; }
.rooms-gallery-grid .item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.rooms-gallery-grid .item:hover img { transform: scale(1.06); }

.cottage-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cottage-gallery-item { overflow: hidden; border-radius: var(--radius); height: 210px; }
.cottage-gallery-item:first-child { grid-column: 1/3; height: 280px; }
.cottage-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.cottage-gallery-item:hover img { transform: scale(1.07); }

/* ── DECORATIVE ─────────────────────────────────────────────── */
.divider-orange { width: 55px; height: 3px; background: var(--orange); border-radius: 2px; margin: 14px 0; }
.divider-orange.centered { margin: 14px auto; }
.text-orange { color: var(--orange) !important; }
.text-muted-light { color: var(--white-muted) !important; }
.bg-dark-card { background: var(--black-card); }
.bg-dark-soft { background: var(--black-soft); }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.img-fade-in { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.img-fade-in.visible { opacity: 1; transform: translateY(0); }
.img-zoom-in { overflow: hidden; }
.img-zoom-in img { transition: transform .7s ease; }
.img-zoom-in.visible img { transform: scale(1) !important; }

/* ── TOAST ──────────────────────────────────────────────────── */
.toast-container { position: fixed; top: 86px; right: 16px; z-index: 99990; }
.toast-msg {
  background: var(--black-card); border: 1px solid;
  border-radius: 10px; padding: 14px 18px;
  min-width: 280px; max-width: 360px;
  font-size: .88rem; box-shadow: var(--shadow-card);
  margin-bottom: 10px; animation: slideInRight .4s ease;
}
.toast-msg.success { border-color: var(--green); color: var(--green-light); }
.toast-msg.error   { border-color: #e53e3e; color: #fc8181; }
@keyframes slideInRight { from { transform:translateX(100px);opacity:0; } to { transform:translateX(0);opacity:1; } }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item { font-size: .8rem; color: var(--white-muted); }
.breadcrumb-item a { color: var(--orange); text-decoration: none; }
.breadcrumb-item.active { color: var(--white); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--white-muted); content: "›"; }

/* ── BLOG POST ──────────────────────────────────────────────── */
.blog-post-content { font-size: .97rem; line-height: 1.9; color: var(--white-muted); }
.blog-post-content h3 { font-family: var(--font-serif); color: var(--white); margin: 32px 0 14px; font-size: 1.3rem; }
.blog-post-content p { margin-bottom: 18px; }

/* ── PAGE TRANSITION ────────────────────────────────────────── */
#page-transition {
  position: fixed; inset: 0; background: var(--black);
  z-index: 200000; pointer-events: none;
  opacity: 0; transform: scaleY(0); transform-origin: bottom;
}
#page-transition.entering { animation: ptEnter .42s cubic-bezier(.76,0,.24,1) forwards; }
#page-transition.leaving  { animation: ptLeave .42s cubic-bezier(.76,0,.24,1) forwards; }
@keyframes ptEnter { 0%{transform:scaleY(0);transform-origin:bottom;opacity:1} 100%{transform:scaleY(1);transform-origin:bottom;opacity:1} }
@keyframes ptLeave { 0%{transform:scaleY(1);transform-origin:top;opacity:1} 100%{transform:scaleY(0);transform-origin:top;opacity:1} }

/* ── HOME INTRO (coin animation) ────────────────────────────── */
#home-intro {
  position: fixed; inset: 0; background: #000; z-index: 150000;
  display: flex; align-items: center; justify-content: center; flex-direction: column; overflow: hidden;
}
.intro-snow { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.snow-particle { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: rgba(255,106,0,.6); animation: snowFall linear infinite; }
@keyframes snowFall { 0%{transform:translateY(-20px) rotate(0deg);opacity:1} 100%{transform:translateY(100vh) rotate(360deg);opacity:0} }
.intro-coin-wrap { position: relative; width: 190px; height: 190px; margin-bottom: 26px; }
.intro-coin {
  width: 140px; height: 140px; border-radius: 50%;
  background: conic-gradient(from 0deg,#ff6a00,#ff8c38,#ffd700,#ff8c38,#ff6a00);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.intro-coin-inner {
  width: 110px; height: 110px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,#ff8c38,#e05a00);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.intro-coin-text { font-family: var(--font-display); font-size: .95rem; color: #fff; letter-spacing: 2px; line-height: 1.1; text-align: center; }
.intro-coin-text span { color: #ffe0b0; font-size: .78rem; display: block; }
.intro-coin.spinning { animation: coinSpin 1.8s cubic-bezier(.4,0,.6,1) forwards; }
@keyframes coinSpin { 0%{transform:rotateY(0deg) scale(1)} 70%{transform:rotateY(1800deg) scale(1.05)} 100%{transform:rotateY(1800deg) scale(1)} }
.intro-coin.zooming { animation: coinZoom .5s cubic-bezier(.34,1.56,.64,1) forwards; }
@keyframes coinZoom { 0%{transform:rotateY(1800deg) scale(1)} 100%{transform:rotateY(1800deg) scale(1.6)} }
.intro-coin.glowing { animation: coinGlow .8s ease-in-out forwards; }
@keyframes coinGlow { 0%{box-shadow:0 0 0 0 rgba(255,106,0,.8);filter:brightness(1)} 30%{box-shadow:0 0 60px 30px rgba(255,106,0,.6);filter:brightness(1.4)} 100%{box-shadow:0 0 80px 40px rgba(255,106,0,.7);filter:brightness(1.5)} }
#home-intro.dissolving { animation: snowDissolve .9s ease-in forwards; }
@keyframes snowDissolve { 0%{opacity:1;filter:blur(0)} 40%{opacity:.7;filter:blur(2px)} 100%{opacity:0;filter:blur(12px);pointer-events:none} }
.intro-brand-text { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 5px; color: var(--white); opacity: 0; transform: translateY(18px); transition: opacity .5s, transform .5s; }
.intro-brand-text.visible { opacity: 1; transform: translateY(0); }
.intro-brand-text span { color: var(--orange); }
.intro-tagline { font-family: var(--font-body); font-size: .75rem; letter-spacing: 3px; color: var(--white-muted); text-transform: uppercase; margin-top: 5px; opacity: 0; transition: opacity .5s .2s; }
.intro-tagline.visible { opacity: 1; }

/* ✅ LOGO INSIDE COIN */
.intro-coin-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.intro-coin-logo {
  width: 100%;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9000;
  width: 52px; height: 52px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4); text-decoration: none;
  font-size: 1.4rem; transition: all .3s; animation: waBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 26px rgba(37,211,102,.6); }
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { background: var(--black); border-top: 1px solid var(--black-border); padding-top: 70px; }
.footer-brand { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 2px; color: var(--white); margin-bottom: 14px; display: block; }
.footer-brand span { color: var(--orange); }
.footer-desc { font-size: .86rem; color: var(--white-muted); line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { width: 38px; height: 38px; background: var(--black-mid); border: 1px solid var(--black-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white-muted); text-decoration: none; font-size: .95rem; transition: all .3s; }
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-heading { font-family: var(--font-body); font-size: .72rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: var(--white-muted); text-decoration: none; font-size: .85rem; transition: color .3s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { margin-top: 50px; padding: 20px 0; border-top: 1px solid var(--black-border); font-size: .8rem; color: var(--white-muted); }
.pt-navbar { padding-top: 90px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   ══════════════════════════════════════════════════════════════ */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .places-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .place-tile:nth-child(1) { grid-column: 1/3; grid-row: 1; }
  .place-tile:nth-child(2) { grid-column: 1;   grid-row: 2; }
  .place-tile:nth-child(3) { grid-column: 2;   grid-row: 2; }
  .place-tile:nth-child(4) { grid-column: 1;   grid-row: 3; }
  .place-tile:nth-child(5) { grid-column: 2;   grid-row: 3; }
  .about-story-img { height: 380px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  section { padding: 60px 0; }

  /* Hero */
  .hero { height: 100svh; min-height: 580px; }
  .hero-dots { right: 50%; bottom: 20px; transform: translateX(50%); }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-subtitle { font-size: .88rem; }
  .hero-stats { gap: 18px; }
  .hero-cta-wrap { flex-direction: column; align-items: flex-start; }
  .btn-primary-orange, .btn-outline-white { width: 100%; justify-content: center; }

  /* Booking strip */
  .booking-strip-section .col-6 { flex: 0 0 50%; max-width: 50%; }
  .booking-strip-section .col-12 { flex: 0 0 100%; }

  /* Cards */
  .service-card { padding: 22px 18px; }
  .service-card-img { margin: -22px -18px 18px -18px; height: 170px; }
  .booking-widget { padding: 22px 18px; }
  .why-card { padding: 26px 18px; }

  /* Places */
  .places-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 170px 170px 170px;
  }
  .place-tile:nth-child(1) { grid-column: 1/3; grid-row: 1; }

  /* Galleries */
  .safari-gallery { grid-template-columns: 1fr 1fr; }
  .safari-gallery-item:first-child { grid-column: 1/3; height: 220px; }
  .safari-gallery-item { height: 170px; }
  .rooms-gallery-grid { grid-template-columns: 1fr 1fr; }
  .rooms-gallery-grid .item:first-child { grid-column: 1/3; grid-row: 1; height: 200px; }
  .cottage-gallery-item { height: 180px; }
  .cottage-gallery-item:first-child { height: 240px; }

  .about-story-img { height: 280px; }
  .full-banner { height: 240px; }
  .ticker-item { width: 220px; height: 150px; }
  .page-hero { min-height: 42vh; }
  .page-hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* Footer */
  footer { padding-top: 50px; }
  .footer-bottom { text-align: center; flex-direction: column; gap: 10px; }

  /* Toast */
  .toast-container { right: 8px; left: 8px; }
  .toast-msg { min-width: 0; max-width: none; width: 100%; }
}

/* ── 576px ── */
@media (max-width: 576px) {
  section { padding: 50px 0; }

  /* Hero */
  .hero-cta-wrap { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .hero-stat-num { font-size: 1.5rem; }

  /* Booking strip — all full width */
  .booking-strip-section .col-6,
  .booking-strip-section .col-md { flex: 0 0 100% !important; max-width: 100% !important; }

  /* Places — single column */
  .places-masonry {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 170px);
  }
  .place-tile:nth-child(n) { grid-column: 1 !important; grid-row: auto !important; }

  /* Galleries */
  .safari-gallery { grid-template-columns: 1fr; }
  .safari-gallery-item:first-child { grid-column: 1; height: 200px; }
  .rooms-gallery-grid { grid-template-columns: 1fr; }
  .rooms-gallery-grid .item:first-child { grid-column: 1; grid-row: auto; }
  .cottage-gallery { grid-template-columns: 1fr; }
  .cottage-gallery-item:first-child { grid-column: 1; height: 200px; }

  /* Sections */
  .section-title { font-size: 1.6rem; }
  .section-lead { font-size: .88rem; }
  .package-name { font-size: 1.05rem; }
  .blog-title { font-size: 1rem; }
  .booking-widget { padding: 18px 14px; }
  .booking-widget h3 { font-size: 1.3rem; }

  /* Intro */
  .intro-coin-wrap, .intro-coin { width: 110px; height: 110px; }
  .intro-coin-inner { width: 86px; height: 86px; }
  .intro-brand-text { font-size: 1.35rem; letter-spacing: 3px; }
  .intro-tagline { font-size: .7rem; }

  /* Nav brand */
  .nav-brand { font-size: 1.25rem; }
  .footer-brand { font-size: 1.3rem; }
}

/* ── 400px ── */
@media (max-width: 400px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: .82rem; }
  .section-title { font-size: 1.45rem; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-stat-label { font-size: .65rem; }
  .service-card-img { height: 150px; }
  .full-banner { height: 190px; }
}
