:root {
  --navy: #0d1b2e;
  --navy-mid: #112240;
  --teal: #0a7b7e;
  --teal-light: #0db8bc;
  --cyan: #00d4d8;
  --gold: #f5a623;
  --gold-light: #ffc85a;
  --off-white: #eef4f7;
  --white: #ffffff;
  --gray: #6b7280;
  --light-bg: #f9f7f4;
  --text-soft: rgba(255, 255, 255, 0.65);
  --text-dim: rgba(255, 255, 255, 0.575);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-thumb {
  background: var(--teal-light);
  border-radius: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  background: var(--navy);
  color: var(--navy);
  line-height: 1.7;
}

.container{
  width:100svw;
  height:100svh;
  display:flex;
  flex-direction: column;
  
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  border-bottom: 1px solid rgba(196, 154, 42, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 304px;
  height: 33px;
  flex-shrink: 0;
}

.nav-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-brand span {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: all 0.3s;
}

.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 {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 20px 0;
  border-bottom: 2px solid var(--gold);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 14px 32px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s, color 0.2s;
}

.mobile-menu ul li a:hover {
  background: rgba(196, 154, 42, 0.1);
  color: var(--gold-light);
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 350px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 60% 150% at 50% 35%,
      rgba(10, 122, 126, 0.185) 0%,
      transparent 65%
    ),
    linear-gradient(150deg, #0d1b2e 0%, #0a1a30 55%, #071018 100%);
}
.hero-rays {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-rays::before {
  content: "";
  position: absolute;
  top: -10%;
  right: 15%;
  width: 90%;
  height: 120%;
  background: conic-gradient(
    from 200deg at 90% 20%,
    transparent 0deg,
    rgba(0, 212, 216, 0.04) 8deg,
    transparent 16deg,
    rgba(0, 212, 216, 0.03) 24deg,
    transparent 32deg
  );
  animation: rayPulse 8s ease-in-out infinite alternate;
}

.hero-icon {
  position: absolute;
  right: 15%;
  top: 28%;
  transform: translateY(-50%);
  height: clamp(270px, 40vh, 370px);
  width: clamp(290px, 30vw, 320px);
  opacity: 0.92;
  filter: drop-shadow(0 0 50px rgba(0, 212, 216, 0.55));
  animation: floatMark 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  animation: fadeUp 1s ease both;
}

.hero-logo-wrap svg {
  width: min(180px, 40vw);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(196, 154, 42, 0.4));
}

.hero-tagline {
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  animation: fadeUp 1s 0.2s ease both;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeUp 1s 0.35s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--cyan);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(244, 240, 232, 0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fadeUp 1s 0.5s ease both;
}

.hero-actions {
  display: flex;
  justify-content: space-evenly;
  gap: 1rem;
  flex-wrap: wrap;

  animation: fadeUp 0.7s 0.9s forwards;
}
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-lt));
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  border-radius: 3px;
  box-shadow: 0 8px 28px rgba(10, 123, 126, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(10, 123, 126, 0.5);
}
.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid rgba(0, 212, 216, 0.4);
  color: var(--cyan);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  background: rgba(0, 212, 216, 0.08);
  border-color: var(--cyan);
}
.hero-pill {
  display: inline-block;
  font-size: 0.82rem;
  font-style: italic;
  font-family: "Lora", serif;
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.35);
  padding: 0.55rem 1.4rem;
  border-radius: 40px;
  margin-top: 2rem;
  animation: fadeUp 0.7s 1.1s forwards;
}

@keyframes rayPulse {
  from {
    opacity: 0.6;
    transform: rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: rotate(2deg);
  }
}

