/* ==========================================================================
   LetsClick Photobooth — Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&family=Geist:wght@300;400;500;600;700&display=swap');

:root {
  /* Color tokens — editorial ivory / charcoal, wine accent used sparingly */
  --ink: #232323;
  --ink-soft: #3a3a3a;
  --paper: #f8f6f2;
  --paper-alt: #f1ece3;
  --card: #ffffff;
  --gold: #a87848;
  --gold-light: #ddbb8e;
  --gold-deep: #8f6a3e;
  --gold-tint: #f3e8d8;
  --muted: #6b6863;
  --muted-soft: #a39d92;
  --border: #e5ded2;
  --border-dark: rgba(248, 246, 242, 0.16);
  --success: #4c7a5c;

  /* On dark surfaces */
  --on-ink: #f8f6f2;
  --on-ink-muted: rgba(248, 246, 242, 0.68);

  /* Typography — Noto Sans display / Geist body, sizes refined down */
  --font-display: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-hero: clamp(2.1rem, 1.6vw + 1.7rem, 3.4rem);
  --fs-h1: clamp(1.75rem, 1vw + 1.45rem, 2.5rem);
  --fs-h2: clamp(1.45rem, 0.7vw + 1.2rem, 1.85rem);
  --fs-h3: clamp(1.15rem, 0.3vw + 1.05rem, 1.35rem);
  --fs-lead: clamp(1rem, 0.2vw + 0.95rem, 1.125rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-label: 0.76rem;

  /* Spacing — tightened for a more compact rhythm */
  --space-section: clamp(1.5rem, 2.5vw, 2.75rem);
  --space-section-sm: clamp(1rem, 1.75vw, 1.5rem);
  --gutter: clamp(1.5rem, 5vw, 3rem);

  --container: 1240px;
  --container-narrow: 820px;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-med: 320ms;
  --dur-slow: 600ms;

  --shadow-soft: 0 1px 2px rgba(35, 35, 35, 0.05);
  --shadow-card: 0 1px 2px rgba(35, 35, 35, 0.04), 0 6px 16px -12px rgba(35, 35, 35, 0.1);
  --shadow-lifted: 0 10px 24px -14px rgba(35, 35, 35, 0.18);
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }

::selection { background: var(--ink); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--space-section); }
.section-sm { padding-block: var(--space-section-sm); }
.section-tight-top { padding-top: 0; }

.section-dark {
  background: var(--ink);
  color: var(--on-ink);
}
.section-dark .muted { color: var(--on-ink-muted); }

.section-alt { background: var(--paper-alt); }

.grid { display: grid; gap: var(--gutter); }
.grid > * { min-width: 0; }

/* Two-column split layout (image + text), stacked on mobile */
.split-grid {
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 860px) {
  .split-grid { grid-template-columns: 1fr 1fr; }
}

.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: block; } }
.hidden-desktop { }
@media (min-width: 768px) { .hidden-desktop { display: none; } }

/* ==========================================================================
   Typography
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.section-dark .eyebrow {
  color: var(--gold-light);
}
.hero .eyebrow, body.has-photo-hero .site-header:not(.is-scrolled) .eyebrow {
  color: var(--gold-light);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

h1, .h1, h2, .h2, h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

h1, .h1 { font-size: var(--fs-hero); font-weight: 600; }
h2, .h2 { font-size: var(--fs-h1); }
h3, .h3 { font-size: var(--fs-h2); }
h4, .h4 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; line-height: 1.35; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
  max-width: 58ch;
}
.section-dark .lead { color: var(--on-ink-muted); }

.muted { color: var(--muted); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.9em 1.9em;
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid var(--btn-bg);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-med) var(--ease), color var(--dur-med) var(--ease),
    border-color var(--dur-med) var(--ease);
}
.btn:active { opacity: 0.85; }

.btn-primary { --btn-bg: var(--ink); --btn-fg: var(--paper); }
.btn-primary:hover { --btn-bg: var(--ink-soft); border-color: var(--ink-soft); }

.btn-gold { --btn-bg: var(--ink); --btn-fg: var(--paper); border-color: var(--gold); }
.btn-gold:hover { --btn-bg: var(--gold); --btn-fg: var(--ink); border-color: var(--gold); }

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); }

.section-dark .btn-outline {
  --btn-fg: var(--on-ink);
  border-color: var(--border-dark);
}
.section-dark .btn-outline:hover { --btn-bg: var(--on-ink); --btn-fg: var(--ink); border-color: var(--on-ink); }

.btn-light { --btn-bg: var(--paper); --btn-fg: var(--ink); border-color: var(--paper); }
.btn-light:hover { --btn-bg: transparent; --btn-fg: var(--on-ink); border-color: var(--on-ink); }

.btn-block { width: 100%; }

.btn-arrow { transition: transform var(--dur-med) var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

/* Default header: opaque, light surface, dark text — correct for every
   page whose top-of-page content is light (all interior pages). */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 1.1rem;
  color: var(--ink);
  transition: padding var(--dur-med) var(--ease), background var(--dur-med) var(--ease),
    box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease),
    color var(--dur-med) var(--ease);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
}
.site-header .brand-name,
.site-header .brand-name em,
.site-header .nav-links a,
.site-header .nav-dropdown-toggle { color: var(--ink); }
.site-header .brand-sub { color: var(--muted); }
.site-header .nav-links a::after { background: var(--gold-deep); }
.site-header .nav-links a.is-active { color: var(--gold-deep); }

