/* ====================================================
   THE LOCAL ROOT BELIZE — Main Stylesheet
   ==================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================
   CSS CUSTOM PROPERTIES
   ======================== */
:root {
  --forest:   #1F3D2E;
  --coral:    #F26D5B;
  --sand:     #E8DFD1;
  --ivory:    #FAF7F2;
  --white:    #FFFFFF;
  --forest-70: rgba(31,61,46,0.7);
  --forest-10: rgba(31,61,46,0.1);
  --ivory-80: rgba(250,247,242,0.8);

  --font-h:   'Cormorant Garamond', Georgia, serif;
  --font-b:   'Inter', 'Helvetica Neue', Arial, sans-serif;

  --ease:     0.3s ease;
  --radius:   6px;
  --radius-lg:14px;
  --max-w:    1200px;
  --pad:      1.5rem;
}

/* ========================
   RESET
   ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.75;
  color: var(--forest);
  background: var(--ivory);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-b); }

/* ========================
   TYPOGRAPHY
   ======================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-h);
  font-weight: 500;
  line-height: 1.18;
  color: var(--forest);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
p  { margin-bottom: 1rem; color: #3d5a4a; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}
.lead {
  font-size: 1.1rem;
  color: #4a6352;
  line-height: 1.75;
}
.link-coral {
  color: var(--coral);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--ease);
}
.link-coral:hover { gap: 0.7rem; }

/* ========================
   LAYOUT
   ======================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section        { padding: 5.5rem 0; }
.section-sm     { padding: 3.5rem 0; }
.section--sand  { background: var(--sand); }
.section--forest { background: var(--forest); }
.section--forest h1,.section--forest h2,
.section--forest h3,.section--forest h4 { color: var(--ivory); }
.section--white { background: var(--white); }

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

.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: #4a6352; font-size: 1.05rem; max-width: 600px; }
.section-header--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header--center p { margin: 0 auto; }

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary   { background: var(--forest); color: var(--ivory); border-color: var(--forest); }
.btn-primary:hover { background: transparent; color: var(--forest); }
.btn-coral     { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-coral:hover { background: #e05a47; border-color: #e05a47; }
.btn-outline   { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--ivory); }
.btn-outline-white { background: transparent; color: var(--ivory); border-color: var(--ivory); }
.btn-outline-white:hover { background: var(--ivory); color: var(--forest); }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 0.95rem; }

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--ivory);
  border-bottom: 1px solid var(--forest-10);
  transition: box-shadow var(--ease), background var(--ease);
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(31,61,46,0.12);
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(8px);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
.navbar-logo { display: flex; align-items: center; }
.navbar-logo img { height: 66px; width: auto; transition: opacity var(--ease); }
.navbar-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links > li > a {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.7rem;
  color: var(--forest);
  transition: color var(--ease);
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0.7rem; right: 0.7rem;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: left;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--coral); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a::after { content: '' !important; } /* no underline on dropdown trigger separately */
.dropdown-trigger::after {
  content: '' !important;
  position: absolute;
  bottom: -1px; left: 0.7rem; right: 0.7rem;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform var(--ease);
}
.dropdown:hover .dropdown-trigger::after { transform: scaleX(1); }
.dropdown:hover .dropdown-trigger { color: var(--coral); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -10px;
  min-width: 230px;
  background: var(--ivory);
  border: 1px solid var(--forest-10);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--ease);
  z-index: 200;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.83rem;
  color: var(--forest);
  transition: all var(--ease);
  border-bottom: 1px solid rgba(31,61,46,0.055);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover {
  background: var(--sand);
  color: var(--coral);
  padding-left: 1.6rem;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--ivory);
  border-top: 1px solid var(--forest-10);
  padding: 1.25rem var(--pad) 2rem;
  max-height: calc(100vh - 92px);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu li { border-bottom: 1px solid var(--forest-10); }
