/* ============================================
   LET'S TRAVEL CHIC — Same-to-same match
   ============================================ */

:root {
  --primary: #15B5AB;
  --primary-light: #3FD0D4;
  --primary-soft: #ECFFFF;
  --gold: #EACC6F;
  --white: #FFFFFF;
  --black: #000000;
  --dark: #242424;
  --gray: #6C6C6C;
  --light-gray: #F5F5F5;

  --font-heading: "Average", "Playfair Display", serif;
  --font-body: "Manrope", sans-serif;
  --font-script: "Allura", "Pinyon Script", "Satisfy", "Snell Roundhand", cursive;

  --container: 1200px;
  --radius: 22px;
  --transition: 0.3s ease;
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 30px;
}

/* ============ TYPOGRAPHY ============ */
.serif-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.script-text {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--primary);
  font-style: normal;
}
.big-heading {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.2;
  text-align: left;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
  white-space: nowrap;
  overflow: visible;
  padding: 0;
}
.big-heading .script-text {
  font-size: 74px;
  display: inline;
  line-height: 1;
  margin-left: 10px;
  vertical-align: -6px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(21,181,171,0.35);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 12px 38px;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============ HEADER (BLACK, scrolls away) ============ */
.site-header {
  background: var(--black);
  color: var(--white);
  position: relative;
  z-index: 50;
}

/* ============ STICKY NAV ============ */
.site-nav {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-top: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* override container max-width inside header so it spans FULL viewport edge-to-edge */
.site-header > .container,
.site-nav > .container {
  max-width: 100%;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 35px 80px 30px;
  gap: 40px;
  flex-wrap: wrap;
}
.brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-left: 20px;
}
.brand-logo {
  height: 110px;
  width: auto;
}
.brand-url {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-left: 20px;
  margin-top: 8px;
  letter-spacing: 0.5px;
}
.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  padding-top: 30px;
  padding-right: 20px;
}
.contact-line {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  padding: 4px 0;
}
.contact-line span { font-weight: 700; }
.email-list {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding: 4px 0;
}
.email-list:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* Nav row */
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 80px;
  flex-wrap: wrap;
  gap: 30px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 50px;
}
.main-nav ul li a {
  display: inline-block;
  padding: 16px 40px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 30px;
  transition: var(--transition);
}
.main-nav ul li a:hover {
  background: var(--primary);
  color: var(--white);
}
.main-nav ul li a.nav-active {
  background: var(--primary);
  color: var(--white);
}
.main-nav ul li a.nav-active:hover {
  background: var(--primary-light);
  color: var(--white);
}

.nav-socials {
  display: flex;
  gap: 18px;
  padding-left: 40px;
  padding-right: 10px;
}
.nav-socials a {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.nav-socials a:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

.nav-toggle, .nav-close {
  font-size: 24px;
  color: var(--white);
  display: none;
}

/* ============ HERO (FULL BLEED IMAGE) ============ */
.hero {
  position: relative;
  background: linear-gradient(rgba(4, 0, 11, 1.1), rgba(0, 0, 0, 0.15)), url(https://letstravelchic.com/wp-content/uploads/2025/10/Travel-Divas%C2%AE-_-Upscale-Group-Travel-for-Black-Women-1.png) center center / cover no-repeat;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-inner {
  text-align: center;
  padding: 80px 20px;
}
.hero-logo {
  height: 220px;
  width: auto;
  margin: 0 auto 10px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}
.hero-script {
  font-family: var(--font-script);
  font-size: 60px;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1;
}

/* ============ STEP INTO SECTION ============ */
.step-into {
  background: var(--white);
  padding: 100px 0;
}
.about-text {
  max-width: 100%;
  margin: 0 0 50px 0;
  text-align: left;
  padding: 0;
}
.about-text p {
  font-size: 17px;
  color: #000000;
  margin-bottom: 28px;
  line-height: 1.8;
  text-align: left;
}
.about-text .btn-dark {
  margin-top: 10px;
  text-align: left;
}

/* Mission card */
.mission-card {
  max-width: 1100px;
  margin: 30px auto 0;
  background: var(--white);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(21,181,171,0.08);
}
.mission-card h2 {
  font-size: 54px;
  margin-bottom: 18px;
  line-height: 1;
}
.mission-card p {
  font-size: 16px;
  color: var(--dark);
  max-width: 800px;
  margin: 0 auto;
}

/* ============ WHY US ============ */
.why-us {
  background: var(--primary-soft);
  padding: 80px 0;
}
.section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}
.section-head .serif-title {
  font-size: 44px;
  margin-bottom: 18px;
}
.section-head p {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(21,181,171,0.5);
  border-radius: 16px;
  padding: 50px 30px 45px;
  text-align: center;
  box-shadow: 10px 14px 30px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 14px 18px 40px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.06);
}
.why-icon {
  width: 68px; height: 68px;
  margin: 0 auto 30px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.why-card h3 {
  font-family: var(--font-heading);
  color: #1a1a1a;
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 22px;
  letter-spacing: 3.5px;
  word-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}
.why-card p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: #242424;
  line-height: 1.55;
  letter-spacing: -0.3px;
  word-spacing: 1px;
}

