/* ═══════════════════════════════════════════════
   Adelaide Piper — style.css
═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --gold:        #C8A96E;
  --gold-light:  #E8D5A3;
  --gold-dark:   #8B6914;
  --dark:        #1A1714;
  --dark-mid:    #2C2620;
  --surface:     #231F1A;
  --surface2:    #1E1B17;
  --text:        #F5F0E8;
  --muted:       #B8A88A;
  --body:        #D4C8B0;
  --nav-h:       68px;
  --radius:      3px;
  --transition:  0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--dark); color: var(--body); font-size: 16px; line-height: 1.75; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--text); line-height: 1.2; }
h1 { font-size: clamp(2.2rem,5vw,3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem,3.5vw,2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); font-weight: 600; }
p  { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem;
}
.divider {
  width: 44px; height: 2px; background: var(--gold); margin: 1.2rem 0;
}
.divider-center { margin: 1.2rem auto; }

/* ── Accessibility ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--gold); color: var(--dark); padding: 0.5rem 1rem;
  font-weight: 700; border-radius: var(--radius); z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ── Buttons ── */
.btn {
  display: inline-block; cursor: pointer; border: none;
  font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.8rem 2rem; border-radius: var(--radius);
  transition: all var(--transition); white-space: nowrap;
}
.btn-gold    { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); color: var(--dark); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid rgba(245,240,232,0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.72rem; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(26,23,20,0.97);
  border-bottom: 1px solid rgba(200,169,110,0.15);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.2rem,4vw,3.5rem);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  color: var(--text); letter-spacing: 0.04em; white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 0.5rem; }
.nav-links a {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta-mobile { display: none; }
.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: all 0.3s; }
/* ── Nav logo home label ── */
.nav-logo-home {
  display: none; /* hidden on desktop — logo itself is the home link */
}

/* On mobile, show "Home" text next to logo */
@media (max-width: 860px) {
  .nav-logo { display: flex; align-items: center; gap: 0.5rem; }
  .nav-logo-home {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200,169,110,0.3);
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
  }
}


/* ══════════════════════════════
   LAYOUT HELPERS
══════════════════════════════ */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 clamp(1.2rem,4vw,3rem); }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 clamp(1.2rem,4vw,3rem); }
main { padding-top: var(--nav-h); }
section { padding: clamp(4rem,8vw,6.5rem) 0; }
.section-alt { background: var(--surface); }
.section-mid { background: var(--surface2); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: var(--nav-h) 1.5rem 0; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/images/hero.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,23,20,0.55) 0%, rgba(26,23,20,0.35) 50%, rgba(26,23,20,0.6) 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 18px 18px;
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 560px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: scroll-bounce 2s ease infinite;
}
.hero-scroll::after { content:''; width:1px; height:36px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scroll-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 1.5rem 3.5rem;
  position: relative; overflow: hidden; text-align: center;
  background: var(--surface);
  border-bottom: 1px solid rgba(200,169,110,0.1);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
}
.page-hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }

/* ══════════════════════════════
   SERVICE CARDS
══════════════════════════════ */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.1); margin-top: 3rem;
}
.card {
  background: var(--dark); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: background var(--transition);
}
.card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.card:hover { background: var(--surface); }
.card:hover::after { transform: scaleX(1); }
.card-icon { font-size: 1.6rem; margin-bottom: 1.2rem; }
.card h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.2rem; }
.card-link {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.card-link::after { content: '→'; transition: transform var(--transition); }
.card-link:hover { color: var(--gold-light); }
.card-link:hover::after { transform: translateX(4px); }

/* ══════════════════════════════
   ABOUT SECTION
══════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 500px; object-fit: cover; object-position: top;
  filter: grayscale(15%);
}
.about-frame {
  position: absolute; top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(200,169,110,0.25); pointer-events: none;
}
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--gold); color: var(--dark); padding: 1rem 1.4rem; text-align: center;
}
.about-badge strong { display: block; font-size: 2rem; font-family: 'Playfair Display', serif; line-height: 1; }
.about-badge span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* ══════════════════════════════
   REVIEW CARDS
══════════════════════════════ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem; margin-top: 2.5rem;
}
.review-card {
  background: var(--surface); border: 1px solid rgba(200,169,110,0.1);
  padding: 1.8rem; position: relative;
}
.review-card::before {
  content: '"'; font-family: 'Playfair Display', serif;
  position: absolute; top: 0.8rem; right: 1.2rem;
  font-size: 5rem; color: rgba(200,169,110,0.08); line-height: 1;
}
.review-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.08em; margin-bottom: 0.8rem; }
.review-text { font-size: 0.92rem; color: var(--muted); font-style: italic; margin-bottom: 1rem; }
.review-author strong { color: var(--text); font-size: 0.88rem; display: block; }
.review-author span { font-size: 0.78rem; color: var(--gold); }
.review-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(200,169,110,0.1); border: 1px solid rgba(200,169,110,0.2);
  color: var(--gold); padding: 0.15rem 0.5rem; border-radius: 2px;
  margin-bottom: 0.6rem;
}

/* ══════════════════════════════
   TIMING / LIST ITEMS
══════════════════════════════ */
.timing-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.2rem; }
.timing-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--surface); border: 1px solid rgba(200,169,110,0.1);
  padding: 0.9rem 1.2rem;
}
.timing-item::before {
  content: '♩'; color: var(--gold); font-size: 0.8rem; flex-shrink: 0;
}