.mobile-menu li a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
}
.mobile-menu li a:hover { color: var(--coral); }
.mobile-submenu { padding-left: 1rem; }
.mobile-submenu li a { font-size: 0.9rem; font-weight: 400; color: #4a6352; }
.mobile-cta { border: none !important; padding-top: 1.5rem; }
.mobile-cta a { display: inline-flex; }

/* Offset for fixed navbar */
.page-top { padding-top: 92px; }

/* ========================
   HERO
   ======================== */
.hero-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 92px);
  gap: 3rem;
  padding: 4rem 0;
}
.hero-home__content { max-width: 560px; }
.hero-home h1 { margin-bottom: 1.4rem; }
.hero-home h1 em { font-style: italic; }
.hero-home__sub { font-size: 1.05rem; color: #4a6352; margin-bottom: 2rem; }
.hero-home__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-home__trust {
  font-size: 0.83rem;
  color: #6a8a78;
  line-height: 1.6;
  max-width: 440px;
  padding-left: 1rem;
  border-left: 2px solid var(--sand);
}

.hero-home__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-home__img-wrap img {
  width: 80%;
  height: auto;
  display: block;
  object-fit: contain;
}
.hero-home__leaf {
  position: absolute;
  width: 180px;
  opacity: 0.08;
  right: -20px;
  bottom: -20px;
}

/* Inner page hero */
.hero-page {
  background: var(--forest);
  padding: 6rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/logos/logo-white.png') no-repeat right 4% center / 380px;
  opacity: 0.055;
}
.hero-page::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0%, transparent 60%);
}
.hero-page .eyebrow { color: var(--coral); }
.hero-page h1 { color: var(--ivory); margin-bottom: 1rem; }
.hero-page__sub { color: var(--ivory-80); font-size: 1.05rem; max-width: 640px; margin-bottom: 0; }

/* Tour sub-page hero (with background image) */
.hero-tour {
  position: relative;
  padding: 8rem 0 5.5rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-tour::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0%, transparent 60%);
  z-index: 3;
}
.hero-tour__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-tour__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,40,28,0.93) 0%, rgba(31,61,46,0.6) 100%);
  z-index: 1;
}
.hero-tour .container { position: relative; z-index: 2; }
.hero-tour .eyebrow { color: var(--coral); }
.hero-tour h1 { color: var(--ivory); margin-bottom: 1rem; }
.hero-tour .hero-page__sub,
.hero-tour p { color: var(--ivory-80); max-width: 640px; font-size: 1.05rem; margin-bottom: 2rem; }

/* ========================
   TRUST BAR
   ======================== */
.trust-bar {
  background: var(--forest);
  padding: 2.25rem 0;
}
.trust-bar__wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ivory);
}
.trust-bar__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  opacity: 0.9;
}
.trust-bar__text strong { display: block; font-size: 0.9rem; }
.trust-bar__text span { font-size: 0.78rem; color: rgba(250,247,242,0.65); }

/* ========================
   VALUE CARDS
   ======================== */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--forest-10);
  transition: box-shadow var(--ease);
}
.value-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.value-card__icon {
  width: 48px; height: 48px;
  background: var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.value-card h4 { margin-bottom: 0.6rem; }
.value-card p { font-size: 0.9rem; color: #4a6352; }

/* ========================
   SERVICE CARDS
   ======================== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--forest-10);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-family: var(--font-h);
  font-size: 5rem;
  color: var(--sand);
  line-height: 1;
  pointer-events: none;
}
.service-card:hover { border-color: var(--coral); box-shadow: 0 8px 32px rgba(242,109,91,0.12); }
.service-card h4 { margin-bottom: 1rem; }
.service-card p { font-size: 0.9rem; color: #4a6352; line-height: 1.7; margin: 0; }

/* ========================
   TOUR CATEGORY CARDS
   ======================== */
.tour-cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 290px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.tour-cat-card img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-cat-card:hover img { transform: scale(1.06); }
.tour-cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,61,46,0.88) 0%, rgba(31,61,46,0.2) 55%, transparent 100%);
  transition: opacity var(--ease);
}
.tour-cat-card:hover::after { opacity: 0.9; }
.tour-cat-card__body {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  color: var(--ivory);
  width: 100%;
}
.tour-cat-card__title { font-family: var(--font-h); font-size: 1.55rem; color: var(--ivory); margin-bottom: 0.3rem; }
.tour-cat-card__sub { font-size: 0.82rem; color: rgba(250,247,242,0.75); margin-bottom: 0.75rem; }
.tour-cat-card__link { color: var(--coral); font-size: 0.82rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; }
.tour-cat-card__link:hover { gap: 0.7rem; }

