/* ================================================================
   LA LUNE PHOTOGRAPHY — GLOBAL STYLESHEET
   Color Palette:
     Primary Sage Green:   #284C09
     Light Green:          #7F9866
     Dark Forest Green:    #1D3902
     Sand Beige:           #E5E0DA
   ================================================================ */

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #E5E0DA;
  color: #1D3902;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  color: #1D3902;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

em {
  font-style: italic;
  font-weight: 300;
}

.label-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #7F9866;
  display: block;
  margin-bottom: 1rem;
}

.label-text--light {
  color: rgba(229, 224, 218, 0.7);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #1D3902;
}

/* ── LAYOUT UTILITIES ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section {
  padding: 7rem 0;
}

.decorative-line {
  width: 60px;
  height: 1px;
  background: #7F9866;
  margin: 1.5rem auto;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: #284C09;
  color: #E5E0DA;
  border-color: #284C09;
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #1D3902;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn--primary:hover {
  background: #1D3902;
  border-color: #1D3902;
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: #E5E0DA;
  border-color: rgba(229, 224, 218, 0.6);
}

.btn--outline-light:hover {
  background: rgba(229, 224, 218, 0.12);
  border-color: #E5E0DA;
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: #1D3902;
  border-color: #284C09;
}

.btn--outline-dark:hover {
  background: #284C09;
  color: #E5E0DA;
  transform: translateY(-2px);
}

/* ── ANIMATIONS ───────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── NAVIGATION ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

.nav--scrolled {
  background: rgba(229, 224, 218, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(40, 76, 9, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 90px;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E5E0DA;
  transition: color 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.nav--scrolled .nav__link {
  color: #1D3902;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #7F9866;
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
  mix-blend-mode: multiply;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: #E5E0DA;
  transition: background 0.3s ease;
}

.nav--scrolled .nav__hamburger span {
  background: #1D3902;
}

/* Mobile Menu */
.nav__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #1D3902;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 2000;
}

.nav__mobile-menu.open {
  transform: translateX(0);
}

.nav__mobile-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #E5E0DA;
  font-size: 1.5rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.nav__mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #E5E0DA;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.nav__mobile-link:hover {
  color: #7F9866;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero:hover .hero__img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(29, 57, 2, 0.25) 0%,
    rgba(29, 57, 2, 0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(229, 224, 218, 0.75);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  color: #E5E0DA;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(29, 57, 2, 0.3);
}

.hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(229, 224, 218, 0.85);
  margin-bottom: 3rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(229, 224, 218, 0.5);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(0.7); }
}

/* ── INTRO ────────────────────────────────────────────────────── */
.intro__inner {
  text-align: center;
  max-width: 680px;
}

.intro__label {
  margin-bottom: 1.2rem;
}

.intro__headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.intro__body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: #284C09;
  letter-spacing: 0.02em;
}

/* ── ART OF LIGHT ─────────────────────────────────────────────── */
.art-of-light {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.art-of-light__image-wrap {
  position: absolute;
  inset: 0;
}

.art-of-light__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.art-of-light__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(29, 57, 2, 0.02) 0%,
    rgba(29, 57, 2, 0.65) 100%
  );
}

.art-of-light__content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  max-width: 520px;
  padding: 6rem 5rem 6rem 4rem;
  background: rgba(229, 224, 218, 0.92);
  backdrop-filter: blur(4px);
}

.art-of-light__headline {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.art-of-light__divider {
  width: 40px;
  height: 1px;
  background: #7F9866;
  margin-bottom: 1.8rem;
}

.art-of-light__body {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: #284C09;
}

/* ── SERVICES ─────────────────────────────────────────────────── */
.services__header {
  text-align: center;
  margin-bottom: 4rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29, 57, 2, 0.45) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
}

.service-card:hover .service-card__image-overlay {
  opacity: 1;
}

.service-card__content {
  padding: 1.8rem 0;
}

.service-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}

.service-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: #284C09;
  margin-bottom: 1rem;
}

.service-card__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7F9866;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.service-card__link:hover {
  color: #284C09;
  letter-spacing: 0.3em;
}

/* ── SELECTED WORKS ───────────────────────────────────────────── */
.selected-works__header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 0.6rem;
  padding: 0 1rem;
}

.gallery-masonry__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.gallery-masonry__item.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery-masonry__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-masonry__item:hover img {
  transform: scale(1.07);
}

