:root {
  --ivory: #f7f3ef;
  --taupe: #8a7f76;
  --sage: #9aa79b;
  --blush: #e6cfc2;
  --gold: #b89b6d;
  --text-dark: #2b2b2b;
  --header-height: 78px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* =========================
   HEADER
========================= */

/* Header */
.site-header {
  background: var(--ivory);
  border-bottom: 1px solid #e6e0db;

  position: sticky;
  top: 0;
  height: var(--header-height);
  z-index: 5000;
}

/* Inner header wrapper */
.header-inner {
  width: 100%;
  padding: 0.6rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative; /* IMPORTANT */
  z-index: 5001;       /* keeps hamburger clickable */
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  transform: translateY(-2px);
}
.logo img {
  display: block;
}
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-text {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}
.site-logo {
  height: 60px;
  width: auto;
  display: block;
}


/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  white-space: nowrap;
}

.main-nav .cta {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: var(--taupe);
  color: white;
}

/* =========================
   NAV DROPDOWN (ALIGNED)
========================= */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center; /* aligns with other nav links */
}

/* invisible hover buffer */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 14px;
  width: 100%;
}

/* dropdown menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #e6e0db;
  border-radius: 10px;
  min-width: 220px;
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease;
  z-index: 1000;
}

/* keep open on hover */
.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: #f4f1ed;
}

/* =========================
   PACKAGE BUTTONS
========================= */

.package-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.package-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 1.5rem;
  border-radius: 18px;
  background: white;
  border: 1px solid #e6e0db;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* mobile */
@media (max-width: 768px) {
  .package-buttons {
    grid-template-columns: 1fr;
  }
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 90vh;
  background-image: url('/images/hero/hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 235, 0.65);
}

.hero-content {
  position: relative;
  max-width: 900px;
  padding: 2rem;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn.primary {
  background: var(--gold);
  color: white;
}

.btn.secondary {
  border: 1px solid var(--taupe);
  color: var(--taupe);
}

/* =========================
   PAGE HERO - FAQ
========================= */
.page-hero {
  text-align: center;
  padding: 3.5rem 5% 1.5rem; /* reduced bottom padding */
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 520px;
  margin: 0 auto 1.25rem;
  color: #666;
}

/* subtle divider */
.faq-divider {
  width: 60px;
  height: 1px;
  background: rgba(0,0,0,0.15);
  margin: 0 auto;
}
/* =========================
   PORTFOLIO PREVIEW
========================= */

.portfolio-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.8rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

/* Portfolio Cards */
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image inside card */
.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Title area */
.card h3 {
  padding: 1.4rem 1rem 1.6rem;
  font-size: 1.05rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  background: white;
}

/* Hover effect */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .card img {
    height: 220px;
  }

  .card h3 {
    font-size: 1rem;
  }
}

/* =========================
   CTA BLOCK
========================= */

.cta-block {
  background: #efe9e3;
  text-align: center;
  padding: 5rem 2rem;
}

.cta-block h2 {
  margin-bottom: 1.5rem;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: var(--ivory);
  padding: 4rem 5% 2rem;
  margin-top: 6rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-name {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-social {
  display: flex;
  gap: 1.4rem;
}

.footer-social a {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--text-dark);
  transition: color 0.25s ease;
}

.footer-social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #777;
}
.footer-contact {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact span {
  margin: 0 0.4rem;
}

/* mobile */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
.faq-section {
  max-width: 800px;
  padding: 5rem 5%;
}

.faq-item {
  margin-bottom: 3rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.faq-item p,
.faq-item li {
  color: #555;
  line-height: 1.7;
}

.faq-item ul {
  padding-left: 1.2rem;
  margin: 1rem 0 1.2rem;
}

.faq-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.faq-link:hover {
  text-decoration: underline;
}

/* =========================
   GALLERY
========================= */

.gallery-hero {
  text-align: center;
  padding: calc(5rem + var(--header-height)) 2rem 3rem;
  position: relative;
  z-index: 1;
}

.gallery-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.6rem;
}

.gallery-hero p {
  color: #666;
}

/* sections */

.gallery-section {
  padding: 4.5rem 5% 5.5rem;
}

.gallery-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.gallery-intro h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.gallery-intro .section-sub {
  font-size: 1rem;
  color: #6f6f6f;
}

/* grid */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* =========================
   SECTION DIVIDER (OPTION 3)
========================= */

.section-divider {
  height: 100px;
  position: relative;
}

.section-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

/* =========================
   LIGHTBOX
========================= */

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#lightbox img {
  max-width: 85%;
  max-height: 85%;
}

#close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

#lightbox .nav {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  padding: 1rem;
}