/* ========================
   EXPERIENCE DETAIL CARDS
   ======================== */
.exp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--forest-10);
  transition: all var(--ease);
}
.exp-card:hover { transform: translateY(-4px); box-shadow: 0 14px 42px rgba(0,0,0,0.1); }
.exp-card__img { height: 200px; overflow: hidden; }
.exp-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.exp-card:hover .exp-card__img img { transform: scale(1.05); }
.exp-card__body { padding: 1.6rem; }
.exp-card__title { font-family: var(--font-h); font-size: 1.35rem; margin-bottom: 0.75rem; }
.exp-card p { font-size: 0.88rem; color: #4a6352; line-height: 1.65; margin: 0; }

/* ========================
   FEATURE SPLIT
   ======================== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.feature-split--rev { direction: rtl; }
.feature-split--rev > * { direction: ltr; }
.feature-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.feature-split__img img { width: 100%; height: 100%; object-fit: cover; }
.feature-split__content h2 { margin-bottom: 1.25rem; }
.feature-split__content p { color: #4a6352; line-height: 1.8; }
.feature-split__list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-split__list-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: #4a6352;
}
.feature-split__list-item::before { content: '✦'; color: var(--coral); font-size: 0.55rem; margin-top: 0.4rem; flex-shrink: 0; }

/* ========================
   HOW IT WORKS STEPS
   ======================== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px; left: 12%; right: 12%;
  height: 1px;
  background: var(--sand);
}
.step { text-align: center; }
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  font-family: var(--font-h);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative; z-index: 1;
}
.step h4 { margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: #4a6352; line-height: 1.65; }

/* ========================
   TESTIMONIAL
   ======================== */
.testimonial {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.testimonial__mark {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0;
  vertical-align: -1.5rem;
  margin-right: 0.2rem;
}
.testimonial__text {
  font-family: var(--font-h);
  font-size: 1.65rem;
  line-height: 1.45;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.testimonial__author {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a6352;
}

/* ========================
   CTA BANNER
   ======================== */
.cta-banner {
  background: var(--forest);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--ivory); margin-bottom: 0.75rem; }
.cta-banner p { color: var(--ivory-80); max-width: 520px; margin: 0 auto 2rem; }
.cta-banner--sand { background: var(--sand); }
.cta-banner--sand h2 { color: var(--forest); }
.cta-banner--sand p { color: #4a6352; }
.cta-banner__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========================
   BLOG / JOURNAL CARDS
   ======================== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--forest-10);
  transition: all var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.09); }
