:root {
  --forest: #1b3a2d;
  --forest-deep: #0f241b;
  --pine: #2a5a3f;
  --cedar: #3d7a5a;
  --sage: #7fa88a;
  --moss: #a8c5a0;
  --meadow: #d4e4c8;
  --mist: #eef3ea;
  --snow: #f8faf6;
  --cream: #fdfcf8;
  --walnut: #6b4c3b;
  --bark: #8b6b4a;
  --gold: #c9a84c;
  --amber: #d4a039;
  --lake: #4a8b9a;
  --lake-deep: #2e6d7a;
  --sky: #7cb5c4;
  --text: #2a2e2b;
  --text-mid: #5a6058;
  --text-light: #8a8e87;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(15, 36, 27, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 36, 27, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 36, 27, 0.12);
  --radius: 1rem;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
}

/* ── UTILITY ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem max(2rem, calc((100% - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
  padding: 1rem max(2rem, calc((100% - 1280px) / 2));
}
.nav.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 36, 27, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  z-index: -1;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-logo span {
  color: var(--moss);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--moss);
}
.nav-cta {
  background: var(--cedar) !important;
  color: var(--white) !important;
  padding: 0.65rem 1.75rem;
  border-radius: 3rem;
  font-weight: 600 !important;
  transition: all 0.3s !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-cta:hover {
  background: var(--pine) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(42, 90, 63, 0.4);
}
.mobile-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/dallake-with-mountains.png")
    center/cover no-repeat;
  animation: heroFloat 30s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.03) translateY(-5px);
  }
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--forest-deep), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  animation: fadeIn 1.4s ease-out;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--moss);
}
.hero h1 {
  font-size: clamp(3rem, 6.5vw, 5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 2rem;
  font-weight: 500;
  max-width: 720px;
}
.hero h1 em {
  font-style: italic;
  color: var(--meadow);
}
.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  border-radius: 3rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: "Outfit", sans-serif;
}
.btn-glow {
  background: var(--cedar);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(61, 122, 90, 0.3);
}
.btn-glow:hover {
  background: var(--pine);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(61, 122, 90, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--moss);
  background: rgba(255, 255, 255, 0.05);
}
.hero-trust {
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  animation: fadeIn 1.8s ease-out;
}
.trust-item {
  text-align: center;
}
.trust-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--moss);
}
.trust-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
  font-weight: 500;
}

/* ── MARQUEE ── */
.marquee-section {
  background: var(--forest-deep);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-item::before {
  content: "◆";
  color: var(--cedar);
  font-size: 0.5rem;
}

/* ── SECTIONS COMMON ── */
.section {
  padding: 7rem 0;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cedar);
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--cedar);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.section-desc {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
}

/* ── EXPERIENCES STRIP ── */
.experiences {
  background: var(--cream);
}
.exp-header {
  text-align: center;
  margin-bottom: 4rem;
}
.exp-header .section-desc {
  margin: 0 auto;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}
.exp-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}
.exp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.exp-card:hover img {
  transform: scale(1.08);
}
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 36, 27, 0.85) 0%,
    rgba(15, 36, 27, 0.1) 50%,
    transparent
  );
  transition: background 0.4s;
}
.exp-card:hover .exp-overlay {
  background: linear-gradient(
    to top,
    rgba(15, 36, 27, 0.9) 0%,
    rgba(15, 36, 27, 0.25) 60%,
    transparent
  );
}
.exp-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  transform: translateY(10px);
  transition: transform 0.4s;
}
.exp-card:hover .exp-content {
  transform: translateY(0);
}
.exp-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.5rem;
}
.exp-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.exp-detail {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0;
  max-height: 0;
  transition: all 0.4s;
}
.exp-card:hover .exp-detail {
  opacity: 1;
  max-height: 100px;
}

