/* ═══════════════════════════════════════════
   Happy Planet International Travel
   Design: "Mist & Stone" — Zhangjiajie
   ═══════════════════════════════════════════ */

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

/* ── Variables ── */
:root {
  --moss-deep: #0B2817;
  --moss: #1A4330;
  --moss-light: #2D5A3F;
  --sand: #C8974A;
  --sand-light: #E0BE7A;
  --sand-pale: #F4E5CC;
  --mist: #F2EFE9;
  --mist-dark: #E4DFD6;
  --slate: #2D2A26;
  --slate-light: #5C5750;
  --jade: #2E8B6F;
  --jade-light: #4AA88F;
  --white: #FAFAF7;
  --black: #141210;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --max-width-narrow: 860px;
  --nav-height: 80px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
}

/* ── Reset ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);
  font-weight:400;
  font-size:16px;
  line-height:1.7;
  color:var(--slate);
  background:var(--mist);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--jade);text-decoration:none;transition:color .2s}
a:hover{color:var(--sand)}

/* ── Typography ── */
h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;line-height:1.15;color:var(--moss-deep)}
h1{font-size:clamp(2.4rem,5vw,3.8rem);letter-spacing:-0.5px}
h2{font-size:clamp(1.8rem,3.5vw,2.8rem);letter-spacing:-0.3px}
h3{font-size:clamp(1.3rem,2.5vw,1.6rem)}
.subtitle{
  font-family:var(--font-body);
  font-size:1.05rem;
  color:var(--slate-light);
  font-weight:400;
  margin-top:.5rem;
  max-width:600px;
}
.section-label{
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:.75rem;
  font-weight:600;
  color:var(--sand);
  margin-bottom:.5rem;
}

/* ── Navigation ── */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  height:var(--nav-height);
  background:rgba(242,239,233,0.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,0.06);
  transition:background .3s;
}
.nav-inner{
  max-width:var(--max-width);margin:0 auto;
  height:100%;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 2rem;
}
.nav-logo{
  display:flex;align-items:center;gap:.5rem;
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:700;
  color:var(--moss-deep);
  letter-spacing:-0.3px;
}
.nav-logo-icon{
  width:36px;height:36px;
  background:linear-gradient(135deg,var(--sand) 0%,#b8862d 100%);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--white);
  font-size:1.1rem;
}
.nav-links{
  display:flex;align-items:center;gap:2rem;
  list-style:none;
}
.nav-links a{
  font-family:var(--font-body);
  font-size:.85rem;
  font-weight:500;
  color:var(--slate);
  letter-spacing:.5px;
  padding:.25rem 0;
  border-bottom:2px solid transparent;
  transition:color .2s,border-color .2s;
}
.nav-links a:hover,.nav-links a.active{
  color:var(--moss-deep);
  border-bottom-color:var(--sand);
}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:.5rem}

/* ── Hero Section ── */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  padding:calc(var(--nav-height) + 2rem) 2rem 4rem;
}
.hero-bg{
  position:absolute;inset:0;z-index:0;
  background:
    /* Mist layer */
    radial-gradient(ellipse 120% 80% at 50% 40%, rgba(242,239,233,0.15) 0%, transparent 70%),
    /* Sky gradient */
    linear-gradient(180deg, #D6E4F0 0%, #E8DFD0 35%, #C8BFA8 65%, #9B8E7A 100%),
    /* Peak silhouettes */
    repeating-linear-gradient(
      2deg,
      transparent,
      transparent 8px,
      rgba(11,40,23,0.03) 8px,
      rgba(11,40,23,0.03) 9px
    );
}
.hero-bg::before{
  content:'';position:absolute;bottom:0;left:0;right:0;height:60%;
  background:
    /* Peak 1 - tall */
    polygon(
      0% 100%, 0% 55%, 5% 45%, 12% 30%, 18% 20%, 22% 15%, 25% 18%, 28% 10%,
      30% 12%, 33% 5%, 36% 8%, 40% 0%, 44% 8%, 48% 15%, 52% 22%, 55% 18%,
      58% 25%, 62% 30%, 65% 28%, 68% 35%, 72% 32%, 75% 40%, 78% 38%, 82% 45%,
      86% 42%, 90% 50%, 94% 48%, 97% 55%, 100% 52%, 100% 100%
    );
  background:linear-gradient(180deg, rgba(11,40,23,0.9) 0%, rgba(11,40,23,0.7) 40%, rgba(26,67,48,0.5) 70%, rgba(45,90,63,0.3) 100%);
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 300'%3E%3Cpath d='M0 300 L0 150 L40 120 L100 60 L160 30 L200 10 L240 30 L280 0 L340 20 L380 0 L440 30 L500 20 L560 50 L620 40 L680 60 L740 50 L800 70 L860 60 L920 90 L980 80 L1040 100 L1100 90 L1160 110 L1200 100 L1200 300 Z' fill='black'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 300'%3E%3Cpath d='M0 300 L0 150 L40 120 L100 60 L160 30 L200 10 L240 30 L280 0 L340 20 L380 0 L440 30 L500 20 L560 50 L620 40 L680 60 L740 50 L800 70 L860 60 L920 90 L980 80 L1040 100 L1100 90 L1160 110 L1200 100 L1200 300 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size:cover;
  mask-size:cover;
}
.hero-bg::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:50%;
  background:linear-gradient(180deg,
    transparent 0%,
    rgba(242,239,233,0.5) 40%,
    rgba(242,239,233,0.9) 70%,
    var(--mist) 100%
  );
}
.hero-content{
  position:relative;z-index:2;
  text-align:center;max-width:820px;
}
.hero h1{
  font-family:var(--font-display);
  font-size:clamp(2.6rem,6vw,4.5rem);
  font-weight:600;
  color:var(--moss-deep);
  line-height:1.1;
  margin-bottom:1.2rem;
  letter-spacing:-1px;
}
.hero .subtitle{
  font-size:1.15rem;
  color:var(--slate-light);
  margin:0 auto 1rem;
  max-width:560px;
}
.hero-tagline{
  font-family:var(--font-display);
  font-style:italic;
  font-size:1.2rem;
  color:var(--sand);
  margin-bottom:2rem;
  letter-spacing:.5px;
}
.hero-buttons{
  display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;
}