.blog-card__img { height: 210px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 1.6rem; }
.blog-card__cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.5rem; display: block; }
.blog-card h4 { font-family: var(--font-h); font-size: 1.35rem; margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.87rem; color: #4a6352; margin-bottom: 0.9rem; }

/* ========================
   PARTNER SERVICE MODELS
   ======================== */
.partner-card {
  padding: 2.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--forest-10);
  transition: all var(--ease);
}
.partner-card:hover { border-color: var(--coral); box-shadow: 0 8px 28px rgba(242,109,91,0.1); }
.partner-card__icon { font-size: 1.8rem; margin-bottom: 1rem; }
.partner-card h4 { margin-bottom: 0.75rem; }
.partner-card p { font-size: 0.88rem; color: #4a6352; line-height: 1.7; margin: 0; }

/* ========================
   FAQ
   ======================== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(31,61,46,0.12); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-h);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--forest);
  transition: color var(--ease);
}
.faq-q:hover { color: var(--coral); }
.faq-ico {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--forest);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
}
.faq-item.open .faq-ico { background: var(--coral); color: var(--white); transform: rotate(45deg); }
.faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--forest);
  font-size: 1.4rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-90deg);
  transition: all var(--ease);
}
.faq-item.open .faq-chevron {
  background: var(--coral);
  color: var(--white);
  transform: rotate(90deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-a p { padding-bottom: 1.5rem; color: #4a6352; line-height: 1.8; margin: 0; }

/* ========================
   FORMS
   ======================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group--full { grid-column: 1 / -1; }
label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--forest);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid rgba(31,61,46,0.2);
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 0.95rem;
  color: var(--forest);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31,61,46,0.08);
}
textarea { resize: vertical; min-height: 140px; }
.checkbox-group { display: grid; grid-template-columns: repeat(auto-fill,minmax(190px,1fr)); gap: 0.5rem; margin-top: 0.25rem; }
.check-label {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; font-weight: 400;
  letter-spacing: 0; text-transform: none;
  cursor: pointer; color: #3d5a4a;
}
.check-label input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--forest);
  flex-shrink: 0;
  padding: 0; border: none; box-shadow: none;
}

/* ========================
   CONTACT
   ======================== */
.contact-wrap { display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; }
.contact-info-box {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--ivory);
}
.contact-info-box h3 { color: var(--ivory); margin-bottom: 2.5rem; }
.contact-info-row { display: flex; gap: 1rem; margin-bottom: 1.75rem; align-items: flex-start; }
.contact-info-ico {
  width: 42px; height: 42px;
  background: rgba(250,247,242,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-text small {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  margin-bottom: 0.2rem;
}
.contact-info-text span { font-size: 0.9rem; color: rgba(250,247,242,0.85); }

/* ========================
   ABOUT PAGE
   ======================== */
.about-split { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.values-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; text-align: center; }
.value-pill { padding: 1.75rem 1rem; }
.value-pill__word { font-family: var(--font-h); font-size: 1.55rem; color: var(--forest); margin-bottom: 0.4rem; }
.value-pill p { font-size: 0.82rem; color: #4a6352; line-height: 1.5; }

/* ========================
   SIGNATURE JOURNEYS
   ======================== */
.journey-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--forest-10);
  transition: all var(--ease);
}
.journey-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.journey-card__img { height: 250px; overflow: hidden; }
.journey-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.journey-card:hover .journey-card__img img { transform: scale(1.05); }
.journey-card__body { padding: 2rem; }
.journey-card__tag {
  display: inline-block;
  padding: 0.28rem 0.8rem;
  background: var(--sand);
  border-radius: 20px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.85rem;
}
.journey-card h4 { margin-bottom: 0.75rem; }
.journey-card p { font-size: 0.88rem; color: #4a6352; line-height: 1.65; margin-bottom: 1.25rem; }

/* ========================
   BREADCRUMB
   ======================== */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(250,247,242,0.6);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(250,247,242,0.55); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb__sep { opacity: 0.4; }

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--forest);
  color: var(--ivory);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__logo { height: 64px; width: auto; margin-bottom: 1.5rem; }
.footer__brand p { font-size: 0.88rem; color: rgba(250,247,242,0.65); margin-bottom: 1.5rem; line-height: 1.65; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250,247,242,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  color: rgba(250,247,242,0.6);
  transition: all var(--ease);
}
.footer__social a:hover { border-color: var(--coral); color: var(--coral); }
.footer__col-head {
  font-family: var(--font-b);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  margin-bottom: 1.25rem;
}
.footer__links li { margin-bottom: 0.65rem; }
.footer__links a { font-size: 0.88rem; color: rgba(250,247,242,0.75); transition: color var(--ease); }
.footer__links a:hover { color: var(--coral); }
.footer__cta-box {
  background: rgba(250,247,242,0.07);
  border: 1px solid rgba(250,247,242,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.footer__cta-box h4 { color: var(--ivory); font-size: 1.05rem; margin-bottom: 0.5rem; }
.footer__cta-box p { font-size: 0.83rem; color: rgba(250,247,242,0.55); margin-bottom: 1.25rem; }
.footer__bottom {
  border-top: 1px solid rgba(250,247,242,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(250,247,242,0.35); margin: 0; }
.footer__bottom-links { display: flex; gap: 0; }
.footer__bottom-links a {
  font-size: 0.78rem; color: rgba(250,247,242,0.35);
  margin-left: 1.5rem;
  transition: color var(--ease);
}
.footer__bottom-links a:hover { color: var(--coral); }

/* ========================
   EXP CARD DETAILS LIST
   ======================== */
.exp-card__details {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.exp-card__details li {
  font-size: 0.82rem;
  color: #4a6352;
  padding-left: 1rem;
  position: relative;
}
.exp-card__details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* ========================
   BRAND ACCENT — Section divider
   ======================== */
.brand-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.brand-rule::before,
.brand-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--forest-10);
}
.brand-rule__mark {
  color: var(--coral);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}

/* ========================
   HERO HOME — brand additions
   ======================== */
.hero-home .eyebrow::before { background: var(--coral); }

/* ========================
   SECTION HEADER — brand accents
   ======================== */
.section-header h2,
.section-header--center h2 {
  position: relative;
}
.section-header--center h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--coral);
  margin: 0.85rem auto 0;
  border-radius: 2px;
}

/* ========================
   TRUST BAR — brand upgrade
   ======================== */
.trust-bar {
  background: var(--forest);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/logos/logo-white.png') no-repeat right -40px center / 260px;
  opacity: 0.04;
}
.trust-bar__item {
  position: relative;
  z-index: 1;
}

/* ========================
   NAV LINKS — brand weight
   ======================== */
.nav-cta { margin-left: 0.75rem; }

/* ========================
   CTA BANNER — brand gradient
   ======================== */
.cta-banner {
  background: var(--forest);
  background-image: linear-gradient(135deg, var(--forest) 60%, #2d5540 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/logos/logo-white.png') no-repeat center center / 420px;
  opacity: 0.03;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), transparent);
}