.site-header.is-scrolled {
  padding-block: 0.7rem;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px -20px rgba(20, 20, 20, 0.2);
}

/* Photo-hero pages (home): start transparent with light text over the
   image, then match the default light header once scrolled. */
body.has-photo-hero .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.45) 0%, rgba(20, 20, 20, 0) 100%);
  border-bottom-color: transparent;
  color: var(--on-ink);
}
body.has-photo-hero .site-header:not(.is-scrolled) .brand-name,
body.has-photo-hero .site-header:not(.is-scrolled) .brand-name em,
body.has-photo-hero .site-header:not(.is-scrolled) .nav-links a,
body.has-photo-hero .site-header:not(.is-scrolled) .nav-dropdown-toggle { color: var(--on-ink); }
body.has-photo-hero .site-header:not(.is-scrolled) .brand-sub { color: var(--on-ink-muted); }
body.has-photo-hero .site-header:not(.is-scrolled) .nav-links a::after { background: var(--gold-light); }
body.has-photo-hero .site-header:not(.is-scrolled) .nav-links a.is-active { color: var(--gold-light); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-med) var(--ease);
}
.brand-name, .brand-name em { font-style: normal; font-weight: inherit; }
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.nav-links {
  display: none;
  align-items: center;
  gap: clamp(1.4rem, 2vw, 2.4rem);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-block: 0.3rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-deep);
  transition: right var(--dur-med) var(--ease);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { right: 0; }
.nav-links a.is-active { color: var(--gold-deep); }

/* Services dropdown (desktop) */
.nav-item { position: relative; }
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  background: none;
  border: none;
  padding-block: 0.3rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: inherit;
  cursor: pointer;
}
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-deep);
  transition: right var(--dur-med) var(--ease);
}
.nav-item:hover .nav-dropdown-toggle::after,
.nav-item.is-open .nav-dropdown-toggle::after,
.nav-dropdown-toggle.is-active::after { right: 0; }
.nav-dropdown-toggle.is-active { color: var(--gold-deep); }
body.has-photo-hero .site-header:not(.is-scrolled) .nav-dropdown-toggle.is-active { color: var(--gold-light); }
.nav-dropdown-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform var(--dur-fast) var(--ease);
}
.nav-item:hover .nav-dropdown-toggle svg,
.nav-item.is-open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.85rem;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease), visibility 0s linear var(--dur-fast);
  z-index: 120;
}
.nav-dropdown-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 0.5rem;
  transform: translateY(6px);
  transition: transform var(--dur-fast) var(--ease);
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity var(--dur-fast) var(--ease), visibility 0s;
}
.nav-item:hover .nav-dropdown-inner,
.nav-item:focus-within .nav-dropdown-inner,
.nav-item.is-open .nav-dropdown-inner {
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: normal;
  color: var(--ink) !important;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-shadow: none !important;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: var(--paper-alt); color: var(--ink) !important; }
.nav-dropdown hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.4rem 0.3rem;
}

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }

.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  color: var(--on-ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 6.5rem var(--gutter) 3rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility 0s linear var(--dur-med);
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility 0s;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 6vw, 1.85rem);
  padding-block: 0.65rem;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-menu a.btn {
  display: inline-flex;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: none;
  margin-top: 2rem;
  --btn-bg: var(--paper);
  --btn-fg: var(--ink);
  border-color: var(--paper);
}
.mobile-menu a.btn:hover {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  border-color: var(--gold);
}