/* ── PACKAGES ── */
.packages {
  background: var(--mist);
}
.pkg-header {
  text-align: center;
  margin-bottom: 4rem;
}
.pkg-header .section-desc {
  margin: 0 auto;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(42, 90, 63, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42, 90, 63, 0.12);
}
.pkg-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.pkg-card:hover .pkg-img-wrap img {
  transform: scale(1.05);
}
.pkg-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(15, 36, 27, 0.4), transparent);
}
.pkg-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 36, 27, 0.75);
  backdrop-filter: blur(8px);
  color: var(--moss);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(127, 168, 138, 0.2);
}
.pkg-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pkg-duration {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cedar);
  margin-bottom: 0.5rem;
}
.pkg-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}
.pkg-desc {
  color: var(--text-mid);
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkg-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pkg-highlight {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--forest);
  background: var(--meadow);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  border: none;
}
.pkg-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cedar);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}
.pkg-cta:hover {
  gap: 0.75rem;
}
.pkg-cta::after {
  content: "→";
  transition: transform 0.3s;
}
.pkg-cta:hover::after {
  transform: translateX(3px);
}
.pkg-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: auto;
}
.pkg-cta-secondary {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border: 1.5px solid var(--sage);
  border-radius: 2rem;
  transition: all 0.3s;
}
.pkg-cta-secondary:hover {
  color: var(--forest);
  border-color: var(--cedar);
  background: var(--mist);
}

/* ── INCLUSIONS ── */
.inclusions {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.inc-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h80v80H0z' fill='none'/%3E%3Cpath d='M40 0v80M0 40h80' stroke='%231b3a2d' stroke-width='0.5'/%3E%3C/svg%3E");
}
.inc-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}
.inc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.inc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(42, 90, 63, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.inc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42, 90, 63, 0.12);
}
.inc-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mist) 0%, var(--meadow) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 1.25rem;
}
.inc-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.inc-card p {
  color: var(--text-mid);
  font-size: 0.82rem;
  line-height: 1.65;
  font-weight: 300;
}
.inc-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cedar), var(--lake));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.inc-card:hover .inc-card-line {
  transform: scaleX(1);
}
.inc-card-accent {
  background: var(--forest);
}
.inc-card-accent h4 {
  color: var(--white);
}
.inc-card-accent p {
  color: rgba(255, 255, 255, 0.6);
}
.inc-card-accent:hover {
  background: var(--forest-deep);
}
.inc-accent-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--moss);
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--mist);
  position: relative;
  overflow: hidden;
}
.testi-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.testi-bg-orb-1 {
  top: -120px;
  right: -60px;
  width: 450px;
  height: 450px;
  background: rgba(61, 122, 90, 0.06);
}
.testi-bg-orb-2 {
  bottom: -100px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: rgba(74, 139, 154, 0.05);
}
.testi-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.testi-header {
  text-align: center;
  margin-bottom: 3rem;
}
.testi-header .section-eyebrow {
  color: var(--cedar);
}
.testi-header .section-eyebrow::before {
  background: var(--cedar);
}
.testi-header .section-title {
  color: var(--forest);
}
.testi-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.testi-rating-stars {
  color: var(--amber);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.testi-rating-text {
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 400;
}
.testi-featured {
  background: var(--white);
  border: 1px solid rgba(42, 90, 63, 0.06);
  border-radius: 1.25rem;
  padding: 3rem 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.4s;
  box-shadow: var(--shadow-sm);
}
.testi-featured:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(42, 90, 63, 0.1);
}
.testi-featured-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--cedar);
  opacity: 0.35;
  position: absolute;
  top: 1rem;
  left: 2.5rem;
}
.testi-featured-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}
.testi-featured-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-featured-stars {
  margin-left: auto;
  color: var(--amber);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border: 1px solid rgba(42, 90, 63, 0.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(42, 90, 63, 0.1);
}
.testi-card-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--cedar);
  opacity: 0.25;
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
}
.testi-quote {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cedar), var(--lake));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.testi-featured-stars {
  color: var(--amber);
}
.testi-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--forest);
}
.testi-trip {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

/* ── LEAD FORM ── */
.lead-section {
  background: var(--cream);
  position: relative;
}
.lead-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
.lead-left .section-desc {
  margin-bottom: 2rem;
}
.lead-perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lead-perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 400;
}
.lead-perk-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 1px solid rgba(42, 90, 63, 0.08);
}
.lead-form-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(42, 90, 63, 0.06);
}
.lead-form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.lead-form-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.form-group {
  margin-bottom: 1.15rem;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(42, 90, 63, 0.1);
  border-radius: 0.6rem;
  font-size: 0.88rem;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--snow);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cedar);
  box-shadow: 0 0 0 3px rgba(61, 122, 90, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Outfit", sans-serif;
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--pine);
  box-shadow: 0 6px 24px rgba(27, 58, 45, 0.3);
  transform: translateY(-1px);
}
.form-note {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 0.85rem;
}