#lightbox .prev { left: 2rem; }
#lightbox .next { right: 2rem; }

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  padding: 6rem 5% 4rem;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

/* page title */
.contact-header {
  margin-bottom: 4rem;
}

.contact-header h1 {
  font-size: 2.8rem;
}

/* sections */
.contact-block {
  margin-bottom: 5rem;
}

.contact-block h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.contact-block p {
  color: #666;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form {
  max-width: 720px;
}

/* two-column row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

/* inputs + textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  margin-bottom: 1.6rem;
}

/* focus */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0,0,0,0.6);
}

/* button */
.contact-form button {
  background: #b9a06b;
  color: #fff;
  border: none;
  padding: 0.85rem 2.2rem;
  font-size: 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.contact-form button:hover {
  background: #a38b5b;
}

/* success message */
.contact-form p {
  font-size: 1rem;
  color: #555;
}
.thank-you-message {
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* =========================
   MOBILE REFINEMENTS
   (Khwaab Events)
========================= */

@media (max-width: 768px) {

  /* ---------- HEADER ---------- */

  .header-inner {
    padding: 0.6rem 1.2rem;
  }

  .site-logo {
    height: 44px;
  }

  .main-nav {
    gap: 1.2rem;
  }

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

  /* Hide header CTA on mobile (keep CTA in hero only) */
  .main-nav .cta {
    display: none;
  }

  /* ---------- HERO ---------- */

  .hero {
    min-height: 82vh;
    background-position: center top;
  }

  .hero-overlay {
    background: rgba(245, 240, 235, 0.55);
  }

  .hero-content {
    padding: 1.5rem 1.2rem;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.6rem;
  }

  /* ---------- HERO BUTTONS ---------- */

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
}

/* =========================
   MOBILE LUXURY DRAWER (FINAL)
========================= */

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 4100;
  position: relative;
  pointer-events: auto;
  touch-action: manipulation;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  margin: 4px 0;
}

/* Drawer layout */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: linear-gradient(to bottom, #f7f3ef, #f3ede7);
  padding: 2.2rem 2rem;
  display: grid;
  grid-template-rows: auto 1fr auto; /* close | nav | CTA */
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 3000;
}

.mobile-drawer.open {
  transform: translateX(0);
}

/* Close button */
.drawer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  justify-self: end;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

/* Drawer nav base */
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Reorder drawer items (mobile only) */
@media (max-width: 768px) {

  /* default order for links */
  .drawer-nav > a {
    order: 1;
  }

  /* push Packages accordion to bottom */
  .drawer-accordion {
    order: 99;
  }

}
/* Primary links */
.drawer-nav > a {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  padding-bottom: 1rem;
}

/* Divider under primary links */
.drawer-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

/* =========================
   PACKAGES ACCORDION
========================= */

/* Remove native disclosure arrow (Safari/iOS) */
.drawer-accordion summary {
  list-style: none;
}

.drawer-accordion summary::-webkit-details-marker {
  display: none;
}

/* Accordion container */
.drawer-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Summary row — MATCHES primary nav links */
.drawer-accordion summary {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;

  padding-bottom: 1rem;
  padding-right: 1.6rem;
}

/* Chevron (aligned like other links) */
.drawer-accordion summary::after {
  content: "⌄";
  position: absolute;
  right: 0;
  top: 0.15rem;
  font-size: 1.1rem;
  opacity: 0.6;
  transition: transform 0.25s ease;
}

.drawer-accordion[open] summary::after {
  transform: rotate(180deg);
}

/* Sub-links container — FORCE vertical stack */
.drawer-accordion[open] {
  padding-bottom: 0.6rem;
}

.drawer-accordion a {
  display: block;                 /* key line */
  font-size: 1rem;
  color: #666;
  text-decoration: none;
  padding-left: 1.2rem;
  line-height: 1.8;
}

.drawer-accordion a:hover {
  color: var(--gold);
}

/* =========================
   CTA (PINNED)
========================= */

.drawer-cta {
  padding-top: 1.6rem;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.drawer-cta a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 999px;
  background: var(--taupe);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* =========================
   MOBILE RULES
========================= */

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* =========================
   GOOGLE REVIEWS SECTION
========================= */

.reviews-section {
  padding: 5rem 5%;
  background: #f7f3ef; /* matches site ivory */
  text-align: center;
}

.reviews-title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

