/* ==========================================================================
   Components
   ========================================================================== */

/* --------------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------------- */

.topbar {
  position: relative;
  z-index: var(--z-raised);
  background: var(--obsidian);
  border-bottom: 1px solid var(--white-a06);
  font-size: .8rem;
  color: var(--muted-on-dark);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: 42px;
  padding-block: var(--sp-2);
}

.topbar__facts {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.topbar__fact {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  white-space: nowrap;
}

.topbar__fact svg {
  width: 14px;
  height: 14px;
  flex: none;
  color: var(--gold);
}

a.topbar__fact { transition: color var(--t-micro) var(--ease-out); }
a.topbar__fact:hover { color: var(--gold-lit); }

.topbar__social {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.topbar__social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  color: var(--muted-on-dark);
  transition: color var(--t-micro) var(--ease-out),
              background-color var(--t-micro) var(--ease-out);
}

.topbar__social a:hover {
  color: var(--gold);
  background: var(--gold-a08);
}

.topbar__social svg { width: 16px; height: 16px; }

@media (max-width: 860px) {
  .topbar__fact--hide-sm { display: none; }
  .topbar__social a { width: 44px; height: 44px; }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid transparent;
  transition: background-color var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}

.header.is-stuck {
  background: var(--glass-darker);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-bottom-color: var(--white-a06);
  box-shadow: var(--shadow-1), var(--inner-lift);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: 74px;
}

/* Logo slot: image only. No brand text is typed into the markup - the alt
   and aria-label are injected from assets/js/site-config.js. */
.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  border-radius: var(--r-sm);
  transition: opacity var(--t-micro) var(--ease-out);
}

.brand:hover { opacity: .82; }

.brand img {
  width: auto;
  height: 42px;
}

@media (max-width: 480px) {
  .brand img { height: 34px; }
}

/* ---- scroll progress hairline ---- */

.header__progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 100%;
  transform: scaleX(var(--progress, 0));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-lit));
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}

.header.is-stuck .header__progress { opacity: 1; }

/* --------------------------------------------------------------------------
   Desktop navigation
   -------------------------------------------------------------------------- */

.nav { display: none; }

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
  }
}

.nav__item { position: relative; }

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: 44px;
  padding: 0 var(--sp-4);
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted-on-dark);
  border-radius: var(--r-sm);
  transition: color var(--t-micro) var(--ease-out);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: var(--sp-4);
  right: var(--sp-4);
  bottom: 18px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--t-base) var(--ease-out);
}

.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--text-on-dark); }

.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__link[aria-current="page"] { color: var(--gold); }

.nav__caret {
  width: 11px;
  height: 11px;
  transition: transform var(--t-base) var(--ease-out);
}

.nav__item.is-open .nav__caret { transform: rotate(180deg); }

/* ---- mega dropdown ---- */

.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: var(--z-dropdown);
  width: min(620px, 78vw);
  padding: var(--sp-5);
  background: var(--glass-darker);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--white-a10);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3), var(--inner-lift);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10px);
  transition: opacity var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out),
              visibility var(--t-base);
}

.nav__item.is-open .mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}

.mega__link {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  transition: background-color var(--t-micro) var(--ease-out),
              border-color var(--t-micro) var(--ease-out);
}

.mega__link:hover {
  background: var(--white-a06);
  border-color: var(--gold-a24);
}

.mega__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-a24);
  border-radius: var(--r-md);
  color: var(--gold);
  background: var(--gold-a08);
}

.mega__icon svg { width: 18px; height: 18px; }

.mega__title {
  display: block;
  font-family: var(--font-ui);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0;
}

.mega__desc {
  display: block;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--faint-on-dark);
  margin-top: 2px;
}

.mega__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--white-a06);
  font-size: .82rem;
  color: var(--faint-on-dark);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  min-height: 48px;
  padding: 0 var(--sp-6);
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: center;
  border-radius: var(--r-pill);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-micro) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              background-color var(--t-micro) var(--ease-out),
              border-color var(--t-micro) var(--ease-out),
              color var(--t-micro) var(--ease-out);
}

.btn svg { width: 17px; height: 17px; flex: none; }

/* Gold sheen sweep on hover - masked pseudo-element, transform only. */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 32%,
              rgba(255, 255, 255, .34) 50%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 620ms var(--ease-out);
}