/* ============ LET'S PLAN YOUR TRIP ============ */
.plan-trip {
  background: var(--white);
  padding: 80px 0 100px;
}
.plan-head-card {
  max-width: 1100px;
  margin: 0 auto 60px;
  background: var(--white);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: center;
}
.plan-head-card .serif-title {
  font-size: 40px;
  margin-bottom: 14px;
}
.plan-head-card p {
  color: var(--dark);
  max-width: 850px;
  margin: 0 auto;
}

.process-row {
  position: relative;
  padding-top: 30px;
}
.share-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  position: relative;
  z-index: 2;
}
.process-card {
  background: var(--white);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.process-card h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 14px;
  font-weight: 700;
}
.process-line {
  flex: 1;
  position: relative;
}
.process-card p {
  font-size: 14.5px;
  color: var(--dark);
  margin-top: auto;
}

/* dotted travel path with airplane + pin */
.process-row::before {
  content: "";
  position: absolute;
  top: 130px;
  left: -50px;
  right: -50px;
  height: 80px;
  border-top: 2.5px dashed var(--black);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.65;
  transform: rotate(-2deg);
}
.plane-icon {
  position: absolute;
  top: 110px;
  right: -10px;
  font-size: 40px;
  color: var(--black);
  transform: rotate(-15deg);
  z-index: 3;
}
.pin-icon {
  position: absolute;
  bottom: -10px;
  left: 20%;
  font-size: 28px;
  color: var(--black);
  z-index: 3;
}

/* ============ COMING SOON BANNER ============ */
.coming-soon {
  background: var(--black);
  padding: 40px 0;
  text-align: center;
}
.coming-soon h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

/* ============ FOUNDER ============ */
.founder { padding: 90px 0; background: var(--white); }
.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.founder-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.founder-images img {
  border-radius: var(--radius);
  width: 100%;
  height: 380px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.founder-img-1 { transform: translateY(20px); }
.founder-img-2 { transform: translateY(-20px); }
.founder-text .serif-title {
  font-size: 44px;
  color: var(--dark);
  margin-bottom: 22px;
}
.founder-text .serif-title .script-text {
  color: var(--primary);
  font-size: 56px;
}
.founder-text p {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 28px;
}

/* ============ ADVENTURES GALLERY ============ */
.adventures { padding: 80px 0; background: var(--primary-soft); }
.adventures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.adv-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--primary);
}
.adv-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.adv-item:hover img { transform: scale(1.1); }

/* ============ FACEBOOK GROUP ============ */
.fb-group {
  padding: 60px 20px;
  background: var(--white);
}
.fb-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  padding: 50px 60px;
  min-height: 260px;
  background:
    linear-gradient(to right, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.10) 100%),
    url("https://letstravelchic.com/wp-content/uploads/2025/08/portrait-young-woman-with-afro-dreadlocks-backpack-out-city-scaled.jpg") center right/cover no-repeat;
  color: var(--white);
  text-align: left;
}
.fb-inner .serif-title {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--white);
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 720px;
}
.fb-inner p {
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}
.fb-inner .btn {
  background: #F4D58A;
  color: #1a1a1a;
  border-radius: 30px;
  padding: 14px 42px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.fb-inner .btn:hover {
  background: #ECC366;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

/* ============ SHARE YOUR DREAM ============ */
.share-dream {
  padding: 0 20px 60px;
  background: var(--white);
}
.share-dream-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  padding: 80px 60px;
  min-height: 380px;
  background:
    linear-gradient(to right, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.15) 100%),
    url("https://letstravelchic.com/wp-content/uploads/2025/07/image-62.png") center 30%/cover no-repeat;
  color: var(--white);
  text-align: left;
}
.share-dream-title {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--white);
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 26px;
  max-width: 720px;
}
.share-dream-body {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0;
}

