/* ==========================================================================
   May Queen Events — White & Gold Theme
   ========================================================================== */

:root {
  --white: #ffffff;
  --ivory: #fbf8f2;
  --ivory-deep: #f5efe1;
  --gold: #c8a24a;
  --gold-dark: #a8842f;
  --gold-light: #f1e4c2;
  --charcoal: #2c2620;
  --gray: #6b6258;
  --gray-light: #a89f92;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(44, 38, 32, 0.08);
  --shadow-lg: 0 20px 50px rgba(44, 38, 32, 0.14);
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; width: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; color: var(--gray); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: .75em;
}
.eyebrow.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .85em 1.8em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(168, 132, 47, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(168, 132, 47, 0.45); }
.btn-outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-lg { padding: 1em 2.2em; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Announce Bar ---------- */
.announce-bar {
  background: var(--charcoal);
  color: var(--gold-light);
  text-align: center;
  font-size: .78rem;
  letter-spacing: .04em;
  padding: .55em 1em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,162,74,0.2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
}
.logo { display: flex; align-items: center; gap: .6em; }
.logo-mark {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
}
.logo-text em { font-style: italic; color: var(--gold-dark); }

.main-nav { display: flex; align-items: center; gap: 2em; }
.main-nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.main-nav a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: .6em 1.4em; font-size: .85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5em;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  transition: all .25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 20% 20%, var(--ivory-deep) 0%, var(--ivory) 45%, var(--white) 100%);
  padding: 7em 1.5em 6em;
  text-align: center;
  overflow: hidden;
  max-width: 100%;
}
.hero-ornament {
  position: absolute;
  width: 220px; height: 220px;
  opacity: .8;
}
.hero-ornament--left { top: 0; left: 0; }
.hero-ornament--right { bottom: 0; right: 0; }
.hero-content { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--charcoal);
}
.hero h1 span { display: block; color: var(--gold-dark); font-style: italic; }
.hero-sub {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 1.2em auto 2em;
}
.hero-actions {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-size: .9rem;
  color: var(--gray);
}
.hero-rating.center { margin-top: 1em; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Trust Strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ivory-deep);
  border-bottom: 1px solid var(--ivory-deep);
}
.trust-item {
  text-align: center;
  padding: 2em 1em;
  border-right: 1px solid var(--ivory-deep);
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-bottom: .2em;
}
.trust-item span { font-size: .82rem; color: var(--gray); }

/* ---------- Section Head ---------- */
.section-head {
  max-width: 640px;
  margin: 0 auto 3em;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.section-sub { font-size: 1rem; }

section { padding: 6em 1.5em; }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8em;
}
.service-card {
  background: var(--ivory);
  border: 1px solid var(--ivory-deep);
  border-radius: var(--radius-lg);
  padding: 2.4em 2em;
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.service-icon {
  width: 56px; height: 56px;
  margin-bottom: 1.2em;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: .4em; }
.service-card p { font-size: .92rem; margin-bottom: 0; }

/* ---------- Gallery ---------- */
.gallery { background: var(--ivory); }
.gallery-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 1em;
}
.gallery-item {
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, var(--ivory-deep) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  border: 1px dashed var(--gray-light);
  display: flex;
  align-items: flex-end;
  padding: 1em;
}
.gallery-item span {
  font-size: .82rem;
  font-weight: 500;
  color: var(--charcoal);
  background: rgba(255,255,255,0.75);
  padding: .4em .8em;
  border-radius: 999px;
}
.gallery-item.span-2 { grid-column: span 2; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 4em;
  align-items: center;
}
.about-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--charcoal) 0%, #40372c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2em;
  box-shadow: var(--shadow-lg);
}
.about-frame span {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-light);
}
.about-copy h2 { margin-bottom: .6em; }
.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5em 0 2em;
}
.about-list li {
  padding-left: 1.6em;
  position: relative;
  margin-bottom: .6em;
  font-size: .95rem;
  color: var(--charcoal);
}
.about-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ---------- Reviews ---------- */
.reviews { background: var(--ivory); }
.reviews-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8em;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2em 2em;
  margin: 0;
  box-shadow: var(--shadow);
}
.review-card p {
  font-size: .95rem;
  color: var(--charcoal);
  margin: .8em 0 1.2em;
  font-style: italic;
}
.review-card footer { font-size: .85rem; color: var(--gold-dark); font-weight: 600; }
.reviews-cta { text-align: center; margin-top: 2.5em; margin-bottom: 0; }
.reviews-cta a { color: var(--gold-dark); font-weight: 600; font-size: .95rem; }

/* ---------- Booking ---------- */
.booking { background: var(--white); }
.booking-inner { max-width: 780px; margin: 0 auto; }
.booking-form {
  background: var(--ivory);
  border: 1px solid var(--ivory-deep);
  border-radius: var(--radius-lg);
  padding: 2.5em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4em;
}
.form-field { margin-bottom: 1.4em; }
.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .5em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .85em 1em;
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .92rem;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,162,74,0.15);
}
.form-field textarea { resize: vertical; }
.form-note {
  font-size: .78rem;
  text-align: center;
  color: var(--gray-light);
  margin: 1em 0 0;
}

.booking-success {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 3em 2em;
  text-align: center;
}
.success-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1em;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.booking-success h3 { font-size: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--gray-light);
  padding: 4em 1.5em 1.5em;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2em;
  padding-bottom: 3em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { margin: .8em 0 0; color: var(--white); font-family: var(--font-head); font-size: 1.2rem; }
.footer-brand .logo-mark { background: var(--gold); color: var(--charcoal); }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1em;
}
.footer-col p { font-size: .88rem; margin-bottom: .7em; }
.footer-col a:hover { color: var(--gold); }
.muted { color: var(--gray-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5em;
  text-align: center;
  font-size: .8rem;
}

/* ---------- Mobile Call FAB ---------- */
.mobile-call-fab {
  display: none;
  position: fixed;
  bottom: 1.2em;
  right: 1.2em;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  z-index: 90;
}

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5em; }
  .about-frame { max-width: 340px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.span-2 { grid-column: span 2; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6em;
    padding: 2em;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right .3s ease;
  }
  .main-nav.is-open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-cta { order: -1; }

  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--ivory-deep); }

  section { padding: 4em 1.2em; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .mobile-call-fab { display: flex; }
  .hero { padding-top: 5em; }
}

@media (max-width: 460px) {
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.span-2 { grid-column: span 1; }
}