/* ── DESTINATIONS ── */
.dest-strip {
  background: var(--forest-deep);
  padding: 5rem 0;
  overflow: hidden;
}
.dest-header {
  text-align: center;
  margin-bottom: 3rem;
}
.dest-header .section-eyebrow {
  color: var(--moss);
}
.dest-header .section-eyebrow::before {
  background: var(--moss);
}
.dest-header .section-title {
  color: var(--white);
}
.dest-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.dest-card:hover img {
  transform: scale(1.1);
}
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 36, 27, 0.9) 0%,
    rgba(15, 36, 27, 0.2) 50%,
    rgba(15, 36, 27, 0.05) 100%
  );
  transition: background 0.4s;
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(
    to top,
    rgba(15, 36, 27, 0.95) 0%,
    rgba(15, 36, 27, 0.3) 60%,
    rgba(15, 36, 27, 0.1) 100%
  );
}
.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}
.dest-card-tag {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.25rem;
}
.dest-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.2;
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 6rem 2rem;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  background: url("../kashmir-images/309708648Dal_lake1.jpg") center/cover no-repeat;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 36, 27, 0.92) 0%,
    rgba(27, 58, 45, 0.88) 40%,
    rgba(46, 109, 122, 0.85) 100%
  );
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.cta-desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0.75rem auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
  font-size: 1rem;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}
.btn-call {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}
.btn-call:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 2rem;
  position: relative;
}
.footer-top-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--cedar), var(--lake), var(--cedar));
  margin-bottom: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-brand h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.footer-brand h3 span {
  color: var(--moss);
}
.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem !important;
}
.footer-brand > p:last-of-type {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-socials a:hover {
  border-color: var(--moss);
  color: var(--moss);
  background: rgba(127, 168, 138, 0.08);
}
.footer-col h4 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
  transition: all 0.3s;
}
.footer-col a:hover {
  color: var(--moss);
  transform: translateX(3px);
}
.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.72rem;
}

/* ── NAV WA BUTTON ── */
.nav-cta-wa {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background: #25d366 !important;
  border-color: rgba(37, 211, 102, 0.3) !important;
}
.nav-cta-wa:hover {
  background: #1fb855 !important;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4) !important;
}
.nav-cta-wa svg {
  flex-shrink: 0;
}

/* ── HERO WA BUTTON ── */
.btn-glow-wa {
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-glow-wa:hover {
  background: #1fb855;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

/* ── PKG WA CTA ── */
.pkg-cta-wa {
  color: #25d366 !important;
}
.pkg-cta-wa:hover {
  color: #1fb855 !important;
}

/* ── READY CTA SECTION ── */
.ready-cta-section {
  background: var(--cream);
  padding: 5rem 0;
}
.ready-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  background: var(--forest);
  border-radius: 1.5rem;
  padding: 4.5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ready-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.ready-cta-orb-1 {
  top: -60px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: rgba(61, 122, 90, 0.25);
}
.ready-cta-orb-2 {
  bottom: -80px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: rgba(74, 139, 154, 0.15);
}
.ready-cta-content {
  position: relative;
  z-index: 1;
}
.ready-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 500;
}
.ready-cta-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
  font-weight: 300;
}
.ready-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.ready-cta-perks {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ready-cta-perks span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ready-cta-perks span::before {
  content: "✓";
  color: var(--moss);
  font-weight: 700;
}

/* ── CONTACT PAGE ── */
.contact-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/dallake-with-mountains.png") center/cover no-repeat;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 36, 27, 0.92) 0%,
    rgba(27, 58, 45, 0.88) 50%,
    rgba(46, 109, 122, 0.82) 100%
  );
}
.contact-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 6rem 0 4rem;
}
.contact-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.contact-hero-content h1 em {
  font-style: italic;
  color: var(--meadow);
}
.contact-hero-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
}

