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

:root {
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --sand: #EDE8E1;
  --blush: #D4B8A8;
  --text: #2C2C2C;
  --text-light: #7A7A7A;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Lato', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================
   NAV
   ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  height: 64px;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); border-bottom: 1px solid var(--blush); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}


.lang-toggle {
  background: none;
  border: 1px solid var(--blush);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-toggle:hover {
  background: var(--blush);
  color: var(--white);
  border-color: var(--blush);
}

/* =====================
   HERO
   ===================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8rem;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-img.active { opacity: 1; }

@media (max-width: 900px) {
  .hero-img { object-position: center top; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,248,245,0) 30%,
    rgba(250,248,245,0.5) 70%,
    rgba(250,248,245,0.85) 100%
  );
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text);
}

.hero-tagline {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero-cta {
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: all 0.25s;
}

.hero-cta:hover {
  background: var(--text);
  color: var(--white);
}

/* =====================
   SECTION HEADER
   ===================== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.section-sub {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* =====================
   STICKY TAB BAR
   ===================== */
#gallery-tab-bar {
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
}

.gallery-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 0.65rem 2.5rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-tab:hover { color: var(--text); }

.gallery-tab.active {
  color: var(--text);
  border-bottom-color: var(--blush);
}

/* =====================
   GALLERY
   ===================== */
#gallery {
  padding-top: 7rem;
  padding-bottom: 6rem;
  padding-left: 3rem;
  padding-right: 3rem;
  background: var(--white);
}

.gallery-grid.hidden { display: none; }

.gallery-grid {
  columns: 3;
  column-gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, opacity 0.3s;
  opacity: 0.95;
}

.gallery-item:hover img {
  transform: scale(1.03);
  opacity: 1;
}

/* =====================
   ABOUT
   ===================== */
#about {
  padding: 6rem 3rem;
  background: var(--cream);
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-photo-wrap {
  flex: 0 0 380px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.85;
}

.about-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.about-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color 0.2s;
}

.about-contact-item:hover { color: var(--text); }

.about-contact-item svg { flex-shrink: 0; color: var(--blush); }

.btn-outline {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.65rem 1.8rem;
  border: 1px solid var(--blush);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  transition: all 0.25s;
}

.btn-outline:hover {
  background: var(--blush);
  color: var(--white);
  border-color: var(--blush);
}

/* =====================
   PRICING
   ===================== */
#pricing {
  padding: 6rem 3rem;
  background: var(--cream);
}

.pricing-categories {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-cat-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
}

.pricing-cat-sub {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--text-light);
  margin-top: 0.3rem;
  margin-bottom: 2rem;
}

.pricing-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.25s;
}

.pricing-card:hover {
  box-shadow: 0 6px 30px rgba(0,0,0,0.07);
}

.pricing-card-featured {
  border-color: var(--blush);
  background: #FDF9F7;
}

.pricing-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.pricing-duration {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
}

.pricing-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pricing-details li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}

.pricing-details li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blush);
}

.pricing-notes {
  max-width: 600px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.pricing-notes p {
  font-size: 0.83rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.pricing-cta {
  text-align: center;
  margin-top: 3rem;
}

.pricing-cta p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  letter-spacing: 0.06em;
}

.btn-cta {
  display: inline-block;
  padding: 0.9rem 3rem;
  background: var(--text);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.btn-cta:hover { background: var(--blush); }

/* =====================
   CONTACT
   ===================== */
#contact {
  padding: 6rem 3rem;
  background: var(--sand);
  text-align: center;
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: var(--text-light);
  transition: color 0.2s;
}

.contact-item:hover { color: var(--text); }

.contact-item svg { color: var(--blush); flex-shrink: 0; }

/* =====================
   FOOTER
   ===================== */
footer {
  padding: 1.5rem 3rem;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  background: var(--cream);
  border-top: 1px solid var(--sand);
}

/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250,248,245,0.97);
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 8px 60px rgba(0,0,0,0.12);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 2rem;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--text); }

.lightbox-close { top: 1.5rem; right: 2rem; font-size: 2.5rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  #navbar { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }

  #gallery-tab-bar { top: 64px; }

  #hero { padding-bottom: 5rem; }
  .hero-text { padding: 0 1.5rem; }

  #gallery { padding: 5rem 1.5rem 4rem; }
  .gallery-grid { columns: 2; }

  #about { padding: 4rem 1.5rem; }
  #pricing { padding: 4rem 1.5rem; }
  .pricing-cards { flex-direction: column; align-items: center; }
  .about-inner { flex-direction: column; gap: 2.5rem; }
  .about-photo-wrap { flex: none; width: 100%; max-width: 420px; margin: 0 auto; }
  .about-photo { height: 400px; }

  #contact { padding: 4rem 1.5rem; }
}

@media (max-width: 540px) {
  .nav-links { display: none; }
  .gallery-tab { padding: 0.65rem 1.4rem; font-size: 0.75rem; }
  .gallery-grid { columns: 1; }
  .hero-name { font-size: 2.4rem; }
}
