@charset "UTF-8";
/*
 * The Eternity Rose — self-hosted theme webfonts.
 * OFL-licensed families sourced via Fontsource (see README "Fonts"); the
 * woff2 files are copied from node_modules into
 * src/view/frontend/web/fonts/theme/ by `pnpm run build:fonts`, and the
 * URLs below are relative to the compiled
 * src/view/frontend/web/css/theme.css. Family names match the
 * font-family declarations in the section partials exactly — do not rename.
 */
@font-face {
  font-family: Cinzel;
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/theme/cinzel-wght.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/theme/cormorant-garamond-wght.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/theme/cormorant-garamond-wght-italic.woff2") format("woff2");
}
@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/theme/jost-wght.woff2") format("woff2");
}
@font-face {
  font-family: Jost;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/theme/jost-wght-italic.woff2") format("woff2");
}
/*
 * The Eternity Rose — theme base.
 * Global reset, chrome hooks and shared utilities used by the custom
 * homepage and any other page that opts into the EternityRose theme.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
  font-family: Jost, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.hp-homepage {
  display: block;
}

.hp-section {
  display: block;
  position: relative;
  width: 100%;
}

.hp-homepage img,
.hp-homepage video {
  display: block;
  max-width: 100%;
}

.hp-homepage a {
  color: inherit;
  text-decoration: none;
}

#ter-main-content:focus {
  outline: none;
}

/* ── Skip-to-content link (WCAG 2.4.1) ─────────────────────
   Off-screen until keyboard focus, then slides into the top-left. */
.ter-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 20px;
  background: #14110b;
  color: #e3c27e;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
  transform: translateY(-160%);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.18s ease;
}

.ter-skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  outline: 2px solid #e3c27e;
  outline-offset: 3px;
}

/* ── Watchdog rescue ────────────────────────────────────────
   Applied by the watchdog ONLY to a section whose controller failed to
   initialise. Content visibility beats broken animation. Drawers/scrim
   are re-hidden — without JS they cannot open, and a force-shown drawer
   would cover the page. */
.hp-section.is-rescue,
.hp-section.is-rescue * {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}

.hp-section.is-rescue .ter-drawer--menu,
.hp-section.is-rescue .ter-drawer--menu *,
.hp-section.is-rescue .ter-drawer--contact,
.hp-section.is-rescue .ter-drawer--contact *,
.hp-section.is-rescue .ter-scrim {
  visibility: hidden !important;
  opacity: 0 !important;
}

/*
 * The Eternity Rose — theme header + drawers.
 * Switch: 768px (data-bp="768" on the nearest section). Desktop rules are the
 * base; the mobile header/drawer treatment lives in the max-width block.
 */
:root {
  --er-ink: #111;
  --er-ink-soft: rgba(17, 17, 17, 0.68);
  --er-ink-muted: rgba(17, 17, 17, 0.48);
  --er-paper: #fff;
  --er-tile: #f6f1e7;
  --er-gold: #9f7b3f;
  --er-rule: rgba(17, 17, 17, 0.12);
  --er-rule-strong: rgba(17, 17, 17, 0.264);
  --er-serif: "Cormorant Garamond", georgia, serif;
  --er-sans: jost, "Helvetica Neue", arial, sans-serif;
}

body.is-menu-open, body.is-contact-open {
  overflow: hidden;
}

/* ── Pearl/WeltPixel override: the theme's .page-header * { text-transform: uppercase; }
   rule applies on pages where styles-l.css is loaded. Our homepage layout removes
   styles-l.css, so only interior pages get the uppercase. Force our custom header
   chrome to keep its intended casing, but keep the brand wordmark uppercase. */
.page-header .ter-header,
.page-header .ter-header *,
.page-header .ter-skip-link {
  text-transform: none;
}

.page-header .ter-header .ter-header__brand {
  text-transform: uppercase;
}

