/* === Base Reset & Font === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Georgia', serif;
  background: url('/assets/scroll-texture.png') repeat center center fixed;
  background-size: cover;
  color: #f5f5f5;
  line-height: 1.8;
  font-size: 20px !important;
}

header {
  background: #2a1e17;
  border-bottom: 2px solid gold;
  text-align: center;
  padding: 0 0 30px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0px;
	background: #1a1a1a; /* Dark background helps shadows show better */
	box-shadow:
		inset 10px 0 20px rgba(0, 0, 0, 0.5),  /* Left inset shadow */
		inset -10px 0 20px rgba(0, 0, 0, 0.5); /* Right inset shadow */
}
.non-sticky-wrapper,
header,
.nav-container {
  overflow: visible !important;
  position: relative !important;
  z-index: 1000 !important;
}
/* === Non-Sticky Header Enhancements === */
.non-sticky-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1000;
}

/* === Side Borders (Architect Style) === */
.non-sticky-wrapper::before,
.non-sticky-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;
}

.non-sticky-wrapper::before {

}

.non-sticky-wrapper::after {

}

.non-sticky {
  position: relative;
  background: #2a1e17;
  border-bottom: 2px solid gold;
  text-align: center;
  padding: 0 0 30px 0;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: inset 0 0 50px rgba(255, 215, 0, 0.1); /* gentle inner glow */
  overflow: visible; /* ensures border decorations don’t spill */
  z-index: 100;
}

/* === Corner Ornaments (Top Left/Right) === */
.non-sticky::before,
.non-sticky::after {
/*  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 80px;
  background: url('/img/gold-corner-left.png') no-repeat center center;
  background-size: contain;
  z-index: 5;
  pointer-events: none;
  opacity: 0.95;*/
}

.non-sticky::after {
/*  right: 0;
  transform: scaleX(-1); /* mirror the left ornament */
}

.non-sticky::before {
/*  left: 0;*/
}

/* === Side Borders (Thick Architect Style) === */
.non-sticky::part(left-border),
.non-sticky::part(right-border) {
/*  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 0.95;
  pointer-events: none;*/
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-logo {
	max-width:1300px;
	margin: 0 auto;
	padding: 0;
}

.logo-box h1 {
  font-size: 2.6em;
  color: gold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}
.subtitle {
  font-size: 1em;
  color: #A29922;
  margin-top: 5px;
}

/* === Navigation === */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 15px;
}

nav a {
  text-decoration: none;
  font-size: 1.1em;
  color: #fefefe;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* HOVER STYLE — no size bump */
nav a:hover {
  color: gold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* Apply button always gold but NOT bigger */
.apply-nav {
  color: gold;
  font-weight: 600;
}

/* ACTIVE PAGE STYLE */
.active-link {
  position: relative;
  color: gold;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Optional underline or marker below active link */
.active-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: gold;
  border-radius: 1px;
  opacity: 0.85;
}


/* === Hero Section === */
.hero {
  background: url('/assets/bg-peru-mystical.png') no-repeat center center/cover !important;
  position: relative;
  padding: 120px 0px;
  text-align: center;
	z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 2;
}
.container-logo{
	position: relative;
	z-index: 2;
}
/* === Hero Ornament Frames === */
.enhanced-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 20px 100px;
  border-top: 3px solid gold;
  border-bottom: 3px solid gold;
  background-color: #1a1816;
}

.scroll-top-frame,
.scroll-bottom-frame {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 2;
  pointer-events: none;
}

/* === Hero Content Enhancements === */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.shadowed {
  box-shadow: inset 0 40px 80px -30px rgba(0, 0, 0, 0.6),
              inset 0 -40px 80px -30px rgba(0, 0, 0, 0.6);
}
.about {
  padding: 40px 20px !important;
}
.hero-flourish {
  font-size: 0.8em;
  opacity: 0.6;
  color: gold;
  margin: 0 10px;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}

.hero h2 {
  font-family: 'Georgia', serif;
  font-size: 3em;
  font-weight: normal;
  letter-spacing: 1px;
  color: gold;
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.hero h2 .hero-flourish {
  font-size: 0.8em;
  opacity: 0.7;
  margin: 0 10px;
}

/* === Button Pulse Animation === */
.glow-pulse {
  animation: glowPulse 2.8s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 215, 0, 1);
  }
}
.hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e8e8e8;
}