.btn:hover::before { transform: translateX(120%); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-lit), var(--gold) 46%, var(--gold-deep));
  color: #1A1408;
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .3),
              0 16px 40px -10px rgba(201, 164, 76, .46),
              0 34px 70px -34px rgba(201, 164, 76, .4);
}

.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  border: 1px solid var(--white-a16);
  color: var(--text-on-dark);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-lit);
  background: var(--gold-a08);
}

.section--light .btn--ghost {
  border-color: rgba(20, 24, 31, .18);
  color: var(--text-on-light);
}

.section--light .btn--ghost:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  background: rgba(201, 164, 76, .1);
}

.btn--block { width: 100%; }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: .55;
  pointer-events: none;
}

.btn.is-loading { color: transparent; pointer-events: none; }

.btn.is-loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(26, 20, 8, .3);
  border-top-color: #1A1408;
  border-radius: 50%;
  animation: spin 620ms linear infinite;
}

/* Text link with a wiping underline. */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  position: relative;
  min-height: 32px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold);
}

.link-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--t-base) var(--ease-out);
}

.link-arrow:hover::after { transform: scaleX(1); }

.link-arrow svg {
  width: 15px;
  height: 15px;
  transition: transform var(--t-base) var(--ease-out);
}

.link-arrow:hover svg { transform: translateX(4px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   Mobile navigation sheet
   -------------------------------------------------------------------------- */

.nav-toggle {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--white-a16);
  border-radius: var(--r-md);
  color: var(--text-on-dark);
  transition: border-color var(--t-micro) var(--ease-out),
              background-color var(--t-micro) var(--ease-out);
}

.nav-toggle:hover { border-color: var(--gold); background: var(--gold-a08); }

@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle__bars {
  position: relative;
  width: 20px;
  height: 12px;
}

.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-out),
              opacity var(--t-micro) var(--ease-out);
}

.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.sheet {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  padding: var(--sp-5) var(--gutter) var(--sp-8);
  background: var(--glass-darker);
  -webkit-backdrop-filter: blur(26px) saturate(1.5);
  backdrop-filter: blur(26px) saturate(1.5);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base) var(--ease-out), visibility var(--t-base);
}

.sheet.is-open { opacity: 1; visibility: visible; }

@media (min-width: 1024px) { .sheet { display: none; } }

.sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}

.sheet__close {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--white-a16);
  border-radius: var(--r-md);
  color: var(--text-on-dark);
}

.sheet__close svg { width: 19px; height: 19px; }

.sheet__nav { display: grid; gap: var(--sp-1); }

.sheet__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: var(--sp-3) 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--text-on-dark);
  border-bottom: 1px solid var(--white-a06);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-enter) var(--ease-out),
              transform var(--t-enter) var(--ease-out),
              color var(--t-micro) var(--ease-out);
  transition-delay: calc(var(--i, 0) * 45ms);
}

.sheet.is-open .sheet__link { opacity: 1; transform: translateY(0); }

.sheet__link svg { width: 20px; height: 20px; flex: none; color: var(--gold); }

.sheet__link:hover, .sheet__link[aria-current="page"] { color: var(--gold); }

.sheet__sub {
  display: grid;
  gap: var(--sp-1);
  padding: var(--sp-2) 0 var(--sp-4) var(--sp-5);
  border-left: 1px solid var(--gold-a24);
  margin-left: var(--sp-2);
}

.sheet__sub a {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: .95rem;
  color: var(--muted-on-dark);
  transition: color var(--t-micro) var(--ease-out);
}

.sheet__sub a:hover, .sheet__sub a[aria-current="page"] { color: var(--gold); }

.sheet__foot {
  margin-top: auto;
  padding-top: var(--sp-7);
  display: grid;
  gap: var(--sp-4);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  position: relative;
  padding: var(--sp-6);
  background: var(--ink);
  border: 1px solid var(--graphite);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}

.section--light .card {
  background: var(--paper);
  border-color: rgba(20, 24, 31, .1);
  color: var(--text-on-light);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: var(--sp-5);
  color: var(--gold);
  background: var(--gold-a08);
  border: 1px solid var(--gold-a24);
  border-radius: var(--r-md);
}

.card__icon svg { width: 24px; height: 24px; }

.card__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  margin-bottom: var(--sp-3);
}