/* ── Page Banner (inner pages) ── */
.page-banner{
  position:relative;
  min-height:50vh;
  display:flex;align-items:center;justify-content:center;
  text-align:center;
  padding:calc(var(--nav-height) + 2rem) 2rem 3rem;
  overflow:hidden;
}
.page-banner .banner-bg{
  position:absolute;inset:0;z-index:0;
  background:linear-gradient(170deg, #E8E0D4 0%, #D4C9B5 40%, #C4B898 100%);
}
.page-banner .banner-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg, rgba(11,40,23,0.15) 0%, rgba(11,40,23,0.35) 100%);
}
.page-banner .banner-content{position:relative;z-index:2;max-width:700px}
.page-banner h1{color:var(--white);text-shadow:0 2px 20px rgba(0,0,0,0.3)}
.page-banner .subtitle{color:rgba(255,255,255,0.85);margin:1rem auto 0;font-size:1.1rem}

/* ── Buttons ── */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.85rem 2rem;
  font-family:var(--font-body);
  font-size:.9rem;
  font-weight:600;
  letter-spacing:.5px;
  border:none;border-radius:var(--radius);
  cursor:pointer;
  transition:all .25s;
  text-decoration:none;
}
.btn-primary{
  background:var(--moss-deep);
  color:var(--white);
}
.btn-primary:hover{background:var(--moss);color:var(--white);transform:translateY(-1px);box-shadow:var(--shadow-lg)}
.btn-gold{
  background:var(--sand);
  color:var(--white);
}
.btn-gold:hover{background:#b8862d;color:var(--white);transform:translateY(-1px)}
.btn-outline{
  background:transparent;
  color:var(--moss-deep);
  border:2px solid var(--moss-deep);
}
.btn-outline:hover{background:var(--moss-deep);color:var(--white)}
.btn-outline-light{
  background:transparent;
  color:var(--white);
  border:2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover{background:var(--white);color:var(--moss-deep)}
.btn-sm{padding:.55rem 1.25rem;font-size:.8rem}

/* ── Section ── */
.section{padding:5rem 2rem}
.section-narrow{max-width:var(--max-width-narrow);margin:0 auto}
.section-wide{max-width:var(--max-width);margin:0 auto}
.section-header{text-align:center;margin-bottom:3.5rem}
.section-header h2{margin-bottom:.5rem}
.section-alt{background:var(--white)}

/* ── Cards ── */
.cards{display:grid;gap:1.75rem}
.cards-3{grid-template-columns:repeat(3,1fr)}
.cards-4{grid-template-columns:repeat(4,1fr)}
.cards-2{grid-template-columns:repeat(2,1fr)}

.card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:2rem;
  transition:transform .25s,box-shadow .25s;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,0.04);
}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.card-icon{
  width:52px;height:52px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;
  margin-bottom:1.25rem;
}
.card-icon.moss{background:rgba(11,40,23,0.08);color:var(--moss-deep)}
.card-icon.gold{background:rgba(200,151,74,0.12);color:var(--sand)}
.card-icon.jade{background:rgba(46,139,111,0.08);color:var(--jade)}
.card h3{font-size:1.25rem;margin-bottom:.5rem}
.card p{color:var(--slate-light);font-size:.92rem;line-height:1.65}

