/* ==========================================================================
   COMPONENTS — topbar, header, nav, buttons, cards, forms, footer, dock
   ========================================================================== */

/* --------------------------------------------------------------------------
   TOP BAR — contact + social. Collapses to essentials on small screens.
   -------------------------------------------------------------------------- */
.topbar {
  position: relative;
  z-index: var(--z-header);
  background: linear-gradient(90deg, var(--clr-clay-deep), var(--clr-clay) 50%, var(--clr-clay-deep));
  color: var(--clr-text);
  font-size: var(--fs-xs);
  border-bottom: 1px solid rgba(239, 201, 122, .16);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: 40px;
  padding-block: var(--sp-2);
}
.topbar__group {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--clr-text);
  letter-spacing: .02em;
  transition: color var(--d-fast) var(--ease-out);
}
a.topbar__item:hover { color: var(--clr-brass-lite); }
.topbar__item svg { width: 15px; height: 15px; flex: none; opacity: .9; }

.topbar__status {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  letter-spacing: .04em;
}
/* Dot + text label — colour is never the sole indicator */
.topbar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--clr-open);
  box-shadow: 0 0 0 3px rgba(143, 191, 79, .22);
  flex: none;
}
.topbar__status[data-state="closed"] .topbar__dot {
  background: var(--clr-closed);
  box-shadow: 0 0 0 3px rgba(247, 160, 114, .22);
}
.topbar__socials { display: flex; align-items: center; gap: var(--sp-1); }
.topbar__social {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: var(--clr-text);
  transition: background var(--d-fast) var(--ease-out), color var(--d-fast) var(--ease-out);
}
.topbar__social:hover { background: rgba(250, 244, 236, .16); color: var(--clr-brass-lite); }
.topbar__social svg { width: 15px; height: 15px; }

@media (max-width: 900px) {
  .topbar__hide-md { display: none; }
  .topbar__inner { justify-content: center; }
}

/* --------------------------------------------------------------------------
   HEADER — glassmorphic, shrinks on scroll
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(14, 9, 6, .62);
  border-bottom: 1px solid transparent;
  transition: background var(--d-base) var(--ease-out),
              border-color var(--d-base) var(--ease-out),
              box-shadow var(--d-base) var(--ease-out);
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .header {
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
  }
}
/* Opaque fallback where backdrop-filter is unsupported */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .header { background: rgba(14, 9, 6, .96); }
}
.header.is-stuck {
  background: rgba(14, 9, 6, .88);
  border-bottom-color: var(--clr-line);
  box-shadow: var(--sh-2);
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .header.is-stuck { background: rgba(14, 9, 6, .99); }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: 84px;
  transition: min-height var(--d-base) var(--ease-out);
}
.header.is-stuck .header__inner { min-height: 68px; }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img, .brand svg {
  height: 54px; width: auto;
  transition: height var(--d-base) var(--ease-out);
}
.header.is-stuck .brand img { height: 44px; }

/* --- Desktop nav --- */
.nav { display: flex; align-items: center; gap: var(--sp-2); }
.nav__link {
  position: relative;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--clr-text-muted);
  border-radius: var(--r-sm);
  transition: color var(--d-fast) var(--ease-out);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: var(--sp-3); right: var(--sp-3);
  bottom: 2px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--clr-brass-lite), var(--clr-brass-deep));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--d-base) var(--ease-out);
}
.nav__link:hover { color: var(--clr-text); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--clr-brass); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: var(--sp-3); flex: none; }

/* --- Burger --- */
.burger {
  display: none;
  place-items: center;
  width: 46px; height: 46px;
  background: rgba(210, 162, 68, .08);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--d-fast) var(--ease-out);
}
.burger:hover { background: rgba(210, 162, 68, .16); }
.burger__box { position: relative; width: 20px; height: 14px; }
.burger__bar {
  position: absolute; left: 0;
  width: 100%; height: 1.8px;
  background: var(--clr-brass);
  border-radius: 2px;
  transition: transform var(--d-base) var(--ease-out), opacity var(--d-fast) var(--ease-out);
}
.burger__bar:nth-child(1) { top: 0; }
.burger__bar:nth-child(2) { top: 6.1px; }
.burger__bar:nth-child(3) { top: 12.2px; }
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(6.1px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-6.1px) rotate(-45deg); }