.card__text {
  color: var(--muted-on-dark);
  font-size: .95rem;
  line-height: 1.68;
}

.section--light .card__text { color: var(--muted-on-light); }

/* ---- 3D tilt service card ---- */

.tilt-wrap { perspective: 1200px; }

.tilt {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  background: linear-gradient(160deg, var(--ink-raised), var(--ink) 62%);
  border: 1px solid var(--graphite);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  cursor: pointer;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transition: transform 420ms var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}

.tilt.is-tilting { transition: border-color var(--t-base) var(--ease-out); }

.tilt:hover { border-color: var(--gold-a40); }

/* Specular highlight tracking the pointer. */
.tilt::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%),
              rgba(201, 164, 76, .16), transparent 62%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
  pointer-events: none;
}

.tilt:hover::before { opacity: 1; }

.tilt__index {
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: var(--sp-5);
}

.tilt__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  margin-bottom: var(--sp-3);
  transform: translateZ(24px);
}

.tilt__text {
  color: var(--muted-on-dark);
  font-size: .94rem;
  line-height: 1.68;
  margin-bottom: var(--sp-6);
  transform: translateZ(14px);
}

.tilt__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--white-a06);
}

.tilt__icon {
  color: var(--gold);
  opacity: .5;
  transition: opacity var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out);
}

.tilt__icon svg { width: 22px; height: 22px; }

.tilt:hover .tilt__icon { opacity: 1; transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Stat bar - straddles the seam between two sections
   -------------------------------------------------------------------------- */

.stats {
  position: relative;
  z-index: var(--z-raised);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--graphite);
  border: 1px solid var(--graphite);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}

@media (min-width: 900px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

.stats--straddle { margin-block: calc(var(--sp-9) * -1) var(--sp-9); }

.stat {
  padding: var(--sp-6) var(--sp-5);
  background: linear-gradient(170deg, var(--ink-raised), var(--ink));
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1;
  color: var(--gold-lit);
  letter-spacing: -.02em;
}

.stat__label {
  margin-top: var(--sp-3);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint-on-dark);
}

/* --------------------------------------------------------------------------
   Press strip
   -------------------------------------------------------------------------- */

.press {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5) var(--sp-7);
  padding: var(--sp-6);
  border: 1px solid var(--graphite);
  border-radius: var(--r-lg);
  background: linear-gradient(120deg, var(--ink), var(--obsidian-soft));
}

.press__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint-on-dark);
}

.press__logo {
  display: inline-flex;
  align-items: center;
  opacity: .78;
  transition: opacity var(--t-base) var(--ease-out);
}

.press__logo:hover { opacity: 1; }

.press__logo img { height: 26px; width: auto; }

.press__quote {
  max-width: 44ch;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--muted-on-dark);
  border-left: 1px solid var(--gold-a24);
  padding-left: var(--sp-5);
}

@media (max-width: 720px) {
  .press__quote { border-left: 0; padding-left: 0; text-align: center; }
}

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */

.reviews__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: 44px;
  padding: 0 var(--sp-5);
  font-size: .84rem;
  font-weight: 500;
  color: var(--muted-on-dark);
  background: var(--glass-dark);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--graphite);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: color var(--t-micro) var(--ease-out),
              border-color var(--t-micro) var(--ease-out),
              background-color var(--t-micro) var(--ease-out);
}

.chip:hover { color: var(--text-on-dark); border-color: var(--gold-a40); }

.chip[aria-pressed="true"] {
  color: #1A1408;
  background: linear-gradient(135deg, var(--gold-lit), var(--gold));
  border-color: transparent;
  font-weight: 600;
}

.chip__count {
  font-size: .74rem;
  opacity: .72;
  font-variant-numeric: tabular-nums;
}

.section--light .chip {
  background: var(--paper);
  border-color: rgba(20, 24, 31, .12);
  color: var(--muted-on-light);
}

.section--light .chip:hover { color: var(--text-on-light); }

.reviews__grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}

@media (min-width: 760px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.review {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--ink);
  border: 1px solid var(--graphite);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}

.review:hover {
  transform: translateY(-6px);
  border-color: var(--gold-a40);
  box-shadow: var(--shadow-2);
}

.section--light .review {
  background: var(--paper);
  border-color: rgba(20, 24, 31, .1);
}