/* ========================
   FOOTER — brand upgrade
   ======================== */
.footer {
  background: var(--forest);
  background-image: linear-gradient(160deg, #162d22 0%, var(--forest) 50%);
  color: var(--ivory);
  padding: 5.5rem 0 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0%, transparent 50%);
}

/* ========================
   TESTIMONIAL — brand
   ======================== */
.testimonial {
  position: relative;
}
.testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
}

/* ========================
   UTILITIES
   ======================== */
.text-center { text-align: center; }
.text-coral { color: var(--coral); }
.text-ivory { color: var(--ivory); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.flex-gap { display: flex; gap: 1rem; flex-wrap: wrap; }
.hr-sand { border: none; border-top: 1px solid var(--forest-10); margin: 3rem 0; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1100px) {
  .nav-links > li > a { padding: 0.45rem 0.55rem; font-size: 0.74rem; }
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .values-row { grid-template-columns: repeat(3,1fr); }
  .steps-row { grid-template-columns: repeat(2,1fr); }
  .steps-row::before { display: none; }
  .hero-home { min-height: auto; padding: 3.5rem 0; }
  .hero-home__img-wrap { height: auto; }
}

@media (max-width: 768px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-split--rev { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-row { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .hero-home { grid-template-columns: 1fr; }
  .hero-home__img-wrap { display: none; }
  .nav-links, .navbar .nav-cta { display: none; }
  .hamburger { display: flex; }
  .trust-bar__wrap { gap: 1.5rem; justify-content: flex-start; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }
  .footer__bottom-links a { margin: 0 0.5rem; }
  /* Navbar mobile */
  .navbar .container { height: 76px; }
  .navbar-logo img { height: 52px; }
  .page-top { padding-top: 76px; }
  .mobile-menu { max-height: calc(100vh - 76px); }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .values-row { grid-template-columns: 1fr 1fr; }
  .hero-home__ctas { flex-direction: column; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
}