@keyframes floatMark {
  from {
    transform: translateY(-52%) scale(1);
  }
  to {
    transform: translateY(-48%) scale(1.04);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*PHILOSOPHY BAR----------------- */
.philo-bar {
  background: linear-gradient(90deg, var(--teal) 0%, #0a9ea2 100%);
  padding: 2.2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philo-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(255, 255, 255, 0.03) 80px,
    rgba(255, 255, 255, 0.03) 81px
  );
}
.philo-bar-icon {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  opacity: 0.28;
  pointer-events: none;
}
.philo-text {
  font-family: "Lora", serif;
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: #fff;
  position: relative;
}
.philo-text strong {
  font-style: normal;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--gold-lt);
}

/* ===== SECTION SHARED ===== */
section {
  padding: 90px 5%;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-divider {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}

.section-body {
  font-size: 1rem;
  color: var(--gold);
  max-width: 660px;
  line-height: 1.8;
}

/* INTRO--------------------- */
.intro {
  padding: 7rem 3rem 4rem;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--navy);
}

.intro img {
  width: 20.75px;
  height: 20px;
}
.intro-label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.9rem;
}
.intro-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  color: var(--white);
}
.intro-body {
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 0.97rem;
  font-weight: 300;
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 212, 216, 0.14);
  border-radius: 4px;
  padding: 1.8rem 1.4rem;
  transition: border-color 0.3s, background 0.3s;
}
.stat-box:hover {
  border-color: rgba(0, 212, 216, 0.35);
  background: rgba(0, 212, 216, 0.06);
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.4;
  font-weight: 300;
}

/* ===== FOUNDERS ===== */
#founders {
  background: var(--navy);
}

#founders .section-title {
  color: var(--white);
}
#founders .section-label {
  color: var(--gold-light);
}

.founders-intro {
  color: rgba(244, 240, 232, 0.75);
  max-width: 640px;
  margin-bottom: 60px;
  font-size: 1rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}

.founder-card {
  background: var(--navy-mid);
  border: 1px solid rgba(196, 154, 42, 0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: fit-content;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.founder-image-wrap {
  width: 100%;
  height: 50svh;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a2b3c;
  position: relative;
}

.founder-image {
  height: 100%;
  width: 100%;
}

.founder-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}

.founder-card:hover .founder-image-wrap img {
  transform: scale(1.04);
}

.founder-info {
  padding: 28px 30px 32px;
}

.founder-name {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.founder-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
}

.content-quote {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--gold-light);
  line-height: 1.6;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
  margin-bottom: 1.8rem;
}

.founder-bio {
  font-size: 0.93rem;
  color: rgba(244, 240, 232, 0.75);
  line-height: 1.8;
}

.read-btn,
.show-less-btn {
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-style: italic;
}

#brando-more,
#drew-more {
  display: none;
}

.read-more {
  animation: fadeIn 1s linear 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.tags-label {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 1.4rem 0 0.7rem;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.tag {
  font-size: 0.7rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(0, 212, 216, 0.25);
  color: var(--cyan);
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}
.tag:hover {
  background: rgba(0, 212, 216, 0.1);
  border-color: rgba(0, 212, 216, 0.5);
}
.founder-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
  font-size: 0.78rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.founder-email:hover {
  color: var(--cyan);
}
.founder-email::before {
  content: "✉";
  font-size: 0.9rem;
}

.philosophy {
  margin-top: 40px;
}

/* ── PACKAGES SECTION ─────────────────────────────────── */
.packages-section {
  padding: 6rem 3rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 123, 126, 0.06) 40%,
    transparent 100%
  );
}

.section-label img {
  width: 320px;
  height: 370px;
}

.section-title {
  color: white;
}

.packages-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 1140px;
  margin: 0 auto;
  z-index: 2000;
}

/* Package cards */
.pkg-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.pkg-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s,
    box-shadow 0.3s;
}
.pkg-card:hover {
  border-color: rgba(0, 212, 216, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}
.pkg-card.featured {
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.15);
}
.pkg-card.featured:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 166, 35, 0.3);
}