.review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.review__stars { display: flex; gap: 2px; color: var(--gold); }
.review__stars svg { width: 15px; height: 15px; }

.review__source { flex: none; opacity: .9; }
.review__source svg { width: 18px; height: 18px; }

.review__text {
  font-size: .95rem;
  line-height: 1.68;
  color: var(--muted-on-dark);
  flex: 1;
}

.section--light .review__text { color: var(--muted-on-light); }

.review__foot {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--white-a06);
}

.section--light .review__foot { border-top-color: rgba(20, 24, 31, .08); }

.review__avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-lit);
  background: linear-gradient(140deg, var(--graphite-soft), var(--ink));
  border: 1px solid var(--gold-a24);
}

.review__name { font-size: .9rem; font-weight: 600; }

.review__meta {
  font-size: .76rem;
  color: var(--faint-on-dark);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.section--light .review__meta { color: var(--muted-on-light); }

.review__tag {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}

.review__empty {
  grid-column: 1 / -1;
  padding: var(--sp-8);
  text-align: center;
  color: var(--muted-on-dark);
  border: 1px dashed var(--graphite);
  border-radius: var(--r-lg);
}

/* Sample-data notice: reviews are placeholders until the Google Business
   Profile feed is connected. */
.notice {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  font-size: .78rem;
  line-height: 1.55;
  color: var(--gold-lit);
  background: var(--gold-a08);
  border: 1px dashed var(--gold-a40);
  border-radius: var(--r-md);
}

.notice svg { width: 15px; height: 15px; flex: none; margin-top: 3px; }

.section--light .notice { color: var(--gold-deep); }

.rating-summary {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.rating-summary__score {
  font-family: var(--font-display);
  font-size: var(--step-3);
  color: var(--gold-lit);
  line-height: 1;
}

.section--light .rating-summary__score { color: var(--gold-deep); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form {
  display: grid;
  gap: var(--sp-5);
  padding: var(--sp-7);
  background: var(--glass-dark);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--graphite);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2), var(--inner-lift);
}

.section--light .form {
  background: var(--paper);
  border-color: rgba(20, 24, 31, .1);
}

.form__row { display: grid; gap: var(--sp-5); }

@media (min-width: 640px) {
  .form__row--2 { grid-template-columns: repeat(2, 1fr); }
}

.field { position: relative; }

.field__input,
.field__select,
.field__textarea {
  width: 100%;
  min-height: 56px;
  padding: var(--sp-6) var(--sp-4) var(--sp-2);
  background: rgba(10, 12, 16, .5);
  border: 1px solid var(--graphite);
  border-radius: var(--r-md);
  color: var(--text-on-dark);
  font-size: .95rem;
  transition: border-color var(--t-micro) var(--ease-out),
              background-color var(--t-micro) var(--ease-out);
  appearance: none;
}

.section--light .field__input,
.section--light .field__select,
.section--light .field__textarea {
  background: var(--ivory);
  border-color: rgba(20, 24, 31, .14);
  color: var(--text-on-light);
}

.field__textarea { min-height: 132px; resize: vertical; padding-top: var(--sp-7); }

.field__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A44C' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  background-size: 16px;
  padding-right: var(--sp-8);
}

.field__label {
  position: absolute;
  left: calc(var(--sp-4) + 1px);
  top: 18px;
  font-size: .95rem;
  color: var(--faint-on-dark);
  pointer-events: none;
  transform-origin: 0 0;
  transition: transform var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out);
}

.section--light .field__label { color: var(--muted-on-light); }

.field__input:focus + .field__label,
.field__textarea:focus + .field__label,
.field__select:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label,
.field__textarea:not(:placeholder-shown) + .field__label,
.field.has-value .field__label {
  transform: translateY(-13px) scale(.76);
  color: var(--gold);
}

/* Animated bottom rule on focus. */
.field__rule {
  position: absolute;
  left: var(--sp-4);
  right: var(--sp-4);
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--t-base) var(--ease-out);
  pointer-events: none;
}

.field__input:focus ~ .field__rule,
.field__textarea:focus ~ .field__rule,
.field__select:focus ~ .field__rule { transform: scaleX(1); }

.field__input:focus,
.field__textarea:focus,
.field__select:focus { border-color: var(--gold-a40); }

.field__error {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
  font-size: .78rem;
  color: var(--danger);
}