/* === Sections === */
.section {
  background: url('/assets/bg-scroll-fade-top.png') top center no-repeat,
              url('/assets/bg-scroll-fade-bottom.png') bottom center no-repeat,
              #1a1816;
  background-size: 100% 80px, 100% 80px, auto;
  background-blend-mode: overlay;
  box-shadow: inset 0 30px 40px -20px rgba(0, 0, 0, 0.5),
              inset 0 -30px 40px -20px rgba(0, 0, 0, 0.5);
}
.section.alt {
  background: rgba(25, 20, 15, 0.85);
}
section .container {
  padding: 0 20px;
}
section .container-logo {
  padding: 0;
}
section h3 {
  font-size: 1.8em;
  color: gold;
  margin-bottom: 15px;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}
section p {
  margin-bottom: 20px;
  color: #e2e2e2;
  font-size: 1.05em;
  line-height: 1.7;
}
.phase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.phase-box {
  width: 100%;
  border: 1px solid rgba(255, 215, 0, 0.6);
  border-radius: 20px;
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: left;
}
/* === Ancient Gemstone Bullets === */
.plan-list {
  list-style: none;
  padding-left: 0;
}
.plan-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #e0e0e0;
}
.plan-list li::before {
  content: '♦';
  position: absolute;
  left: 0;
  top: 0;
  color: crimson;
  font-size: 1.2em;
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
}
.plan-link {
	margin-top: 40px;
}

.unique {
	text-align:center;
	padding-top:40px !important;
	padding-bottom:40px !important;
}

/* === Call To Action === */
.highlight-box {
  background: rgba(40, 30, 20, 0.95);
  border-top: 2px solid gold;
  border-bottom: 2px solid gold;
  padding: 40px 30px;
  text-align: center;
}
.highlight-box .apply-btn {
  margin-top: 20px;
}
.textured{
	text-align:center;
	padding-top:40px !important;
	padding-bottom:40px !important;
}
.textured a {
	color: #FBB65F
}
/* === Buttons === */
.apply-btn {
  display: inline-block;
  background: gold;
  color: #1a120c;
  font-weight: bold;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transition: all 0.2s ease;
}
.apply-btn:hover {
  transform: scale(1.05);
  background: #ffdd33;
}
.apply-btn.small {
  font-size: 1em;
  padding: 10px 20px;
}

/* === Footer === */
footer {
  background: #1b1a18;
  color: #bbb;
  padding: 40px 0;
  text-align: center;
  font-size: 0.9em;
  border-top: 1px solid gold;
	max-width: 1200px;
	margin: 0 auto;
}

/* === Gems === */
.gem {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 6px -2px 0;
  background: radial-gradient(circle at center, #f44336, #8b0000);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.7);
}
/* === Hamburger Menu === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease-in-out;
  padding: 5px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: gold;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate to "X" */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

	.hero .container,
	.scroll-top-frame,
	.scroll-bottom-frame {
	  
	}
.logo-bg-video {
  width: 100% !important;
  max-width: 1300px !important;
  display: block;
  margin: 0 auto;
  position: relative;
  top: 0;
  left: 0;
}
.hero-bg-video {
	max-width: 900px !important;
}
.hero-bg-video-ff {
	max-width: 1300px !important;
	text-align:center;
	width:100% !important;
	margin: 0 !important;
}
.nav-wrapper {
  overflow: visible;
  position: relative;
  z-index: 1000;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2em;
  background: none;
  color: gold;
  border: none;
  cursor: pointer;
  z-index: 10001;
  text-shadow: 0 0 8px gold;
  transition: transform 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.2);
}
/* Responsive Nav */
@media (max-width: 768px) {
	.hero-bg-video {
		width: 90%;
		margin: 0 auto;
		display: block;
	}
	.hero-bg-video-ff {
		width: 100% !important;
		margin: 0 auto;
		display: block;
	}
    .hamburger {
    display: flex;
    position: relative;
    margin-left: auto;
    margin-top: 10px;
  }

  nav ul.nav-links {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #1a120c;
    padding: 100px 20px 40px;
    overflow-y: auto;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }

  nav ul.nav-links:not(.active) {
    display: none !important;
  }

  nav ul.nav-links.active {
    display: flex;
  }

  nav ul.nav-links li {
    margin: 10px 0;
  }
	
nav a.active-link {
  color: #FFD700;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
  font-weight: bold;
  position: relative;
}

nav a.active-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: gold;
  box-shadow: 0 0 6px gold;
}


  nav ul.nav-links a {
    font-size: 1.2em;
    padding: 6px 0;
    color: #f8f8f8;
    text-decoration: none;
    position: relative;
    backdrop-filter: blur(4px);
    background: rgba(26, 18, 12, 0.96); /* richer dark architect blend */
  }

  nav ul.nav-links a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: gold;
    box-shadow: 0 0 8px gold;
  }