/* ── Feature Cards (large, horizontal-ish) ── */
.tour-card{
  display:grid;grid-template-columns:280px 1fr;
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,0.04);
  transition:transform .25s,box-shadow .25s;
  margin-bottom:1.75rem;
}
.tour-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg)}
.tour-card-image{
  background:linear-gradient(160deg, var(--moss) 0%, var(--moss-light) 40%, var(--sand) 100%);
  display:flex;align-items:center;justify-content:center;
  font-size:3rem;
  color:rgba(255,255,255,0.6);
  position:relative;
  overflow:hidden;
}
.tour-card-image::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
}
.tour-card-image span{
  position:relative;z-index:2;
}
.tour-card-body{padding:1.75rem 2rem}
.tour-card-body .meta{
  display:flex;flex-wrap:wrap;gap:.5rem;
  margin-bottom:.75rem;
}
.tag{
  display:inline-block;
  padding:.2rem .65rem;
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.5px;
  border-radius:20px;
  text-transform:uppercase;
}
.tag-nature{background:#E8F5E9;color:#2E7D32}
.tag-culture{background:#FFF3E0;color:#E65100}
.tag-family{background:#E8EAF6;color:#283593}
.tag-corporate{background:#FCE4EC;color:#880E4F}
.tag-adventure{background:#F3E5F5;color:#6A1B9A}
.tour-card-body h3{font-size:1.45rem;margin-bottom:.35rem}
.tour-card-body .highlight{color:var(--sand);font-weight:500;margin-bottom:.75rem;font-size:.95rem}
.tour-card-body .itinerary{list-style:none;margin-bottom:1rem}
.tour-card-body .itinerary li{
  font-size:.88rem;color:var(--slate-light);
  padding:.2rem 0;padding-left:1.2rem;
  position:relative;
}
.tour-card-body .itinerary li::before{
  content:'·';
  position:absolute;left:0;
  color:var(--sand);font-weight:700;
}
.tour-card-footer{
  display:flex;gap:.75rem;flex-wrap:wrap;
  align-items:center;
  margin-top:1rem;
  padding-top:1rem;
  border-top:1px solid var(--mist-dark);
}
.tour-card-footer .tag-group{display:flex;flex-wrap:wrap;gap:.35rem;flex:1}

/* ── Trust Bar ── */
.trust-bar{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
  text-align:center;
}
.trust-item{
  padding:1.5rem;
}
.trust-item .number{
  font-family:var(--font-display);
  font-size:2.5rem;
  font-weight:700;
  color:var(--moss-deep);
  line-height:1;
}
.trust-item .label{
  font-size:.85rem;
  color:var(--slate-light);
  margin-top:.4rem;
}

/* ── Commitment Cards ── */
.commitment-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:1.5rem;
}
.commitment-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:2rem;
  border-left:4px solid var(--sand);
  box-shadow:var(--shadow);
}
.commitment-card h4{
  font-size:1.1rem;
  margin-bottom:.5rem;
  color:var(--moss-deep);
}
.commitment-card p{font-size:.9rem;color:var(--slate-light);line-height:1.6}

/* ── Standard List ── */
.standard-list{
  list-style:none;
}
.standard-list li{
  padding:.65rem 0;padding-left:2rem;
  position:relative;
  font-size:.95rem;
  color:var(--slate);
  border-bottom:1px solid var(--mist-dark);
}
.standard-list li:last-child{border-bottom:none}
.standard-list li::before{
  content:'✓';
  position:absolute;left:0;
  color:var(--jade);
  font-weight:700;
  font-size:.9rem;
}

/* ── FAQ ── */
.faq-item{
  background:var(--white);
  border-radius:var(--radius);
  margin-bottom:.75rem;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,0.04);
  overflow:hidden;
}
.faq-q{
  padding:1.25rem 1.5rem;
  cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;
  font-weight:600;
  font-size:.95rem;
  color:var(--moss-deep);
  background:none;border:none;width:100%;text-align:left;
  font-family:var(--font-body);
}
.faq-q:hover{background:rgba(11,40,23,0.02)}
.faq-q::after{content:'+';font-size:1.2rem;color:var(--sand);transition:transform .3s}
.faq-item.open .faq-q::after{content:'−'}
.faq-a{
  padding:0 1.5rem 1.25rem;
  font-size:.9rem;
  color:var(--slate-light);
  line-height:1.7;
  display:none;
}
.faq-item.open .faq-a{display:block}

/* ── Contact Grid ── */
.contact-grid{
  display:grid;grid-template-columns:1fr 1.2fr;
  gap:2rem;
  align-items:start;
}
.contact-info-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:2rem;
  box-shadow:var(--shadow);
}
.contact-method{
  display:flex;gap:1rem;
  padding:1.25rem 0;
  border-bottom:1px solid var(--mist-dark);
}
.contact-method:last-child{border-bottom:none}
.contact-method .icon{
  width:44px;height:44px;
  border-radius:50%;
  background:rgba(11,40,23,0.06);
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;flex-shrink:0;
}
.contact-method h4{font-size:.95rem;margin-bottom:.15rem}
.contact-method p,.contact-method a{font-size:.88rem;color:var(--slate-light)}

/* ── Form ── */
.form-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:2rem;
  box-shadow:var(--shadow);
}
.form-group{margin-bottom:1.25rem}
.form-group label{
  display:block;
  font-size:.82rem;
  font-weight:600;
  color:var(--slate);
  margin-bottom:.35rem;
  letter-spacing:.3px;
}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:.7rem .9rem;
  font-family:var(--font-body);
  font-size:.9rem;
  border:1.5px solid var(--mist-dark);
  border-radius:var(--radius);
  background:var(--mist);
  color:var(--slate);
  transition:border-color .2s,box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--sand);
  box-shadow:0 0 0 3px rgba(200,151,74,0.12);
}
.form-group textarea{resize:vertical;min-height:120px}
.form-group .help{font-size:.78rem;color:var(--slate-light);margin-top:.25rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.checkbox-group{display:flex;flex-wrap:wrap;gap:.5rem}
.checkbox-group label{
  display:flex;align-items:center;gap:.4rem;
  font-weight:400;font-size:.85rem;
  padding:.35rem .75rem;
  background:var(--mist);
  border-radius:20px;
  cursor:pointer;
  transition:background .2s;
}
.checkbox-group label:hover{background:var(--sand-pale)}
.checkbox-group input[type="checkbox"]{width:auto;accent-color:var(--sand)}

/* ── CTA Section ── */
.cta-section{
  padding:5rem 2rem;
  text-align:center;
  background:
    linear-gradient(170deg, var(--moss-deep) 0%, var(--moss) 50%, var(--moss-light) 100%);
  position:relative;
  overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 60% at 30% 50%, rgba(200,151,74,0.1) 0%, transparent 70%);
}
.cta-section > *{position:relative;z-index:1}
.cta-section h2{color:var(--white)}
.cta-section .subtitle{color:rgba(255,255,255,0.75);margin:1rem auto 2rem}
.cta-section .btn-primary{background:var(--sand);color:var(--white)}
.cta-section .btn-primary:hover{background:var(--sand-light)}