.field__error svg { width: 13px; height: 13px; flex: none; }

.field.is-invalid .field__error { display: flex; }
.field.is-invalid .field__input,
.field.is-invalid .field__textarea,
.field.is-invalid .field__select { border-color: var(--danger); }

.field--check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: .82rem;
  line-height: 1.6;
  color: var(--muted-on-dark);
}

.section--light .field--check { color: var(--muted-on-light); }

.field--check input {
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  accent-color: var(--gold);
  cursor: pointer;
}

.field--honey {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.form__status {
  display: none;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  font-size: .86rem;
  line-height: 1.6;
  border-radius: var(--r-md);
  border: 1px solid;
}

.form__status.is-shown { display: flex; }
.form__status--error { color: var(--danger); border-color: rgba(210, 99, 91, .4); background: rgba(210, 99, 91, .08); }
.form__status--info { color: var(--gold-lit); border-color: var(--gold-a40); background: var(--gold-a08); }
.section--light .form__status--info { color: var(--gold-deep); }

.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
}

.form__success.is-shown { display: flex; }

.form__success-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid var(--gold-a40);
  background: var(--gold-a08);
}

.form__success-mark svg { width: 28px; height: 28px; }

.form__note {
  font-size: .76rem;
  color: var(--faint-on-dark);
  line-height: 1.6;
}

.section--light .form__note { color: var(--muted-on-light); }

/* --------------------------------------------------------------------------
   Accordion
   -------------------------------------------------------------------------- */

.accordion { border-top: 1px solid var(--graphite); }
.section--light .accordion { border-top-color: rgba(20, 24, 31, .1); }

.accordion__item { border-bottom: 1px solid var(--graphite); }
.section--light .accordion__item { border-bottom-color: rgba(20, 24, 31, .1); }

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  width: 100%;
  min-height: 68px;
  padding: var(--sp-4) 0;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-on-dark);
  transition: color var(--t-micro) var(--ease-out);
}

.section--light .accordion__trigger { color: var(--text-on-light); }

.accordion__trigger:hover { color: var(--gold); }

.accordion__sign {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.accordion__sign::before,
.accordion__sign::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transition: transform var(--t-base) var(--ease-out);
}

.accordion__sign::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.accordion__sign::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }

.accordion__trigger[aria-expanded="true"] .accordion__sign::after { transform: translate(-50%, -50%) rotate(90deg); }

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-base) var(--ease-io);
}

.accordion__panel[data-open="true"] { grid-template-rows: 1fr; }

.accordion__panel > div { overflow: hidden; }

.accordion__body {
  padding-bottom: var(--sp-5);
  max-width: 62ch;
  color: var(--muted-on-dark);
  font-size: .95rem;
  line-height: 1.7;
}

.section--light .accordion__body { color: var(--muted-on-light); }

/* --------------------------------------------------------------------------
   Process timeline
   -------------------------------------------------------------------------- */

.timeline { position: relative; display: grid; gap: var(--sp-7); }

.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--graphite);
}

.timeline::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 12px;
  width: 1px;
  height: calc((100% - 24px) * var(--draw, 0));
  background: linear-gradient(var(--gold), var(--gold-deep));
  transition: height 1200ms var(--ease-out);
}

.timeline__step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--sp-5);
  align-items: start;
}

.timeline__dot {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--gold);
  background: var(--obsidian);
  border: 1px solid var(--gold-a40);
  border-radius: 50%;
  z-index: 1;
}

.section--light .timeline__dot { background: var(--ivory); }

.timeline__title {
  font-family: var(--font-display);
  font-size: var(--step-1);
  margin-bottom: var(--sp-2);
}

.timeline__text {
  color: var(--muted-on-dark);
  font-size: .94rem;
  line-height: 1.68;
  max-width: 58ch;
}

.section--light .timeline__text { color: var(--muted-on-light); }

/* --------------------------------------------------------------------------
   Quote block
   -------------------------------------------------------------------------- */

.quote {
  position: relative;
  max-width: 24ch;
  margin-inline: auto;
  text-align: center;
}

.quote__mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: .6;
  color: var(--gold);
  opacity: .28;
}

.quote__text {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1.24;
  letter-spacing: -.02em;
  max-width: 22ch;
  margin-inline: auto;
}

.quote__body { max-width: 62ch; margin-inline: auto; }

