/* Triumphant Events — Blush Romance
   Blush pink & cream, Cormorant Garamond + Parisienne script accents, soft rounded cards. */

:root {
  --bg: #fdf6f2;
  --bg-alt: #f8e9e6;
  --card: #ffffff;
  --rose: #c17b8a;
  --rose-deep: #a15f70;
  --sage: #9caf88;
  --ink: #4a3b3a;
  --muted: #8a7370;
  --line: #eeddd8;
  --shadow: 0 20px 50px rgba(161,95,112,0.14);
  --radius: 22px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Parisienne", cursive;
  --sans: "Work Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0 0 0.5em; color: var(--ink); }
.script { font-family: var(--script); font-weight: 400; color: var(--rose-deep); }
p { margin: 0 0 1em; color: var(--muted); }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--rose); color: #fff; padding: 10px 16px; z-index: 999; }
.skip-link:focus { left: 12px; top: 12px; }

.section { padding: 100px 0; }
#hero, #about, #services, #gallery, #process, #contact { scroll-margin-top: 84px; }
.eyebrow { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.24em; font-size: 12px; color: var(--rose-deep); margin: 0 0 14px; }
.eyebrow.center, .center { text-align: center; }
h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-lede { max-width: 600px; margin: -8px auto 40px; color: var(--muted); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 15px 32px; font-family: var(--sans); font-size: 13px; letter-spacing: 0.06em; border-radius: 999px; cursor: pointer; transition: background 0.25s ease, color 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease; border: 1px solid transparent; }
.btn--primary { background: var(--rose); color: #fff; }
.btn--primary:hover { background: var(--rose-deep); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(161,95,112,0.35); }
.btn--ghost { background: transparent; color: var(--rose-deep); border-color: var(--rose); }
.btn--ghost:hover { background: rgba(193,123,138,0.08); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(161,95,112,0.16); }
.btn:active { transform: translateY(-1px); }
.btn--small { padding: 11px 22px; font-size: 12px; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 22px 0; transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease; }
.site-header.is-scrolled { background: rgba(253,246,242,0.9); backdrop-filter: blur(8px); padding: 14px 0; box-shadow: 0 4px 24px rgba(161,95,112,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--serif); font-size: 21px; color: var(--ink); display: flex; align-items: baseline; gap: 6px; }
.logo-script { font-family: var(--script); font-size: 26px; color: var(--rose-deep); }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a { font-size: 14px; color: var(--ink); opacity: 0.8; }
.nav-menu a:hover { opacity: 1; color: var(--rose-deep); }
.nav-menu a:not(.nav-cta) { position: relative; }
.nav-menu a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px; background: var(--rose-deep); transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.nav-menu a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { position: relative; overflow: hidden; background: var(--rose); color: #fff !important; padding: 10px 20px; border-radius: 999px; opacity: 1 !important; transition: background 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.nav-cta:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(161,95,112,0.35); }
.nav-cta::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(115deg, transparent, rgba(255,255,255,0.75), transparent); transform: skewX(-20deg); animation: navShimmer 3.4s ease-in-out infinite; }
@keyframes navShimmer { 0% { left: -60%; } 45% { left: 130%; } 100% { left: 130%; } }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 1px; background: var(--ink); display: block; }

/* Hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background-size: cover; background-position: 25% 60%; transform: scale(1.03); animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.03); } to { transform: scale(1.14); } }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(253,246,242,0.96) 0%, rgba(253,246,242,0.86) 32%, rgba(74,59,58,0.28) 100%); }
.hero-content { position: relative; max-width: 620px; padding-top: 110px; padding-bottom: 60px; }
.hero h1 { font-size: clamp(38px, 5.6vw, 60px); line-height: 1.18; }
.hero-lede { font-size: 17px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero-anim { opacity: 0; animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

@media (prefers-reduced-motion: reduce) {
  .hero-media { animation: none; }
  .nav-cta::after { animation: none; display: none; }
  .hero-anim { animation: none; opacity: 1; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* About */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Services */
