@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Colors */
  --surface: #FDFBF7;
  --surface-container-low: #F6F4EE;
  --surface-container-high: #EAE6DF;
  --surface-container-highest: #DFDACF;
  --surface-tint: #BFA473;

  --primary: #BFA473;
  --primary-container: #AD9060;
  --primary-fixed: #332D28;

  --on-surface: #3A3532;
  --on-surface-variant: #665F5A;
  --on-primary: #FFFFFF;

  --outline: #D8D2CA;
  --outline-variant: rgba(0, 0, 0, 0.08);
  /* Ghost border */

  /* Typography */
  --font-hero: 'Cormorant Garamond', serif;
  --font-functional: 'Inter', sans-serif;

  /* Spacing */
  --spacing-2: 0.5rem;
  --spacing-8: 2.75rem;
  --spacing-20: 7rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--surface);
  color: var(--on-surface);
  font-family: var(--font-functional);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography styles */
h1,
h2,
h3,
h4,
.hero-voice {
  font-family: var(--font-hero);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--primary-fixed);
}

.display-lg {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
}

.label-sm {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  /* 20% letter spacing */
  color: var(--on-surface-variant);
}

.body-sm {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
}

/* Layout tools */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.extreme-padding {
  padding-top: var(--spacing-20);
  padding-bottom: var(--spacing-20);
}

/* The Cinematic Scroller */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  background-color: var(--primary);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* Navigation - Glass Rule */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

nav .logo img {
  max-height: 120px;
  /* Increased limit for a larger logo */
  width: auto;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--on-surface);
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.5s cubic-bezier(0.2, 0, 0, 1);
}

nav a:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-functional);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.btn-primary {
  background: var(--primary-fixed);
  /* #332D28 */
  color: var(--on-primary);
  border: none;
  font-weight: 500;
}

.btn-primary:hover {
  filter: brightness(1.3);
  box-shadow: 0px 24px 48px rgba(20, 15, 15, 0.4);
  /* Ambient shadow */
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(191, 164, 115, 0.5);
  /* Primary at 50% opacity */
}

.btn-ghost:hover {
  background-color: rgba(191, 164, 115, 0.1);
  /* 10% primary background */
  border-color: var(--primary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  /* Light blend for bright background */
  filter: contrast(1.1);
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(253, 251, 247, 0.95) 0%, rgba(253, 251, 247, 0.6) 50%, rgba(253, 251, 247, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Asymmetry - off center */
  padding-top: 10vh;
}

.hero-subtitle {
  margin-bottom: var(--spacing-8);
  margin-left: 2rem;
  /* Intentional offset */
}

.hero-title {
  margin-bottom: var(--spacing-8);
}

.hero-actions {
  margin-left: 10vw;
  /* Asymmetry */
}

/* Carousel Section */
.carousel-section {
  background-color: var(--surface-container-high);
  overflow: hidden;
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.carousel-controls {
  display: flex;
  gap: 1rem;
}

.carousel-btn {
  background: var(--surface);
  border: 1px solid var(--outline);
  color: var(--on-surface);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
  transform: scale(1.05);
}

.carousel-container {
  width: 100%;
  padding-left: max(2rem, calc((100% - 1400px) / 2 + 2rem));
  cursor: grab;
}

.carousel-container:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 2rem;
  padding-bottom: 3rem;
  padding-top: 1rem;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  position: relative;
  min-width: 420px;
  height: 600px;
  scroll-snap-align: start;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--primary-fixed);
  /* base for loading */
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0, 0, 1), filter 0.5s ease;
  filter: brightness(0.9);
}

.carousel-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
  transform: translateY(10px);
  opacity: 0.8;
  transition: all 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.carousel-item:hover .carousel-caption {
  transform: translateY(0);
  opacity: 1;
}

.carousel-caption h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-hero);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* specialized inverted dark box */
.gallery-cta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-fixed);
  color: var(--surface);
  text-align: center;
  padding: 2rem;
}

.gallery-cta-item .cta-inner h2 {
  color: var(--surface);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.gallery-cta-item .btn-ghost {
  border-color: rgba(191, 164, 115, 0.5);
  color: var(--primary);
}

.gallery-cta-item .btn-ghost:hover {
  background-color: rgba(191, 164, 115, 0.15);
  border-color: var(--primary);
}

.mt-4 {
  margin-top: 1.5rem;
}

/* Statement Section (Elevated Surface) */
.statement {
  background-color: var(--surface-container-low);
  text-align: center;
  border-bottom: 1px solid var(--outline-variant);
  /* Whisper line */
}

.statement p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.5rem;
  color: var(--on-surface);
  line-height: 1.8;
}

/* Editorial Story Flow */
.editorial-flow {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-20);
  margin-top: var(--spacing-20);
}

.editorial-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.editorial-row.reverse {
  flex-direction: row-reverse;
}

.editorial-image {
  flex: 1;
  min-width: 300px;
}

.editorial-image img {
  width: 100%;
  border-radius: 0.375rem;
  opacity: 0.9;
  transition: transform 1.5s cubic-bezier(0.2, 0, 0, 1);
}