.quote__cite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  margin-top: var(--sp-6);
  font-style: normal;
}

.quote__name {
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.quote__role { font-size: .82rem; color: var(--faint-on-dark); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  position: relative;
  padding-top: var(--sp-9);
  background: var(--obsidian);
  border-top: 1px solid var(--white-a06);
  isolation: isolate;
}

.footer__grid {
  display: grid;
  gap: var(--sp-7);
  padding-bottom: var(--sp-8);
}

@media (min-width: 720px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }

.footer__brandimg { height: 40px; width: auto; margin-bottom: var(--sp-5); }

.footer__blurb {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--muted-on-dark);
  max-width: 34ch;
  margin-bottom: var(--sp-5);
}

.footer__social { display: flex; gap: var(--sp-2); }

.footer__social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--muted-on-dark);
  border: 1px solid var(--graphite);
  border-radius: var(--r-md);
  transition: color var(--t-micro) var(--ease-out),
              border-color var(--t-micro) var(--ease-out),
              background-color var(--t-micro) var(--ease-out);
}

.footer__social a:hover {
  color: var(--gold);
  border-color: var(--gold-a40);
  background: var(--gold-a08);
}

.footer__social svg { width: 18px; height: 18px; }

.footer__title {
  font-family: var(--font-ui);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
}

.footer__links { display: grid; gap: var(--sp-1); }

.footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  font-size: .9rem;
  color: var(--muted-on-dark);
  transition: color var(--t-micro) var(--ease-out),
              transform var(--t-micro) var(--ease-out);
}

.footer__links a:hover { color: var(--gold); transform: translateX(3px); }

.footer__contact { display: grid; gap: var(--sp-4); font-size: .9rem; }

.footer__contact-row {
  display: flex;
  gap: var(--sp-3);
  color: var(--muted-on-dark);
  line-height: 1.6;
}

.footer__contact-row svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--gold); }
.footer__contact-row span { min-width: 0; overflow-wrap: anywhere; }

a.footer__contact-row:hover { color: var(--gold-lit); }

.footer__hours { font-variant-numeric: tabular-nums; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-block: var(--sp-5);
  border-top: 1px solid var(--white-a06);
  font-size: .82rem;
  color: var(--faint-on-dark);
}

.footer__credit a {
  color: var(--muted-on-dark);
  border-bottom: 1px solid var(--gold-a24);
  padding-bottom: 1px;
  transition: color var(--t-micro) var(--ease-out),
              border-color var(--t-micro) var(--ease-out);
}

.footer__credit a:hover { color: var(--gold); border-color: var(--gold); }

.newsletter { display: flex; gap: var(--sp-2); margin-top: var(--sp-4); }

.newsletter input {
  flex: 1;
  min-width: 0;
  min-height: 46px;
  padding: 0 var(--sp-4);
  font-size: .86rem;
  color: var(--text-on-dark);
  background: rgba(10, 12, 16, .6);
  border: 1px solid var(--graphite);
  border-radius: var(--r-md);
  transition: border-color var(--t-micro) var(--ease-out);
}

.newsletter input:focus { border-color: var(--gold-a40); }

.newsletter button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  color: #1A1408;
  background: linear-gradient(135deg, var(--gold-lit), var(--gold));
  border-radius: var(--r-md);
  transition: transform var(--t-micro) var(--ease-out);
}

.newsletter button:hover { transform: translateX(2px); }
.newsletter button svg { width: 17px; height: 17px; }

/* --------------------------------------------------------------------------
   Sticky mobile action bar
   -------------------------------------------------------------------------- */

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  display: none;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4) calc(var(--sp-3) + env(safe-area-inset-bottom, 0px));
  background: var(--glass-darker);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--white-a10);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .45);
}

@media (max-width: 768px) { .mobile-bar { display: flex; } }

.mobile-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 52px;
  font-size: .88rem;
  font-weight: 600;
  border-radius: var(--r-pill);
}

.mobile-bar svg { width: 18px; height: 18px; }

.mobile-bar__call {
  color: #1A1408;
  background: linear-gradient(135deg, var(--gold-lit), var(--gold));
  box-shadow: 0 6px 18px -6px rgba(201, 164, 76, .5);
}