/* --- Mobile overlay menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--clr-ink);
  display: flex;
  flex-direction: column;
  padding: var(--sp-6) var(--gutter) var(--sp-7);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--d-base) var(--ease-out),
              transform var(--d-base) var(--ease-out),
              visibility 0s linear var(--d-base);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}
.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--sp-6);
}
.mobile-menu__close {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  background: rgba(210, 162, 68, .08);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-md);
  color: var(--clr-brass);
  cursor: pointer;
}
.mobile-menu__close svg { width: 20px; height: 20px; }
.mobile-menu__list { display: flex; flex-direction: column; gap: var(--sp-1); }
.mobile-menu__link {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-line);
  opacity: 0;
  transform: translateY(14px);
}
.mobile-menu.is-open .mobile-menu__link {
  animation: mm-in var(--d-slow) var(--ease-out) forwards;
  animation-delay: calc(60ms * var(--i, 0) + 80ms);
}
@keyframes mm-in { to { opacity: 1; transform: none; } }
.mobile-menu__link[aria-current="page"] { color: var(--clr-brass); }
.mobile-menu__num {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--clr-clay-lite);
}
.mobile-menu__foot { margin-top: auto; padding-top: var(--sp-6); }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu.is-open .mobile-menu__link { animation: none; opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
  .nav, .header__actions .btn { display: none; }
  .burger { display: grid; }
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--clr-clay);
  --btn-fg: var(--clr-text);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  min-height: 48px;               /* touch target */
  padding: var(--sp-3) var(--sp-6);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--sh-1);
  transition: box-shadow var(--d-base) var(--ease-out),
              color var(--d-fast) var(--ease-out),
              border-color var(--d-fast) var(--ease-out),
              background var(--d-fast) var(--ease-out);
}
.btn svg { width: 17px; height: 17px; flex: none; }
/* Sheen sweeps on hover — opacity/transform only, no layout shift */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .26) 50%, transparent 80%);
  transform: translateX(-110%);
  transition: transform var(--d-slow) var(--ease-out);
}
.btn:hover::before { transform: translateX(110%); }
.btn:hover { box-shadow: var(--sh-ember); }
.btn:active { box-shadow: var(--sh-1); }

.btn--brass { --btn-bg: var(--clr-brass); --btn-fg: #17100B; }
.btn--brass:hover { box-shadow: var(--sh-brass); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--clr-text);
  border-color: var(--clr-line-strong);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--clr-brass); color: var(--clr-brass-lite); box-shadow: var(--sh-1); }

.btn--ink { --btn-bg: var(--clr-ink-2); --btn-fg: var(--clr-text); }

.btn--on-light {
  --btn-bg: transparent;
  --btn-fg: var(--clr-clay-deep);
  border-color: rgba(122, 45, 15, .32);
  box-shadow: none;
}
.btn--on-light:hover { border-color: var(--clr-clay); background: rgba(169, 64, 24, .06); }

.btn--lg { min-height: 56px; padding: var(--sp-4) var(--sp-7); font-size: var(--fs-base); }
.btn--sm { min-height: 40px; padding: var(--sp-2) var(--sp-4); font-size: var(--fs-xs); }
.btn--block { width: 100%; }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}
.btn.is-loading { pointer-events: none; }
.btn.is-loading .btn__label { opacity: .45; }
.btn__spinner { display: none; width: 17px; height: 17px; }
.btn.is-loading .btn__spinner { display: block; animation: spin 700ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .btn.is-loading .btn__spinner { animation-duration: 2s; }
}

/* Text link with animated brass underline */
.link-u {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-brass);
  padding-bottom: 3px;
  cursor: pointer;
}
.link-u::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--d-base) var(--ease-out);
}
.link-u:hover::after { transform: scaleX(1); transform-origin: left; }
.link-u svg { width: 15px; height: 15px; transition: transform var(--d-base) var(--ease-out); }
.link-u:hover svg { transform: translateX(4px); }
.section--light .link-u, .section--light-alt .link-u { color: var(--clr-clay); }

/* --------------------------------------------------------------------------
   CARDS
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--clr-ink-2);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  overflow: hidden;
  transition: box-shadow var(--d-base) var(--ease-out),
              border-color var(--d-base) var(--ease-out);
}
.card:hover { box-shadow: var(--sh-2); border-color: var(--clr-line-strong); }

/* Glass card */
.glass {
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-brd);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2), var(--sh-inset);
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .glass {
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    backdrop-filter: blur(16px) saturate(140%);
  }
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .glass { background: rgba(23, 16, 9, .95); }
}
/* Light-mode glass needs high opacity to stay legible */
.glass--light {
  background: var(--clr-glass-lite);
  border-color: rgba(122, 45, 15, .16);
  box-shadow: var(--sh-lite);
  color: var(--clr-text-ink);
}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .glass--light { background: rgba(250, 244, 236, .99); }
}

/* --- 3D tilt dish card --- */
.tilt { perspective: 1000px; }
.tilt__inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform var(--d-slow) var(--ease-out);
  will-change: transform;
}
.tilt.is-tilting .tilt__inner { transition: transform 90ms linear; }