/* ── Footer ── */
.footer{
  background:var(--moss-deep);
  color:rgba(255,255,255,0.7);
  padding:4rem 2rem 2rem;
}
.footer-inner{
  max-width:var(--max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:3rem;
}
.footer-brand h3{
  font-family:var(--font-display);
  font-size:1.35rem;
  color:var(--white);
  margin-bottom:.5rem;
}
.footer-brand .tagline{
  font-style:italic;
  color:var(--sand-light);
  margin-bottom:1rem;
  font-size:.9rem;
}
.footer-col h4{
  color:var(--white);
  font-size:.9rem;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:1rem;
  font-family:var(--font-body);
}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:.5rem}
.footer-col a{color:rgba(255,255,255,0.6);font-size:.85rem;transition:color .2s}
.footer-col a:hover{color:var(--sand-light)}
.footer-bottom{
  max-width:var(--max-width);
  margin:3rem auto 0;
  padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,0.1);
  display:flex;justify-content:space-between;
  flex-wrap:wrap;gap:1rem;
  font-size:.8rem;
  color:rgba(255,255,255,0.4);
}

/* ── Filter Bar ── */
.filter-bar{
  display:flex;flex-wrap:wrap;gap:.5rem;
  justify-content:center;
  margin-bottom:2.5rem;
}
.filter-btn{
  padding:.5rem 1.25rem;
  font-family:var(--font-body);
  font-size:.82rem;
  font-weight:500;
  border:1.5px solid var(--mist-dark);
  background:var(--white);
  color:var(--slate);
  border-radius:30px;
  cursor:pointer;
  transition:all .2s;
}
.filter-btn:hover,.filter-btn.active{
  background:var(--moss-deep);
  color:var(--white);
  border-color:var(--moss-deep);
}