.ter-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 2.2vw, 32px) 0 clamp(28px, 4vw, 72px);
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.81), 0 0 15px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px) saturate(160%);
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1), opacity 350ms ease, color 300ms ease, background 500ms ease, border-color 500ms ease;
}
body.has-hero .ter-header {
  position: fixed;
  inset: 0 0 auto;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
body:not(.has-hero) .ter-header {
  background: #fff;
  color: #111;
  text-shadow: none;
  border-bottom-color: rgba(17, 17, 17, 0.12);
}
body:not(.has-hero) .ter-header .ter-menu-trigger__icon,
body:not(.has-hero) .ter-header .ter-contact-trigger,
body:not(.has-hero) .ter-header .ter-bag-link__icon,
body:not(.has-hero) .ter-header .ter-bag-icon {
  filter: none;
}
body:not(.has-hero) .ter-header::before {
  display: none;
}
body.has-hero .ter-header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px) saturate(160%);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: #141414;
  text-shadow: none;
}
body:not(.has-hero) .ter-header.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(160%);
}
.ter-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.ter-header {
  /* On dark sections past the hero, keep the transparent dark-ink treatment. */
}
body.has-hero .ter-header.is-on-dark {
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.81), 0 0 15px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 0, 0, 0.24);
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.ter-header {
  /* On light sections the white header reads badly — flip to dark ink. */
}
body.has-hero .ter-header.is-on-light {
  color: #141414;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
body.has-hero .ter-header.is-on-dark .ter-menu-trigger__icon, body.has-hero .ter-header.is-on-dark .ter-contact-trigger, body.has-hero .ter-header.is-on-dark .ter-bag-link__icon, body.has-hero .ter-header.is-on-dark .ter-bag-icon {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 18px rgba(0, 0, 0, 0.08));
}
body.has-hero .ter-header.is-on-light .ter-menu-trigger__icon, body.has-hero .ter-header.is-on-light .ter-contact-trigger, body.has-hero .ter-header.is-on-light .ter-bag-link__icon, body.has-hero .ter-header.is-on-light .ter-bag-icon {
  filter: none;
}
body.has-hero .ter-header.is-on-dark::before {
  opacity: 1;
}
body.has-hero .ter-header.is-on-light::before {
  opacity: 0;
}
.ter-header::before {
  content: "";
  position: absolute;
  left: -3%;
  top: -10px;
  width: 106%;
  height: 92px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 46%, rgba(255, 255, 255, 0.05) 76%, rgba(255, 255, 255, 0) 100%);
  filter: blur(36px);
  opacity: 0;
  transition: opacity 500ms ease;
}
body.has-hero .ter-header::before {
  opacity: 0;
}
body.has-hero .ter-header.is-scrolled::before {
  opacity: 1;
}
.ter-header {
  /* Header items start hidden, drop in via JS */
}
.ter-header .ter-menu-trigger, .ter-header__brand, .ter-header__right {
  opacity: 0;
  transform: translateY(-30px);
  will-change: transform, opacity;
}
.ter-header .ter-menu-trigger.is-animated, .ter-header__brand.is-animated, .ter-header__right.is-animated {
  animation: header-drop-in 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ter-header .ter-menu-trigger.is-animated {
  animation-delay: 0s;
}
.ter-header__brand.is-animated {
  animation-delay: 0.12s;
}
.ter-header__right.is-animated {
  animation-delay: 0.24s;
}
@keyframes header-drop-in {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.ter-header__brand {
  justify-self: center;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(18px, 1.82vw, 28px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: opacity 200ms ease;
}
.ter-header__brand:hover, .ter-header__brand:focus-visible {
  opacity: 0.75;
}
.ter-header__brand:visited, .ter-header__brand:active {
  color: inherit;
}
.ter-header__brand {
  /* 44px-tall click target around the wordmark */
}
.ter-header__brand::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  height: 44px;
}
.ter-header__right {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 38px;
}
.ter-header__registered {
  position: relative;
  top: calc(-0.78em - 6px);
  left: -1px;
  margin-left: 0.055em;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 0.38em;
  font-weight: 700;
  line-height: 0;
  letter-spacing: 0;
  text-transform: none;
  transform: translateY(-7px);
}

.ter-menu-trigger {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: 500 17px/1 var(--er-sans);
  letter-spacing: 0.02em;
  transition: opacity 200ms ease;
}
.ter-menu-trigger:hover, .ter-menu-trigger:focus-visible {
  opacity: 0.7;
}
.ter-menu-trigger__icon {
  position: relative;
  width: 28px;
  height: 17px;
  display: inline-block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 18px rgba(0, 0, 0, 0.08));
}
.ter-menu-trigger__icon::before, .ter-menu-trigger__icon::after {
  content: "";
  position: absolute;
  height: 2px;
  background: currentcolor;
  border-radius: 999px;
}
.ter-menu-trigger__icon::before {
  top: 3px;
  left: 0;
  width: 28px;
}
.ter-menu-trigger__icon::after {
  bottom: 3px;
  right: 0;
  width: 18px;
}

.ter-contact-trigger {
  display: inline-flex;
  align-items: center;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: 500 17px/1 var(--er-sans);
  letter-spacing: 0.02em;
  transition: opacity 200ms ease;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 18px rgba(0, 0, 0, 0.08));
}
.ter-contact-trigger:hover, .ter-contact-trigger:focus-visible {
  opacity: 0.7;
}