#nav-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  background: #1a120c;
  z-index: 99999 !important;
  overflow-y: auto;
  padding-top: 100px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100000; /* Make sure it's higher than nav menu content */
  font-size: 2em;
  background: none;
  color: gold;
  border: none;
  cursor: pointer;
  text-shadow: 0 0 8px gold;
}
#close-menu {
  pointer-events: all !important;
}
  .hamburger.active ~ #nav-menu,
  #nav-menu.active {
    display: flex !important;
  }

  .hamburger.active ~ .logo-box,
  #nav-menu.active ~ .logo-box {
    display: none !important;
  }
}
@media (min-width: 769px) {
  #close-menu {
    display: none !important;
  }
}
.enhanced-about {
  position: relative;
  overflow: hidden;
}

.enhanced-about .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25; /* Soft gold overlay */
  filter: brightness(0.7) saturate(1.2);
}

.enhanced-about .container {
  position: relative;
  z-index: 2;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  nav ul {
    flex-direction: column;
    gap: 12px;
  }
  .hero {
    padding: 20px 20px;
  }
  .hero h2 {
    font-size: 2em;
  }
  .hero p {
    font-size: 1em;
  }
  section {
    padding: 60px 20px;
  }
#nav-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 99999 !important;
}
.non-sticky-wrapper,
header,
.nav-wrapper,
.nav-container {
  overflow: visible !important;
  position: relative;
  z-index: 100;
}
}
#why-peru {
  position: relative;
  overflow: hidden !important;
  overflow-x: hidden; /* Specifically hide horizontal overflow */
  padding: 6rem 2rem;
  text-align: center;
  color: #fffce8;
  z-index: 1;
  background-color: #000; /* fallback */
}

#why-peru .background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4);
  pointer-events: none;
}

#why-peru .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

#why-peru h3 {
  font-size: 3rem;
  color: #FFD700;
  font-family: 'Cinzel', serif;
  margin-bottom: 1rem;
}

#why-peru p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-family: 'Georgia', serif;
}

/* Optional: mobile fallback image */
@media (max-width: 768px) {
  #why-peru .background-video {
    display: none;
  }

  #why-peru {
    background-image: url('/assets/peru-fallback.jpg');
    background-size: cover;
    background-position: center;
  }
}

/* Make sure the section/container doesn't paint over the video */
#why-peru .container,
#why-peru .wp-content { background: transparent !important; box-shadow:none !important; }

/* 20% translucent card + Golden Framework */
#why-peru .wp-head{
  position: relative;
  margin: 0 auto;
  max-width: 960px;
  padding: clamp(14px, 2.2vw, 22px) clamp(16px, 3vw, 28px);
  border-radius: 16px;
  background: rgba(18, 12, 8, 0.20);           /* ≈ 20% opacity background ONLY */
  backdrop-filter: blur(1.5px);
  box-shadow:
    0 12px 28px rgba(0,0,0,.45),               /* drop shadow */
    inset 0 0 0 1px rgba(255,255,255,.05);     /* inner hairline */
}

/* Gradient stroke without fading the content */
#why-peru .wp-head::before{
  content:"";
  position:absolute;
  inset: -1px;                                  /* sits just outside the card */
  border-radius: inherit;
  padding: 1px;                                 /* stroke width */
  background: linear-gradient(135deg,
              #7b5c19, #d4af37 45%, #f3e2a1 60%, #8d6b21);
  -webkit-mask:
     linear-gradient(#000 0 0) content-box,
     linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;                  /* punch out the center */
          mask-composite: exclude;
  pointer-events: none;
}

/* Optional soft gold glow */
#why-peru .wp-head::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 28px rgba(212,175,55,.12);
  pointer-events:none;
}

/* Typography polish (optional) */
#why-peru .wp-head h3{
  margin: 0 0 8px 0;
  color: #ffe36b;
  text-shadow: 0 1px 0 #000, 0 0 14px rgba(212,175,55,.15);
}
#why-peru .wp-head .lead{
  margin: 0;
  color: #f4ecda;
  line-height: 1.7;
}

.background-video-peru {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7);
  pointer-events: none;
  max-width: none; /* Ensure it doesn't constrain itself */
}
/* ===== Transformation Section ===== */
#transformation{
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 96px) 0;
  background: #0b0b0b; /* safe base if video can't play */
  color: #f8f5e9;
}

/* Full-cover background video */
#transformation .background-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills section elegantly */
  filter: brightness(.45) contrast(1.05) saturate(.9);
  z-index: 0;
}

