:root {
  --bg: #fdf7f1;
  --bg-soft: #f4e6d9;
  --accent: #d8a24a;
  --accent-2: #c77b5b;
  --text: #22140c;
  --muted: #5d4c41;
  --card: rgba(255, 255, 255, 0.92);
  --border: rgba(34, 20, 12, 0.08);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max-width: 1200px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(216, 162, 74, 0.14), transparent 32%), radial-gradient(circle at 80% 0%, rgba(199, 123, 91, 0.12), transparent 30%), var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

header {
  position: relative;
  overflow: hidden;
  background: none;
  min-height: auto;
  display: flex;
  align-items: center;
}

header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
  padding: 8px 14px;
  min-height: 54px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 110px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.nav-links {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  color: #fdf7f1;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}

.nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.15);
}

.cta-bar {
  width: 100%;
  padding: 6px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 6;
  backdrop-filter: blur(6px);
}

.cta-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-brand .brand-mark {
  width: 88px;
}

.cta-bar .btn-primary {
  padding: 10px 16px;
}

.page {
  display: grid;
  grid-template-columns: clamp(200px, 22vw, 240px) minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  background: rgba(15, 15, 15, 0.9);
  color: #fdf7f1;
  padding: 28px 18px;
  display: grid;
  align-content: start;
  gap: 20px;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
}

.sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.3;
}

.mobile-toggle {
  display: none;
  background: rgba(0, 0, 0, 0.72);
  color: #fdf7f1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}

.sidebar-nav {
  display: grid;
  gap: 12px;
  font-weight: 600;
}

.sidebar-nav a {
  color: #fdf7f1;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: rgba(255, 255, 255, 0.08);
}

.content {
  background: var(--bg);
  min-height: 100vh;
}

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding: 180px 6vw 140px;
  display: grid;
  gap: 18px;
  align-items: flex-start;
}

.hero.full-bleed {
  width: 100%;
  max-width: 100%;
  padding: 180px 6vw 140px;
  min-height: 82vh;
  color: #fdf7f1;
  /* Use relative path from css/ directory to assets/ */
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.28)), url('../assets/12.jpeg') center/cover;
}

.hero-overlay {
  max-width: 760px;
  display: grid;
  gap: 14px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero > * {
  max-width: 760px;
}

.hero .copy {
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(216, 162, 74, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-top: 12px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.8vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 8px 0 12px;
  color: #fdf7f1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.1rem;
  max-width: 720px;
  color: #fdf7f1;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #f1c987);
  color: #1b110b;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.38);
  color: #fdf7f1;
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
}

main { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02)); }

section {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px clamp(18px, 4vw, 42px);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.section-intro {
  color: var(--muted);
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid rgba(34, 20, 12, 0.08);
  border-radius: var(--radius);
  padding: 18px 18px 20px;
  box-shadow: 0 10px 30px rgba(34, 20, 12, 0.12);
  backdrop-filter: blur(4px);
}

.card h3 { margin: 6px 0 8px; font-size: 1.1rem; }
.card p { color: #3d2e22; margin: 0; }

.card-media {
  width: 100%;
  height: 150px;
  border-radius: 14px;
  background: rgba(0,0,0,0.08);
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14), 0 10px 24px rgba(34,20,12,0.16);
}

.card .pill {
  margin-top: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(199, 123, 91, 0.14);
  color: #22140c;
  font-size: 0.9rem;
}

.packages .card { border-color: rgba(191, 182, 140, 0.5); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 180px;
  background: linear-gradient(135deg, rgba(216,162,74,0.18), rgba(199,123,91,0.2));
  border: 1px solid rgba(34, 20, 12, 0.08);
  box-shadow: 0 12px 32px rgba(34, 20, 12, 0.18);
}

.gallery-item:nth-child(1) { background: url('../assets/13.jpeg') center/cover; }
.gallery-item:nth-child(2) { background: url('../assets/14.jpeg') center/cover; }
.gallery-item:nth-child(3) { background: url('../assets/15.jpeg') center/cover; }
.gallery-item:nth-child(4) { background: url('../assets/16.jpeg') center/cover; }
.gallery-item:nth-child(5) { background: url('../assets/17.jpeg') center/cover; }
.gallery-item:nth-child(6) { background: url('../assets/1.jpeg') center/cover; }
.gallery-item:nth-child(7) { background: url('../assets/3.jpeg') center/cover; }
.gallery-item:nth-child(8) { background: url('../assets/5.jpeg') center/cover; }
.gallery-item:nth-child(9) { background: url('../assets/6.jpeg') center/cover; }

.quote {
  font-size: 1rem;
  color: #2f2017;
}

.testimonials .card { background: rgba(255,255,255,0.03); }

form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  color: #2f2017;
  font-size: 0.95rem;
}

input, textarea, select {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(216,162,74,0.6);
}

textarea {
  min-height: 140px;
  resize: vertical;
  grid-column: span 2;
}