/* Event types */
.event-types-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1px; background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.08); margin-top: 2rem;
}
.event-type-item {
  background: var(--dark); padding: 1.2rem 1.5rem;
  font-size: 0.9rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.8rem;
}
.event-type-item::before { content: '◆'; color: var(--gold); font-size: 0.5rem; flex-shrink: 0; }

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px; margin-top: 2.5rem;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3; background: var(--surface);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(26,23,20,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--text); font-size: 1.6rem;
}
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.9), transparent);
  padding: 1rem 0.8rem 0.5rem;
  font-size: 0.78rem; color: var(--muted);
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,8,6,0.95);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  position: relative; max-width: 1000px; width: 100%;
  transform: scale(0.95); transition: transform 0.25s;
}
.lightbox.open .lightbox-img-wrap { transform: scale(1); }
.lightbox-img-wrap img { width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox-caption {
  text-align: center; color: var(--muted);
  font-size: 0.88rem; padding: 0.8rem 0 0;
}
.lightbox-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--text);
  font-size: 1.8rem; cursor: pointer; line-height: 1;
  z-index: 501;
}
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(200,169,110,0.15); border: 1px solid rgba(200,169,110,0.2);
  color: var(--text); font-size: 1.2rem; cursor: pointer;
  padding: 1rem 0.8rem; z-index: 501;
  transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(200,169,110,0.3); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: start;
}
.contact-method {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 0; border-bottom: 1px solid rgba(200,169,110,0.1);
}
.contact-method:last-child { border-bottom: none; }
.contact-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(200,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.contact-method strong { display: block; color: var(--text); font-size: 0.88rem; margin-bottom: 0.2rem; }
.contact-method span  { font-size: 0.9rem; color: var(--muted); }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.45rem;
}
.form-input {
  width: 100%; background: var(--surface2);
  border: 1px solid rgba(200,169,110,0.18);
  color: var(--text); padding: 0.7rem 0.9rem;
  font-family: 'Lato', sans-serif; font-size: 0.92rem;
  border-radius: var(--radius); outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--muted); opacity: 0.5; }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { cursor: pointer; }
.form-error {
  background: rgba(226,75,74,0.1); border: 1px solid rgba(226,75,74,0.3);
  color: #F09595; padding: 0.75rem 1rem; border-radius: var(--radius);
  font-size: 0.88rem; margin-bottom: 1rem; display: none;
}
.honeypot { position:absolute; left:-9999px; top:-9999px; }

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid rgba(200,169,110,0.12);
  border-bottom: 1px solid rgba(200,169,110,0.12);
  padding: 4rem 1.5rem; text-align: center;
}
.cta-banner h2 { margin-bottom: 0.8rem; }
.cta-banner p { color: var(--muted); margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #0E0C0A;
  border-top: 1px solid rgba(200,169,110,0.12);
  padding: 3.5rem clamp(1.2rem,4vw,3.5rem) 1.5rem;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text); margin-bottom: 0.8rem; }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.5rem; }
.footer-phone { display: block; font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 0.3rem; }
.footer-email { font-size: 0.88rem; color: var(--muted); }
.footer-nav h5, .footer-contact h5 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav a { font-size: 0.88rem; color: var(--muted); }
.footer-nav a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.88rem; color: var(--muted); }
.footer-bottom {
  max-width: 1140px; margin: 0 auto;
  padding-top: 1.5rem; border-top: 1px solid rgba(200,169,110,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: var(--muted);
}

/* ══════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 1.2rem;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(26,23,20,0.99); padding: 2rem;
    border-bottom: 1px solid rgba(200,169,110,0.15);
  }
  .nav-cta-mobile { display: inline-block; }
  .nav-hamburger  { display: flex; }
  .about-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap img { height: 320px; }
  .about-badge { bottom: 1rem; right: 1rem; }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .form-row       { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════
   AUDIO PLAYER
══════════════════════════════ */
.audio-card {
  background: var(--surface);
  border: 1px solid rgba(200,169,110,0.12);
  padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: 1rem;
  transition: border-color var(--transition);
}
.audio-card:hover { border-color: rgba(200,169,110,0.3); }
.audio-card.playing { border-color: var(--gold); }

.audio-play-btn {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--gold); color: var(--dark);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem;
  transition: background var(--transition), transform 0.1s;
}
.audio-play-btn:hover { background: var(--gold-light); transform: scale(1.05); }
.audio-play-btn.playing { background: var(--gold-light); }

.audio-info { flex: 1; min-width: 0; }
.audio-title { font-weight: 700; color: var(--text); font-size: 0.92rem; }
.audio-desc  { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }

audio { display: none; }

/* ── Homepage booking strip ── */
.booking-strip {
  background: var(--gold);
  padding: 1rem clamp(1.2rem,4vw,3.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.booking-strip-text { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.booking-strip-text span { font-weight: 400; opacity: 0.75; margin-left: 0.5rem; }
.booking-strip a {
  background: var(--dark); color: var(--gold);
  padding: 0.65rem 1.6rem; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius);
  white-space: nowrap; transition: background var(--transition);
}
.booking-strip a:hover { background: var(--dark-mid); color: var(--gold); }