/* Vignette + subtle gold tint */
#transformation .veil{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 10%, rgba(0,0,0,.15), rgba(0,0,0,.85) 60%, rgba(0,0,0,.95)),
    linear-gradient(to bottom, rgba(212,175,55,.12), rgba(0,0,0,.7) 30%, rgba(0,0,0,.9) 80%);
}

/* Content container */
#transformation .t-content{
  position: relative;
  z-index: 2;
  max-width: 1100px;               /* tighter than your 1200px main-content */
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

/* Header */
#transformation .t-head{
  text-align: center;
  margin-bottom: clamp(18px, 3vw, 32px);
}
#transformation h3{
  margin: 0;
  font-size: clamp(24px, 3.2vw, 36px);
  letter-spacing: .4px;
  color: #f5ecd5;
  text-shadow: 0 1px 0 #000, 0 0 18px rgba(212,175,55,.15);
}
#transformation .subtitle{
  margin: 8px 0 0;
  color: #f0e9d6;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
}

/* List layout */
#transformation .plan-list{
  list-style: none;
  margin: clamp(16px, 3vw, 28px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 900px){
  #transformation .plan-list{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px 18px;
  }
}

/* List item “glass” cards */
#transformation .plan-list li{
  position: relative;
  padding: 14px 16px 14px 46px;
  border-radius: 14px;
  background: rgba(17,13,9,.68);
  border: 1px solid rgba(212,175,55,.23);
  color: #fbfaf6;
  line-height: 1.6;
  font-size: clamp(15px, 1.05vw, 18px);
  font-family: "Georgia", serif;
  box-shadow:
    0 10px 24px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.03);
  backdrop-filter: blur(3px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
#transformation .plan-list li:hover{
  transform: translateY(-2px);
  background: rgba(20,16,12,.78);
  border-color: rgba(212,175,55,.35);
}

/* Gold “gem” bullets */
#transformation .plan-list li::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px; height: 14px; border-radius: 2px;
  background: linear-gradient(135deg, #ffe07a, #d4af37 60%, #a67c00);
  box-shadow: 0 0 10px rgba(212,175,55,.5), 0 0 0 1px rgba(255,255,255,.12) inset;
}
#transformation .plan-list strong{
  color: #ffe7a0;
  font-weight: 700;
}

/* Mobile polish: prevent odd zooming/cropping flickers */
@media (max-width: 900px){
  /* keep the section height driven by its content, not a forced vh */
  #transformation{ padding-top: 56px; padding-bottom: 56px; }
}

/* Keep the video visible behind the content */
#transformation {
  position: relative;
  isolation: isolate; /* keeps z-index layers sane inside the section */
}

/* Kill any background/box-shadow coming from .container or section variants */
#transformation .container,
#transformation .t-content {
  background: transparent !important;
  box-shadow: none !important;
}

/* Neutralize shadowed/enhanced-about decorations for this section only */
#transformation.shadowed,
#transformation.enhanced-about {
  background: transparent !important;
  box-shadow: none !important;
}
#transformation.shadowed::before,
#transformation.shadowed::after,
#transformation.enhanced-about::before,
#transformation.enhanced-about::after {
  content: none !important;
  display: none !important;
}

/* Reassert video layering */
#transformation .background-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#transformation .veil { z-index: 1; }
#transformation .t-content { position: relative; z-index: 2; }
#transformation .background-video{ filter:none !important; }
#transformation .veil{ background:none !important; }

#fit .fit-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  #fit .fit-grid { grid-template-columns: 1fr 1fr; }
}
/* Reduce padding inside the fit-card boxes */
#fit .fit-card {
  background: rgba(0,0,0,0.35);
  border: 1px solid #7a5a10;
  border-radius: 14px;
  padding: 12px 14px; /* was bigger before */
  box-shadow: 0 8px 20px rgba(255,215,0,0.07) inset;
}

/* Sacred list adjustments for tighter look */
.sacred-list li {
  position: relative;
  padding-left: 26px; /* was 36px — tighter space between bullet & text */
  margin: 6px 0; /* was 10px — less gap between rows */
  font-size: 16px;
  line-height: 1.4; /* slightly tighter line height */
  color: antiquewhite;
}

/* Slightly smaller golden bullet */
.sacred-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px; /* was 18px */
  height: 14px; /* was 18px */
  background: radial-gradient(circle at center, #d4af37 0%, #b8860b 70%, #7a5a10 100%);
  border-radius: 50%;
  box-shadow:
    0 0 4px rgba(255, 215, 0, 0.7),
    inset 0 0 3px rgba(255, 255, 255, 0.4);
}

