:root {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.145 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.985 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.637 0.237 25.331);
  --border: oklch(0.269 0 0);
  --input: oklch(0.269 0 0);
  --ring: oklch(0.439 0 0);
  --radius: 0.625rem;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 1.5rem 2rem;
}

.nav-container {
  max-width: 1440px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 100px;
}

.nav-brand-name {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.nav-brand-subtitle {
  color: #d1d5db;
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: #d1d5db;
}

.hero-section {
  position: relative;
  height: 70vh;
  max-height: 768px;
  width: 100%;
  overflow: hidden;
  margin-top: 148px;
}

.hero-image-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.hero-button {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}

.hero-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

#about {
  background-color: #121212;
  padding: 6rem 2rem;
}

.about-container {
  max-width: 1440px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .about-container {
  }
}


.about-story {
  flex: 2;
  order: 1;
}

.about-portrait {
  flex: 1;
  order: 2;
  margin-right: 2rem;
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.about-story h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #fff;
}

.about-story p {
  font-size: 1.125rem;
  line-height: 1.625;
  color: #d1d5db;
  margin-bottom: 2rem;
}

details {
  margin-top: 1rem;
}

summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "+";
  padding-right: 0.5rem;
}

details[open] > summary::before {
  content: "-";
}

.expand-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.full-story {
  margin-top: 2rem;
}

.full-story p {
  font-size: 0.875rem;
  color: #bbb;
  text-align: left;
}



.about-side-images {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: 154px 1fr;
  grid-template-rows: 154px 154px;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
}

.about-side-images img {
  border-radius: 0.375rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* tiny-1: top-left square */
.about-side-images img:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* tiny-2: right column, tall rectangle spanning both rows */
.about-side-images img:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* tiny-3: bottom-left square */
.about-side-images img:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-portrait-inner {
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-portrait-inner img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
}

#booking {
  background-image: linear-gradient(to right, rgba(76, 29, 149, 0.3), rgba(131, 24, 67, 0.3));
  padding: 6rem 2rem;
}

.booking-container {
  max-width: 1440px;
  margin: auto;
  text-align: center;
}

.booking-container h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}

.booking-container p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: #d1d5db;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.calendar-placeholder {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  color: #9ca3af;
  font-size: 1rem;
}

.calendar-placeholder p {
  margin: 0 0 2rem;
}

.booking-button {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-button:hover {
  background-color: #e5e7eb;
}

#media {
  background-color: #121212;
  padding: 6rem 2rem;
}

.media-container {
  max-width: 1440px;
  margin: auto;
}

.media-container h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #fff;
  text-align: center;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .media-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.media-item {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
}

.media-item:hover img {
  transform: scale(1.1);
}

.media-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 300ms;
  opacity: 0;
}

.media-item:hover .media-overlay {
  opacity: 1;
}

.media-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.media-reels {
  margin-top: 4rem;
}

.media-reels h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}

.reels-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.reel-embed {
  width: 400px;
  height: 700px;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.media-overlay-content p {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0 1rem;
  text-align: center;
}

footer {
  background-color: #000;
  padding: 4rem 2rem;
  border-top: 1px solid #1f2937;
}

.footer-container {
  max-width: 1440px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-brand p {
  color: #9ca3af;
}

.footer-links h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
  color: #fff;
}

.footer-social h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  color: #6b7280;
  font-size: 0.875rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0.5rem 0;
}

.footer-bottom a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-bottom a:hover {
  color: #fff;
}

.lightbox {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 200;
  cursor: zoom-out;
  visibility: hidden;
  pointer-events: none;
}

.lightbox.open {
  visibility: visible;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 150ms;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 150ms;
  padding: 0 1rem;
  user-select: none;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}