/* ============ CONTACT ============ */
.contact { padding: 80px 0; background: var(--white); }
.small-script { font-size: 28px; margin-bottom: 6px; display: block; }
.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form, .contact-info {
  background: var(--white);
  padding: 35px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(21,181,171,0.08);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 15px;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.contact-form button { width: 100%; margin-top: 5px; }

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 24px;
}
.contact-info ul li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: var(--dark);
}
.contact-info ul li i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 4px;
}
.contact-info ul li a:hover { color: var(--primary); }

.contact-socials { display: flex; gap: 12px; margin-top: 25px; }
.contact-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-socials a:hover { background: var(--black); transform: translateY(-3px); }

/* ============ FOOTER (LIGHT GRAY) ============ */
.site-footer-bottom {
  background: #E5E5E5;
  color: #1a1a1a;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 60px;
  padding: 0 40px 50px;
  align-items: start;
}
.footer-col-logo { display: flex; justify-content: center; }
.footer-logo {
  height: 240px;
  width: auto;
  margin-bottom: 0;
}
.footer-col h3 {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 38px;
  margin-bottom: 26px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.footer-col ul li {
  padding: 8px 0;
}
.footer-col ul li a {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--primary);
  letter-spacing: 0.3px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1a1a1a;
  font-size: 18px;
  padding: 10px 0;
}
.footer-contact li i {
  color: var(--primary);
  font-size: 18px;
}
.footer-contact li a {
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 18px;
}
.footer-contact li a:hover { color: var(--primary); }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.15);
  padding: 22px 0;
  text-align: center;
  background: #E5E5E5;
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-bottom p {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.zenesa-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}
.zenesa-link:hover {
  color: var(--primary-light);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(21,181,171,0.4);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--black); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .big-heading { font-size: 42px; }
  .big-heading .script-text { font-size: 56px; }
  .hero-logo { height: 170px; }
  .hero-script { font-size: 48px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .adventures-grid { grid-template-columns: repeat(3, 1fr); }
  .founder-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .process-row::before, .plane-icon, .pin-icon { display: none; }

  .header-top, .header-nav { padding-left: 20px; padding-right: 20px; }
  .header-contact { align-items: flex-start; }
}

@media (max-width: 767px) {
  .big-heading { font-size: 32px; }
  .big-heading .script-text { font-size: 42px; display: block; }
  .mission-card h2 { font-size: 38px; }
  .coming-soon h2 { font-size: 26px; }
  .section-head .serif-title, .founder-text .serif-title { font-size: 28px; }
  .fb-inner .serif-title { font-size: 34px; }
  .fb-inner {
    padding: 40px 28px;
    min-height: 240px;
    background:
      linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.35) 100%),
      url("https://letstravelchic.com/wp-content/uploads/2025/07/image-62.png") center right/cover no-repeat;
  }
  .share-dream-inner {
    padding: 56px 28px;
    min-height: 320px;
    background:
      linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.30) 100%),
      url("https://letstravelchic.com/wp-content/uploads/2025/08/portrait-young-woman-with-afro-dreadlocks-backpack-out-city-scaled.jpg") center 30%/cover no-repeat;
  }
  .share-dream-title { font-size: 38px; }
  .share-dream-body { font-size: 16px; }
  .share-title { font-size: 28px; }
  .plan-head-card .serif-title { font-size: 28px; }

  .header-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .brand-block { align-items: center; }
  .brand-url { margin-left: 0; }
  .header-contact { align-items: center; padding-top: 0; }
  .contact-line, .email-list { font-size: 16px; }

  .nav-toggle { display: inline-block; }
  .nav-close { display: inline-block; align-self: flex-end; margin-bottom: 20px; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--black);
    padding: 30px;
    transition: right 0.4s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 12px; align-items: flex-start; width: 100%; }
  .main-nav ul li a { padding: 10px 18px; font-size: 16px; }
  .nav-socials { gap: 8px; }
  .nav-socials a { width: 34px; height: 34px; }

  .hero { min-height: 460px; }
  .hero-logo { height: 130px; }
  .hero-script { font-size: 36px; }

  .step-into, .why-us, .plan-trip, .founder, .adventures, .contact { padding: 50px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .adventures-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .founder-img-1, .founder-img-2 { transform: none; }
  .founder-images img { height: 280px; }
  .contact-form .form-row, .newsletter .form-row { grid-template-columns: 1fr; }

  .mission-card, .plan-head-card { padding: 28px 22px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}