.dish {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--clr-ink-2);
  border: 1px solid var(--clr-line);
  box-shadow: var(--sh-1);
  cursor: pointer;
  transition: box-shadow var(--d-base) var(--ease-out), border-color var(--d-base) var(--ease-out);
}
.dish:hover { box-shadow: var(--sh-ember); border-color: var(--clr-line-strong); }
.dish__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--clr-ink-3); }
.dish__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--ease-out);
}
.dish:hover .dish__media img { transform: scale(1.06); }
.dish__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(14, 9, 6, .82) 100%);
}
.dish__body {
  position: relative;
  padding: var(--sp-5);
  transform: translateZ(28px);
}
.dish__title { display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4); }
.dish__name { font-family: var(--ff-display); font-size: var(--fs-md); font-weight: 700; }
.dish__price { font-size: var(--fs-sm); font-weight: 700; color: var(--clr-brass); white-space: nowrap; }
.dish__desc { margin-top: var(--sp-2); font-size: var(--fs-sm); color: var(--clr-text-muted); }
.dish__tag {
  position: absolute;
  top: var(--sp-4); left: var(--sp-4);
  z-index: var(--z-raised);
  padding: 5px var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-text);
  background: rgba(122, 45, 15, .82);
  border: 1px solid var(--clr-line-strong);
  border-radius: var(--r-pill);
  transform: translateZ(46px);
}

/* --- Veg / non-veg marker (FSSAI-style; shape + label, not colour alone) --- */
.mark {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--clr-text-muted);
}
.mark__box {
  display: grid;
  place-items: center;
  width: 15px; height: 15px;
  border: 1.6px solid var(--clr-clay-lite);
  border-radius: 3px;
  flex: none;
}
.mark__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clr-clay-lite); }
.mark--veg .mark__box { border-color: var(--clr-sarson-lite); }
.mark--veg .mark__dot { background: var(--clr-sarson-lite); }
.section--light .mark { color: var(--clr-text-ink-mut); }
.section--light .mark__box { border-color: var(--clr-clay); }
.section--light .mark__dot { background: var(--clr-clay); }
.section--light .mark--veg .mark__box { border-color: var(--clr-sarson); }
.section--light .mark--veg .mark__dot { background: var(--clr-sarson); }

/* --------------------------------------------------------------------------
   RATING
   -------------------------------------------------------------------------- */
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; }
.stars__on   { color: var(--clr-brass); }
.stars__off  { color: rgba(210, 162, 68, .26); }
.section--light .stars__off { color: rgba(122, 45, 15, .20); }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(210, 162, 68, .10);
  border: 1px solid var(--clr-line-strong);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 700;
}
.rating-badge strong { color: var(--clr-brass); }

/* --------------------------------------------------------------------------
   FORMS
   -------------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.field__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-brass);
}
.field__req { color: var(--clr-ember); }
.field__input {
  width: 100%;
  min-height: 52px;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(14, 9, 6, .6);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-md);
  color: var(--clr-text);
  transition: border-color var(--d-fast) var(--ease-out), box-shadow var(--d-fast) var(--ease-out);
}
textarea.field__input { min-height: 130px; resize: vertical; line-height: 1.6; }
.field__input::placeholder { color: rgba(201, 180, 160, .5); }
.field__input:hover { border-color: var(--clr-line-strong); }
.field__input:focus {
  outline: none;
  border-color: var(--clr-brass);
  box-shadow: 0 0 0 3px rgba(210, 162, 68, .18);
}
.field__input[aria-invalid="true"] {
  border-color: var(--clr-error);
  box-shadow: 0 0 0 3px rgba(255, 138, 107, .16);
}
.field__error {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-error);
}
.field__error svg { width: 14px; height: 14px; flex: none; }
.field__error.is-shown { display: flex; }

select.field__input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D2A244' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  background-size: 18px;
  padding-right: var(--sp-8);
  cursor: pointer;
}
select.field__input option { background: var(--clr-ink-2); color: var(--clr-text); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

/* Honeypot — off-screen, hidden from AT, still fillable by naive bots */
.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-note { font-size: var(--fs-xs); color: var(--clr-text-muted); margin-top: var(--sp-4); }

.form-status {
  display: none;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-5);
}
.form-status.is-shown { display: flex; }
.form-status svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.form-status--ok {
  background: rgba(107, 143, 58, .14);
  border: 1px solid rgba(143, 191, 79, .42);
  color: var(--clr-sarson-lite);
}
.form-status--err {
  background: rgba(226, 103, 58, .12);
  border: 1px solid rgba(255, 138, 107, .42);
  color: var(--clr-error);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  background: var(--clr-ink);
  border-top: 1px solid var(--clr-line);
  padding-top: var(--sp-8);
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: var(--sp-7) var(--sp-6);
  padding-bottom: var(--sp-8);
}
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); } }

