@font-face {
  font-family: 'OpenSauce';
  src: url('Fonts/OpenSauceOne-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'OpenSauce';
  src: url('Fonts/OpenSauceOne-LightItalic.ttf') format('truetype');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'OpenSauce';
  src: url('Fonts/OpenSauceOne-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'OpenSauce';
  src: url('Fonts/OpenSauceOne-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'OpenSauce';
  src: url('Fonts/OpenSauceOne-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'OpenSauce';
  src: url('Fonts/OpenSauceOne-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'OpenSauce';
  src: url('Fonts/OpenSauceOne-BoldItalic.ttf') format('truetype');
  font-weight: 700; font-style: italic; font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

:root {
  --green: #4a9470;
  --gold: #b8894a;
  --dark: #faf7f2;
  --dark2: #f2ece3;
  --dark3: #e9e1d5;
  --text: #1c2a20;
  --muted: rgba(28,42,32,0.52);
}

body {
  font-family: 'OpenSauce', sans-serif;
  color: var(--text);
  background: var(--dark);
}

a { text-decoration: none; color: inherit; }

/* â”€â”€â”€ IRIDESCENT SHIMMER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* â”€â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.9rem 2rem;
  background: transparent;
  transition: background 0.2s, backdrop-filter 0.2s, border-color 0.2s;
  border-bottom: 1px solid transparent;
}
nav.scrolled-dark {
  background: rgba(8, 16, 11, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav.scrolled {
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(185,145,75,0.15);
}
.mob-break { display: none; }
.nav-logo {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(calc(-50% - 4px));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}
nav.scrolled .nav-logo {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}
nav.scrolled .nav-logo.hidden {
  opacity: 0;
  pointer-events: none;
}
.nav-logo-img {
  height: 110px;
  width: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(52%) sepia(22%) saturate(620%) hue-rotate(109deg) brightness(96%);
}
.nav-links {
  grid-column: 2;
  display: flex; gap: 3rem;
  font-size: 0.6rem; font-family: 'OpenSauce', sans-serif;
  letter-spacing: 4px; text-transform: uppercase;
}
.nav-links a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.nav-links a:hover { color: #fff; }
nav.scrolled .nav-links a { color: rgba(28,42,32,0.45); }
nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-cta {
  grid-column: 3; justify-self: end;
  font-family: 'OpenSauce', sans-serif; font-size: 0.6rem; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.45rem 1.4rem;
  border-radius: 1px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.nav-cta:hover { color: #fff; border-color: rgba(255,255,255,0.7); }
nav.scrolled .nav-cta { color: rgba(185,145,75,0.85); border-color: rgba(185,145,75,0.35); }
nav.scrolled .nav-cta:hover {
  color: #b8894a;
  border-color: rgba(185,145,75,0.7);
  background: rgba(185,145,75,0.05);
}

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative; text-align: center;
  height: 100vh; min-height: 560px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding-top: 5rem; padding-bottom: 4rem;
  background: url('photos/nevs-hero.webp') 75% center / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(8, 18, 12, 0.58);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto;
}
.hero-logo-wrap {
  position: relative; z-index: 1;
  width: 100%;
  display: flex; justify-content: center;
  margin-bottom: 2rem;
}
.hero-logo-img {
  width: clamp(220px, 28vw, 800px);
  height: auto;
  display: block;
  opacity: 0.92;
  filter: brightness(0) invert(1);
}
.hero-divider {
  width: clamp(36px, 2.5vw, 70px); height: 1px;
  background: var(--gold);
  margin: 0 auto 3.5rem;
}

/* â”€â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-primary {
  display: inline-block; margin-right: 1.4rem;
  padding: 0.9rem 2.8rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  font-family: 'OpenSauce', sans-serif; font-weight: 400; font-size: 0.7rem;
  letter-spacing: 3.5px; text-transform: uppercase;
  border-radius: 2px;
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s;
}
.btn-primary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.85);
}
.btn-ghost {
  display: inline-block;
  font-family: 'OpenSauce', sans-serif; font-size: 0.7rem; font-weight: 400;
  color: rgba(255,255,255,0.5); letter-spacing: 3.5px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.55); }
.btn-white {
  display: inline-block;
  position: relative;
  padding: 0.9rem 2.8rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'OpenSauce', sans-serif; font-weight: 400; font-size: 0.7rem;
  letter-spacing: 3.5px; text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s;
}
.btn-white:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.85); }


/* â”€â”€â”€ SECTION BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section { padding: 5rem 7rem; }
.section-label {
  font-family: 'OpenSauce', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}

/* â”€â”€â”€ ABOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about { background: var(--dark); padding-bottom: 0; }
.about-header { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.about-header h2 { font-size: 2.6rem; line-height: 1.2; margin-bottom: 1.4rem; letter-spacing: -0.5px; }
.about-header h2 em { color: var(--green); font-style: italic; }
.about-closing {
  font-family: 'OpenSauce', sans-serif; font-size: 1rem; color: var(--muted);
  line-height: 1.9; font-weight: 300; font-style: italic;
  text-align: center; max-width: 560px;
  margin: 2rem auto 2.5rem;
}
.about-ethos {
  text-align: center;
  font-family: 'OpenSauce', sans-serif; font-style: italic;
  font-size: 0.88rem; letter-spacing: 1.5px;
  color: rgba(28,42,32,0.32);
  margin: 0 auto 3rem;
}

/* â”€â”€â”€ ALBUM â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.album-wrap {
  position: relative;
  margin: 0 -7rem;
}
.album-overflow {
  overflow-x: auto; overflow-y: hidden;
  padding: 1.5rem 0 2.5rem;
  scrollbar-width: none;
}
.album-overflow::-webkit-scrollbar { display: none; }
.album-track {
  display: flex; gap: 1.8rem;
  width: max-content;
  padding: 1rem 0.9rem;
}
.album-wrap::before,
.album-wrap::after {
  content: ''; position: absolute;
  top: 0; bottom: 0; width: 120px; z-index: 5;
  pointer-events: none;
}
.album-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark) 20%, transparent);
}
.album-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark) 20%, transparent);
}
.album-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: none; border: none;
  color: var(--text);
  cursor: pointer; padding: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.album-btn:hover { color: var(--gold); }
.album-btn-prev { left: 1.8rem; }
.album-btn-next { right: 1.8rem; }
.album-item {
  flex: 0 0 248px; height: 318px;
  overflow: hidden; border-radius: 3px;
  cursor: pointer; position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
  background: #e0d8cc;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.album-item:nth-child(4n+1) { transform: rotate(-1.4deg) translateY(18px); }
.album-item:nth-child(4n+2) { transform: rotate(0.9deg); }
.album-item:nth-child(4n+3) { transform: rotate(-0.7deg) translateY(10px); }
.album-item:nth-child(4n+4) { transform: rotate(1.5deg) translateY(14px); }
.album-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* â”€â”€â”€ LIGHTBOX â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(10,8,6,0.96); z-index: 1000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 85vw; max-height: 85vh;
  object-fit: contain; border-radius: 2px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lb-close {
  position: absolute; top: 1.8rem; right: 2.5rem;
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 2.8rem; font-weight: 100; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: #fff; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,0.4);
  font-size: 4rem; font-weight: 100; cursor: pointer; padding: 1rem;
  transition: color 0.2s; line-height: 1;
}
.lb-nav:hover { color: #fff; }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-counter {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-family: 'OpenSauce', sans-serif; font-size: 0.72rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* â”€â”€â”€ SERVICES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services { background: #ffffff; }

.services-prog-header { margin-bottom: 2.5rem; }
.services-prog-header h2 { font-size: 2.2rem; letter-spacing: -0.5px; margin: 0.4rem 0 0.6rem; }
.services-prog-header > p {
  font-family: 'OpenSauce', sans-serif; color: var(--muted);
  font-size: 0.92rem; line-height: 1.75; font-weight: 300; max-width: 480px;
}

.package-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; align-items: start; }
.package-card {
  border: 1px solid rgba(0,0,0,0.07);
  position: relative;
  background: #ffffff;
  border-radius: 20px; overflow: hidden;
  transition: box-shadow 0.35s, border-color 0.35s;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.03);
}
.package-card.featured { border-color: rgba(184,137,74,0.28); }
.package-card:hover {
  box-shadow: 0 10px 48px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.12);
}
.package-card.featured:hover { box-shadow: 0 10px 48px rgba(184,137,74,0.18), 0 2px 8px rgba(0,0,0,0.04); border-color: rgba(184,137,74,0.38); }
.pkg-header {
  padding: 2.2rem 2.4rem 1.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pkg-tier {
  font-family: 'OpenSauce', sans-serif; font-style: italic;
  font-size: 0.72rem; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.55rem;
}
.package-card h3 {
  font-size: 1.45rem; letter-spacing: -0.3px; margin-bottom: 0.4rem;
}
.package-card .pkg-sub {
  font-family: 'OpenSauce', sans-serif; font-size: 0.68rem; font-weight: 400;
  color: var(--muted); letter-spacing: 3px; text-transform: uppercase;
}
.pkg-badge {
  position: absolute; top: 0.8rem; right: 0.8rem;
  border: 1px solid rgba(184,137,74,0.45);
  color: var(--gold);
  font-family: 'OpenSauce', sans-serif; font-size: 0.58rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 0.22rem 0.75rem; border-radius: 20px;
  background: rgba(184,137,74,0.06);
}
.package-card.featured .pkg-header { padding-right: 8rem; }
.pkg-features {
  list-style: none; padding: 1.6rem 2.4rem 2.2rem;
}
.pkg-features li {
  font-family: 'OpenSauce', sans-serif; font-size: 0.83rem; color: var(--muted);
  line-height: 1.5; padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-weight: 300; display: flex; gap: 0.55rem;
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li::before { content: '\2013'; flex-shrink: 0; }
.pkg-features li.included { color: var(--green); }
.pkg-features li.included::before { color: var(--green); }
.pkg-features li.excluded { text-decoration: line-through; color: rgba(180,60,60,0.4); }
.pkg-features li.excluded::before { color: rgba(180,60,60,0.4); }

/* â”€â”€â”€ HOW IT WORKS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.steps { background: var(--dark); }
.steps-header { text-align: center; margin-bottom: 2.5rem; }
.steps-header h2 { font-size: 2.6rem; letter-spacing: -0.5px; }
.steps-header p {
  font-family: 'OpenSauce', sans-serif; color: var(--muted);
  max-width: 480px; margin: 0.8rem auto 0;
  font-size: 0.95rem; font-weight: 300;
}
.steps-grid { display: flex; justify-content: center; gap: 1rem; }
.step { text-align: center; flex: 1; max-width: 220px; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute;
  top: 24px; left: calc(50% + 36px); right: calc(-50% + 36px);
  height: 1px; background: #d8e8e0;
}
.step-num {
  width: 52px; height: 52px;
  background: var(--green); color: #fff;
  border-radius: 50%; font-family: 'OpenSauce', sans-serif; font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(45,97,71,0.2);
}
.step h4 { font-size: 1rem; margin-bottom: 0.5rem; letter-spacing: -0.2px; }
.step p { font-family: 'OpenSauce', sans-serif; font-size: 0.84rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* â”€â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials { background: var(--dark2); }
.testimonials-header { margin-bottom: 2.5rem; }
.testimonials-header h2 { font-size: 2.6rem; letter-spacing: -0.5px; }

.testi-nav-wrap {
  display: flex; align-items: center; gap: 1.5rem;
}
.testi-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(28,42,32,0.3); padding: 0.5rem;
  flex-shrink: 0; transition: color 0.2s;
}
.testi-btn:hover { color: var(--text); }
.testi-overflow-wrap { overflow: hidden; flex: 1; }
.testi-track { display: flex; }
.testi-card {
  flex: 0 0 100%; min-width: 100%;
  background: var(--dark);
  border: 1px solid rgba(184,137,74,0.15);
  border-radius: 20px; padding: 3rem;
  box-shadow: 0 4px 28px rgba(184,137,74,0.08);
  display: flex; flex-direction: column;
}
.testi-stars {
  font-size: 0.75rem; color: var(--gold);
  letter-spacing: 3px; margin: 0.2rem 0 0.3rem;
}
.testi-quote-mark {
  font-family: 'OpenSauce', sans-serif; font-size: 4rem;
  line-height: 0.7; color: rgba(184,137,74,0.25);
  margin-bottom: 1.2rem;
}
.testi-card blockquote {
  font-family: 'OpenSauce', sans-serif; font-style: italic;
  font-size: 1rem; line-height: 1.8;
  color: var(--text); flex: 1; margin-bottom: 1.8rem;
}
.testi-attr { display: flex; flex-direction: column; gap: 0; }
.testi-name { font-family: 'OpenSauce', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.testi-result { font-family: 'OpenSauce', sans-serif; font-size: 0.75rem; color: var(--gold); font-style: italic; }
.testi-dots {
  display: flex; gap: 0.5rem; justify-content: center;
  padding: 2rem 0 0;
}
.testi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(28,42,32,0.18);
  cursor: pointer; transition: all 0.3s;
}
.testi-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* â”€â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq { background: var(--dark3); }
.faq-inner { max-width: 640px; margin: 0 auto; }
.faq-header { margin-bottom: 2rem; }
.faq-header h2 { font-size: 2.6rem; letter-spacing: -0.5px; }
.faq-header p { font-family: 'OpenSauce', sans-serif; color: var(--muted); font-size: 0.95rem; margin-top: 0.6rem; font-weight: 300; }
details { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 1.6rem 0; }
summary {
  font-size: 1rem; font-weight: bold; cursor: pointer;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  letter-spacing: -0.1px;
}
summary::after { content: '+'; font-size: 1.3rem; color: var(--gold); font-weight: 300; }
details[open] summary::after { content: ‘\2212’; }
details p { font-family: 'OpenSauce', sans-serif; font-size: 0.93rem; color: var(--muted); line-height: 1.8; margin-top: 1rem; font-weight: 300; }

/* â”€â”€â”€ CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner {
  background: #0d1a11;
  color: #fff;
  text-align: center; padding: 7rem 6rem;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('photos/nevs-hero.webp') center / cover no-repeat;
  opacity: 0.18;
}
.cta-banner h2 {
  position: relative;
  font-size: 3rem; margin-bottom: 1.2rem; letter-spacing: -1.5px;
  color: #fff;
}
.cta-banner p {
  position: relative;
  font-family: 'OpenSauce', sans-serif;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem; font-size: 1rem; line-height: 1.8;
  max-width: 640px; margin-left: auto; margin-right: auto; font-weight: 300;
}

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  background: #1a2e1f; color: rgba(255,255,255,0.35);
  height: 54px;
  position: relative;
  overflow: hidden;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; line-height: 1;
  padding-left: 2rem; padding-right: 2rem;
  font-family: 'OpenSauce', sans-serif;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}
.footer-copy {
  grid-column: 3;
  justify-self: end;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

/* â”€â”€â”€ MOBILE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {

  html, body { overflow-x: hidden; }

  section { padding: 3.5rem 1.5rem; }

  /* Nav */
  nav { padding: 0.9rem 1.5rem; grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-cta { grid-column: 2; }
  .nav-logo { left: 1.5rem; }

  /* Hero */
  .hero { background-position: 60% 50%; background-size: cover; padding-top: 5rem; padding-bottom: 4rem; min-height: 100vh; justify-content: center; }
  .hero-logo-img { width: clamp(200px, 78vw, 340px); }
  .hero-logo-wrap { margin-bottom: 1.5rem; }
  .hero-divider { margin-bottom: 2rem; }
.hero-inner { padding: 0 1rem; }
  .btn-primary { margin-right: 0; margin-bottom: 1rem; display: block; }
  .btn-ghost { display: block; }

  /* About */
  .about { padding-bottom: 0; }
  .about-header { text-align: left; }
  .about-header h2 { font-size: 1.9rem; }
  .about-closing { text-align: left; font-size: 0.92rem; }
  .about-ethos { font-size: 0.72rem; letter-spacing: 0.8px; }
  .album-wrap { margin: 0 -1.5rem; }
  .album-wrap::before, .album-wrap::after { display: none; }
  .album-btn { display: none; }
  .album-overflow { scroll-snap-type: x mandatory; padding: 1rem 1.5rem 2rem; }
  .album-track { padding: 0; gap: 0.75rem; }
  .album-item {
    flex: 0 0 65vw;
    height: 83vw;
    border-radius: 6px;
    scroll-snap-align: start;
    transform: none !important;
  }

  /* Services */
  .package-cards { grid-template-columns: 1fr; gap: 1.2rem; }
  .services-prog-header h2 { font-size: 1.9rem; }

  /* Steps */
  .steps-grid { flex-direction: column; align-items: center; gap: 2rem; }
  .step { max-width: 100%; width: 100%; }
  .step:not(:last-child)::after { display: none; }
  .steps-header h2 { font-size: 1.9rem; }

  .mob-break { display: block; }
  /* Testimonials */
  .testi-card { padding: 2rem 1.5rem; }
  .testi-card blockquote { font-size: 0.92rem; }
  .testi-btn { display: none; }
  .testimonials-header h2 { font-size: 1.9rem; }

  /* FAQ */
  .faq-header h2 { font-size: 1.9rem; }

  /* CTA */
  .cta-banner { padding: 4rem 1.5rem; }
  .cta-banner h2 { font-size: 2rem; letter-spacing: -0.5px; }

  /* Footer */
  footer { height: auto; padding: 1rem 1.5rem; grid-template-columns: 1fr; justify-items: center; gap: 0.5rem; }
  .footer-logo { position: static; transform: none; }
  .footer-logo-img { height: 50px; }
  .footer-copy { grid-column: 1; justify-self: center; text-align: center; }
}