.contact-body {
  padding: 5rem 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(42, 90, 63, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(42, 90, 63, 0.1);
}

.contact-card-primary {
  border: 1px solid rgba(42, 90, 63, 0.1);
}
.contact-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cedar), var(--lake));
}
.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cedar), var(--lake));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-avatar span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.contact-person-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
}
.contact-person-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cedar);
  margin-top: 0.2rem;
}
.contact-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(42, 90, 63, 0.08), rgba(42, 90, 63, 0.02));
  margin-bottom: 1.5rem;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 1.5px solid transparent;
  background: var(--snow);
}
.contact-channel:hover {
  border-color: rgba(42, 90, 63, 0.12);
  background: var(--mist);
  transform: translateX(4px);
}
.contact-channel-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mist), var(--meadow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.contact-channel-icon-wa {
  background: linear-gradient(135deg, #dcf8e8, #25d366);
  color: var(--white);
}
.contact-channel-wa {
  border-color: rgba(37, 211, 102, 0.15);
  background: rgba(37, 211, 102, 0.04);
}
.contact-channel-wa:hover {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.08);
}
.contact-channel-info {
  flex: 1;
  min-width: 0;
}
.contact-channel-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact-channel-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 0.15rem;
  word-break: break-all;
}
.contact-channel-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #25d366;
  background: rgba(37, 211, 102, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1.25rem;
}
.contact-detail-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-detail-row {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  min-width: 120px;
  flex-shrink: 0;
}
.contact-detail-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
}
.contact-detail-value a {
  color: var(--cedar);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-detail-value a:hover {
  color: var(--pine);
}

.contact-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.contact-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--forest);
  background: linear-gradient(135deg, var(--mist), var(--meadow));
  padding: 0.55rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(42, 90, 63, 0.08);
  transition: all 0.3s;
}
.contact-service-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-service-tag svg {
  flex-shrink: 0;
  color: var(--cedar);
}

.contact-card-social {
  background: var(--white);
}
.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  background: var(--snow);
  border: 1.5px solid transparent;
  transition: all 0.3s;
}
.contact-social-link:hover {
  border-color: rgba(42, 90, 63, 0.1);
  background: var(--mist);
  transform: translateX(4px);
}
.contact-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-social-fb {
  background: #1877f2;
  color: var(--white);
}
.contact-social-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}
.contact-social-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.contact-social-handle {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}

.contact-map-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 6rem;
}
.contact-map-card {
  background: var(--white);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(42, 90, 63, 0.06);
  transition: box-shadow 0.4s;
}
.contact-map-card:hover {
  box-shadow: var(--shadow-md);
}
.contact-map-wrap {
  width: 100%;
  height: 380px;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.contact-map-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
}
.contact-map-pin {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-map-address {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.contact-map-region {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

.contact-wa-float {
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
}
.contact-wa-float-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
}
.contact-wa-float-content {
  position: relative;
  z-index: 1;
  padding: 2.25rem;
  text-align: center;
}
.contact-wa-float-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.contact-wa-float-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.contact-wa-float-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
}

/* ── NAV OVERLAY ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ── MOBILE NAV DRAWER ── */
.mobile-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.drawer-close {
  display: none;
}
@media (max-width: 1028px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: rgba(15, 36, 27, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    width: 100%;
    padding: 0.85rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links .nav-cta {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
    width: 100%;
    display: inline-flex !important;
  }
  .mobile-menu {
    display: block;
  }
  .drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 1;
  }
  .drawer-close:hover {
    background: rgba(255, 255, 255, 0.15);
  }
}
@media (max-width: 768px) {
  .nav-links {
    width: 100%;
  }
}

/* ── SERVICES HERO ── */
.svc-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/dallake-with-mountains.png") center/cover no-repeat;
}
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 36, 27, 0.92) 0%,
    rgba(27, 58, 45, 0.88) 50%,
    rgba(46, 109, 122, 0.82) 100%
  );
}
.svc-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.svc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 7rem 2rem 5rem;
}
.svc-hero-content .section-eyebrow::before {
  background: var(--moss);
}
.svc-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.svc-hero-content h1 em {
  font-style: italic;
  color: var(--meadow);
}
.svc-hero-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
}
@media (max-width: 480px) {
  .svc-hero-content h1 {
    font-size: 2rem;
  }
}