.editorial-image:hover img {
  transform: scale(1.02);
}

.editorial-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.editorial-text h2,
.editorial-text h3 {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  line-height: 1.2;
}

.editorial-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--on-surface-variant);
}

/* Contact / Input section */
.contact-section {
  background-color: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-cta-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-fixed);
  color: var(--surface);
  text-align: center;
  padding: 4rem;
  border-radius: 0.5rem;
}

.contact-cta-box .cta-inner h2 {
  color: var(--surface);
  font-size: 3rem;
  line-height: 1.2;
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrapper h2 {
  margin-bottom: var(--spacing-8);
  font-size: 3rem;
  text-align: left;
}

.form-group {
  margin-bottom: var(--spacing-8);
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--outline);
  color: var(--on-surface);
  font-family: var(--font-functional);
  font-size: 1rem;
  padding: 0.5rem 0;
  transition: border-color 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-wrap {
  text-align: right;
}

/* Footer */
footer {
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--surface-container-lowest);
}

footer p {
  color: var(--on-surface-variant);
}

/* Interactive Modal Gallery */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.modal.active {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--surface);
  opacity: 0.98;
}

.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow-y: auto;
  padding-bottom: 4rem;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--on-surface);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease;
}

.modal-close:hover {
  transform: rotate(90deg);
  color: var(--primary);
}

.modal-header-immersive {
  margin-top: 8rem;
  margin-bottom: 6rem;
  text-align: left;
  position: relative;
  z-index: 5;
}

.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 4rem;
  /* More negative space */
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.2, 0, 0, 1) 0.3s;
}

.modal.active .modal-gallery-grid {
  opacity: 1;
  transform: translateY(0);
}

.gallery-image-box {
  width: 100%;
  aspect-ratio: 4/5;
  /* Slightly taller, more editorial */
  overflow: hidden;
  border-radius: 0;
  /* Sharp edges */
  position: relative;
  background-color: transparent;
  /* No box background */
}

.gallery-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0, 0, 1), filter 0.5s ease;
}

.gallery-image-box:hover img {
  transform: scale(1.05);
}

.gallery-image-box {
  cursor: pointer;
  /* make gallery images look clickable */
}

