/* ==========================================================================
   Signature Setup: "The Acrylic Atelier"
   Design system ported directly from
   wedding-platform-main/client/src/app/landing/landing.component.scss
   Ivory · Ink · Mirror-Gold. Frosted acrylic surfaces, gold-foil script,
   hairline engraving rules, ghost words and a cinematic hero.
   ========================================================================== */

:root {
  /* ---------- Design tokens (identical to the landing component) ---------- */
  --ink: #1c1913;
  --ink-soft: #4a443a;
  --ivory: #faf7f1;
  --paper: #fffdf8;
  --champagne: #f4eee2;

  --gold: #b08d57;
  --gold-deep: #96723a;
  --gold-light: #e9d5a2;
  --gold-soft: rgba(176, 141, 87, 0.22);
  --gold-faint: rgba(176, 141, 87, 0.12);

  /* Gold for TEXT on light grounds. --gold-deep only reaches 3.8:1 on
     champagne, so it is kept for rules and ornament, never for words. */
  --gold-text: #725526;

  --muted: #736b5d;

  /* The bright foil is for dark grounds only. Its pale stops drop to 1.25:1
     on paper, which is what made the gold headings hard to read. Its two
     darkest stops are lifted so they also clear 4.5:1 against --ink. */
  --foil: linear-gradient(103deg,
      #a37c3b 0%, #c9a35c 20%, #f3e3b8 40%,
      #b9955a 55%, #e8d3a2 75%, #a37c3f 100%);

  /* Same shimmer, every stop at 4.5:1 or better on all three light grounds */
  --foil-ink: linear-gradient(103deg,
      #6b4f24 0%, #86662f 22%, #866630 42%,
      #6f5227 60%, #86662f 80%, #6b4f24 100%);

  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Montserrat', sans-serif;

  --container-width: 1240px;
  --radius-card: 18px;
  --shadow-soft: 0 10px 40px rgba(28, 25, 19, 0.08);
  --shadow-lift: 0 24px 60px rgba(28, 25, 19, 0.13);
  --transition: all 0.35s cubic-bezier(0.25, 0.6, 0.3, 1);

  --fluid-h1: clamp(3.1rem, 6.2vw, 5.4rem);
  --fluid-h2: clamp(2.2rem, 4vw, 3.3rem);
  --fluid-h3: clamp(1.25rem, 2vw, 1.6rem);
  --fluid-body: clamp(0.92rem, 1vw, 1rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-soft);
  background-color: var(--ivory);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; object-fit: cover; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--gold-text); }

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  background: none;
}

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

::selection {
  background: rgba(176, 141, 87, 0.25);
  color: var(--ink);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: var(--fluid-h1); }
h2 { font-size: var(--fluid-h2); margin-bottom: 1rem; }
h3 { font-size: var(--fluid-h3); margin-bottom: 0.8rem; }

p { font-size: var(--fluid-body); }


/* ---------- Layout ---------- */

/* Fine paper grain over everything, barely there, kills the "flat web page" look */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 3000;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.container--narrow { max-width: 900px; }

/* On a phone, width:90% plus 15px padding throws away ~67px of a 375px
   screen. Use the full width and a single sensible gutter instead. */
@media (max-width: 576px) {
  .container { width: 100%; padding: 0 18px; }
}

.section {
  position: relative;
  padding: clamp(70px, 9vw, 120px) 0;
  overflow: hidden; /* keeps ghost words from causing horizontal scroll */
  /* so a deep link from the service menu doesn't land under the fixed nav */
  scroll-margin-top: 88px;
}

.section > .container { position: relative; z-index: 1; }

.section--paper { background-color: var(--paper); }
.section--champagne { background-color: var(--champagne); }
.section--tight { padding: clamp(50px, 6vw, 80px) 0; }


/* ---------- Shared type treatments ---------- */

/* Gold-foil text: a live-shimmer gradient clipped to the glyphs.
   Defaults to the darker foil, since most of these sit on light sections. */
.foil-text, .foil-script {
  background: var(--foil-ink);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-text); /* fallback */
  animation: foilShimmer 7s ease-in-out infinite;
}

/* On the dark hero and footer the bright foil is the readable one */
.hero .foil-script,
.hero .foil-text,
.footer .foil-script,
.footer .foil-text {
  background-image: var(--foil);
  color: var(--gold-light);
}

@keyframes foilShimmer {
  0%, 100% { background-position: 0% center; }
  50%      { background-position: 100% center; }
}

.foil-script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1;
}

.script-inline {
  font-size: 1.25em;
  margin-left: 0.12em;
  vertical-align: -0.08em;
  /* The foil gradient is clipped to the glyphs, so the paint box needs room for
     Great Vibes' long swashes and descenders - without this the tail of the p in
     "in one place" and the g in "& Signage" get sliced off. Padding on an inline
     box extends the paint area without touching the line height. */
  padding-right: 0.2em;
  padding-bottom: 0.18em;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-text);
  margin-bottom: 18px;
}

/* Giant ghost word floating behind each section header */
.ghost-word {
  position: absolute;
  top: clamp(6px, 2vw, 30px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-faint);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

@supports not (-webkit-text-stroke: 1px black) {
  .ghost-word { color: var(--gold-faint); }
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-subtitle {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--muted);
  font-weight: 300;
}

/* Engraved flourish under headings */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  margin-top: 18px;
}

.ornament-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament-line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }


/* ---------- Buttons ---------- */
.btn-primary, .btn-secondary, .btn-gold, .btn-ghost {
  position: relative;
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
}