.ter-bag-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 200ms ease;
}
.ter-bag-link:hover, .ter-bag-link:focus-visible {
  opacity: 0.7;
}
.ter-bag-link:visited, .ter-bag-link:active {
  color: inherit;
}
.ter-bag-link__icon,
.ter-bag-link .ter-bag-icon {
  width: 24px;
  height: 24px;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.ter-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 440ms cubic-bezier(0.22, 1, 0.36, 1);
}
body.is-menu-open .ter-scrim, body.is-contact-open .ter-scrim {
  opacity: 1;
  pointer-events: auto;
}

/* A CLOSED drawer is visibility:hidden so its off-screen links leave the
   keyboard tab order; the 680ms visibility delay keeps it on-screen through
   its slide-out. */
.ter-drawer {
  position: fixed;
  inset-block: 0;
  z-index: 70;
  background: var(--er-paper);
  overflow-y: auto;
  overscroll-behavior: contain;
  visibility: hidden;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 680ms;
}
.ter-drawer--menu {
  inset-inline: 0 auto;
  width: min(548px, 100vw - 72px);
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 18px 0 50px rgba(0, 0, 0, 0.12);
  transform: translateX(-102%);
}
body.is-menu-open .ter-drawer--menu {
  transform: translateX(0);
  visibility: visible;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}
.ter-drawer--contact {
  inset-inline: auto 0;
  width: min(440px, 100vw - 72px);
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.12);
  transform: translateX(102%);
}
body.is-contact-open .ter-drawer--contact {
  transform: translateX(0);
  visibility: visible;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}