.contact-card {
  background: var(--card);
  border: 1px solid rgba(34, 20, 12, 0.08);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 12px 36px rgba(34, 20, 12, 0.12);
  backdrop-filter: blur(4px);
}

.contact-form {
  gap: 18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 12px 24px rgba(34, 20, 12, 0.08);
}

.form-actions {
  grid-column: span 2;
  display: flex;
  justify-content: flex-start;
}

.form-status {
  margin-top: 12px;
  font-weight: 600;
  color: #2f2017;
  background: rgba(31, 122, 77, 0.08);
  border: 1px solid rgba(31, 122, 77, 0.2);
  padding: 10px 12px;
  border-radius: 10px;
}

.form-status.success { color: #1f7a4d; }
.form-status.error {
  color: #b23b2d;
  background: rgba(178, 59, 45, 0.08);
  border-color: rgba(178, 59, 45, 0.2);
}

.footer {
  padding: 40px clamp(18px, 4vw, 42px) 60px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid rgba(34, 20, 12, 0.08);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .brand-mark {
  width: 110px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.12));
}

.footer-copy {
  font-weight: 700;
  color: #2f2017;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(34, 20, 12, 0.12);
  background: rgba(255, 255, 255, 0.92);
  transition: all 0.2s ease;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: #2f2017;
}

.icon-btn:hover {
  border-color: rgba(216,162,74,0.6);
  box-shadow: 0 10px 24px rgba(34,20,12,0.12);
  transform: translateY(-1px);
}

.legal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.legal-card {
  background: var(--card);
  border: 1px solid rgba(34, 20, 12, 0.08);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(34, 20, 12, 0.1);
}

.link-button {
  background: none;
  border: none;
  color: var(--accent-2);
  font-weight: 700;
  padding: 6px 0;
  cursor: pointer;
  text-decoration: underline;
}

.cta-foot {
  margin-top: 18px;
  color: #2f2017;
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.modal.is-visible { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  background: #fff7ef;
  color: var(--text);
  padding: 24px 22px 20px;
  border-radius: 16px;
  max-width: 560px;
  width: min(92vw, 560px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
  z-index: 1;
}

.modal-dialog h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.1rem;
}

body.modal-open { overflow: hidden; }

@media (max-width: 960px) {
  .page { grid-template-columns: 1fr; }
  .sidebar {
    grid-template-columns: auto 1fr;
    grid-auto-flow: column;
    align-items: center;
    justify-items: start;
    gap: 14px;
    padding: 12px 14px;
    position: sticky;
    top: 56px;
    z-index: 4;
    height: auto;
    overflow: visible;
  }
  .sidebar-title { display: none; }
  .sidebar-nav { grid-auto-flow: column; grid-auto-columns: max-content; overflow-x: auto; gap: 10px; }
  .sidebar-nav a { text-align: center; font-size: 0.95rem; white-space: nowrap; padding: 8px 12px; }
  .hero.full-bleed { padding: 140px 7vw 110px; min-height: 70vh; }
}

@media (max-width: 720px) {
  .cta-brand .brand-mark { width: 110px; }
  body { padding-top: 62px; }
  .cta-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8;
    justify-content: space-between;
  }
  .cta-brand { display: flex; }
  .cta-bar .btn-primary { flex: 1; text-align: center; }
  .cta-bar .mobile-toggle { display: inline-flex; }
  .page { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed;
    top: 62px;
    left: 0;
    width: 82vw;
    max-width: 320px;
    height: calc(100vh - 62px);
    background: rgba(0, 0, 0, 0.92);
    padding: 18px 16px 24px;
    border-radius: 0 14px 14px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    z-index: 7;
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    box-shadow: 8px 0 24px rgba(0,0,0,0.35);
  }
  .nav-open .sidebar { transform: translateX(0); }
  .brand-mark { width: 100px; height: auto; }
  .sidebar-title { display: none; }
  .mobile-toggle { display: inline-flex; }
  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .sidebar-nav a { padding: 10px 12px; font-size: 0.96rem; width: 100%; }
  header { min-height: auto; }
  .nav-links { display: none; }
  h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .content { padding-top: 132px; }
  .hero {
    padding: 130px 16px 90px;
    text-align: center;
    gap: 16px;
  }
  .hero.full-bleed { padding: 130px 16px 90px; }
  .hero > * { max-width: 100%; }
  .hero-overlay { padding: 16px; text-align: center; }
  .actions { width: 100%; justify-content: center; }
  .btn { width: 100%; justify-content: center; }
  textarea { grid-column: span 1; }
  .form-actions { grid-column: span 1; }
}

@media (max-width: 560px) {
  section { padding: 60px clamp(16px, 5vw, 28px); }
  .actions { gap: 10px; }
  .badge { justify-content: center; width: 100%; }
  .hero p { font-size: 1rem; }
  form {
    grid-template-columns: 1fr;
  }
  textarea { min-height: 120px; }
}
