/* ---------- base ---------- */
html { scroll-behavior: smooth; }
body.menu-open, body.modal-open, body.lb-open { overflow: hidden; }
body { font-size: 16px; line-height: 1.55; }
svg { flex: none; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #FAFAF7; }
::-webkit-scrollbar-thumb { background: #1E2B4E; }
::-webkit-scrollbar-thumb:hover { background: #334173; }

.ital { font-family: "Italiana", serif; font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #1E2B4E;
}
.eyebrow-sm {
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8A877E;
}

.section-h {
  font-family: "Italiana", serif;
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: #0E0E12;
  margin-top: 0.35rem;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}
.nav.is-scrolled {
  background: rgba(244, 242, 235, 0.9);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid rgba(14, 14, 18, 0.08);
}
.nav-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) { .nav-inner { padding: 1.1rem 2rem; gap: 1.5rem; } }

/* burger btn */
.menu-btn {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(14, 14, 18, 0.25);
  background: transparent;
  color: #0E0E12;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.menu-btn:hover { background: #0E0E12; color: #FAFAF7; border-color: #0E0E12; }
.menu-open .menu-btn { background: #0E0E12; color: #FAFAF7; border-color: #0E0E12; }

.burger { position: relative; display: block; width: 18px; height: 10px; }
.burger span {
  position: absolute; left: 0;
  width: 100%; height: 1.4px;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(0.68, -0.2, 0.3, 1.4), top 0.3s cubic-bezier(0.68, -0.2, 0.3, 1.4);
  transform-origin: center;
}
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 7px; }
.menu-open .burger span:nth-child(1) { top: 4.5px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { top: 4.5px; transform: rotate(-45deg); }

/* brand centered */
.brand {
  justify-self: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}
.brand-word {
  display: block;
  font-family: "Italiana", serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: #0E0E12;
}
@media (min-width: 768px) { .brand-word { font-size: 2.2rem; letter-spacing: 0.1em; } }
.brand-sub {
  display: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8A877E;
  margin-top: 0.3rem;
}
@media (min-width: 900px) { .brand-sub { display: block; } }

/* nav book button */
.nav-book {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  background: #0E0E12;
  color: #FAFAF7;
  border: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.nav-book:hover { background: #1E2B4E; }
@media (max-width: 520px) { .nav-book { padding: 0.5rem 0.75rem; font-size: 0.75rem; gap: 0.3rem; } }

/* ---------- FULL-SCREEN MENU ---------- */
.fs-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: #FAFAF7;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s;
}
.menu-open .fs-menu { opacity: 1; visibility: visible; pointer-events: auto; }

.fs-menu-wrap {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 5.5rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .fs-menu-wrap { grid-template-columns: 1fr 2fr; padding: 7rem 3rem 3rem; gap: 4rem; align-items: start; }
}

.fs-left { display: flex; flex-direction: column; justify-content: space-between; gap: 3rem; min-height: 50vh; }
.fs-eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8A877E;
}
.fs-year {
  font-family: "Italiana", serif;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.9;
  color: #0E0E12;
}
.fs-contact-block { display: flex; flex-direction: column; gap: 0.35rem; }
.fs-label {
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8A877E;
}
.fs-phone {
  font-family: "Italiana", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1;
  color: #0E0E12;
  text-decoration: none;
}
.fs-phone:hover { color: #1E2B4E; }
.fs-mail { font-size: 0.95rem; color: #8A877E; text-decoration: none; }
.fs-mail:hover { color: #1E2B4E; }

.fs-nav { display: flex; flex-direction: column; }
.fs-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-family: "Italiana", serif;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1;
  color: #0E0E12;
  border-bottom: 1px solid rgba(14, 14, 18, 0.1);
  text-decoration: none;
  opacity: 0;
  transform: translateX(20px);
  transition: color 0.3s ease, padding-left 0.4s ease, border-color 0.3s ease, opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.menu-open .fs-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(0.2s + var(--i, 0) * 0.06s);
}
.fs-link:hover { color: #1E2B4E; padding-left: 0.5rem; border-color: rgba(30, 43, 78, 0.35); }
.fs-num {
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #8A877E;
  letter-spacing: 0.12em;
  min-width: 2.5rem;
}
.fs-text { flex: 1; }
.fs-arr { color: rgba(14, 14, 18, 0.2); transition: color 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1); flex: none; }
.fs-link:hover .fs-arr { color: #1E2B4E; transform: translate(4px, -4px); }

/* ---------- HERO CAROUSEL ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}
.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 4s ease-out;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.9);
}

.hero-over {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: 5rem 1.25rem 2rem;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 1.5rem;
  color: #FAFAF7;
}
@media (min-width: 768px) { .hero-over { padding: 7rem 3rem 2.5rem; gap: 2rem; } }

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-kicker { color: #FAFAF7; }
.hero-index { color: rgba(244, 242, 235, 0.65); }
.hero-index b { color: #FAFAF7; }

.hero-main {
  align-self: center;
  max-width: 900px;
}
.hero-h {
  font-family: "Italiana", serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 10vw, 8rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: #FAFAF7;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.hero-lead {
  margin-top: 1.25rem;
  max-width: 32rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(244, 242, 235, 0.9);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-controls { display: flex; gap: 0.5rem; }
.hero-btn {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 242, 235, 0.35);
  background: rgba(244, 242, 235, 0.06);
  color: #FAFAF7;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.hero-btn:hover { background: #FAFAF7; color: #0E0E12; border-color: #FAFAF7; }

.hero-dots { display: flex; gap: 0.5rem; }
.hero-dot {
  width: 22px; height: 2px;
  background: rgba(244, 242, 235, 0.4);
  cursor: pointer;
  border: 0;
  padding: 0;
  transition: background-color 0.3s ease, width 0.3s ease;
}
.hero-dot.is-active { background: #FAFAF7; width: 40px; }

/* ---------- BUTTONS ---------- */
.btn-ink {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  background: #FAFAF7;
  color: #0E0E12;
  border: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.btn-ink:hover { background: #1E2B4E; color: #FAFAF7; }
.btn-ink:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-ink svg { transition: transform 0.3s ease; }
.btn-ink:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: transparent;
  color: #FAFAF7;
  border: 1px solid rgba(244, 242, 235, 0.4);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-outline:hover { background: rgba(244, 242, 235, 0.1); border-color: #FAFAF7; }

/* on light sections */
.contact .btn-ink { background: #0E0E12; color: #FAFAF7; }
.contact .btn-ink:hover { background: #1E2B4E; }
.contact-info .mt-10 { margin-top: 2.5rem; }

/* ---------- INTRO ---------- */
.intro {
  border-top: 1px solid rgba(14, 14, 18, 0.08);
  border-bottom: 1px solid rgba(14, 14, 18, 0.08);
}
.intro-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
@media (min-width: 768px) { .intro-wrap { padding: 4rem 3rem; } }
.intro-copy {
  max-width: 48rem;
  margin: 0 auto;
  font-family: "Italiana", serif;
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  line-height: 1.5;
  text-align: center;
  color: #0E0E12;
}
.intro-copy .ital { color: #1E2B4E; }

/* ---------- STORIES ---------- */
.stories {
  max-width: 1500px;
  margin: 0 auto;
  padding: 4rem 0 3rem;
}
@media (min-width: 768px) { .stories { padding: 6rem 0 4rem; } }
.stories-head { padding: 0 1.25rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .stories-head { padding: 0 3rem; margin-bottom: 3rem; } }

.story {
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .story { margin-bottom: 4.5rem; } }
.story-head {
  padding: 0 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .story-head { padding: 0 3rem; margin-bottom: 1.5rem; } }
.story-h {
  font-family: "Italiana", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.005em;
  margin-top: 0.25rem;
}
.story-controls { display: flex; gap: 0.4rem; }
.story-arr {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(14, 14, 18, 0.25);
  background: transparent;
  color: #0E0E12;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.story-arr:hover { background: #0E0E12; color: #FAFAF7; border-color: #0E0E12; }

.story-track {
  display: flex;
  gap: 0.8rem;
  padding: 0 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1.25rem;
  scrollbar-width: none;
  cursor: grab;
}
.story-track.is-dragging { cursor: grabbing; }
@media (min-width: 768px) { .story-track { gap: 1.2rem; padding: 0 3rem; scroll-padding: 3rem; } }
.story-track::-webkit-scrollbar { display: none; }
.s-card {
  position: relative;
  flex: 0 0 auto;
  width: 85%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #EEEEEC;
  scroll-snap-align: start;
  margin: 0;
}
@media (min-width: 640px)  { .s-card { width: 48%; } }
@media (min-width: 900px)  { .s-card { width: 32%; } }
@media (min-width: 1200px) { .s-card { width: 24%; } }
.s-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.s-card:hover img { transform: scale(1.04); }
.s-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 14, 18, 0.7) 100%);
  color: #FAFAF7;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.s-cap-t { font-family: "Italiana", serif; font-size: 1.1rem; line-height: 1.15; }
.s-cap-m { font-family: "Manrope", sans-serif; font-size: 0.75rem; color: rgba(244, 242, 235, 0.75); letter-spacing: 0.05em; }

/* ---------- ABOUT ---------- */
.about {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}
@media (min-width: 768px) { .about { padding: 6rem 3rem 7rem; } }
.about-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .about-wrap { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.about-copy { padding: 0; }
.about-p {
  margin-top: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(14, 14, 18, 0.82);
  max-width: 36rem;
}
.about-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(14, 14, 18, 0.12);
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  color: #8A877E;
}
.about-stats b {
  display: block;
  font-family: "Italiana", serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  color: #0E0E12;
}

.about-photo {
  margin: 0;
  position: relative;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.about-photo figcaption {
  margin-top: 0.8rem;
  font-family: "Italiana", serif;
  font-size: 0.95rem;
  color: #8A877E;
}

/* ---------- ARCHIVE / MAIN GALLERY ---------- */
.archive {
  background: #EEEEEC;
  padding: 4rem 0 5rem;
}
@media (min-width: 768px) { .archive { padding: 6rem 0 7rem; } }

.archive-head {
  max-width: 1500px;
  margin: 0 auto 2rem;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) { .archive-head { flex-direction: row; justify-content: space-between; align-items: flex-end; padding: 0 3rem; margin-bottom: 2.5rem; } }
.archive-sub {
  margin-top: 0.8rem;
  max-width: 30rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  color: rgba(14, 14, 18, 0.65);
}
.archive-meta {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: rgba(14, 14, 18, 0.7);
}
.archive-num {
  font-family: "Italiana", serif;
  font-size: 2.5rem;
  line-height: 1;
  color: #0E0E12;
}

.archive-filters {
  max-width: 1500px;
  margin: 0 auto 2rem;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (min-width: 768px) { .archive-filters { padding: 0 3rem; margin-bottom: 2.5rem; } }
.a-filter {
  padding: 0.55rem 1.15rem;
  border: 1px solid rgba(14, 14, 18, 0.2);
  background: transparent;
  color: #0E0E12;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.a-filter:hover { border-color: #1E2B4E; color: #1E2B4E; }
.a-filter.is-active { background: #0E0E12; color: #FAFAF7; border-color: #0E0E12; }

.a-grid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  grid-auto-flow: dense;
}
@media (min-width: 640px)  { .a-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; } }
@media (min-width: 1024px) { .a-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; padding: 0 3rem; } }
@media (min-width: 1280px) { .a-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.ac {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #DEDCD8;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.ac:nth-child(7n+1) { aspect-ratio: 4 / 5; }
.ac:nth-child(9n+4) { aspect-ratio: 1 / 1; }
@media (min-width: 1024px) {
  .ac:nth-child(11n+3) { grid-row: span 2; aspect-ratio: 3 / 4; }
  .ac:nth-child(13n+7) { grid-column: span 2; aspect-ratio: 16 / 9; }
}
.ac img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
  filter: brightness(0.97);
}
.ac:hover img { transform: scale(1.04); filter: brightness(1); }
.ac::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 14, 18, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.ac:hover::after { opacity: 1; }
.ac.is-hidden {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
  position: absolute;
  width: 0; height: 0;
  margin: 0; padding: 0;
  overflow: hidden;
}

/* ---------- LIGHTBOX ---------- */
.lb {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb.hidden { display: none; }
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 18, 0.96);
  animation: fade-in 0.3s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.lb-stage {
  position: relative;
  width: 100%; height: 100%;
  padding: 5rem 1rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) { .lb-stage { padding: 5rem 5rem; } }
.lb-btn {
  position: absolute;
  width: 48px; height: 48px;
  border: 1px solid rgba(244, 242, 235, 0.35);
  background: rgba(244, 242, 235, 0.06);
  color: #FAFAF7;
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  z-index: 3;
}
.lb-btn:hover { background: #FAFAF7; color: #0E0E12; border-color: #FAFAF7; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { top: 50%; left: 12px; transform: translateY(-50%); }
.lb-next { top: 50%; right: 12px; transform: translateY(-50%); }
@media (min-width: 768px) { .lb-prev { left: 28px; } .lb-next { right: 28px; } }
.lb-fig {
  max-width: 100%; max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#lb-img {
  max-width: 100%; max-height: calc(100vh - 10rem);
  object-fit: contain;
  animation: lb-in 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes lb-in { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
.lb-cap {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem 1rem;
  color: #FAFAF7;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  text-align: center;
}
.lb-idx, .lb-tot { font-family: "Italiana", serif; color: #A08B6D; font-size: 1.1rem; }
.lb-sep { color: rgba(244, 242, 235, 0.35); }
.lb-t { font-family: "Italiana", serif; font-size: 1.25rem; color: #FAFAF7; }
.lb-m { color: rgba(244, 242, 235, 0.65); }

/* ---------- PACKAGES ---------- */
.packages {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}
@media (min-width: 768px) { .packages { padding: 6rem 3rem 7rem; } }
.packages-head { margin-bottom: 2.5rem; }

.pkg-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(14, 14, 18, 0.15);
}
.pkg {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(14, 14, 18, 0.15);
  transition: padding 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
}
@media (max-width: 767px) {
  .pkg {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 0.85rem;
    padding: 1.5rem 0;
  }
  .pkg .pkg-inc { display: none; }
  .pkg .pkg-price { grid-column: 2; }
  .pkg .pkg-go { grid-column: 1 / span 2; justify-self: start; margin-top: 0.5rem; }
}
@media (min-width: 768px) {
  .pkg { grid-template-columns: 48px 1.8fr 1.5fr 1fr auto; gap: 1.5rem; padding: 2.25rem 0; }
  .pkg:hover { padding-left: 1rem; padding-right: 1rem; background: rgba(30, 43, 78, 0.03); }
}
.pkg-i {
  font-family: "Italiana", serif;
  font-size: 1.5rem;
  color: #1E2B4E;
  line-height: 1;
}
.pkg-title {
  font-family: "Italiana", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.005em;
}
.pkg-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.55rem;
  background: #1E2B4E;
  color: #FAFAF7;
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
.pkg-desc {
  margin-top: 0.4rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(14, 14, 18, 0.7);
}
.pkg-inc {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  color: rgba(14, 14, 18, 0.75);
}
.pkg-inc li::before { content: "— "; color: #A08B6D; }
.pkg-price {
  font-family: "Italiana", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0E0E12;
  white-space: nowrap;
}
.pkg-go {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(14, 14, 18, 0.3);
  background: transparent;
  color: #0E0E12;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.pkg-go:hover { background: #0E0E12; color: #FAFAF7; border-color: #0E0E12; }
.pkg--feat .pkg-title { color: #1E2B4E; }
.pkg--feat::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #1E2B4E;
}

/* ---------- REVIEWS CAROUSEL ---------- */
.reviews {
  background: #0E0E12;
  color: #FAFAF7;
  padding: 4rem 0 5rem;
}
@media (min-width: 768px) { .reviews { padding: 6rem 0 7rem; } }
.reviews-head {
  padding: 0 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .reviews-head { padding: 0 3rem; margin-bottom: 3rem; } }
.reviews .eyebrow { color: #A08B6D; }
.reviews .section-h { color: #FAFAF7; }
.reviews .ital { color: #A08B6D; }
.reviews .story-arr {
  border-color: rgba(244, 242, 235, 0.35);
  color: #FAFAF7;
}
.reviews .story-arr:hover { background: #FAFAF7; color: #0E0E12; border-color: #FAFAF7; }

.rv-track {
  display: flex;
  gap: 1rem;
  padding: 0 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1.25rem;
  scrollbar-width: none;
  cursor: grab;
}
.rv-track.is-dragging { cursor: grabbing; }
@media (min-width: 768px) { .rv-track { gap: 1.5rem; padding: 0 3rem; scroll-padding: 3rem; } }
.rv-track::-webkit-scrollbar { display: none; }
.rv {
  flex: 0 0 auto;
  width: 92%;
  max-width: 520px;
  padding: 2rem 1.75rem;
  margin: 0;
  background: #1A1A1E;
  border-left: 3px solid #A08B6D;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) { .rv { padding: 2.5rem 2.25rem; width: 72%; } }
@media (min-width: 1024px) { .rv { width: 44%; } }
.rv-text {
  font-family: "Italiana", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.35;
  color: #FAFAF7;
}
.rv-text .ital { color: #A08B6D; }
.rv-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244, 242, 235, 0.1);
}
.rv-foot img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.rv-foot b {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #FAFAF7;
  display: block;
}
.rv-foot span {
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  color: #8A877E;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}
@media (min-width: 768px) { .faq { padding: 6rem 3rem 7rem; } }
.faq-head { margin-bottom: 2.5rem; }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(14, 14, 18, 0.15);
  transition: background-color 0.3s ease;
}
.faq-item:first-child { border-top: 1px solid rgba(14, 14, 18, 0.15); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  font-family: "Italiana", serif;
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
  cursor: pointer;
  list-style: none;
}
@media (min-width: 768px) { .faq-q { padding: 1.75rem 0; font-size: 1.4rem; } }
.faq-q::-webkit-details-marker { display: none; }
.faq-q > span:first-child:not(.faq-plus) { flex: 1; }
.faq-q > span:not(.faq-plus):not(:first-child) { flex: 1; }
.faq-q { padding-left: 0; }
.faq-q { }
.faq-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(14, 14, 18, 0.25);
  color: #0E0E12;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  flex: none;
  margin-left: auto;
}
.faq-plus svg { width: 14px; height: 14px; }
.faq-item[open] .faq-plus { transform: rotate(45deg); background: #1E2B4E; color: #FAFAF7; border-color: #1E2B4E; }
.faq-a {
  padding: 0 0 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(14, 14, 18, 0.78);
  animation: faq-open 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  max-width: 48rem;
}
@keyframes faq-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- CONTACT ---------- */
.contact {
  max-width: 1500px;
  margin: 0 auto;
  padding: 4rem 1.25rem 6rem;
}
@media (min-width: 768px) { .contact { padding: 6rem 3rem 7rem; } }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 900px) { .contact-wrap { grid-template-columns: 5fr 7fr; gap: 3rem; align-items: start; } }
.ci-rows { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.ci-row { display: flex; align-items: flex-start; gap: 0.85rem; }
.ci-ic { width: 22px; height: 22px; color: #1E2B4E; flex: none; margin-top: 4px; }
.ci-l {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8A877E;
}
.ci-v {
  display: block;
  margin-top: 0.15rem;
  font-family: "Italiana", serif;
  font-size: 1.1rem;
  color: #0E0E12;
  text-decoration: none;
}
a.ci-v:hover { color: #1E2B4E; }

.contact-map {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #EEEEEC;
  border: 1px solid rgba(14, 14, 18, 0.08);
  isolation: isolate;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.9) contrast(1.03) saturate(0.9); }
.contact-pin {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 0.7rem 0.95rem;
  background: #0E0E12;
  color: #FAFAF7;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.contact-pin:hover { background: #1E2B4E; transform: translateY(-3px); }

/* ---------- FOOTER ---------- */
.foot {
  background: #0E0E12;
  color: #FAFAF7;
}
.foot-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 4rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .foot-wrap { grid-template-columns: 2fr 3fr; padding: 5rem 3rem 2rem; gap: 4rem; } }
.foot-word {
  font-family: "Italiana", serif;
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: 0.86;
  letter-spacing: -0.01em;
}
.foot-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.foot-head { font-family: "Manrope", sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: #8A877E; }
.foot-list { margin-top: 1rem; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; font-family: "Manrope", sans-serif; font-size: 0.92rem; }
.foot-list a { color: rgba(244, 242, 235, 0.85); text-decoration: none; }
.foot-list a:hover { color: #A08B6D; }
.foot-tail {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  border-top: 1px solid rgba(244, 242, 235, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  color: rgba(244, 242, 235, 0.5);
}
@media (min-width: 768px) { .foot-tail { padding: 1.5rem 3rem 2rem; } }
.foot-tail .ital { color: #A08B6D; }

/* ---------- MODAL (booking) ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) { .modal { padding: 2rem; } }
.modal.hidden { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 18, 0.75);
  backdrop-filter: blur(6px);
  animation: fade-in 0.3s ease;
}
.modal-frame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 100%;
  max-height: 100vh;
  background: #FAFAF7;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  animation: modal-in 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (min-width: 900px) { .modal-frame { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; max-height: 88vh; } }
@keyframes modal-in { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 5;
  width: 44px; height: 44px;
  border: 1px solid rgba(244, 242, 235, 0.35);
  background: rgba(14, 14, 18, 0.65);
  color: #FAFAF7;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease;
}
.modal-close:hover { background: #1E2B4E; border-color: #1E2B4E; }

.modal-preview {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: #0E0E12;
}
@media (min-width: 900px) { .modal-preview { min-height: auto; } }
.modal-preview img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: opacity 0.6s ease;
}
.modal-preview-over {
  position: absolute;
  inset: 0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 14, 18, 0.7) 100%);
  color: #FAFAF7;
}
@media (min-width: 900px) { .modal-preview-over { padding: 2.5rem; } }
.modal-preview-over .eyebrow { color: rgba(244, 242, 235, 0.7); }
.modal-title {
  margin-top: 0.6rem;
  font-family: "Italiana", serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: #FAFAF7;
}
.modal-title .ital { color: #A08B6D; }

.modal-form-wrap {
  position: relative;
  overflow-y: auto;
  padding: 1.5rem 1.25rem 2rem;
}
@media (min-width: 900px) { .modal-form-wrap { padding: 2.5rem; } }
.fs { margin-bottom: 1.5rem; }
.fs-head { font-family: "Manrope", sans-serif; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: #1E2B4E; margin-bottom: 0.75rem; }

.chips { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }
@media (min-width: 520px) { .chips { grid-template-columns: 1fr 1fr; } }
.chips--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; inset: 0; }
.chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(14, 14, 18, 0.2);
  background: #FFFFFF;
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  color: #0E0E12;
  text-align: center;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.chip:hover span { border-color: #1E2B4E; }
.chip input:checked + span { background: #0E0E12; color: #FAFAF7; border-color: #0E0E12; }

.fields { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field > span { font-family: "Manrope", sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #8A877E; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid rgba(14, 14, 18, 0.18);
  background: #FFFFFF;
  padding: 0.8rem 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: #0E0E12;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(14, 14, 18, 0.3); }
.field input:focus, .field textarea:focus { outline: none; border-color: #1E2B4E; background: #FAFAF6; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #5C2533; background: rgba(92, 37, 51, 0.04); }
.field-error { display: block; min-height: 1rem; margin-top: 0.25rem; font-family: "Manrope", sans-serif; font-size: 0.78rem; color: #5C2533; transition: opacity 0.2s ease; }
.field-error:empty { opacity: 0; }

.consent {
  display: flex;
  gap: 0.7rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  color: rgba(14, 14, 18, 0.72);
  align-items: flex-start;
}
.consent input { margin-top: 0.2rem; accent-color: #1E2B4E; }
.modal-foot { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(14, 14, 18, 0.1); }
.modal-foot-note { margin-top: 0.75rem; text-align: center; color: #8A877E; font-family: "Manrope", sans-serif; font-size: 0.8rem; }
.modal-foot .btn-ink { background: #0E0E12; color: #FAFAF7; }
.modal-foot .btn-ink:hover { background: #1E2B4E; }

.modal-success {
  position: absolute;
  inset: 0;
  padding: 2rem 1.5rem;
  background: #FAFAF7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fade-in 0.4s ease;
}
@media (min-width: 900px) { .modal-success { padding: 3rem; } }
.success-check { width: 110px; height: 110px; }
.success-check circle { transform-origin: center; animation: sc-scale 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.success-check .check-path { stroke-dasharray: 100; stroke-dashoffset: 100; animation: sc-draw 0.6s 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
@keyframes sc-scale { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes sc-draw  { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }
.success-h { margin-top: 1.25rem; font-family: "Italiana", serif; font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.05; }
.success-meta { margin-top: 1rem; font-family: "Manrope", sans-serif; color: rgba(14, 14, 18, 0.7); }
.success-note { margin-top: 0.5rem; font-family: "Manrope", sans-serif; font-size: 0.88rem; color: #8A877E; }
.success-ctas { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; width: 100%; max-width: 400px; }
.success-ctas button { justify-content: center; width: 100%; }
.success-ctas .btn-outline { border-color: rgba(14, 14, 18, 0.25); color: #0E0E12; }
.success-ctas .btn-outline:hover { background: rgba(14, 14, 18, 0.04); border-color: #1E2B4E; }
.success-ctas .btn-ink { background: #0E0E12; color: #FAFAF7; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