/* gold light-sweep across the button on hover */
.btn-primary::before, .btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(243, 227, 184, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::before, .btn-gold:hover::before { left: 120%; }

.btn-primary:hover {
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(28, 25, 19, 0.22);
}

.btn-secondary {
  background-color: transparent;
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-secondary:hover {
  background-color: rgba(176, 141, 87, 0.1);
  color: var(--gold-text);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--foil);
  background-size: 200% auto;
  color: #241d10;
  border: none;
  animation: foilShimmer 7s ease-in-out infinite;
}
.btn-gold:hover {
  color: #241d10;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(176, 141, 87, 0.45);
}

/* ghost button for dark photographic backgrounds */
.btn-ghost {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--ivory);
  border: 1px solid rgba(250, 247, 241, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: var(--ivory);
  color: var(--ivory);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  color: var(--gold-text);
  position: relative;
  padding-bottom: 4px;
}

.link-arrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.link-arrow i {
  font-style: normal;
  transition: transform 0.35s ease;
}

a:hover .link-arrow::after, .link-arrow:hover::after { transform: scaleX(1); }
a:hover .link-arrow i, .link-arrow:hover i { transform: translateX(6px); }


/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s ease, padding 0.4s ease,
              border-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar .nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* frosted acrylic once you scroll */
.navbar.scrolled {
  background-color: rgba(250, 247, 241, 0.78);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--gold-soft);
  box-shadow: 0 10px 34px rgba(28, 25, 19, 0.06);
  padding: 10px 0;
}
.navbar.scrolled .logo-img { height: 52px; }

.navbar .logo { display: flex; align-items: center; }

.navbar .logo-img {
  height: 84px;
  width: auto;
  transition: height 0.4s ease, filter 0.4s ease;
}

/* At the top the nav floats over the dark hero photo, go light */
.navbar:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

/* Top-level links only. Must not reach into the dropdown panel, which sits on
   a light frosted card and keeps its own ink colour at every scroll position */
.navbar:not(.scrolled) .nav-links > a:not(.nav-cta),
.navbar:not(.scrolled) .nav-parent-row > a {
  color: var(--ivory);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.navbar:not(.scrolled) .nav-links > a:not(.nav-cta):hover,
.navbar:not(.scrolled) .nav-parent-row > a:hover { color: var(--gold-light); }

.navbar:not(.scrolled) .hamburger span {
  background-color: var(--ivory);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* over the hero photo the CTA reads better as gold */
.navbar:not(.scrolled) .nav-cta {
  background: var(--foil);
  background-size: 200% auto;
  border-color: transparent;
  color: #241d10;
}
.navbar:not(.scrolled) .nav-cta:hover { color: #241d10; }

.navbar .nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: center;
}

.navbar .nav-links a {
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  color: var(--ink);
}

/* The logo carries "home" on desktop; the pane restates it on mobile */
.navbar .nav-home { display: none; }

.navbar .nav-links > a:not(.nav-cta)::after,
.navbar .nav-parent-row > a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--foil-ink);
  bottom: -6px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.navbar .nav-links > a:not(.nav-cta):hover::after,
.navbar .nav-links > a:not(.nav-cta).is-current::after,
.navbar .nav-parent-row > a:hover::after,
.navbar .nav-parent-row > a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar .nav-links a:hover { color: var(--gold-text); }

.navbar .nav-links a.nav-cta {
  padding: 11px 26px;
  font-size: 0.72rem;
  color: var(--ivory);
  background-color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
}
.navbar .nav-links a.nav-cta:hover { color: var(--ivory); }

/* Hamburger */
.navbar .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 24px;
  cursor: pointer;
  background: transparent;
}

.navbar .hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  border-radius: 2px;
  display: block;
}

.navbar .hamburger.open span {
  background-color: var(--ink) !important;
  box-shadow: none !important;
}
.navbar .hamburger.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.navbar .hamburger.open span:nth-child(2) { opacity: 0; }
.navbar .hamburger.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* ---------- Service menu: the editorial dropdown ---------- */
.nav-item { position: relative; }

.nav-parent-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.navbar .nav-links .nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  padding: 0;
  color: inherit;
  opacity: 0.65;
  transition: transform 0.4s cubic-bezier(0.25, 0.6, 0.3, 1), opacity 0.3s ease;
}

.navbar:not(.scrolled) .nav-links .nav-toggle { color: var(--ivory); }

.nav-item:hover .nav-toggle,
.nav-item.open .nav-toggle { opacity: 1; }

.nav-item.open .nav-toggle { transform: rotate(180deg); }

.nav-toggle svg { display: block; }

/* The panel. Its top padding doubles as the hover bridge between the
   nav item and the card, so the cursor never crosses dead space. */
.nav-menu {
  position: absolute;
  top: 100%;
  left: -22px;
  padding-top: 16px;
  min-width: 306px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.38s cubic-bezier(0.2, 0.65, 0.25, 1),
              transform 0.38s cubic-bezier(0.2, 0.65, 0.25, 1),
              visibility 0s linear 0.38s;
}

.nav-item--end .nav-menu { left: auto; right: -22px; }

.nav-item.open .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s;
}

/* Frosted acrylic card with a foil hairline across the top edge */
.nav-menu-inner {
  position: relative;
  padding: 26px 0 10px;
  background-color: rgba(250, 247, 241, 0.94);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.nav-menu-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--foil-ink);
  background-size: 220% auto;
  animation: foilShimmer 7s ease-in-out infinite;
}

.navbar .nav-links .nav-menu-label {
  display: block;
  margin: 0 26px 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-faint);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-text);
  white-space: nowrap;
}