/* Adjust inner gem proportionally */
.sacred-list li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at center, #fff8dc 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.8;
}

#fit .fit-card h4 {
  margin: 0 0 8px;
  color: #e7c86a;
  letter-spacing: 0.5px;
}
#fit .fit-card ul { margin: 0; padding-left: 18px; }
#fit .fit-card li { margin: 6px 0; }
#fit .fit-card.yes { border-color: #b9902f; }
#fit .fit-card.no  { border-color: #6b4a12; opacity: 0.95; }
/* Sacred list styling */
.sacred-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sacred-list li {
  position: relative;
  padding-left: 36px;
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.5;
  color: antiquewhite;
}

/* Golden emblem bullet */
.sacred-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at center, #d4af37 0%, #b8860b 70%, #7a5a10 100%);
  border-radius: 50%;
  box-shadow:
    0 0 6px rgba(255, 215, 0, 0.7),
    inset 0 0 4px rgba(255, 255, 255, 0.4);
}

/* Optional gem effect */
.sacred-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at center, #fff8dc 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.8;
}
.section.plan-hero{ padding:0; }

/* shared */
.plan-hero__frame{
  width:100%;
  display:flex;
  overflow:hidden;
  background:#0b0b0b;
}
.plan-hero__frame img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;          /* fill, no gutters */
  object-position:50% 15%;   /* keep the title centered/high; tweak as needed */
}

/* Mobile: show the whole image, let it define the height */
@media (max-width: 900px){
  .plan-hero__frame{
    display:block;
    width:100%;
    height:auto !important;       /* no fixed height */
    min-height:0 !important;      /* <-- cancel previous 100vh */
    overflow:visible !important;  /* don't clip edges */
  }
  .plan-hero__frame img{
    display:block;
    width:100% !important;
    height:auto !important;       /* natural aspect */
    max-width:100%;
    object-fit:unset !important;  /* disable cover/contain behavior */
    object-position:center !important;
  }
}
/* CTA layout */
.cta{
  display: flex;
  justify-content: center;                 /* keep buttons centered */
  align-items: center;
  gap: clamp(10px, 2vw, 18px);             /* space BETWEEN buttons on desktop */
  flex-wrap: nowrap;                        /* stay on one line on wide screens */
  margin-top: 8px;
}

/* When the viewport is narrow, stack them with vertical space */
@media (max-width: 640px){
  .cta{
    flex-direction: column;                 /* stack */
    align-items: center;
    gap: 12px;                              /* vertical space between */
  }
}
.crop-20{
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-bg-video-architect {
  display: block;
  width: 100%;
  height: auto;
  clip-path: inset(26px);         /* Visual crop */
  -webkit-clip-path: inset(26px);
  object-fit: contain;            /* Preserve full content, no scale-cropping */
}

/* === Contact CTA Redesign === */
.contact-cta {
  background: radial-gradient(ellipse at center, rgba(18,12,8,0.95) 0%, rgba(12,8,5,0.95) 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}


/* Email CTA Button */
.email-link {
  display: inline-block;
  font-size: 1.1em;
  padding: 12px 28px;
  border-radius: 8px;
  background: gold;
  color: #1a120c;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  text-decoration: none;
  transition: background 0.3s ease;
}
.email-link:hover {
  background: #ffdd33;
}

.contact-cta {
  overflow-x: hidden;
}
/* Wrapper for video and content */
.video-bg-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

/* Background video */
.video-bg-flame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.58; /* adjust for mood */
  filter: brightness(0.7) contrast(1.2) saturate(1.1);
  pointer-events: none;
}

/* Content stays above video */
.contact-frame {
  position: relative;
  z-index: 2;
  padding: 60px 30px;
  text-align: center;
  background: rgba(10, 5, 0, 0.65); /* subtle dark veil over video */
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 18px;
  backdrop-filter: blur(4px);
}

/* Headline styling */
.cta-headline {
  font-size: clamp(1.5rem, 5vw, 2.2em);
  color: #ffd700;
  text-shadow: 0 0 12px rgba(212,175,55,0.4);
  margin-bottom: 16px;
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Quote styling */
.cta-quote {
  font-style: italic;
  color: #ddd;
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* Optional: glow-pulse animation (if not already defined) */
.glow-pulse {
  animation: glowPulse 2.5s infinite ease-in-out;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 12px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.7); }
  100% { box-shadow: 0 0 12px rgba(255, 215, 0, 0.4); }
}