/* Single Image Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  /* above the gallery modal */
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 251, 247, 0.98);
  /* var(--surface) equivalent */
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  /* lighter shadow for light background */
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--on-surface);
  /* dark color for light background */
  cursor: pointer;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), color 0.3s ease;
  padding: 1rem;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--primary);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(58, 53, 50, 0.6);
  /* --on-surface with opacity */
  cursor: pointer;
  z-index: 10;
  padding: 1rem;
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.2, 0, 0, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav-btn:hover {
  color: var(--on-surface);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev-btn {
  left: 2rem;
}

.lightbox-nav-btn.next-btn {
  right: 2rem;
}

/* Sam Hurd / Fer Juaristi Inspired Overrides */

/* Solid White Navigation */
.nav-solid {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  background: var(--surface);
  /* Solid White */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  /* Slight shadow to lift over hero */
}

.nav-solid .nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.nav-solid .nav-links a {
  color: var(--on-surface);
  /* Darker text */
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-solid .nav-links a:hover {
  color: var(--primary);
}

.nav-solid .logo img {
  height: 80px;
  width: auto;
}

/* Immersive Hero */
.hero-immersive {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background-immersive {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background-immersive img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  /* Focus on couple/faces */
  transform: scale(1.02);
}

.hero-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  background-color: rgba(15, 12, 10, 0.3);
  /* Global dark tint to ensure text readable */
}

.hero-content-immersive {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}

.hero-title-giant {
  font-family: var(--font-hero);
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--on-primary);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-top: 15vh;
  /* Pushed down gently to clear solid nav bar */
}

.hero-bottom-bar {
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.scroll-down-btn {
  color: var(--on-primary);
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.scroll-down-btn:hover {
  opacity: 1;
  transform: translateY(5px);
}

/* Marquee Scrolling Text */
.philosophy-section {
  position: relative;
  overflow: hidden;
  background-color: var(--surface);
  padding: 8rem 0;
}

.marquee-wrapper {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
  opacity: 0.05;
  pointer-events: none;
}

.marquee-text {
  display: inline-block;
  font-family: var(--font-hero);
  font-size: 20vw;
  font-weight: 600;
  line-height: 1;
  color: var(--primary-fixed);
  animation: scroll-left 40s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Overlapping Blocks */
.overlap-container {
  position: relative;
  z-index: 2;
}

.overlap-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8rem;
  position: relative;
}

.overlap-block.reverse {
  flex-direction: row-reverse;
}

.overlap-img-box {
  width: 55%;
  position: relative;
}

.overlap-img-box.img-tall {
  width: 45%;
}

.overlap-img-box img {
  width: 100%;
  height: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.overlap-txt-box {
  width: 45%;
  position: relative;
}

.overlap-txt-box.txt-right {
  background: var(--surface);
  padding: 4rem;
  margin-left: -15%;
  margin-top: 10%;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.body-lg {
  font-size: 1.25rem;
  color: var(--on-surface-variant);
  line-height: 1.8;
}

/* Unbound Portfolio Carousel */
.unbound-portfolio-section {
  background-color: var(--surface-container-high);
}

.unbound-container {
  padding-left: max(2rem, calc((100% - 1400px) / 2 + 2rem));
}

.unbound-item {
  position: relative;
  min-width: 500px;
  /* Wider, unrestricted */
  height: 70vh;
  /* Taller */
  border-radius: 0;
  /* Sharp artistic edges */
  box-shadow: none;
  /* Removed heavy card shadow */
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}

.unbound-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.2, 0, 0, 1), filter 0.8s ease;
  filter: brightness(0.85) grayscale(20%);
}

.unbound-item:hover img {
  transform: scale(1.03);
  filter: brightness(1) grayscale(0%);
}

/* The giant floating text on hover */
.huge-hover-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  font-family: var(--font-hero);
  font-size: clamp(3rem, 5vw, 6rem);
  color: var(--on-primary);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.2, 0, 0, 1);
  pointer-events: none;
  z-index: 5;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
}

.unbound-item:hover .huge-hover-title {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.unbound-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: var(--on-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.5s ease;
}

.unbound-item:hover .unbound-caption {
  opacity: 1;
  transform: translateX(0);
}

/* Pricing Page Styles (Hidden Layout) */
.hero-pricing {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--outline-variant);
  background: var(--surface-container-low);
}

.section-title-minimal {
  font-size: 3.5rem;
  border-bottom: 2px solid var(--primary-fixed);
  padding-bottom: 1rem;
  margin-bottom: 4rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: stretch;
}

.package-card {
  border: 1px solid var(--outline);
  padding: 3rem 2.5rem;
  border-radius: 0.5rem;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.4s ease;
  background-color: var(--surface);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.package-card.featured-package {
  background: var(--primary-fixed);
  color: var(--surface);
  border-color: transparent;
  transform: scale(1.03);
  /* Fer Juaristi style overlap feeling */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.package-card.featured-package:hover {
  transform: scale(1.03) translateY(-8px);
}

.package-features {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.package-features li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--outline-variant);
  font-size: 0.95rem;
  line-height: 1.5;
}

.package-features li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.package-card.featured-package .package-features li {
  border-bottom-color: rgba(253, 251, 247, 0.15);
  /* Light border */
}

/* Unbound Pricing Cards (Juaristi Style Override) */
.unbound-package-grid {
  gap: 4rem;
}

.unbound-card {
  border: none;
  border-top: 1px solid var(--outline);
  border-radius: 0;
  padding: 4rem 0 0 0;
  background-color: transparent;
  box-shadow: none !important;
}

.unbound-card:hover {
  transform: none;
  box-shadow: none !important;
}

.unbound-card.featured-unbound-card {
  background: transparent;
  color: var(--on-surface);
  transform: none;
  border-top: 4px solid var(--primary-fixed);
  /* Heavy top emphasis instead of a box */
}

.unbound-card.featured-unbound-card:hover {
  transform: none;
}

.unbound-card.featured-unbound-card .package-header h3,
.unbound-card.featured-unbound-card .package-price {
  color: var(--primary-fixed) !important;
}

.unbound-card.featured-unbound-card .package-desc {
  color: var(--on-surface-variant) !important;
}

.unbound-card.featured-unbound-card .package-features li {
  border-bottom-color: var(--outline-variant);
}

.booking-outro {
  text-align: center;
  padding: 8rem 2rem;
  background: var(--primary-fixed);
  color: var(--surface);
}

/* Responsive */
@media (max-width: 1024px) {
  .package-card.featured-package {
    transform: none;
    /* remove scale on smaller screens */
  }

  .package-card.featured-package:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .overlap-block,
  .overlap-block.reverse {
    flex-direction: column;
    margin-bottom: 5rem;
  }

  .overlap-img-box,
  .overlap-img-box.img-tall {
    width: 100%;
  }

  .overlap-txt-box {
    width: 90%;
  }

  .overlap-txt-box.txt-right {
    margin-left: auto;
    margin-right: auto;
    margin-top: -3rem;
    padding: 2rem;
  }

  .overlap-txt-box.txt-left {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title-giant {
    font-size: 4rem;
  }

  .carousel-item.unbound-item {
    min-width: 85vw;
    height: 60vh;
  }

  .carousel-item {
    min-width: 85vw;
    height: 500px;
  }

  .carousel-container {
    padding-left: 1rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-subtitle,
  .hero-actions {
    margin-left: 0;
  }

  .contact-cta-box {
    padding: 3rem 2rem;
  }

  .lightbox-nav-btn {
    padding: 0.5rem;
  }

  .lightbox-nav-btn.prev-btn {
    left: 0.5rem;
  }

  .lightbox-nav-btn.next-btn {
    right: 0.5rem;
  }
}