/* ── SERVICES ── */
.services-section {
  background: var(--mist);
}
.svc-header {
  text-align: center;
  margin-bottom: 4rem;
}
.svc-header .section-desc {
  margin: 0 auto;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(42, 90, 63, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42, 90, 63, 0.12);
}
.svc-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.svc-card:hover .svc-img-wrap img {
  transform: scale(1.05);
}
.svc-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(15, 36, 27, 0.4), transparent);
}
.svc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 36, 27, 0.75);
  backdrop-filter: blur(8px);
  color: var(--moss);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(127, 168, 138, 0.2);
}
.svc-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}
.svc-desc {
  color: var(--text-mid);
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.25rem;
  flex: 1;
}
.svc-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.svc-highlight {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--forest);
  background: var(--meadow);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}
.svc-actions {
  margin-top: auto;
}
.svc-grid-home {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .svc-grid,
  .svc-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .svc-grid,
  .svc-grid-home {
    grid-template-columns: 1fr;
  }
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  .container,
  .section,
  .services-section,
  .dest-strip,
  .ready-cta-section,
  .contact-body,
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .hero-content,
  .hero-trust {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .contact-hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 1028px) {
  .nav {
    padding: 1rem 1.5rem;
  }
  .nav.scrolled {
    padding: 0.75rem 1.5rem;
  }
}
@media (max-width: 1024px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dest-scroll {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-featured {
    padding: 2.5rem 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-col {
    position: static;
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }
  .nav.scrolled {
    padding: 0.75rem 1.5rem;
  }
  .hero {
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0 1.5rem;
    min-height: 100svh;
  }
  .hero-content {
    padding: 0 1.5rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
    margin-bottom: 1rem;
  }
  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .hero-actions .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.82rem;
  }
  .hero-trust {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: flex-start;
    margin-top: 1.5rem;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
  .trust-num {
    font-size: 1.8rem;
  }
  .trust-label {
    font-size: 0.58rem;
  }
  .section {
    padding: 4.5rem 1.5rem;
  }
  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pkg-grid {
    grid-template-columns: 1fr;
  }
  .inc-grid {
    grid-template-columns: 1fr;
  }
  .lead-layout {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .testi-featured {
    padding: 2rem 1.5rem;
  }
  .testi-featured-text {
    font-size: 1.2rem;
  }
  .testi-featured-quote {
    font-size: 4rem;
    left: 1rem;
  }
  .dest-scroll {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-col {
    position: static;
  }
  .contact-detail-row {
    flex-direction: column;
    gap: 0.25rem;
  }
  .contact-detail-label {
    min-width: auto;
  }
  .ready-cta-inner {
    padding: 3rem 2rem;
  }
  .ready-cta-perks {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 0 1.5rem 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 4.5rem 0 1rem;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.2rem);
    margin-bottom: 0.75rem;
  }
  .hero-desc {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }
  .hero-actions {
    gap: 0.75rem;
  }
  .hero-actions .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.78rem;
  }
  .hero-trust {
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
  .trust-num {
    font-size: 1.5rem;
  }
  .exp-grid {
    grid-template-columns: 1fr;
  }
  .dest-scroll {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-featured-stars {
    display: none;
  }
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  .contact-channel-badge {
    display: none;
  }
  .contact-services {
    gap: 0.5rem;
  }
  .contact-service-tag {
    font-size: 0.72rem;
    padding: 0.45rem 0.8rem;
  }
  .contact-map-wrap {
    height: 280px;
  }
}