.mobile-bar__wa {
  color: #062A18;
  background: linear-gradient(135deg, #45E884, var(--whatsapp));
  box-shadow: 0 6px 18px -6px rgba(37, 211, 102, .5);
}

/* --------------------------------------------------------------------------
   Demo popup
   -------------------------------------------------------------------------- */

.popup {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: rgba(6, 7, 10, .72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base) var(--ease-out), visibility var(--t-base);
}

.popup.is-open { opacity: 1; visibility: visible; }

.popup__card {
  position: relative;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: var(--sp-8) var(--sp-7) var(--sp-7);
  text-align: center;
  background: linear-gradient(165deg, rgba(25, 30, 38, .94), rgba(10, 12, 16, .97));
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--gold-a24);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-3), var(--inner-lift);
  transform: scale(.94) translateY(14px);
  opacity: 0;
  transition: transform var(--t-enter) var(--ease-out), opacity var(--t-enter) var(--ease-out);
}

.popup.is-open .popup__card { transform: scale(1) translateY(0); opacity: 1; }

/* Gold corner brackets that draw in with the card. */
.popup__card::before,
.popup__card::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  opacity: .7;
}

.popup__card::before {
  top: 14px; left: 14px;
  border-right: 0; border-bottom: 0;
  border-top-left-radius: var(--r-md);
}

.popup__card::after {
  bottom: 14px; right: 14px;
  border-left: 0; border-top: 0;
  border-bottom-right-radius: var(--r-md);
}

.popup__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--muted-on-dark);
  border-radius: var(--r-md);
  transition: color var(--t-micro) var(--ease-out),
              background-color var(--t-micro) var(--ease-out);
}

.popup__close:hover { color: var(--gold); background: var(--white-a06); }
.popup__close svg { width: 18px; height: 18px; }

.popup__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-a08);
  border: 1px solid var(--gold-a24);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-5);
  white-space: nowrap;
}

.popup__title {
  font-family: var(--font-display);
  font-size: var(--step-3);
  margin-bottom: var(--sp-4);
}

.popup__text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--muted-on-dark);
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
}

.popup__countdown {
  display: inline-flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  padding: var(--sp-3) var(--sp-5);
  border: 1px dashed var(--gold-a40);
  border-radius: var(--r-md);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

.popup__days {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--gold-lit);
  letter-spacing: 0;
  text-transform: none;
}

.popup__actions { display: grid; gap: var(--sp-3); }

.popup__later {
  min-height: 44px;
  font-size: .85rem;
  color: var(--faint-on-dark);
  transition: color var(--t-micro) var(--ease-out);
}

.popup__later:hover { color: var(--muted-on-dark); }

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  font-size: .78rem;
  color: var(--faint-on-dark);
}

.crumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  transition: color var(--t-micro) var(--ease-out);
}
.crumbs a:hover { color: var(--gold); }
.crumbs svg { width: 12px; height: 12px; opacity: .6; }
.crumbs [aria-current="page"] { color: var(--muted-on-dark); }

/* --------------------------------------------------------------------------
   Misc
   -------------------------------------------------------------------------- */

.checklist { display: grid; gap: var(--sp-4); }

.checklist li {
  display: flex;
  gap: var(--sp-4);
  font-size: .95rem;
  line-height: 1.65;
  color: var(--muted-on-dark);
}

.section--light .checklist li { color: var(--muted-on-light); }

.checklist svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  color: var(--gold);
}

.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--graphite); }
.section--light .table-wrap { border-color: rgba(20, 24, 31, .1); }

.table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 640px; }

.table th, .table td {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  border-bottom: 1px solid var(--graphite);
}

.section--light .table th, .section--light .table td { border-bottom-color: rgba(20, 24, 31, .08); }

.table thead th {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--ink);
}

.section--light .table thead th { background: var(--ivory-deep); color: var(--gold-deep); }

.table tbody tr:last-child td { border-bottom: 0; }
.table td { color: var(--muted-on-dark); }
.section--light .table td { color: var(--muted-on-light); }
.table td:first-child { color: var(--text-on-dark); font-weight: 500; }
.section--light .table td:first-child { color: var(--text-on-light); }

.tick { color: var(--gold); }
.dash { color: var(--faint-on-dark); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-a08);
  border: 1px solid var(--gold-a24);
  border-radius: var(--r-pill);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--graphite) 18%, var(--graphite) 82%, transparent);
  border: 0;
}