.mobile-submenu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-dark);
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 6vw, 1.85rem);
  padding-block: 0.65rem;
  cursor: pointer;
}
.mobile-submenu-toggle svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease);
}
.mobile-submenu.is-open .mobile-submenu-toggle svg { transform: rotate(180deg); }
.mobile-submenu-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms var(--ease);
}
.mobile-submenu-panel-inner { overflow: hidden; }
.mobile-submenu.is-open .mobile-submenu-panel { grid-template-rows: 1fr; }
.mobile-submenu-panel a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  padding-block: 0.6rem;
  padding-left: 1rem;
  opacity: 0.82;
}
.mobile-submenu-panel a:last-child { border-bottom: none; }
.mobile-menu-foot {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: var(--fs-small);
  color: var(--on-ink-muted);
}

body.menu-open { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: min(92dvh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--on-ink);
  overflow: hidden;
  padding-top: 7rem;
}
@media (max-width: 640px) {
  .hero { min-height: 78dvh; padding-top: 5.5rem; }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1);
  will-change: transform;
}
@media (max-width: 640px) {
  .hero-media img { object-position: center 22%; }
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(60,60,60,0.42) 0%, rgba(60,60,60,0.28) 30%, rgba(50,50,50,0.48) 65%, rgba(40,40,40,0.78) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(1.75rem, 3.5vw, 3rem);
}

.hero h1 {
  max-width: 18ch;
  color: var(--on-ink);
  text-shadow: 0 2px 4px rgba(20, 20, 20, 0.5), 0 4px 20px rgba(20, 20, 20, 0.35);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: block;
  transform: translateY(110%);
  animation: line-up 900ms var(--ease) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.15s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.28s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.41s; }
@keyframes line-up { to { transform: translateY(0); } }

.hero-lead {
  margin-top: 1.3rem;
  max-width: 46ch;
  font-size: var(--fs-lead);
  color: var(--on-ink);
  text-shadow: 0 1px 3px rgba(20, 20, 20, 0.5), 0 2px 12px rgba(20, 20, 20, 0.4);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 0.7rem;
  color: var(--on-ink-muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media (min-width: 700px) { .scroll-cue { display: flex; } }
.scroll-cue .line { width: 1px; height: 44px; background: linear-gradient(var(--gold-light), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: '';
  position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: linear-gradient(var(--gold-light), transparent);
  animation: cue-fall 2.4s ease-in-out infinite;
}
@keyframes cue-fall { to { top: 100%; } }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */

.page-hero {
  padding-top: clamp(6rem, 9vw, 8rem);
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
  background: var(--paper-alt);
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--gold-deep); margin-bottom: 1.2rem; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-top: 1.2rem; max-width: 56ch; color: var(--muted); }

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: var(--fs-small);
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.breadcrumb a:hover { color: var(--ink); }

/* ==========================================================================
   Cards & components
   ========================================================================== */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.card:hover { box-shadow: var(--shadow-card); border-color: var(--gold-light); }

.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper-alt);
  color: var(--gold-deep);
  margin-bottom: 1.3rem;
}
.icon-tile svg { width: 24px; height: 24px; }

.divider {
  width: 64px;
  height: 1px;
  background: var(--gold-deep);
  margin-block: 1.4rem;
}
.divider-center { margin-inline: auto; }

/* Section head */
.section-head {
  max-width: 42rem;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.8rem; }
.section-head .lead { margin-top: 1rem; }

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   Package cards
   ========================================================================== */

.packages-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.6rem);
  position: relative;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.package-card:hover { box-shadow: var(--shadow-lifted); }

.package-card.is-featured {
  background: var(--ink);
  color: var(--on-ink);
  border-color: var(--ink);
}
.package-card.is-featured .muted { color: var(--on-ink-muted); }
.package-card.is-featured .package-list svg { color: var(--gold-light); }

.package-badge {
  position: absolute;
  top: -14px;
  right: clamp(1.6rem, 3vw, 2.6rem);
  background: var(--gold-deep);
  color: var(--paper);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.45em 1em;
  border-radius: var(--radius-pill);
}

.package-hours {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  margin-top: 0.6rem;
}
.package-hours span { font-size: 1.1rem; font-family: var(--font-body); color: var(--muted); }
.package-card.is-featured .package-hours span { color: var(--on-ink-muted); }

.package-list {
  margin-top: 1.6rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}
.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
}
.package-list svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold-deep);
  margin-top: 0.15em;
}