/* ── Expedition Cards ── */
.expedition-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:2.25rem;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,0.04);
  border-top:4px solid var(--sand);
  margin-bottom:1.5rem;
}
.expedition-card h3{font-size:1.6rem;margin-bottom:.75rem}
.expedition-card h3 .emoji{margin-right:.5rem}
.expedition-details{
  display:flex;flex-wrap:wrap;gap:1.5rem;
  margin:1rem 0;
  padding:.75rem 0;
  border-top:1px solid var(--mist-dark);
  border-bottom:1px solid var(--mist-dark);
  font-size:.85rem;
}
.expedition-details span{display:flex;align-items:center;gap:.35rem;color:var(--slate-light)}
.expedition-details strong{color:var(--slate)}
.expedition-card .expect-list{list-style:none;margin:1rem 0}
.expedition-card .expect-list li{
  font-size:.9rem;color:var(--slate-light);
  padding:.3rem 0;padding-left:1.5rem;position:relative;
}
.expedition-card .expect-list li::before{
  content:'→';position:absolute;left:0;color:var(--sand);
}

/* ── Comparison Table ── */
.compare-table{
  width:100%;
  border-collapse:collapse;
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.compare-table th{
  background:var(--moss-deep);
  color:var(--white);
  padding:1rem 1.5rem;
  font-size:.85rem;
  font-weight:600;
  letter-spacing:.5px;
  text-align:left;
}
.compare-table td{
  padding:.85rem 1.5rem;
  font-size:.9rem;
  border-bottom:1px solid var(--mist-dark);
  color:var(--slate-light);
}
.compare-table tr:last-child td{border-bottom:none}
.compare-table tr:nth-child(even){background:rgba(242,239,233,0.4)}

/* ── Number Stats Row ── */
.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1rem;
  text-align:center;
  padding:2rem 0;
}
.stat-item .num{
  font-family:var(--font-display);
  font-size:3rem;
  font-weight:700;
  color:var(--moss-deep);
  line-height:1;
}
.stat-item .desc{
  font-size:.85rem;
  color:var(--slate-light);
  margin-top:.3rem;
}

/* ── Safety Grid ── */
.safety-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem
}
.safety-item{
  background:var(--white);
  border-radius:var(--radius);
  padding:1.5rem;
  text-align:center;
  box-shadow:var(--shadow);
}
.safety-item .icon{font-size:2rem;margin-bottom:.5rem}
.safety-item h4{font-size:.95rem;margin-bottom:.35rem}
.safety-item p{font-size:.83rem;color:var(--slate-light);line-height:1.5}

/* ── Self-Test ── */
.self-test{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:2rem;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,0.04);
}
.self-test .check-item{
  display:flex;align-items:flex-start;gap:.75rem;
  padding:.65rem 0;
  font-size:.95rem;
}
.self-test .check-item .box{
  width:22px;height:22px;
  border:2px solid var(--jade);
  border-radius:4px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:2px;
}
.self-test .check-item .box::after{
  content:'✓';
  color:var(--jade);
  font-size:.75rem;
  font-weight:700;
}

/* ── Responsive ── */
@media(max-width:1024px){
  .cards-3,.cards-4{grid-template-columns:repeat(2,1fr)}
  .commitment-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
  .tour-card{grid-template-columns:1fr}
  .tour-card-image{min-height:200px}
  .safety-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .nav-links{
    display:none;
    position:absolute;top:var(--nav-height);
    left:0;right:0;
    background:rgba(242,239,233,0.98);
    backdrop-filter:blur(16px);
    flex-direction:column;
    padding:1.5rem 2rem;
    gap:1rem;
    border-bottom:1px solid rgba(0,0,0,0.06);
  }
  .nav-links.open{display:flex}
  .nav-toggle{display:block}

  .cards-3,.cards-4,.cards-2{grid-template-columns:1fr}
  .hero-buttons{flex-direction:column;align-items:center}
  .trust-bar{grid-template-columns:repeat(2,1fr)}
  .footer-inner{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .form-row{grid-template-columns:1fr}
  .safety-grid{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .compare-table{font-size:.8rem}
  .compare-table th,.compare-table td{padding:.6rem .75rem}
}
@media(max-width:480px){
  :root{--nav-height:64px}
  .section{padding:3rem 1rem}
  h1{font-size:2rem}
  h2{font-size:1.5rem}
  .hero{min-height:90vh}
  .page-banner{min-height:40vh}
}