.ter-drawer__inner {
  min-height: 100%;
  padding: 30px 42px 52px;
  display: flex;
  flex-direction: column;
}
.ter-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}
.ter-drawer__label {
  color: var(--er-ink-soft);
  font-size: 14px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.ter-drawer__close {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 0;
  background: transparent;
  color: var(--er-ink);
  cursor: pointer;
  font: 500 16px/1 var(--er-sans);
  transition: color 200ms ease;
}
.ter-drawer__close:hover {
  color: var(--er-gold);
}
.ter-drawer__close-x {
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}
.ter-drawer__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 14px;
}
.ter-drawer__head-name {
  color: rgba(159, 123, 63, 0.8);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ter-drawer__head-name--large {
  font-size: 11.44px;
}
.ter-drawer__head-rule {
  flex: 1;
  height: 1px;
  background: var(--er-rule);
}
.ter-drawer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ter-drawer__list li {
  border-bottom: 1px solid var(--er-rule);
}
.ter-drawer__list li:last-child {
  border-bottom: 0;
}
.ter-drawer__list a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 4px;
  color: var(--er-ink);
  text-decoration: none;
}
.ter-drawer__list-thumb {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--er-tile);
  transition: transform 440ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ter-drawer__list-thumb svg {
  width: 38px;
  height: 38px;
  display: block;
  fill: none;
  stroke: #2a2118;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ter-drawer__list a:hover .ter-drawer__list-thumb {
  transform: scale(1.06);
}
.ter-drawer__list-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.ter-drawer__list-name {
  color: var(--er-ink);
  font-family: var(--er-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0.005em;
}
.ter-drawer__list-desc {
  margin-top: 3px;
  color: rgba(0, 0, 0, 0.8);
  font-family: var(--er-serif);
  font-size: 17.25px;
  font-style: italic;
  line-height: 1.2;
}
.ter-drawer__list-chev {
  margin-left: auto;
  color: var(--er-ink-muted);
  font-family: var(--er-serif);
  font-size: 23px;
  transition: color 220ms ease, transform 220ms ease;
}
.ter-drawer__list a:hover .ter-drawer__list-chev {
  color: var(--er-gold);
  transform: translateX(4px);
}
.ter-drawer__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 26px auto 20px;
}
.ter-drawer__ornament-dash {
  width: 60px;
  height: 1px;
  background: var(--er-rule-strong);
}
.ter-drawer__ornament-diamond {
  width: 5px;
  height: 5px;
  background: var(--er-gold);
  transform: rotate(45deg);
}
.ter-drawer__secondary {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ter-drawer__secondary a {
  position: relative;
  display: block;
  padding: 10px 0;
  color: var(--er-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--er-rule);
  font-family: var(--er-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.16;
}
.ter-drawer__secondary li:last-child a {
  border-bottom: 0;
}
.ter-drawer__secondary a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 9px;
  width: 0;
  height: 1px;
  background: var(--er-ink);
  transition: width 420ms ease;
}
.ter-drawer__secondary a:hover::after {
  width: 100%;
}
.ter-drawer__note {
  margin: 4px 0 0;
  color: var(--er-ink-muted);
  font-family: var(--er-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
  text-align: center;
}

/* Drawer stagger: one hidden-start utility; per-item delay arrives inline
   via style="--delay: Nms" (the ladder is not linear — see header.phtml). */
.ter-rise {
  opacity: 0;
  transform: translateY(18px);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), opacity 760ms ease;
  transition-delay: var(--delay, 0ms);
}
body.is-menu-open .ter-drawer--menu .ter-rise {
  opacity: 1;
  transform: none;
}
body.is-contact-open .ter-drawer--contact .ter-rise {
  opacity: 1;
  transform: none;
}

/* Give non-homepage content some breathing room below the sticky white
   header. The homepage hero is full-bleed, so leave it untouched. */
body:not(.has-hero) .page-main {
  padding-top: 40px;
}

@supports not (backdrop-filter: blur(12px)) {
  .ter-header {
    background: rgba(0, 0, 0, 0.55);
  }
  body.has-hero .ter-header.is-on-dark {
    background: transparent;
  }
  body.has-hero .ter-header.is-on-light {
    background: rgba(255, 255, 255, 0.95);
  }
  body:not(.has-hero) .ter-header {
    background: #fff;
  }
  body:not(.has-hero) .ter-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ter-drawer--menu, .ter-drawer--contact {
    transition: none;
  }
  .ter-scrim {
    transition: none;
  }
  .ter-rise {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ter-menu-trigger.is-animated, .ter-header__brand.is-animated, .ter-header__right.is-animated {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 768px) {
  .ter-header {
    height: 52px;
    padding: 0 14px;
  }
  .ter-contact-trigger {
    display: none;
  }
  .ter-menu-trigger {
    gap: 10px;
    padding: 12px 10px 12px 4px;
  }
  .ter-menu-trigger__label {
    display: none;
  }
  .ter-menu-trigger__icon {
    width: 24px;
    height: 15px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
  }
  .ter-menu-trigger__icon::before {
    width: 24px;
    top: 2px;
  }
  .ter-menu-trigger__icon::after {
    width: 15px;
    bottom: 2px;
  }
  .ter-header__brand {
    font-size: clamp(11px, 3.1vw, 15px);
  }
  .ter-header__registered {
    display: inline-block;
    position: relative;
    vertical-align: top;
    top: calc(-0.15em + 2px);
    left: 0;
    margin-left: 0.02em;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 0.6em;
    font-weight: 700;
    line-height: 0;
    letter-spacing: 0;
    text-transform: none;
    transform: none;
  }
  .ter-header__right {
    gap: 10px;
  }
  .ter-contact-trigger__icon {
    width: 20px;
    height: 20px;
  }
  .ter-bag-link .ter-bag-icon,
  .ter-bag-link__icon {
    width: 20px;
    height: 20px;
  }
  .ter-drawer--menu {
    width: min(340px, 100vw - 56px);
  }
  .ter-drawer--contact {
    width: min(340px, 100vw - 56px);
  }
  .ter-drawer__inner {
    padding: 24px 28px 40px;
  }
  .ter-drawer__top {
    gap: 16px;
    margin-bottom: 32px;
  }
  .ter-drawer__label {
    color: rgba(0, 0, 0, 0.9);
    font-size: 15.6px;
  }
  .ter-drawer__close {
    gap: 8px;
    font-size: 14px;
    position: relative;
  }
  .ter-drawer__close::after {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    height: 44px;
  }
  .ter-drawer__close-x {
    font-size: 22px;
  }
  .ter-drawer__head {
    gap: 12px;
    margin: 0 0 12px;
  }
  .ter-drawer__head-name {
    color: rgb(96, 72, 34);
    font-size: 12px;
  }
  .ter-drawer__head-rule {
    background: rgba(159, 123, 63, 0.315);
  }
  .ter-drawer__list li {
    border-bottom-color: rgba(159, 123, 63, 0.175);
  }
  .ter-drawer__list a {
    gap: 14px;
    padding: 12px 2px;
  }
  .ter-drawer__list-thumb {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
  .ter-drawer__list-thumb svg {
    width: 30px;
    height: 30px;
  }
  .ter-drawer__list-name {
    font-size: 20px;
    font-weight: 500;
  }
  .ter-drawer__list-desc {
    margin-top: 2px;
    color: rgba(0, 0, 0, 0.9);
    font-size: 15.6px;
  }
  .ter-drawer__list-chev {
    font-size: 20px;
  }
  .ter-drawer__ornament {
    gap: 10px;
    margin: 20px auto 16px;
  }
  .ter-drawer__ornament-dash {
    width: 50px;
    background: rgba(159, 123, 63, 0.315);
  }
  .ter-drawer__ornament-diamond {
    width: 4px;
    height: 4px;
  }
  .ter-drawer__secondary a {
    padding: 9px 0;
    border-bottom-color: rgba(159, 123, 63, 0.175);
    font-size: 19px;
  }
  body:not(.has-hero) .page-main {
    padding-top: 28px;
  }
}
/*
 * The Eternity Rose — theme footer.
 * Switch: 768px (data-bp="768"). The desktop video overlay is the base; the
 * small-viewport treatment (flow layout, <details> nav accordions, compact
 * contact block) lives in the max-width block. One footer markup serves all
 * viewports; footer.js owns playback.
 */
.footer {
  --er-white: #fff;
  --er-soft-white: rgba(255, 255, 255, 0.94);
  --er-rule: rgba(255, 255, 255, 0.72);
  --er-shadow: rgba(0, 0, 0, 0.74);
  position: relative;
  width: 100%;
  /* 16/9 would be 1072px tall at 1905px wide; ~30px of empty black is
     trimmed off the bottom. Top elements are pinned in vw so the trim
     removes only the empty tail. */
  aspect-ratio: 16/8.75;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  background: #000;
  color: var(--er-white);
  /* Footer body type is the site's Jost UI face; the brand title stays
     Cinzel so the footer matches the site's two-font system. */
  font-family: Jost, system-ui, sans-serif;
}

.footer__media,
.footer__placeholder-frame,
.footer__video,
.footer__scrim {
  position: absolute;
  inset: 0;
}

.footer__placeholder,
.footer__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.footer__placeholder-frame {
  z-index: 1;
}

.footer__video {
  z-index: 2;
  opacity: 0;
  transition: opacity 900ms ease;
}

.footer.is-ready .footer__video {
  opacity: 1;
}

/* A subtle dark overlay keeps white text readable over the film. */
.footer__scrim {
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.02) 34%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16));
}

.footer__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 5.29vw 0 42px;
  z-index: 4;
  text-align: center;
  text-shadow: 0 1px 3px var(--er-shadow), 0 0 12px rgba(0, 0, 0, 0.45);
}