.pkg-header {
  padding: 2.2rem 2.2rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.pkg-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.pkg-badge.teal {
  background: rgba(0, 212, 216, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 216, 0.3);
}
.pkg-badge.gold {
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.3);
}
.pkg-badge.navy {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.pkg-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.pkg-tagline {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.pkg-price-block {
  position: absolute;
  top: 2rem;
  right: 2rem;
  text-align: right;
}
.pkg-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.pkg-price-sub {
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pkg-body {
  padding: 1.6rem 2.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-best-for {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}
.pkg-audience {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  font-weight: 300;
}
.pkg-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}
.pkg-detail {
  font-size: 0.72rem;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.4;
}
.pkg-detail::before {
  content: "→";
  color: var(--cyan);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.pkg-includes-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.7rem;
}
.pkg-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}
.pkg-tag {
  font-size: 0.68rem;
  padding: 0.28rem 0.7rem;
  border: 1px solid rgba(0, 212, 216, 0.2);
  color: var(--cyan);
  border-radius: 2px;
}

.pkg-footer {
  padding: 1.4rem 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pkg-cta {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-lt));
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  border-radius: 3px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pkg-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 123, 126, 0.4);
}
.pkg-cta.gold-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #1a1a1a;
}
.pkg-cta.gold-cta:hover {
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

/* FAQ Section */
.faq {
  background: var(--navy);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--navy-mid);
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--text-dim);
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--teal);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--cyan);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  margin-top: 1svh;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── MISSION ──────────────────────────────────────────── */
.mission {
  padding: 1rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 70% 60% at 50% 50%,
      rgba(10, 123, 126, 0.18) 0%,
      transparent 65%
    ),
    linear-gradient(180deg, var(--navy) 0%, var(--navy) 100%);
}
.mission-icon-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 380px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 40px rgba(0, 212, 216, 0.3));
}
.mission-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.mission-label {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.4rem;
}
.mission-quote {
  font-family: "Lora", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.mission-body {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 3rem;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--navy); 
}

#contact .section-title {
  color: var(--white);
}
#contact .section-label {
  color: var(--gold-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-text {
  color: rgba(244, 240, 232, 0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.93rem;
  color: rgba(244, 240, 232, 0.8);
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196, 154, 42, 0.15);
  border: 1px solid rgba(196, 154, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-email,
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.93rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-email:hover,
.contact-phone:hover {
  color: var(--cyan);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 154, 42, 0.2);
  border-radius: 2px;
  padding: 12px 16px;
  color: var(--white);
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--navy);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: "Lato", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ===== VLOG ===== */
#vlog {
  background: var(--navy);
}

#vlog .section-label {
  color: var(--gold);
}

.vlog-intro {
  max-width: 620px;
  color: var(--cyan);
  margin-bottom: 52px;
}

.vlog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.vlog-card {
  background: var(--navy-mid);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.vlog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

.vlog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

video {
  width: 100%;
}

.vlog-info {
  padding: 22px 22px 26px;
}

.vlog-date {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.vlog-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.35;
}

.vlog-excerpt {
  font-size: 0.88rem;
  color: white;
  line-height: 1.7;
}

.subscribe-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  width: fit-content;
  color: var(--cyan);
  font-weight: 700;
}

.subscribe-box p {
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
footer {
  background: #080f18;
  padding: 64px 5% 32px;
  color: rgba(244, 240, 232, 0.6);
  background-image: linear-gradient(
      rgba(0, 245, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

footer img {
  width: 29px;
  height: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
}

.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin: 14px 0 10px;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(244, 240, 232, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.social-btn:hover {
  border-color: var(--gold);
  background: rgba(196, 154, 42, 0.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(244, 240, 232, 0.3);
}

.footer-bottom a {
  color: rgba(244, 240, 232, 0.35);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero {
    padding: 8rem 1.4rem 4rem;
  }

  .intro {
    grid-template-columns: 1fr;
    padding: 5rem 1.4rem 3rem;
    gap: 3rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }
  .packages-section {
    padding: 4rem 1.4rem;
    position: relative;
  }

  .philo-bar {
    padding: 1.8rem 1.4rem;
  }
  .pkg-price-block {
    position: static;
    text-align: left;
    margin-top: 1rem;
  }
  .pkg-details {
    grid-template-columns: 1fr;
  }

  .mission {
    padding: 5rem 1.4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  section {
    padding: 72px 5%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .nav-logo-icon {
    width: 200px;
  }

  .section-label img {
    width: 100%;
  }
}

@media (max-width: 350px) {
  .hero-icon {
    right: 5%;
  }

  .intro-stats {
    gap: 0.5rem;
  }
  .stat-box {
    padding: 1rem;
  }
}