/* Add-on cards */
.addon-card {
  display: flex;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.addon-card:hover { box-shadow: var(--shadow-card); border-color: var(--gold-light); }
.addon-media {
  flex: 0 0 42%;
  position: relative;
  min-height: 170px;
  overflow: hidden;
}
.addon-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms var(--ease);
}
.addon-card:hover .addon-media img { transform: scale(1.05); }
.addon-body {
  flex: 1;
  min-width: 0;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 520px) {
  .addon-card { flex-direction: column; }
  .addon-media { flex-basis: auto; height: 150px; }
}
.addon-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--paper-alt);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.addon-icon svg { width: 22px; height: 22px; }

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.filter-btn {
  padding: 0.55em 1.2em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.filter-btn:hover { border-color: var(--gold-light); }
.filter-btn.is-active { background: var(--ink); border-color: var(--ink); color: var(--on-ink); }
.gallery-item.is-hidden { display: none; }

.gallery-grid {
  columns: 2;
  gap: 0.6rem;
}
@media (min-width: 640px) { .gallery-grid { columns: 2; gap: 1rem; } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; gap: 1rem; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--ink);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 700ms var(--ease), filter var(--dur-med) var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0) 55%, rgba(20,20,20,0.55) 100%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 0.9rem;
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-zoom-icon {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: scale(1); }
.gallery-zoom-icon svg { width: 16px; height: 16px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 13, 11, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility 0s linear var(--dur-med);
}
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity var(--dur-med) var(--ease); }
.lightbox img {
  max-width: min(90vw, 1100px);
  max-height: 84vh;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lifted);
  transform: scale(0.96);
  transition: transform var(--dur-med) var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border-dark);
  color: var(--on-ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-nav svg, .lightbox-close svg { width: 20px; height: 20px; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
@media (min-width: 768px) { .lightbox-prev { left: 2rem; } .lightbox-next { right: 2rem; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-track-wrap { overflow: hidden; position: relative; }
.testimonial-track {
  display: flex;
  gap: var(--gutter);
  transition: transform 600ms var(--ease);
}
.testimonial-card {
  flex: 0 0 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2.6rem);
}
@media (min-width: 760px) { .testimonial-card { flex-basis: calc(50% - var(--gutter) / 2); } }
@media (min-width: 1080px) { .testimonial-card { flex-basis: calc(33.333% - var(--gutter) * 2 / 3); } }

.stars { display: flex; gap: 0.25rem; color: var(--gold-deep); margin-bottom: 0.8rem; }
.stars svg { width: 14px; height: 14px; }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
@media (min-width: 640px) {
  .stars { margin-bottom: 1.1rem; }
  .stars svg { width: 16px; height: 16px; }
  .testimonial-quote { font-size: 1.15rem; line-height: 1.55; }
}
.section-dark .testimonial-quote { color: var(--on-ink); }

.testimonial-author {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper-alt);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
}
.testimonial-author .name { font-weight: 600; font-size: 0.88rem; }
.testimonial-author .event { font-size: 0.78rem; color: var(--muted); }

.testimonial-controls {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.25rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .testimonial-author { margin-top: 1.4rem; gap: 0.8rem; }
  .testimonial-avatar { width: 42px; height: 42px; font-size: 1rem; }
  .testimonial-author .name { font-size: 0.92rem; }
  .testimonial-author .event { font-size: 0.8rem; }
  .testimonial-controls { margin-top: 2rem; }
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.testimonial-dot.is-active { background: var(--gold-deep); transform: scale(1.3); }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 600;
}
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform var(--dur-med) var(--ease), opacity var(--dur-med) var(--ease);
}
.faq-icon::before { width: 12px; height: 1px; }
.faq-icon::after { width: 1px; height: 12px; }
.faq-item.is-open .faq-icon { background: var(--ink); border-color: var(--ink); }
.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after { background: var(--paper); }
.faq-item.is-open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms var(--ease);
}
.faq-answer-inner { overflow: hidden; }
.faq-answer-content { padding-bottom: 1.6rem; max-width: 62ch; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* ==========================================================================
   Forms
   ========================================================================== */

.form-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.form-grid > * { min-width: 0; }
.field select,
.field input,
.field textarea { min-width: 0; max-width: 100%; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.field .req { color: var(--gold-deep); }

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  min-height: 48px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(176, 141, 79, 0.16);
  outline: none;
}
.field .hint { font-size: 0.78rem; color: var(--muted-soft); }

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chip {
  position: relative;
  display: inline-flex;
}
.chip input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.chip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.55em 1em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.86rem;
  color: var(--muted);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  min-height: 44px;
}
.chip span::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.chip input:checked + span {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold-tint);
}
.chip input:checked + span::before {
  background: var(--gold);
  border-color: var(--gold);
}
.chip input:focus-visible + span {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}
.field .error-msg {
  font-size: 0.78rem;
  color: #a8433a;
  display: none;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #a8433a; }
.field.has-error .error-msg { display: block; }

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: rgba(76, 122, 92, 0.12); color: var(--success); }
.form-status.error { background: rgba(168, 67, 58, 0.1); color: #a8433a; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: var(--on-ink);
  padding-top: clamp(2.25rem, 4vw, 3.25rem);
}
.footer-top {
  display: grid;
  gap: 2rem 0.75rem;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand { grid-column: 1 / -1; }
@media (min-width: 860px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
  .footer-brand { grid-column: auto; }
}
.footer-brand .brand { color: var(--on-ink); }
.footer-brand p { margin-top: 1.2rem; color: var(--on-ink-muted); max-width: 32ch; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a, .footer-col span { color: var(--on-ink-muted); font-size: 0.92rem; overflow-wrap: anywhere; }
@media (max-width: 859px) {
  .footer-col a, .footer-col span { font-size: 0.82rem; }
}
.footer-col a:hover { color: var(--on-ink); }

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.footer-social a:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.6rem;
  font-size: 0.78rem;
  color: var(--on-ink-muted);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  color: var(--on-ink);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.cta-band h2 { max-width: 22ch; margin-inline: auto; }
.cta-band .lead { margin-top: 1rem; max-width: 48ch; margin-inline: auto; color: var(--on-ink-muted); }
.cta-band .hero-actions { justify-content: center; margin-top: 2rem; }
.cta-band .btn-outline { --btn-fg: var(--on-ink); border-color: var(--border-dark); }
.cta-band .btn-outline:hover { --btn-bg: var(--on-ink); --btn-fg: var(--ink); border-color: var(--on-ink); }

/* ==========================================================================
   Event type cards
   ========================================================================== */

.event-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  text-align: left;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.event-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--gold-light);
}
.event-card .icon-tile { background: var(--gold-tint); }
.event-card h4 { font-size: 1.15rem; }
.event-card p { margin-top: 0.5rem; }