.services { background: var(--bg-alt); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.service-card { background: var(--card); padding: 36px 30px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(161,95,138,0.22); border-color: var(--rose); }
.service-card h3 { font-size: 24px; }
.service-card .btn { margin-top: 4px; }
.service-card--cta { background: var(--rose); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.service-card--cta h3, .service-card--cta p { color: #fff; }
.service-card--cta .btn--primary { background: #fff; color: var(--rose-deep); margin-top: 10px; align-self: flex-start; }
.service-card--cta .btn--primary:hover { background: var(--bg-alt); }

/* Gallery */
.gallery-grid { column-count: 4; column-gap: 16px; margin-top: 48px; }
.gallery-item { display: block; width: 100%; padding: 0; margin: 0 0 16px; border: 0; background: none; cursor: zoom-in; break-inside: avoid; border-radius: 16px; overflow: hidden; position: relative; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: auto; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(161,95,112,0.35), transparent 45%); opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover::after { opacity: 1; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 52px; }
.process-step { text-align: center; padding: 28px 16px; transition: transform 0.35s ease; }
.process-step:hover { transform: translateY(-4px); }
.process-num { font-family: var(--script); font-size: 34px; color: var(--rose); display: block; margin-bottom: 6px; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.process-step:hover .process-num { transform: scale(1.18) rotate(-4deg); }
.process-step h3 { font-size: 20px; }

/* CTA banner */
.cta-banner { background: linear-gradient(120deg, var(--rose) 0%, var(--rose-deep) 100%); color: #fff; padding: 70px 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 24px; }
.cta-banner .script { color: #fbe9ec; }
.cta-banner .btn--primary { background: #fff; color: var(--rose-deep); }
.cta-banner .btn--primary:hover { background: var(--bg-alt); }

/* Equipment hire */
.price-hero { padding-top: 160px; }
.price-categories { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 52px; }
.price-category { background: var(--card); padding: 32px 30px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.price-category h3 { font-size: 22px; color: var(--rose-deep); }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.price-list li:last-child { border-bottom: 0; }
.item-name { color: var(--ink); font-size: 15px; }
.item-price { color: var(--rose-deep); font-weight: 500; font-size: 15px; white-space: nowrap; }
.price-footnote { margin-top: 32px; text-align: center; }

/* Hire gallery */
#hire-gallery { scroll-margin-top: 84px; }
.hire-gallery { background: var(--bg-alt); }
.hire-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.hire-gallery-item { position: relative; display: block; width: 100%; aspect-ratio: 3/4; padding: 0; margin: 0; border: 0; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; background: var(--card); box-shadow: var(--shadow); transform: translateY(0) scale(1); transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease; }
.hire-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease; }
.hire-gallery-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(74,59,58,0.75) 0%, rgba(74,59,58,0.05) 42%, transparent 65%); opacity: 0.75; transition: opacity 0.45s ease; z-index: 1; }
.hire-gallery-item:hover, .hire-gallery-item:focus-visible { transform: translateY(-6px) scale(1.015); box-shadow: 0 28px 60px rgba(161,95,112,0.28); }
.hire-gallery-item:hover img, .hire-gallery-item:focus-visible img { transform: scale(1.08); }
.hire-gallery-item:hover::before, .hire-gallery-item:focus-visible::before { opacity: 0.9; }
.hire-gallery-caption { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; color: #fff; font-family: var(--serif); font-size: 19px; letter-spacing: 0.01em; transform: translateY(6px); opacity: 0.92; transition: transform 0.45s ease; text-align: left; }
.hire-gallery-item:hover .hire-gallery-caption, .hire-gallery-item:focus-visible .hire-gallery-caption { transform: translateY(0); opacity: 1; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-list { list-style: none; padding: 0; margin: 28px 0; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
.contact-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rose-deep); width: 140px; flex-shrink: 0; }
.contact-list a, .contact-list span:not(.contact-label) { color: var(--ink); font-size: 16px; }
.contact-hours { align-items: flex-start; }
.contact-hours span:not(.contact-label) { line-height: 1.8; }
.placeholder-note { font-size: 11px; color: var(--muted); font-style: italic; opacity: 0.75; }
.social-row { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--muted); background: var(--card); }
.social-link:hover { border-color: var(--rose); color: var(--rose-deep); }

.contact-form { background: var(--card); border: 1px solid var(--line); padding: 40px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 18px; box-shadow: var(--shadow); }
.form-note { font-size: 12px; color: var(--muted); border-left: 2px solid var(--rose); padding-left: 12px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.contact-form input, .contact-form select, .contact-form textarea { font-family: var(--sans); font-size: 16px; background: var(--bg); border: 1px solid var(--line); color: var(--ink); padding: 12px 14px; border-radius: 12px; text-transform: none; letter-spacing: normal; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--rose); }
.contact-form button { align-self: flex-start; margin-top: 6px; }

/* Map */
.map-wrap { margin-top: 64px; }
.map-wrap .eyebrow { margin-bottom: 20px; }
.map-embed { position: relative; width: 100%; aspect-ratio: 21/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer { background: var(--bg-alt); padding: 48px 0 32px; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-tagline { margin: 0; font-family: var(--script); font-size: 17px; color: var(--rose-deep); }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 14px; color: var(--muted); }
.footer-nav a:hover { color: var(--rose-deep); }
.footer-copy { width: 100%; margin-top: 24px; font-size: 12px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 20px; }
.footer-copy a { color: var(--rose-deep); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(74,59,58,0.92); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 40px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: 0; color: #fff; font-size: 32px; cursor: pointer; line-height: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: 0; color: #fff; font-size: 24px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; }
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
body.no-scroll { overflow: hidden; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { column-count: 3; }
  .price-categories { grid-template-columns: 1fr; }
  .hire-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .nav-menu { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px); background: var(--bg); flex-direction: column; align-items: flex-start; padding: 100px 32px 32px; gap: 22px; transform: translateX(100%); transition: transform 0.35s ease; box-shadow: -8px 0 30px rgba(161,95,112,0.12); }
  .nav-menu.is-open { transform: translateX(0); }
  .map-embed { aspect-ratio: 4/3; }
  .nav-toggle { display: flex; }
  .section { padding: 68px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { column-count: 2; }
  .hire-gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-content { padding-top: 130px; padding-bottom: 50px; }
  .price-hero { padding-top: 130px; }
  .hero-scrim { background: linear-gradient(180deg, rgba(253,246,242,0.9) 0%, rgba(253,246,242,0.88) 55%, rgba(74,59,58,0.35) 100%); }
}
