/* ===== VARIABLES ===== */
:root {
  --gold: #c4a35a;
  --gold-light: #dfc07a;
  --gold-dark: #a8873c;
  --dark: #2d2218;
  --dark-mid: #3e3025;
  --cream: #faf7f2;
  --cream-mid: #f0ead8;
  --white: #ffffff;
  --text: #3e3025;
  --text-light: #7a6a55;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
  --nav-h: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 40px rgba(45, 34, 24, 0.12);
  --shadow-lg: 0 20px 60px rgba(45, 34, 24, 0.18);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #ffffff;
  color: #2d2218;
}img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.body-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.ornament {
  color: var(--gold);
  letter-spacing: 0.5em;
  font-size: 0.7rem;
  margin: 0.75rem 0 1.5rem;
}
.ornament.gold { color: var(--gold); }

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header.light .section-title { color: var(--cream); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--dark); }
.mt { margin-top: 2rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,163,90,0.4); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: rgba(71, 45, 22, 0.9);;
  margin-left: 1rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn.full { width: 100%; text-align: center; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(45,34,24,0.1);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
/* ===== NAV LOGO FIX (FINAL) ===== */

.nav-logo {
  display: flex;
  align-items: center;

}
#navbar {
  will-change: transform;
}
.nav-logo-img {
  height: 75px;          /* crisp + premium size */
  width: auto;
  display: block;

  /* NO filters = no blur */
  filter: none !important;

  /* ensures clean rendering */
  image-rendering: auto;

  /* subtle polish */
  opacity: 0.95;
  transition: opacity 0.25s ease;
}

.nav-logo-img:hover {
  opacity: 1;
}#navbar.scrolled .nav-logo img { filter: none; }
.logo-text-fallback {
  display: none;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
}
#navbar.scrolled .logo-text-fallback { color: var(--dark); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(71, 45, 22, 0.9);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
#navbar.scrolled .nav-links a { color: var(--dark); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
#navbar.scrolled .nav-toggle span { background: var(--dark); }

/* ===== HERO ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;   /* clean white */
}

.hero::before,
.hero-overlay {
  display: none;   /* remove patterns + gradients */
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-title {
  white-space: nowrap;
  font-size: clamp(2.5rem, 6vw, 6rem); /* responsive scaling */
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.divider-line { flex: 1; max-width: 80px; height: 1px; background: var(--gold); opacity: 0.6; }
.divider-icon { color: var(--gold); font-size: 0.8rem; }
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}
.hero-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(196,163,90,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--dark);
  padding: 2.5rem 2rem;
}
.intro-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.intro-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.intro-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.intro-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.intro-sep { width: 1px; height: 50px; background: rgba(196,163,90,0.25); flex-shrink: 0; margin: 0 1rem; }

/* ===== ABOUT ===== */
.about-image-wrap { position: relative; }
.img-placeholder {
  background: linear-gradient(135deg, var(--cream-mid) 0%, #e0d5c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--text-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px dashed var(--gold);
  border-opacity: 0.3;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 4/3;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}
.about-img-accent.small { font-size: 0.7rem; }
.accent-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--dark);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  box-shadow: var(--shadow);
}
.accent-badge span { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }
.accent-badge strong { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; }
.highlight-list { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.5rem 0; }
.highlight-list li { font-size: 0.9rem; color: var(--text); display: flex; align-items: center; gap: 0.6rem; }
.check { color: var(--gold); font-weight: 700; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(45,34,24,0.07);
  text-align: center;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.75; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto; /* 👈 removes cropping */
  display: block;
  object-fit: contain;
  background: #fff;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item:hover {
  transform: scale(0.98);
  opacity: 0.9;
}
.slider {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.slides {
  position: relative;
  height: 500px;
}

/* 🔴 IMPORTANT: stack images correctly */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* nav */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 10; /* 🔴 ensures click works */
}

.prev { left: 10px; }
.next { right: 10px; }

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 6px;
}

.prev { left: 10px; }
.next { right: 10px; }
/* ===== EVENTS ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.event-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,163,90,0.2);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
}
.event-card:hover {
  background: rgba(196,163,90,0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.event-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.event-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.event-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(45,34,24,0.07);
  transition: var(--transition);
  position: relative;
}
.testimonial-card.featured {
  background: var(--dark);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card.featured p { color: rgba(255,255,255,0.75); }
.testimonial-card.featured .testimonial-author strong { color: var(--white); }
.testimonial-card.featured .testimonial-author span { color: rgba(255,255,255,0.5); }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.15em; margin-bottom: 1.25rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--dark); margin-bottom: 0.15rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-light); }

/* ===== CONTACT ===== */
.contact-wrap { align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item strong { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.contact-item span, .contact-item a { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.contact-item a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5ddd0;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 0.75rem; }

/* ===== MAP ===== */
.map-wrap { width: 100%; line-height: 0; }
.map-wrap iframe { display: block; filter: sepia(0.3) contrast(0.95); }

/* ===== FOOTER ===== */
.footer { background: var(--dark-mid); color: rgba(255,255,255,0.65); padding-top: 5rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers logo horizontally */
  text-align: center;    /* centers text below */
}.footer-logo { height: 65px; width: auto; margin-bottom: 0.5rem; filter: brightness(0) invert(1) opacity(0.85); }
.footer-logo-text { display: none; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--white); letter-spacing: 0.1em; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 260px; }
.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links ul, .footer-events ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links li a, .footer-events li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(196,163,90,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-bottom {
  border-top: 1px solid rgba(196,163,90,0.15);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== FORM SUCCESS ===== */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success h3 { font-family: var(--font-serif); font-size: 2rem; color: var(--dark); margin-bottom: 0.75rem; }
.form-success p { color: var(--text-light); }
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 2rem; gap: 1.5rem; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--dark) !important; font-size: 0.9rem; }
  .nav-toggle { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { right: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .services-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .intro-grid { flex-wrap: wrap; gap: 1.5rem; }
  .intro-sep { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .btn-outline { margin-left: 0; }
  .hero-actions { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .section { padding: 4rem 0; }
}