.gallery-masonry__hover {
  position: absolute;
  inset: 0;
  background: rgba(29, 57, 2, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-masonry__item:hover .gallery-masonry__hover {
  opacity: 1;
}

.gallery-masonry__hover span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #E5E0DA;
  letter-spacing: 0.15em;
  font-style: italic;
}

.selected-works__cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ── CTA SECTION ──────────────────────────────────────────────── */
.cta-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-section__image-wrap {
  position: absolute;
  inset: 0;
}

.cta-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 57, 2, 0.52);
}

.cta-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.cta-section__headline {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: #E5E0DA;
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: #1D3902;
  padding: 5rem 0 2.5rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__logo-wrap {
  width: 130px;
  background: rgba(229, 224, 218, 0.12);
  border-radius: 4px;
  padding: 0.6rem;
}

.footer__logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
}

.footer__nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(229, 224, 218, 0.65);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #E5E0DA;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer__social-link {
  color: rgba(229, 224, 218, 0.55);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__social-link--instagram {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer__instagram-handle {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(229, 224, 218, 0.55);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer__social-link--instagram:hover .footer__instagram-handle {
  color: #E5E0DA;
}

.footer__social-link:hover {
  color: #E5E0DA;
  transform: translateY(-2px);
}

.footer__divider {
  width: 100%;
  max-width: 400px;
  height: 1px;
  background: rgba(229, 224, 218, 0.12);
}

.footer__copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(229, 224, 218, 0.35);
  text-align: center;
}

/* ── PAGE HEADER (shared) ─────────────────────────────────────── */
.page-header {
  position: relative;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}

.page-header__image-wrap {
  position: absolute;
  inset: 0;
}

.page-header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(29, 57, 2, 0.7) 0%,
    rgba(29, 57, 2, 0.2) 60%,
    transparent 100%
  );
}

.page-header__content {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
}

.page-header__title {
  font-size: clamp(3rem, 7vw, 6rem);
  color: #E5E0DA;
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 0.8rem;
}

.page-header__sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(229, 224, 218, 0.8);
  max-width: 480px;
}

/* ── PORTFOLIO PAGE ───────────────────────────────────────────── */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 4rem 2rem 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  background: none;
  border: 1px solid rgba(40, 76, 9, 0.2);
  color: #284C09;
  cursor: pointer;
  transition: all 0.3s ease;
  border-right-width: 0;
}

.filter-btn:last-child {
  border-right-width: 1px;
}

.filter-btn:hover,
.filter-btn.active {
  background: #284C09;
  color: #E5E0DA;
  border-color: #284C09;
}

.portfolio-grid {
  columns: 3;
  column-gap: 0.6rem;
  padding: 0 1rem 6rem;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 0.6rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 57, 2, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-item__overlay {
  opacity: 1;
}

.portfolio-item__overlay svg {
  color: #E5E0DA;
  width: 32px;
  height: 32px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(29, 57, 2, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: rgba(229, 224, 218, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s;
  z-index: 10;
}

.lightbox__close:hover { color: #E5E0DA; }

.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(229, 224, 218, 0.3);
  color: rgba(229, 224, 218, 0.7);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.lightbox__prev { left: 2rem; }
.lightbox__next { right: 2rem; }

.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(229, 224, 218, 0.1);
  color: #E5E0DA;
  border-color: rgba(229, 224, 218, 0.6);
}

/* ── BOOKING PAGE ─────────────────────────────────────────────── */
.booking-section {
  padding: 7rem 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.booking-form-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.booking-form-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: #284C09;
  margin-bottom: 2.5rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7F9866;
}

.form-input,
.form-select,
.form-textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #1D3902;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(40, 76, 9, 0.25);
  padding: 0.8rem 0;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: #284C09;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237F9866' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  cursor: pointer;
}

.form-textarea {
  resize: none;
  height: 100px;
}

.booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  margin-top: 1rem;
}

/* Timeline */
.booking-right {
  padding-top: 1rem;
}

.booking-right-label {
  margin-bottom: 2rem;
}

.booking-right-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 3rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: flex;
  gap: 2rem;
  position: relative;
  padding-bottom: 3rem;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-step__num {
  width: 40px;
  height: 40px;
  border: 1px solid #7F9866;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: #284C09;
  flex-shrink: 0;
}

.timeline-step__line {
  width: 1px;
  flex: 1;
  background: rgba(127, 152, 102, 0.3);
  margin-top: 0.5rem;
}

.timeline-step:last-child .timeline-step__line {
  display: none;
}

.timeline-step__content {
  padding-top: 0.5rem;
}

.timeline-step__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.timeline-step__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: #284C09;
}

/* ── ABOUT PAGE ───────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-split__image {
  position: relative;
  overflow: hidden;
}

.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.about-split__image:hover img {
  transform: scale(1.04);
}

.about-split__content {
  padding: 6rem 5rem;
  background: #E5E0DA;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split__eyebrow {
  margin-bottom: 1rem;
}

.about-split__headline {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  margin-bottom: 2rem;
}

.about-split__divider {
  width: 40px;
  height: 1px;
  background: #7F9866;
  margin-bottom: 2rem;
}

.about-split__body {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.95;
  color: #284C09;
  margin-bottom: 1.2rem;
}

.about-split__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #1D3902;
  margin-bottom: 0.2rem;
}

.about-split__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7F9866;
  margin-bottom: 1.8rem;
}

.about-split__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.about-split__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #284C09;
  transition: color 0.3s ease, gap 0.3s ease;
}

.about-split__instagram:hover {
  color: #7F9866;
  gap: 0.8rem;
}

.about-split__instagram svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.about-split__instagram:hover svg {
  transform: scale(1.15);
}

/* Philosophy */
.philosophy-section {
  padding: 7rem 0;
  background: #E5E0DA;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.philosophy-left .label-text { margin-bottom: 1rem; }

.philosophy-left h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 2rem;
}

.philosophy-left p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: #284C09;
}

.philosophy-values {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 2rem;
}

.philosophy-values li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: #1D3902;
}

.philosophy-values li::before {
  content: '';
  width: 30px;
  height: 1px;
  background: #7F9866;
  flex-shrink: 0;
}

/* Why La Lune */
.why-section {
  padding: 7rem 0;
  background: #284C09;
}

.why-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.why-inner .label-text { color: rgba(229, 224, 218, 0.6); }

.why-inner h2 {
  color: #E5E0DA;
  margin-bottom: 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  text-align: left;
}

.why-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #E5E0DA;
  margin-bottom: 0.7rem;
}

.why-item__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(229, 224, 218, 0.7);
}

.why-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(127, 152, 102, 0.35);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Fun Facts */
.fun-facts {
  padding: 7rem 0;
}

.fun-facts__header {
  text-align: center;
  margin-bottom: 4rem;
}

.fun-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.fact-card {
  padding: 3rem 2rem;
  border: 1px solid rgba(40, 76, 9, 0.12);
  text-align: center;
  transition: all 0.4s ease;
  background: rgba(229, 224, 218, 0.4);
}

.fact-card:hover {
  background: rgba(40, 76, 9, 0.04);
  border-color: #7F9866;
  transform: translateY(-4px);
}

.fact-card__moon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  color: #7F9866;
}

.fact-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: #1D3902;
  margin-bottom: 0.5rem;
}

.fact-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  color: #284C09;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fun-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split__image {
    height: 60vh;
  }

  .about-split__content {
    padding: 4rem 3rem;
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .nav__inner {
    padding: 0 1.5rem;
    height: 70px;
  }

  .nav__logo-img { height: 56px; }

  .hero__content { padding: 1.5rem; }

  .section { padding: 5rem 0; }

  .container { padding: 0 1.5rem; }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gallery-masonry {
    columns: unset;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }

  .gallery-masonry__item.tall {
    grid-row: unset;
    aspect-ratio: 4/5;
  }

  .portfolio-grid {
    columns: 2;
    padding: 0 0.5rem 4rem;
  }

  .portfolio-filters {
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 2.5rem 1rem 2rem;
  }

  .filter-btn {
    border-right-width: 1px;
  }

  .booking-form-row {
    grid-template-columns: 1fr;
  }

  .page-header__content { padding: 0 1.5rem; }

  .art-of-light {
    min-height: auto;
    flex-direction: column;
  }

  .art-of-light__image-wrap {
    position: relative;
    height: 50vh;
  }

  .art-of-light__overlay {
    background: rgba(29, 57, 2, 0.35);
  }

  .art-of-light__content {
    position: relative;
    margin: 0;
    max-width: 100%;
    padding: 3rem 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fun-facts__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-split__content {
    padding: 3rem 1.5rem;
  }

  .philosophy-values li {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .portfolio-grid { columns: 1; }
  .fun-facts__grid { grid-template-columns: 1fr; }
}