.footer__brand img { height: 76px; width: auto; margin-bottom: var(--sp-4); }
.footer__about { font-size: var(--fs-sm); color: var(--clr-text-muted); max-width: 38ch; }
.footer__title {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-brass);
  margin-bottom: var(--sp-4);
}
.footer__list { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__link {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  width: fit-content;
  transition: color var(--d-fast) var(--ease-out), transform var(--d-fast) var(--ease-out);
}
.footer__link:hover { color: var(--clr-brass-lite); transform: translateX(3px); }

.footer__nap { display: flex; flex-direction: column; gap: var(--sp-4); font-size: var(--fs-sm); color: var(--clr-text-muted); }
.footer__nap-row { display: flex; gap: var(--sp-3); align-items: flex-start; }
.footer__nap-row svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--clr-clay-lite); }
.footer__nap a:hover { color: var(--clr-brass-lite); }

.footer__hours { width: 100%; border-collapse: collapse; font-size: var(--fs-xs); }
.footer__hours th, .footer__hours td { text-align: left; padding: 5px 0; color: var(--clr-text-muted); font-weight: 400; }
.footer__hours th { color: var(--clr-text); font-weight: 600; padding-right: var(--sp-4); white-space: nowrap; }

.footer__socials { display: flex; gap: var(--sp-2); margin-top: var(--sp-5); }
.footer__social {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--clr-line);
  border-radius: 50%;
  color: var(--clr-text-muted);
  transition: color var(--d-fast) var(--ease-out), border-color var(--d-fast) var(--ease-out), background var(--d-fast) var(--ease-out);
}
.footer__social:hover { color: var(--clr-brass-lite); border-color: var(--clr-brass); background: rgba(210, 162, 68, .10); }
.footer__social svg { width: 17px; height: 17px; }

.footer__bar {
  border-top: 1px solid var(--clr-line);
  padding-block: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}
.footer__credit a { color: var(--clr-brass); font-weight: 600; }
.footer__credit a:hover { color: var(--clr-brass-lite); text-decoration: underline; }
@media (max-width: 640px) { .footer__bar { justify-content: center; text-align: center; } }

/* --------------------------------------------------------------------------
   MOBILE STICKY DOCK — call + WhatsApp
   -------------------------------------------------------------------------- */
.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-dock);
  display: none;
  gap: 1px;
  background: var(--clr-line-strong);
  border-top: 1px solid var(--clr-line-strong);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -4px 20px rgba(8, 4, 2, .5), 0 -12px 40px rgba(8, 4, 2, .3);
}
.dock__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  min-height: 58px;               /* well above the 48px minimum */
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-text);
  background: var(--clr-clay);
  transition: background var(--d-fast) var(--ease-out);
}
.dock__btn svg { width: 19px; height: 19px; }
.dock__btn--wa { background: #128C4B; }
.dock__btn:active { background: var(--clr-clay-deep); }
.dock__btn--wa:active { background: #0B6F3A; }

@media (max-width: 767px) {
  .dock { display: flex; }
  /* Reserve space so the dock never covers the footer credit */
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }
}

/* --------------------------------------------------------------------------
   DESKTOP FLOATING CTA
   -------------------------------------------------------------------------- */
.fab {
  position: fixed;
  right: var(--sp-6); bottom: var(--sp-6);
  z-index: var(--z-sticky);
  opacity: 0;
  transform: translateY(14px) scale(.94);
  pointer-events: none;
  transition: opacity var(--d-base) var(--ease-out), transform var(--d-base) var(--ease-soft);
}
.fab.is-shown { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 767px) { .fab { display: none; } }

/* --------------------------------------------------------------------------
   BREADCRUMBS
   -------------------------------------------------------------------------- */
.crumbs { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; font-size: var(--fs-xs); color: var(--clr-text-muted); }
.crumbs a { transition: color var(--d-fast) var(--ease-out); }
.crumbs a:hover { color: var(--clr-brass); }
.crumbs svg { width: 13px; height: 13px; opacity: .5; }
.crumbs [aria-current="page"] { color: var(--clr-brass); }

/* --------------------------------------------------------------------------
   PAGE HERO (interior pages)
   -------------------------------------------------------------------------- */
.phero {
  position: relative;
  padding-block: clamp(3.5rem, 2rem + 7vw, 7rem);
  background: var(--clr-ink-2);
  border-bottom: 1px solid var(--clr-line);
  overflow: hidden;
}
.phero__inner { position: relative; z-index: var(--z-raised); }
.phero h1 { margin-block: var(--sp-4) var(--sp-4); font-size: var(--fs-2xl); }
.phero .lede { max-width: 58ch; }
