.site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    180deg,
    rgba(20, 18, 15, 0.88),
    rgba(20, 18, 15, 0.68)
  );
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.site-header.scrolled,
.site-header.solid {
  position: fixed;
  background: rgba(20, 18, 15, 0.94);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
}
.nav-wrap {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand img {
  width: 48px;
  height: 58px;
  object-fit: contain;
}
.brand-text {
  font-family: var(--serif);
  letter-spacing: 0.08em;
  font-size: 0.96rem;
}
.brand-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
}
.main-nav a:not(.btn) {
  color: #eee7dc;
}
.location-pill {
  border: 0;
  background: transparent;
  color: #fff;
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  max-width: 220px;
}
.location-pill span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.btn {
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    background 0.2s,
    color 0.2s,
    border 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--deep);
}
.btn-gold:hover {
  background: #d3b27d;
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border-color: currentColor;
}
.btn-light {
  background: var(--paper);
  color: var(--ink);
}
.btn-text {
  padding: 8px 0;
  border: 0;
  background: none;
  color: var(--bronze);
}
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  background: transparent;
  cursor: pointer;
}
.chip.active,
.chip[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.dark .chip {
  border-color: rgba(255, 255, 255, 0.24);
}
.dark .chip.active {
  background: var(--gold);
  color: var(--ink);
}
.image-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
}
.image-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  transition: transform 0.65s var(--ease);
}
.image-card:hover img,
.image-card:focus-within img {
  transform: scale(1.035);
}
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(10, 8, 6, 0.86));
}
.image-card-content {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
}
.image-card-content p {
  color: #ded7cc;
  margin-bottom: 12px;
}
.image-card-content h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.site-footer {
  background: var(--deep);
  color: #e8e0d5;
  padding: 72px 0 28px;
}
.footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  margin-bottom: 60px;
}
.site-footer h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
}
.site-footer p,
.site-footer a {
  color: #aaa196;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
}
.field {
  display: grid;
  gap: 7px;
}
.field label,
.label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.field input,
.field select,
.field textarea,
.search-input {
  width: 100%;
  border: 1px solid #d5cdbf;
  background: var(--paper);
  padding: 14px 15px;
  border-radius: var(--r-sm);
  color: var(--ink);
}
.field textarea {
  min-height: 100px;
  resize: vertical;
}
.field-error {
  font-size: 0.82rem;
  color: var(--error);
  margin: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--sand);
}
.badge.success {
  background: #dfe9e1;
  color: #35533d;
}
.badge.warn {
  background: #f2e4cf;
  color: #7c5226;
}
.badge.error {
  background: #f0deda;
  color: #7e3832;
}
.modal,
.drawer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
}
.modal.open,
.drawer.open {
  display: block;
}
.scrim {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 9, 0.7);
  backdrop-filter: blur(5px);
}
.modal-panel {
  position: relative;
  width: min(760px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  background: var(--ivory);
  box-shadow: var(--shadow-dark);
}
.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(500px, 100%);
  background: var(--ivory);
  padding: 32px;
  overflow: auto;
  box-shadow: var(--shadow-dark);
  animation: slidein 0.3s var(--ease);
}
@keyframes slidein {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
}
.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.icon-btn {
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.25rem;
}
.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 13px 22px;
  box-shadow: var(--shadow);
  display: none;
}
.toast.show {
  display: block;
}
.empty {
  padding: 64px;
  text-align: center;
  border: 1px dashed var(--line);
}
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 42px;
}
.step {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}
.step::before {
  content: attr(data-step);
  width: 32px;
  height: 32px;
  border: 1px solid #c7bcac;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-right: 8px;
}
.step:not(:last-child)::after {
  content: "";
  width: 54px;
  height: 1px;
  background: #c7bcac;
  margin: 0 12px;
}
.step.active {
  color: var(--ink);
}
.step.active::before,
.step.done::before {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.confirm-mark {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}
.confirmation {
  text-align: center;
  max-width: 720px;
  margin: auto;
  padding: 64px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.confirmation h2 {
  font-size: 3rem;
}
.confirmation .summary {
  margin: 32px 0;
  text-align: left;
}
.summary {
  background: var(--cream);
  padding: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.summary-row:last-child {
  border-bottom: 0;
}
.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
}
@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--deep);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
  }
  .mobile-toggle {
    display: block;
  }
  .location-pill {
    margin-left: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 650px) {
  .brand-text {
    display: none;
  }
  .nav-wrap {
    gap: 12px;
  }
  .location-pill {
    max-width: 130px;
    font-size: 0.8rem;
  }
  .site-header .btn-gold {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: block;
  }
  .step span {
    display: none;
  }
  .step:not(:last-child)::after {
    width: 20px;
  }
  .modal-panel {
    margin: 8px auto;
    max-height: calc(100vh - 16px);
  }
  .drawer-panel {
    padding: 22px;
  }
  .confirmation {
    padding: 36px 20px;
  }
}