.footer__brand-title {
  width: min(760px, 70vw);
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(21.6px, 2.184vw, 33.6px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
}

.footer__rule {
  width: 57.2%;
  height: 1px;
  margin: 2.5vw auto 4vw;
  background: var(--er-rule);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.25);
}

.footer .footer__shop-button {
  /* Exact copy of the hero's "Shop the Collection" CTA (.hero__cta):
     filled darker gold gradient with near-black text. */
  display: block;
  width: fit-content;
  margin: 0 auto 4vw;
  font-family: Jost, sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.92vw, 17px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #14110b;
  background: linear-gradient(180deg, #c2a05c, #9f7b3f);
  padding: 17px 38px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-shadow: none;
  box-shadow: none;
  white-space: nowrap;
  transition: filter 0.25s ease;
}

.footer .footer__shop-button:hover,
.footer .footer__shop-button:focus-visible,
.footer .footer__shop-button:visited,
.footer .footer__shop-button:active {
  color: #14110b;
}

.footer__shop-button:hover,
.footer__shop-button:focus-visible {
  filter: brightness(1.07);
}

.footer__shop-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.footer__grid {
  width: 95.8%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 18.2% 15.7% 18.4% 17.7% 17%;
  column-gap: 3.2%;
  align-items: start;
  text-align: left;
}

.footer__contact,
.footer__nav {
  min-width: 0;
}

.footer__contact {
  transform: none;
}

.footer__logo-wrap {
  position: relative;
  width: clamp(142px, 10.8vw, 208px);
  margin: -0.24vw 0 -0.78vw;
  line-height: 0;
  overflow: visible;
}

.footer__logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55));
}

