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

:root {
  --bg:        #faf7f4;
  --surface:   #f5ede8;
  --surface2:  #ede0da;
  --gold:      #c07878;
  --gold-light:#d9a8a8;
  --blush:     #c4a48e;
  --rose:      #c07878;
  --text:      #2a1a18;
  --text-muted:#7a6860;
  --border:    rgba(192, 120, 120, 0.2);
  --radius:    12px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── Utilities ─────────────────────────────────────────────────────── */
.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: clamp(64px, 10vw, 120px);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title.center { text-align: center; }

.section-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}
.section-sub.center { text-align: center; }

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: #0d0d0d;
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,108,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── Navbar ────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: min(1100px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: #0d0d0d !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #f0d5d5 0%, var(--bg) 70%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E") repeat;
  opacity: 0.15;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 24px 60px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.title-br { display: block; }
@media (min-width: 860px) {
  .title-br { display: inline; }
  .hero-content { max-width: 1000px; }
  .hero-title em { font-size: 0.65em; }
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .hero-eyebrow { font-size: 0.55rem; }
  .hero-sub { font-size: 0.6rem; letter-spacing: 0.08em; }
}

/* Sparkles */
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle-float 6s infinite;
}

.sparkle:nth-child(1)  { top: 15%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2)  { top: 25%; left: 85%; animation-delay: 0.8s; }
.sparkle:nth-child(3)  { top: 60%; left: 5%;  animation-delay: 1.6s; }
.sparkle:nth-child(4)  { top: 70%; left: 90%; animation-delay: 2.4s; }
.sparkle:nth-child(5)  { top: 40%; left: 20%; animation-delay: 3.2s; }
.sparkle:nth-child(6)  { top: 80%; left: 50%; animation-delay: 4.0s; }
.sparkle:nth-child(7)  { top: 10%; left: 60%; animation-delay: 1.2s; }
.sparkle:nth-child(8)  { top: 90%; left: 20%; animation-delay: 2.0s; }
.sparkle:nth-child(9)  { top: 50%; left: 75%; animation-delay: 2.8s; }
.sparkle:nth-child(10) { top: 35%; left: 45%; animation-delay: 3.6s; }
.sparkle:nth-child(11) { top: 65%; left: 35%; animation-delay: 4.4s; }
.sparkle:nth-child(12) { top: 20%; left: 30%; animation-delay: 5.2s; }
.sparkle:nth-child(13) { top: 55%; left: 55%; animation-delay: 0.4s; }
.sparkle:nth-child(14) { top: 85%; left: 70%; animation-delay: 1.0s; }
.sparkle:nth-child(15) { top: 30%; left: 65%; animation-delay: 1.8s; }
.sparkle:nth-child(16) { top: 75%; left: 15%; animation-delay: 2.6s; }
.sparkle:nth-child(17) { top: 45%; left: 40%; animation-delay: 3.4s; }
.sparkle:nth-child(18) { top: 5%;  left: 80%; animation-delay: 4.8s; }

@keyframes sparkle-float {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  20%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-60px) scale(1.5); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── About ─────────────────────────────────────────────────────────── */
.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-text h2 { margin-bottom: 1.2rem; }

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 480px;
}

.about-photo {
  width: 100%;
  align-self: stretch;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  max-height: 420px;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  display: block;
}

@media (max-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    order: -1;
  }
}

/* ─── Pricing ───────────────────────────────────────────────────────── */
.services { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
  padding: 12px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px) scale(1.08);
}

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.card-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.4rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.card-note {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(42, 26, 24, 0.07);
}
.price-list li:last-child { border-bottom: none; padding-bottom: 0; }

.price-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-name {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
}

.price-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
  font-weight: 500;
  flex-shrink: 0;
}

.card-footer-note {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}


/* ─── Gallery ───────────────────────────────────────────────────────── */
.gallery { background: var(--surface); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 2.5rem;
}

.gallery-tile {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block;
  transition: transform 0.4s ease;
  background: var(--surface-2);
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-tile:hover { transform: scale(1.03); }
.gallery-tile:hover .tile-overlay { opacity: 1; }

.tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 244, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--text);
}
.tile-overlay svg { width: 28px; height: 28px; }


.gallery-cta {
  display: flex;
  justify-content: center;
}

/* ─── Lightbox ──────────────────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 10, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#lightbox.active { display: flex; }

#lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

#lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
#lightbox-close:hover { opacity: 1; }

/* ─── Booking ───────────────────────────────────────────────────────── */
.booking {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 120, 120, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.booking-inner {
  max-width: 640px;
}

.booking-text h2 { margin-bottom: 1.2rem; }

.booking-text > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.booking-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.booking-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.booking-steps li span {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  line-height: 1.2;
}

.booking-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.booking-days {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.booking-days strong { color: var(--gold); }

/* ─── Policies ──────────────────────────────────────────────────────── */
.policies { background: var(--surface); }

/* ─── Feedback ──────────────────────────────────────────────────────── */
.feedback { background: var(--bg); }

.feedback-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feedback-input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.feedback-input:focus {
  border-color: var(--rose);
}

.feedback-input::placeholder {
  color: var(--text-muted);
}

.feedback-textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  resize: vertical;
  transition: border-color 0.2s;
  outline: none;
}

.feedback-textarea:focus {
  border-color: var(--rose);
}

.feedback-textarea::placeholder {
  color: var(--text-muted);
}

.feedback-submit {
  align-self: center;
}

.accordion {
  max-width: 700px;
  margin-inline: auto;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface2);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: left;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--rose); }
.accordion-trigger[aria-expanded="true"] { color: var(--rose); }

.accordion-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
  color: var(--rose);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-body.open {
  max-height: 600px;
}

.accordion-body ul {
  list-style: none;
  padding: 0 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-body li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.65;
}
.accordion-body li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--rose);
}
.accordion-body li strong { color: var(--text); }

/* ─── Footer ────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 48px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250, 247, 244, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .about-text p { max-width: 100%; }

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

  .booking-inner { max-width: 100%; }
}

@media (max-width: 480px) {
  input, textarea, select { font-size: 16px; }
  .feedback-input, .feedback-textarea { font-size: 16px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 80px;
  }

  .btn {
    padding: 15px 28px;
    font-size: 0.85rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }
}

/* ─── Scroll fade-in animations ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