/* Services grid — 2 beside, 2 below, image behind each card */
.service-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
}
.service-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (min-width: 641px) {
  .service-card { min-height: 340px; }
}
.service-card-media {
  position: absolute;
  inset: 0;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.05); }
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.25) 0%, rgba(30, 30, 30, 0.15) 30%, rgba(30, 30, 30, 0.55) 60%, rgba(30, 30, 30, 0.94) 100%);
}
.service-card-body {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
  color: var(--on-ink);
  width: 100%;
}
.service-card-body h3 { color: var(--on-ink); font-size: 1.25rem; }
.service-card-body p { margin-top: 0.4rem; color: var(--on-ink-muted); font-size: 0.9rem; }
.service-card-body .btn { margin-top: 1rem; }
.service-card-body .btn-outline {
  --btn-fg: var(--on-ink);
  border-color: var(--border-dark);
}
.service-card-body .btn-outline:hover {
  --btn-bg: var(--on-ink);
  --btn-fg: var(--ink);
  border-color: var(--on-ink);
}

/* Media crop frame — fixes stretched/odd-ratio images */
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
}
@media (max-width: 640px) {
  .media-frame { aspect-ratio: 4 / 3.2; }
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Instagram teaser
   ========================================================================== */

.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
@media (min-width: 640px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .insta-grid { grid-template-columns: repeat(6, 1fr); } }
.insta-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.insta-tile:hover img { transform: scale(1.08); }
.insta-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20,20,20,0);
  transition: background var(--dur-fast) var(--ease);
  display: flex;
}
.insta-tile:hover::after { background: rgba(20,20,20,0.25); }
.insta-tile .insta-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.insta-tile:hover .insta-icon { opacity: 1; }
.insta-tile .insta-icon svg { width: 22px; height: 22px; }

/* ==========================================================================
   Utility number badges / process steps
   ========================================================================== */

.process-step { position: relative; padding-left: 3.6rem; }
.process-step .step-num {
  position: absolute;
  left: 0; top: 0;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* Stat row */
.stat-row {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 3vw, 3rem); color: var(--gold-deep); }
.section-dark .stat .num { color: var(--gold-light); }
.stat .label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }
.section-dark .stat .label { color: var(--on-ink-muted); }

/* ==========================================================================
   Responsive helpers for large screens
   ========================================================================== */

@media (min-width: 1440px) {
  :root { --container: 1320px; }
}

/* Contact page layout */
@media (min-width: 940px) {
  [data-contact-layout] { grid-template-columns: 1.5fr 1fr !important; align-items: start; }
}