.nav-menu-list { list-style: none; }

.navbar .nav-links .nav-menu-list a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 11px 26px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: none;
  color: var(--ink);
  white-space: nowrap;
  transition: background-color 0.35s ease;
}

.navbar .nav-links .nav-menu-list a .idx {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.78rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  transition: color 0.35s ease;
}

@supports not (-webkit-text-stroke: 1px black) {
  .navbar .nav-links .nav-menu-list a .idx { color: var(--gold-soft); }
}

.navbar .nav-links .nav-menu-list a .lbl {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.navbar .nav-links .nav-menu-list a .lbl::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--foil-ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.navbar .nav-links .nav-menu-list a:hover,
.navbar .nav-links .nav-menu-list a:focus-visible {
  background-color: var(--gold-faint);
  color: var(--gold-text);
}

.navbar .nav-links .nav-menu-list a:hover .lbl,
.navbar .nav-links .nav-menu-list a:focus-visible .lbl { transform: translateX(5px); }

.navbar .nav-links .nav-menu-list a:hover .lbl::after,
.navbar .nav-links .nav-menu-list a:focus-visible .lbl::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar .nav-links .nav-menu-list a:hover .idx,
.navbar .nav-links .nav-menu-list a:focus-visible .idx {
  color: var(--gold);
  -webkit-text-stroke-color: var(--gold);
}

/* Packages sit apart from the occasion list */
.nav-menu-list li.is-divided {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--gold-faint);
}

/* Items drift up into place, staggered */
.nav-menu-list li {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.nav-item.open .nav-menu-list li { opacity: 1; transform: translateY(0); }

.nav-item.open .nav-menu-list li:nth-child(1) { transition-delay: 0.04s; }
.nav-item.open .nav-menu-list li:nth-child(2) { transition-delay: 0.08s; }
.nav-item.open .nav-menu-list li:nth-child(3) { transition-delay: 0.12s; }
.nav-item.open .nav-menu-list li:nth-child(4) { transition-delay: 0.16s; }
.nav-item.open .nav-menu-list li:nth-child(5) { transition-delay: 0.20s; }
.nav-item.open .nav-menu-list li:nth-child(6) { transition-delay: 0.24s; }
.nav-item.open .nav-menu-list li:nth-child(7) { transition-delay: 0.28s; }
.nav-item.open .nav-menu-list li:nth-child(8) { transition-delay: 0.32s; }

/* ---------- Mobile menu: one ivory sheet, one rhythm ----------
   Every row shares a 20px left edge and a >=44px tap height. The chevron is a
   quiet round button rather than a boxed table cell, and the submenu indents
   under its parent instead of restating the category name. */
@media (max-width: 1180px) {
  .navbar .hamburger { display: flex; }

  .navbar .logo-img { height: 64px; }
  .navbar.scrolled .logo-img { height: 46px; }

  .navbar .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* solid ivory, because nested backdrop-filters (navbar + pane) don't compose reliably */
    background-color: var(--ivory);
    border-top: 1px solid var(--gold-faint);
    border-bottom: 1px solid var(--gold-soft);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 0.8, 0.3, 1);
    box-shadow: 0 24px 60px rgba(28, 25, 19, 0.15);
  }

  /* Tall enough for every submenu expanded, and scrollable past that.
     vh first so browsers without svh still get a usable panel. */
  .navbar .nav-links.open {
    max-height: calc(100vh - 104px);
    max-height: calc(100svh - 104px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .navbar .nav-home { display: block; }

  /* Shared row treatment for Home and each service parent */
  .navbar .nav-links > a,
  .navbar .nav-links .nav-parent-row > a {
    display: flex;
    align-items: center;
    min-height: 54px;
    font-family: var(--font-display);
    font-size: 1.06rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.3;
    text-transform: none;
    text-align: left;
    padding: 14px 20px;
    border-bottom: none;
    color: var(--ink) !important;
    text-shadow: none !important;
  }

  .navbar .nav-links > a.nav-home { border-bottom: 1px solid var(--gold-faint); }

  /* The desktop underline sits at bottom:-6px and collides with the row
     dividers, and it only ever marked category rows, never Home. Drop it and
     mark the current page with a gold edge instead - same for every row. */
  .navbar .nav-links > a:not(.nav-cta)::after,
  .navbar .nav-parent-row > a::after { display: none; }

  .navbar .nav-links > a.is-current,
  .navbar .nav-parent-row > a.is-current {
    color: var(--gold-text) !important;
    box-shadow: inset 3px 0 0 var(--gold);
  }

  .navbar .nav-links a:hover,
  .navbar .nav-links a:active {
    background-color: var(--gold-faint);
    color: var(--gold-text) !important;
  }

  /* ---- Tap-to-expand service menu ---- */
  .nav-item { position: static; }

  .nav-parent-row {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid var(--gold-faint);
  }

  .navbar .nav-links .nav-parent-row > a { flex: 1; min-width: 0; }

  .navbar .nav-links .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-right: 10px;
    flex: none;
    border: 0;
    border-radius: 50%;
    background-color: transparent;
    color: var(--gold-text);
    opacity: 1;
    transition: transform 0.35s cubic-bezier(0.2, 0.65, 0.25, 1),
                background-color 0.25s ease;
  }

  .navbar:not(.scrolled) .nav-links .nav-toggle { color: var(--gold-text); }
  .navbar .nav-links .nav-toggle svg { width: 12px; height: 7px; }
  .nav-item.open .nav-toggle { background-color: var(--gold-faint); }

  .nav-menu {
    position: static;
    padding-top: 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 0.8, 0.3, 1);
  }

  .nav-item--end .nav-menu { right: auto; }
  .nav-item.open .nav-menu { max-height: 760px; }

  .nav-menu-inner {
    padding: 6px 0 10px;
    background-color: var(--champagne);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: none;
    border-bottom: 1px solid var(--gold-faint);
    border-radius: 0;
    box-shadow: inset 0 10px 14px -12px rgba(28, 25, 19, 0.22);
  }

  .nav-menu-inner::before { content: none; }

  /* the row above already names the category */
  .navbar .nav-links .nav-menu-label { display: none; }

  .navbar .nav-links .nav-menu-list a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.45;
    padding: 10px 20px 10px 34px;
    text-align: left;
    border-bottom: none;
    white-space: normal;
    color: var(--ink-soft) !important;
  }

  /* the 01/02 numerals are a desktop editorial device; a gold rule reads calmer */
  .navbar .nav-links .nav-menu-list a .idx { display: none; }

  .navbar .nav-links .nav-menu-list a .lbl { position: relative; }

  .navbar .nav-links .nav-menu-list a .lbl::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 0.68em;
    width: 7px;
    height: 1px;
    background-color: var(--gold);
    opacity: 0.6;
  }

  .nav-menu-list li.is-divided {
    margin: 6px 20px 0;
    padding-top: 6px;
    border-top: 1px solid var(--gold-faint);
  }

  /* needs to out-specify .navbar .nav-links .nav-menu-list a, or the 20px
     li margin stacks on top of the 34px padding and the row juts right */
  .navbar .nav-links .nav-menu-list li.is-divided a { padding-left: 14px; padding-right: 20px; }
  .navbar .nav-links .nav-menu-list li:last-child a { padding-bottom: 12px; }

  /* Enquire reads as a button, not a full-bleed slab */
  .navbar .nav-links a.nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin: 18px 20px 22px;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-align: center;
    background: var(--ink) !important;
    color: var(--ivory) !important;
    border-radius: 999px;
    border-bottom: none;
  }

  .navbar .nav-links a.nav-cta::before { display: none; }
  .navbar .nav-links a.nav-cta:hover,
  .navbar .nav-links a.nav-cta:active {
    background: var(--ink) !important;
    color: var(--ivory) !important;
  }

  /* No stagger on a tap-driven accordion */
  .nav-menu-list li { transition-delay: 0s !important; }
}


/* ---------- Hero: cinematic full-bleed ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 150px 0 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--ink);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  height: 124%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 26s ease-in-out infinite alternate;
}

/* warm, cozy candle-light grade over the photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1300px 640px at 50% 108%, rgba(176, 141, 87, 0.34), transparent 62%),
    radial-gradient(900px 500px at 50% -10%, rgba(20, 16, 10, 0.55), transparent 70%),
    linear-gradient(180deg, rgba(20, 16, 10, 0.58) 0%, rgba(20, 16, 10, 0.36) 45%, rgba(20, 16, 10, 0.74) 100%);
}

.hero-inner { position: relative; z-index: 2; }

.hero-content { max-width: 880px; margin: 0 auto; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.68rem;
  font-weight: 500;
  color: #e6d9c2;
  margin-bottom: 34px;
}

.eyebrow-rule {
  flex: none;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d9c39a, transparent);
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.hero-line {
  display: block;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.05;
  color: var(--ivory);
  text-shadow: 0 2px 34px rgba(0, 0, 0, 0.4);
}

.hero-line-script {
  line-height: 0.9;
  margin-top: 0.06em;
  text-shadow: none;
}

.hero-line-script .foil-script {
  font-size: clamp(3.6rem, 8vw, 6.6rem);
  padding: 0 0.35em 0.14em 0.2em; /* room for swashes so they don't clip */
  filter: drop-shadow(0 6px 26px rgba(233, 213, 162, 0.28));
}

.hero-tagline {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 300;
  line-height: 1.95;
  margin: 30px auto 0;
  max-width: 560px;
  color: rgba(250, 247, 241, 0.88);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
}

/* Scroll indicator: engraved hairline with travelling gold bead */
.scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.scroll-line {
  position: relative;
  width: 1px;
  height: 52px;
  background-color: rgba(250, 247, 241, 0.28);
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--foil);
  animation: scrollBead 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.scroll-word {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(250, 247, 241, 0.75);
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}

@keyframes scrollBead {
  0%   { top: -40%; }
  100% { top: 110%; }
}

/* ---------- Page hero: shorter variant for the service pages ---------- */
.hero--page {
  min-height: 74vh;
  min-height: 74svh;
  padding: 190px 0 120px;
}

.hero--page .hero-bg { top: 0; height: 100%; }
.hero--page .hero-bg img { animation-duration: 34s; }

.hero--page .hero-line { font-size: clamp(2.6rem, 5.2vw, 4.4rem); }

.hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.66rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.7);
  margin-top: 34px;
}
.hero-breadcrumb a { color: rgba(250, 247, 241, 0.7); }
.hero-breadcrumb a:hover { color: var(--gold-light); }
.hero-breadcrumb span { color: var(--gold-light); }


/* ---------- Marquee band ---------- */
.marquee {
  position: relative;
  background-color: var(--paper);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding: 20px 0;
  overflow: hidden;
  z-index: 2;
}

/* soft fade at the edges */
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before { left: 0;  background: linear-gradient(90deg, var(--paper), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 46s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
}

.marquee-group span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  white-space: nowrap;
}

.marquee-group i {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--gold);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ---------- Service cards (landing): the three core offerings ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--paper);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  color: inherit;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold);
  color: inherit;
}

.service-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--champagne);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  transition: transform 1.1s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.service-card:hover .service-card-media img { transform: scale(1.06); }

.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 16, 10, 0.42) 100%);
  pointer-events: none;
}

.service-card-num {
  position: absolute;
  top: 14px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250, 247, 241, 0.75);
  pointer-events: none;
}

@supports not (-webkit-text-stroke: 1px black) {
  .service-card-num { color: rgba(250, 247, 241, 0.55); }
}

.service-card-body {
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}

.service-card-body h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.service-card-body p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.4rem;
}

@media (max-width: 992px) {
  .service-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .service-card-media { aspect-ratio: 3 / 2; }
}


/* ---------- Feature cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
}

@media (max-width: 1100px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) {
  .features-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

.feature-card {
  position: relative;
  background-color: var(--ivory);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  padding: 40px 28px 32px;
  overflow: hidden;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold);
}

.feature-card-num {
  position: absolute;
  top: 6px;
  right: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-soft);
  pointer-events: none;
}

@supports not (-webkit-text-stroke: 1px black) {
  .feature-card-num { color: var(--gold-faint); }
}

.feature-card h3 { font-size: 1.4rem; }

.feature-card p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}


/* ---------- Editorial split: alternating image / copy ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.split--reverse .split-media { order: 2; }

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split-media { order: 0; }
}

.split-text h2 { margin-bottom: 1.5rem; }

.split-body {
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 2rem;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius-card);
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow-lift);
  background: var(--champagne);
}

.split-media--tall img { aspect-ratio: 4 / 5; object-fit: cover; }

.check-list { list-style: none; }

.check-list li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--gold-faint);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink-soft);
}

.check-list li:last-child { border-bottom: none; }

.check-list .tick {
  font-size: 0.6rem;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}


/* ---------- Offering list: named pieces, enquiry-priced ---------- */
.offering-group + .offering-group { margin-top: clamp(48px, 6vw, 72px); }

.offering-group-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 14px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--gold-soft);
}

.offering-group-head h3 {
  font-size: 1.7rem;
  margin-bottom: 0;
  white-space: nowrap;
}

.offering-group-head .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.offering-group-head .count {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-text);
  white-space: nowrap;
}

.offering-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(24px, 4vw, 56px);
}

@media (max-width: 768px) { .offering-list { grid-template-columns: 1fr; } }

.offering-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--gold-faint);
}

.offering-list li .name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}

.offering-list li .dots {
  flex: 1;
  height: 1px;
  min-width: 18px;
  border-bottom: 1px dotted var(--gold-soft);
  transform: translateY(-3px);
}

.offering-list li .note {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-text);
  white-space: nowrap;
  font-weight: 500;
}


/* ---------- Gallery grid: image-driven, click to enlarge ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
}

@media (max-width: 992px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--gold-soft);
  background-color: var(--champagne);
  aspect-ratio: 3 / 4;
  cursor: zoom-in;
  padding: 0;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 1.1s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 16, 10, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }

.gallery-item .gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px 16px;
  font-size: 0.64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ivory);
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Wide / tall accents so the grid reads editorial rather than uniform */
.gallery-item--wide { grid-column: span 2; aspect-ratio: 3 / 2; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: 3 / 8; }

@media (max-width: 576px) {
  .gallery-item--wide { grid-column: span 2; aspect-ratio: 3 / 2; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 3 / 4; }
}


/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 6vw;
  background-color: rgba(20, 16, 10, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 241, 0.5);
  color: var(--ivory);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}
.lightbox-close:hover { background-color: rgba(255, 255, 255, 0.16); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 241, 0.4);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}
.lightbox-nav:hover { background-color: rgba(255, 255, 255, 0.16); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-caption {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.75);
}


/* ---------- Package panel: the downloadable PDF collections ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 900px;
  margin: 0 auto;
}

.package-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 34px 34px;
  background-color: var(--paper);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  color: inherit;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold);
  color: inherit;
}

.package-card .card-icon { margin-bottom: 24px; }

.package-card h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }

.package-card p {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.package-meta {
  font-size: 0.72rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1rem;
}

.package-note {
  text-align: center;
  margin-top: 2.6rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
}


/* ---------- Tiered packages (stationery / floral / planning) ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.tier-card {
  display: flex;
  flex-direction: column;
  padding: 34px 28px 30px;
  background-color: var(--paper);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  transition: var(--transition);
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold);
}

.tier-card h3 { font-size: 1.32rem; margin-bottom: 0.35rem; }

.tier-meta {
  font-size: 0.68rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-text);
  margin-bottom: 1.3rem;
}

/* Guest-count pricing reuses the product price-tier list. */
.tier-card .product-tiers { margin-bottom: 1.3rem; flex: none; }

.tier-list {
  list-style: none;
  margin: 0 0 1.5rem;
  flex: 1;
}

.tier-list li {
  position: relative;
  padding: 7px 0 7px 18px;
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--gold-faint);
}

.tier-list li:last-child { border-bottom: 0; }

.tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 1px;
  background-color: var(--gold);
}

.tier-card .product-cta { align-self: flex-start; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 2.5rem; max-width: 520px; margin: 0 auto; }
  .step-connector { display: none; }
}

.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 2rem;
}

@media (max-width: 900px) { .step-connector { width: 30px; } }

.step { text-align: center; padding: 0 1.5rem; }

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 1.2rem;
}

@supports not (-webkit-text-stroke: 1px black) {
  .step-num { color: var(--gold-soft); }
}

.step h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

.step p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
}


/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 460px; margin: 1rem auto 0; }
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-text);
  background:
    radial-gradient(circle at 30% 25%, rgba(243, 227, 184, 0.55), transparent 60%),
    var(--paper);
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 34px 42px;
  background-color: var(--ivory);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  color: inherit;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold);
  color: inherit;
}

.contact-card--info { cursor: default; }
.contact-card--info:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--gold-soft);
}

.contact-card .card-icon { margin-bottom: 24px; }

.contact-card h3 { font-size: 1.5rem; }

.contact-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.4rem;
  flex: 1;
  overflow-wrap: anywhere;
}


/* ---------- Enquiry form ---------- */
.enquiry {
  max-width: 720px;
  margin: 0 auto;
  background-color: var(--paper);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  padding: clamp(30px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 20px; }

.form-group label,
.form-group .form-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-text);
  margin-bottom: 9px;
}

/* The label carries a running count on the right */
.form-group .form-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.form-label .count {
  font-size: 0.66rem;
  letter-spacing: 1.2px;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  background-color: var(--ivory);
  border: 1px solid var(--gold-soft);
  border-radius: 10px;
  transition: var(--transition);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: var(--paper);
  box-shadow: 0 0 0 3px var(--gold-faint);
}

/* ---------- The selection, restated inside the form ----------
   Same structure as the floating panel (group eyebrow, display-font name,
   remove cross) in the light palette of the form card, so it reads as the
   visitor's list rather than as a field waiting to be filled in. */
.enquiry-summary {
  list-style: none;
  margin: 0;
  padding: 4px 16px;
  background-color: var(--ivory);
  border: 1px solid var(--gold-soft);
  border-radius: 10px;
  max-height: 300px;
  overflow-y: auto;
}

.enquiry-summary li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--gold-faint);
}

.enquiry-summary li:last-child { border-bottom: none; }

.enquiry-summary .txt { flex: 1; }

.enquiry-summary .grp {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 2px;
}

.enquiry-summary .nm {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ink);
}

.enquiry-summary .enquiry-remove { color: var(--muted); }

.enquiry-summary .enquiry-remove:hover {
  color: var(--ink);
  background-color: var(--gold-faint);
}

.enquiry-summary .is-empty {
  display: block;
  padding: 14px 2px;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
}

.enquiry .btn-gold { width: 100%; margin-top: 6px; }

.form-status {
  margin-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gold-text);
}


/* ---------- Footer ---------- */
.footer {
  background-color: var(--ink);
  color: var(--ivory);
  padding: 70px 0 26px;
  text-align: center;
}

.footer-monogram {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 34px;
}

.footer-monogram .foil-script {
  font-size: 2.4rem;
  line-height: 1.3;
  padding: 0 0.35em 0.14em 0.2em; /* room for swashes so they don't clip */
}

.footer-monogram-sub {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: rgba(250, 247, 241, 0.6);
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  margin-bottom: 38px;
}

.footer-nav a {
  color: rgba(250, 247, 241, 0.78);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(250, 247, 241, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(250, 247, 241, 0.5);
  letter-spacing: 1px;
}

.footer-bottom a { color: rgba(250, 247, 241, 0.7); }
.footer-bottom a:hover { color: var(--gold); }


/* ---------- Shop: product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.product {
  display: flex;
  flex-direction: column;
  background-color: var(--paper);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold);
}

.product-media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--champagne);
  cursor: zoom-in;
}

.product-media img {
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.product:hover .product-media img { transform: scale(1.06); }

.product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 16px 18px;
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}

.product-price {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 4px;
  flex: 1;
}

.product-cta {
  align-self: flex-start;
  padding: 9px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background-color: transparent;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--transition);
}

.product-cta:hover {
  background-color: rgba(176, 141, 87, 0.12);
  color: var(--gold-text);
}

.product-cta.is-added {
  background-color: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
}

/* Phones: two 146px columns cannot hold a product shot, a name and a price
   table, so the card turns into a full-width row - image left, detail right.
   That is both readable and shorter than the two-column grid it replaces. */
@media (max-width: 576px) {
  .product-grid { grid-template-columns: 1fr; gap: 14px; }

  .product { flex-direction: row; }

  .product-media {
    width: 132px;
    flex: none;
    /* Drop the 4/5 box and let the column stretch to the row height, so a
       card with a long size table gets a tall image instead of a white gap.
       The floor keeps short cards (one or two tiers) from cropping to a sliver. */
    aspect-ratio: auto;
    min-height: 168px;
  }

  /* Taking the image out of flow stops its intrinsic height from setting the
     row height - otherwise a tall portrait shot forces a gap above the button. */
  .product-media img {
    position: absolute;
    inset: 0;
  }

  .product-info { padding: 14px 16px 16px; }
  .product-name { font-size: 1.02rem; }
}

/* Very small handsets (320px class): give the detail column more room. */
@media (max-width: 360px) {
  .product-media { width: 104px; min-height: 150px; }
  .product-info { padding: 12px 13px 14px; }
  .product-tiers dt { letter-spacing: 0.4px; }
}

/* ---------- Shop: price tiers on a product card ---------- */
.product-note {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}

.product-tiers {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  margin: 4px 0 2px;
  flex: 1;
}

/* Size tables (A5-A0) run to six rows: pair them up on roomier cards. */
.product-tiers--split { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 16px; }

@media (max-width: 576px) {
  .product-tiers--split { grid-template-columns: 1fr; }
}

.product-tiers > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(176, 141, 87, 0.16);
  /* Safety net: a label like "Footstand included" cannot shrink past its
     longest word, so on a very narrow card let the price drop to its own
     line rather than overflow (the card clips). */
  flex-wrap: wrap;
}

.product-tiers > div:last-child { border-bottom: 0; }
.product-tiers--split > div:nth-last-child(-n+2) { border-bottom: 0; }

@media (max-width: 576px) {
  .product-tiers--split > div:nth-last-child(2) { border-bottom: 1px solid rgba(176, 141, 87, 0.16); }
  .product-tiers--split > div:last-child { border-bottom: 0; }
}

.product-tiers dt {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--muted);
  /* Long labels ("Footstand included") must wrap rather than push the price
     out of the card - the card clips its overflow. */
  min-width: 0;
}

.product-tiers dd {
  margin: 0 0 0 auto;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: var(--gold-text);
  white-space: nowrap;
}

.product-addon {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 6px 0 0;
}

/* A single flat price keeps the old treatment but must still push the CTA down. */
.product-price--solo { flex: 1; }

/* ---------- Shop: service rows (no product shot) ---------- */
.price-list { border-top: 1px solid var(--gold-soft); }

.price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--gold-faint);
}

.price-row .name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.price-row .spacer {
  flex: 1;
  min-width: 12px;
  height: 1px;
  border-bottom: 1px dotted var(--gold-soft);
  transform: translateY(-3px);
}

.price-row .price {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-text);
  white-space: nowrap;
}

.price-row .product-cta { align-self: auto; flex: none; }

@media (max-width: 576px) {
  .price-row { flex-wrap: wrap; gap: 8px 12px; }
  .price-row .spacer { display: none; }
  .price-row .name { width: 100%; }
}

/* ---------- Shop: enquiry list ---------- */
.enquiry-bar {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px 13px 22px;
  background-color: var(--ink);
  color: var(--ivory);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(28, 25, 19, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.65, 0.25, 1),
              visibility 0s linear 0.4s;
}

.enquiry-bar.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s;
}

.enquiry-bar-count {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.enquiry-bar-count .chev {
  display: inline-block;
  transition: transform 0.35s ease;
  font-size: 0.6rem;
  opacity: 0.7;
}

.enquiry-bar-count[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* The list itself, so a selection built across pages can be reviewed */
.enquiry-panel {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 1500;
  width: min(360px, calc(100vw - 40px));
  max-height: min(58vh, 440px);
  display: flex;
  flex-direction: column;
  background-color: var(--ink);
  color: var(--ivory);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 60px rgba(28, 25, 19, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2, 0.65, 0.25, 1),
              visibility 0s linear 0.35s;
}

.enquiry-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s;
}

.enquiry-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 12px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.14);
}

.enquiry-panel-head p {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
}

.enquiry-panel-clear {
  color: rgba(250, 247, 241, 0.6);
  font-size: 0.66rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--transition);
}

.enquiry-panel-clear:hover { color: var(--ivory); }

.enquiry-panel-list {
  list-style: none;
  overflow-y: auto;
  padding: 4px 20px;
  margin: 0;
  flex: 1;
}

.enquiry-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(250, 247, 241, 0.1);
}

.enquiry-panel-list li:last-child { border-bottom: none; }

.enquiry-panel-list .txt { flex: 1; }

.enquiry-panel-list .grp {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(233, 213, 162, 0.85);
  margin-bottom: 2px;
}

.enquiry-panel-list .nm {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ivory);
}

/* Shared geometry; each list sets its own colours for its ground */
.enquiry-remove {
  flex: none;
  font-size: 0.9rem;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 50%;
  transition: var(--transition);
}

.enquiry-panel-list .enquiry-remove { color: rgba(250, 247, 241, 0.5); }

.enquiry-panel-list .enquiry-remove:hover {
  color: var(--ivory);
  background-color: rgba(250, 247, 241, 0.12);
}

.enquiry-panel-foot {
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(250, 247, 241, 0.14);
}

.enquiry-panel-foot .enquiry-bar-go { display: block; text-align: center; }

@media (max-width: 576px) {
  .enquiry-panel { right: 12px; left: 12px; width: auto; bottom: 76px; }
}

.enquiry-bar-go {
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--foil);
  background-size: 200% auto;
  color: #241d10;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}

.enquiry-bar-go:hover { color: #241d10; transform: translateY(-1px); }

.enquiry-bar-clear {
  color: rgba(250, 247, 241, 0.6);
  font-size: 1rem;
  line-height: 1;
  padding: 4px 6px;
  transition: var(--transition);
}

.enquiry-bar-clear:hover { color: var(--ivory); }

@media (max-width: 576px) {
  /* Full width on a phone. The count holds the left edge and the auto margin
     pushes Enquire and the back-to-top together on the right, rather than
     space-between stranding Enquire on its own in the middle. */
  .enquiry-bar { right: 12px; left: 12px; bottom: 12px; justify-content: flex-start; }
  .enquiry-bar .enquiry-bar-count { margin-right: auto; }
}

/* ---------- Back to top (phones only) ----------
   The enquiry bar is pinned full-width across the bottom on a phone, so this
   steps above it whenever that bar is showing rather than sitting under it. */
.to-top {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1400; /* below the enquiry bar at 1500 */
  display: none; /* desktop never shows it */
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background-color: var(--ivory);
  color: var(--gold-text);
  box-shadow: 0 10px 26px rgba(28, 25, 19, 0.20);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s ease,
              transform 0.35s cubic-bezier(0.2, 0.65, 0.25, 1),
              bottom 0.35s cubic-bezier(0.2, 0.65, 0.25, 1),
              visibility 0s linear 0.35s;
}

@media (max-width: 768px) {
  .to-top { display: flex; }
}

.to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s, 0s;
}

/* Inside the enquiry bar it stops being a floating pill and becomes a
   sibling of Enquire, in the same gold-foil treatment and the same height. */
.to-top--in-bar {
  position: static;
  right: auto;
  bottom: auto;
  z-index: auto;
  width: auto;
  height: auto;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--foil);
  background-size: 200% auto;
  color: #241d10;
  box-shadow: none;
  /* Always on once it is in the bar, scrolled or not: the bar is a fixed set
     of controls, and a slot that appears and vanishes reads as a glitch. The
     scroll threshold still gates the floating version. */
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: var(--transition);
}

.to-top--in-bar:hover { color: #241d10; transform: translateY(-1px); }


.to-top svg { display: block; width: 15px; height: 15px; }

.to-top:active {
  background-color: var(--champagne);
  border-color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .to-top { transition: opacity 0.2s ease, visibility 0s linear 0.2s; }
}


/* ---------- Category index: the way into a shop page ----------
   Replaces the old wrapped row of uppercase links, which read as a wall of
   text on a phone. Two columns on a handset, four on a desktop. */
.category-index { padding: clamp(38px, 5vw, 62px) 0; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

@media (max-width: 640px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.category-card {
  display: flex;
  flex-direction: column;
  background-color: var(--paper);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  color: inherit;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold);
  color: inherit;
}

.category-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--champagne);
}

.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.category-card:hover .category-card-media img { transform: scale(1.06); }

.category-card-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 14px 15px;
  flex: 1;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.28;
  color: var(--ink);
  margin: 0;
  flex: 1;
}

.category-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--gold-text);
}

.category-card-meta i {
  font-style: normal;
  transition: transform 0.35s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.category-card:hover .category-card-meta i { transform: translateX(4px); }

/* Secondary jumps (packages, documents) sit under the grid as plain links */
.category-extra {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: clamp(18px, 2.4vw, 26px);
}

.category-extra a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--gold-soft);
}

.category-extra a:hover { color: var(--gold-text); border-bottom-color: var(--gold); }



/* ---------- Shop: category jump bar ---------- */
.jumpbar {
  background-color: var(--paper);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
  padding: 13px 0;
}

.jumpbar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 30px;
}

.jumpbar a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  padding: 4px 0;
  position: relative;
}

.jumpbar a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--foil-ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.jumpbar a:hover { color: var(--gold-text); }
.jumpbar a:hover::after { transform: scaleX(1); transform-origin: left; }

/* This used to become a horizontal scroller here, with the scrollbar hidden
   on top of it, so on a phone every category past the right edge was both
   invisible and undiscoverable -- there was no affordance left to suggest
   the row moved at all. Wrapping costs a centimetre of height and shows the
   whole shop at a glance, which is the better trade for the main way in. */
@media (max-width: 768px) {
  .jumpbar { padding: 11px 0; }

  .jumpbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px 18px;
  }

  .jumpbar a {
    font-size: 0.64rem;
    letter-spacing: 1.2px;
  }
}

/* ---------- Shop: compact section head ---------- */
.shop-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.shop-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 0; white-space: nowrap; }

.shop-head .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.shop-head .count {
  font-size: 0.72rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-text);
  white-space: nowrap;
}

@media (max-width: 576px) {
  .shop-head { flex-wrap: wrap; gap: 8px 14px; }
  .shop-head h2 { white-space: normal; }
}

/* A short page hero, so the products start higher up */
.hero--compact {
  min-height: 0;
  padding: 170px 0 90px;
}

@media (max-width: 1180px) { .hero--compact { padding: 140px 0 70px; } }

/* ---------- Reveal animations ---------- */
.fade-in-load {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.65, 0.25, 1) forwards;
}

.fade-in-load.delay-1 { animation-delay: 0.12s; }
.fade-in-load.delay-2 { animation-delay: 0.24s; }
.fade-in-load.delay-3 { animation-delay: 0.36s; }
.fade-in-load.delay-4 { animation-delay: 0.48s; }

.fade-el {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.65, 0.25, 1),
              transform 0.9s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.fade-el.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}


/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero { padding: 120px 0 90px; }
  .hero--page { padding: 150px 0 90px; min-height: 62vh; }

  .hero-eyebrow {
    letter-spacing: 3px;
    font-size: 0.62rem;
    margin-bottom: 26px;
  }

  .scroll-indicator { display: none; }
}

@media (max-width: 768px) {
  .marquee-group span { font-size: 1.15rem; }
  .marquee-group { gap: 30px; padding-right: 30px; }
}

@media (max-width: 576px) {
  .hero { padding: 110px 0 70px; }

  .eyebrow-rule { width: 26px; }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 300px;
    margin: 36px auto 0;
  }

  .hero-buttons a { width: 100%; }

  .ghost-word { font-size: clamp(3.4rem, 17vw, 5rem); }

  .footer-monogram .foil-script { font-size: 2rem; }

  .offering-group-head { flex-wrap: wrap; gap: 10px; }
  .offering-group-head h3 { white-space: normal; }
}


/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .fade-in-load, .fade-el {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .foil-text, .foil-script, .btn-gold,
  .hero-bg img, .scroll-line::after {
    animation: none;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .marquee-group { flex-wrap: wrap; justify-content: center; }

  .service-card-media img, .gallery-item img { transition: none; }

  .nav-menu, .nav-menu-list li, .nav-menu-list a .lbl { transition: none; }
  .nav-menu-list li { transition-delay: 0s !important; }
  .nav-menu-inner::before { animation: none; }
}