.footer__address {
  margin: 0 0 1.1vw;
  font-style: normal;
  font-size: clamp(11px, 0.87vw, 17px);
  line-height: 1.22;
  color: var(--er-soft-white);
}

.footer__contact-pill {
  display: table;
  width: auto;
  min-width: 0;
  margin: 0.42vw 0;
  padding: 0;
  background: transparent;
  color: var(--er-white);
  text-decoration: none;
  font-size: clamp(10px, 0.8vw, 15px);
  line-height: 1.2;
}

.footer__contact-pill span {
  display: inline-block;
  width: 1.12em;
  margin-right: 0.28em;
  text-align: center;
  opacity: 0.96;
}

/* Nav groups are <details> elements: static columns here, accordions in the
   max-width block. The summary reads as a plain heading on desktop. */
.footer__nav-heading {
  list-style: none;
  margin: 0 0 2.46vw;
  font-family: Jost, system-ui, sans-serif;
  font-size: clamp(12px, 0.92vw, 18px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.18em;
  color: #c2a05c;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: default;
  pointer-events: none; /* columns stay expanded; accordions are ≤768px only */
}

.footer__nav-heading::-webkit-details-marker {
  display: none;
}

.footer__nav-heading::after {
  content: none;
}

.footer__nav-links a {
  display: block;
  margin: 0 0 1.18vw;
  color: var(--er-soft-white);
  text-decoration: none;
  font-size: clamp(11px, 0.9vw, 17px);
  line-height: 1.18;
  transition: opacity 160ms ease, color 160ms ease;
}

.footer__nav-links a:hover,
.footer__nav-links a:focus-visible {
  color: #cdb97e;
  opacity: 1;
}

.footer__contact-pill:hover,
.footer__contact-pill:focus-visible {
  color: #cdb97e;
  opacity: 1;
}

.footer__copyright {
  margin: auto 0 0;
  color: var(--er-soft-white);
  font-size: clamp(11px, 0.85vw, 16px);
  line-height: 1.2;
}

@media (prefers-reduced-motion: reduce) {
  /* The placeholder frame stays; the film never plays. */
  .footer__video {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer {
    --footer-white: rgb(255 255 255 / 96%);
    --footer-soft: rgb(226 229 235 / 88%);
    --footer-muted: rgb(235 239 245 / 92%);
    --footer-rule: rgb(255 255 255 / 32%);
    aspect-ratio: auto;
    min-height: 634px;
  }
  /* The mobile film is the rotated edit; the scrim takes the mobile shade. */
  .footer__scrim {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.07) 34%, rgba(0, 0, 0, 0.32) 70%, rgba(0, 0, 0, 0.76) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  }
  .footer__content {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    min-height: inherit;
    padding: 34px 20px 14px;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.78), 0 0 16px rgba(0, 0, 0, 0.44);
  }
  .footer__brand-title {
    position: static;
    transform: none;
    width: auto;
    margin: 0;
    font-size: clamp(15px, 4.2vw, 19px);
    line-height: 1.04;
    color: var(--footer-white);
    text-transform: uppercase;
  }
  .footer__rule {
    position: static;
    width: 78%;
    margin: 19px auto 39px;
    background: var(--footer-rule);
    box-shadow: none;
  }
  .footer__shop-button {
    position: static;
    transform: none;
    display: block;
    width: fit-content;
    margin: 0 auto 47px;
    font-size: 11px;
    padding: 11px 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  }
  .footer__shop-button:hover,
  .footer__shop-button:focus-visible {
    filter: brightness(1.07);
    transform: none;
  }
  .footer__shop-button:active {
    transform: none;
  }
  /* Grid becomes the accordion stack; the contact block drops below it. */
  .footer__grid {
    position: static;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    width: 100%;
    margin: 0 auto 6px;
    text-align: left;
  }
  .footer__nav {
    order: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .footer__nav:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .footer__nav-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 65px;
    margin: 0;
    font-size: 13px;
    line-height: 1.2;
    white-space: normal;
    cursor: pointer;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
  }
  .footer__nav-heading::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--footer-white);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-1px);
  }
  .footer__nav[open] .footer__nav-heading::after {
    content: "-";
    transform: translateY(-3px);
  }
  .footer__nav-links {
    display: grid;
    gap: 28px;
    padding: 0 0 28px;
  }
  .footer__nav-links a {
    margin: 0;
    font-family: Jost, system-ui, sans-serif;
    font-weight: 400;
    font-size: 14.25px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: var(--footer-muted);
    opacity: 0.96;
    transition: color 200ms ease;
  }
  .footer__nav-links a:active {
    color: #cdb97e;
  }
  .footer__contact {
    order: 2;
    margin-top: auto;
    transform: none;
    display: grid;
    gap: 6px;
    justify-items: center;
    margin-bottom: 13px;
  }
  /* Sits in the contact grid: the 6px grid gap completes the ~8px space
     below the logo from the source mockup. */
  .footer__logo-wrap {
    width: min(80px, 20vw);
    margin: 36px auto 2px;
  }
  .footer__logo {
    filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.74));
  }
  /* The small-viewport design shows phone + email only, no street address. */
  .footer__address {
    display: none;
  }
  .footer__contact-pill {
    display: block;
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1.25;
    color: var(--footer-soft);
    text-transform: uppercase;
  }
  .footer__contact-pill span {
    display: none;
  }
  .footer__contact-pill[href^="mailto:"] {
    text-transform: lowercase;
    letter-spacing: 0.045em;
  }
  .footer__copyright {
    position: static;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    line-height: 1.3;
    text-align: center;
  }
}
@media (width <= 380px) {
  .footer__nav-heading {
    font-size: 12px;
    letter-spacing: 0.14em;
  }
}
