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

:root {
  --gold:       #C9A96E;
  --gold-dark:  #b8955a;
  --gold-light: #F5EFE6;
  --green:      #2D5A3D;
  --neon:       #FFE600;
  --cream:      #F8F6F2;
  --dark:       #1A1A1A;
  --muted:      #7a6f65;
  --white:      #ffffff;
}

/* ── SKIP NAV ── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-nav:focus { top: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6%;
  background: rgba(248, 246, 242, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-logo span { color: var(--gold); }

nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
}

nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  transition: background 0.25s, transform 0.2s;
}

.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--dark);
  font-size: 1.6rem;
  line-height: 1;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 6% 4rem;
  gap: 3rem;
}

.hero-text { max-width: 560px; }

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.hero-text h1 em { color: var(--gold); font-style: italic; }

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2.2rem;
  max-width: 440px;
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.4);
}

.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 169, 110, 0.5); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.82rem 1.9rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* HERO PHOTO */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: min(480px, 100%);
}

.hero-photo {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 64px rgba(26, 26, 26, 0.18);
  display: block;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.12);
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: float 3.5s ease-in-out infinite;
}

.card-top    { top: 10%; right: -6%; animation-delay: 0s; }
.card-bottom { bottom: 12%; left: -6%; animation-delay: 1.5s; }

.card-icon { font-size: 1.4rem; }

.card-label {
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 600;
  display: block;
}

.card-price {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── SECTION SHARED ── */
section { padding: 6rem 6%; }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

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

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
}

.section-header { margin-bottom: 3.5rem; }

.section-header--center {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.section-header--center .section-sub { margin: 0 auto; }

/* ── SERVICES ── */
#services { background: var(--white); }

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

.service-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--green));
  border-radius: 4px 0 0 4px;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(201, 169, 110, 0.2); }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  line-height: 1.55;
  flex: 1;
}

.price-list { list-style: none; margin-bottom: 1.4rem; }

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(201, 169, 110, 0.2);
  font-size: 0.9rem;
}

.price-item:last-child { border-bottom: none; }
.price-item span:first-child { color: var(--dark); font-weight: 400; }

.price-amount {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
  text-align: right;
}

.service-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding-top: 1rem;
  margin-top: auto;
  transition: color 0.2s;
}

.service-cta:hover { color: var(--gold-dark); }

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.about-visual { position: relative; }

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.about-photo {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.12);
  display: block;
}

.about-photo--main {
  aspect-ratio: 3/4;
  margin-top: 2rem;
}

.about-photo--sub {
  aspect-ratio: 3/4;
}

.about-neon-badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--neon);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(255, 230, 0, 0.3);
}

.feature-list { list-style: none; margin-top: 1.8rem; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.feature-check {
  width: 26px; height: 26px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--green);
  font-weight: 700;
}

.feature-text strong { display: block; font-weight: 600; color: var(--dark); margin-bottom: 0.15rem; }
.feature-text span { font-size: 0.88rem; color: var(--muted); }

.about-cta { margin-top: 2rem; }

/* ── RESULTS ── */
#results { background: var(--dark); color: var(--white); }

#results .section-label { color: var(--gold); }
#results .section-title { color: var(--white); }
#results .section-sub { color: rgba(255,255,255,0.6); }

.results-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.results-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.results-cta-block { display: flex; flex-direction: column; gap: 2rem; }

.results-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--gold-light); }

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

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s;
}

.testimonial-card:hover { transform: translateY(-4px); }

.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--gold-light);
}

.author-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.author-role { font-size: 0.78rem; color: var(--muted); }

/* ── CONTACT ── */
#contact { background: var(--white); }

.contact-center {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-center .section-sub { margin: 0 auto 2rem; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: left;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .contact-cards { grid-template-columns: 1fr; }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-icon {
  width: 46px; height: 46px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail strong { display: block; font-weight: 600; color: var(--dark); margin-bottom: 0.2rem; }
.contact-detail span { font-size: 0.9rem; color: var(--muted); }
.contact-detail a { color: var(--gold); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.contact-intro { margin-bottom: 1.5rem; }

.map-wrap {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.08);
}

/* FORM */
.form-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.8rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(201, 169, 110, 0.25);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #c5b9ac; }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.4);
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 169, 110, 0.5); }

.label-optional {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

/* ── BOOKING SUCCESS ── */
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
  gap: 0.8rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.booking-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--dark);
}

.booking-success p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.6;
}

.booking-success p strong { color: var(--dark); }

.success-details {
  width: 100%;
  background: var(--cream);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin: 0.5rem 0;
}

.success-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(201,169,110,0.2);
  font-size: 0.88rem;
}

.success-row:last-child { border-bottom: none; }
.success-row span { color: var(--muted); }
.success-row strong { color: var(--dark); text-align: right; max-width: 60%; }

/* Field hint (e.g. error under date input) */
.field-hint {
  display: block;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  min-height: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 6% 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-brand-name span { color: var(--gold); }

.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 280px; }

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--neon);
  font-style: italic;
  opacity: 0.85;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links { display: flex; gap: 1rem; }

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.25s;
}

.social-link:hover { background: rgba(201, 169, 110, 0.4); }

.footer-credit {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero, #about, .contact-layout, .results-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .about-photos { max-width: 420px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-toggle { display: block; }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(248, 246, 242, 0.98);
    padding: 1rem 6%;
    gap: 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  }

  nav ul.nav-open { display: flex; }

  nav ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  }

  nav ul li:last-child { border-bottom: none; }

  section { padding: 4rem 5%; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .card-top, .card-bottom { display: none; }
}

/* ── BOOKING MODAL ── */
.bmodal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bmodal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.bmodal-box {
  background: var(--white);
  border-radius: 28px;
  padding: 2.5rem;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(32px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(26, 26, 26, 0.25);
}

.bmodal-overlay.is-open .bmodal-box {
  transform: translateY(0) scale(1);
}

.bmodal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gold-light);
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.bmodal-close:hover { background: var(--gold); color: var(--white); }

.bmodal-header { margin-bottom: 1.8rem; }

.bmodal-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}

.bmodal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.2;
  color: var(--dark);
}

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

@media (max-width: 600px) {
  .bmodal-box { padding: 2rem 1.4rem; border-radius: 20px; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }
