/* ═══════════════════════════════════════════════
   Buttons
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2.25rem;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn .icon { transition: transform 0.3s ease; }
.btn:hover .icon { transform: translateX(4px); }

.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 8px 36px rgba(212, 177, 106, 0.44);
  transform: translateY(-4px);
}

.btn--outline {
  border-color: rgba(212, 177, 106, 0.4);
  color: rgba(248, 246, 241, 0.8);
  font-weight: 500;
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-4px);
}

.btn--dark {
  background: var(--black);
  color: var(--ivory);
  padding: 1rem 2rem;
  font-size: 12px;
}
.btn--dark:hover {
  background: #1c1c1c;
  transform: translateY(-1px);
}

.btn--outline-dark {
  border-color: rgba(11, 11, 11, 0.22);
  color: var(--black);
  padding: 1rem 2.5rem;
  font-size: 12px;
  font-weight: 500;
}
.btn--outline-dark:hover {
  background: var(--black);
  color: var(--ivory);
  border-color: var(--black);
  transform: translateY(-1px);
}

.btn--wide { padding-inline: 2.5rem; font-size: 12px; font-weight: 500; }

/* ═══════════════════════════════════════════════
   Navigation
═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}
.nav.is-scrolled {
  background: rgba(11, 11, 11, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(212, 177, 106, 0.28);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* The source logo is a square PNG with a large black margin around the
   wordmark. These offsets crop the frame down to the mark itself so the
   logo reads at a proper size without a visible black plate. */
.brand {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 710 / 214;
  flex-shrink: 0;
}
.brand img {
  position: absolute;
  top: -176.6%;
  left: -21.1%;
  height: 461.2%;
  width: auto;
  max-width: none;
  mix-blend-mode: screen;
}

.nav__logo {
  height: 2.5rem;
  transition: opacity 0.3s ease;
}
.nav__logo:hover { opacity: 0.85; }

.nav__links { display: none; align-items: center; gap: 1.75rem; }

.nav__link {
  position: relative;
  color: rgba(248, 246, 241, 0.65);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: color 0.3s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.625rem 1.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.nav__cta:hover {
  background: var(--gold-hover);
  box-shadow: 0 4px 24px rgba(212, 177, 106, 0.38);
  transform: translateY(-1px);
}

.nav__toggle {
  color: var(--ivory);
  padding: 0.5rem;
  display: inline-flex;
}
.nav__toggle .icon-close,
.nav__toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: var(--black);
  border-top: 1px solid rgba(212, 177, 106, 0.2);
  padding: 1.75rem var(--gutter);
  animation: menuIn 0.22s ease-out;
}
.nav__mobile.is-open { display: flex; }

@keyframes menuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

.nav__mobile a {
  color: rgba(248, 246, 241, 0.65);
  font-size: 14px;
  font-weight: 500;
  padding-block: 0.25rem;
  transition: color 0.3s ease;
}
.nav__mobile a:hover { color: var(--gold); }

.nav__mobile .nav__mobile-cta {
  margin-top: 0.5rem;
  background: var(--gold);
  color: var(--black);
  padding-block: 0.75rem;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__mobile .nav__mobile-cta:hover { color: var(--black); background: var(--gold-hover); }

@media (min-width: 1280px) {
  .nav__links,
  .nav__cta   { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__mobile.is-open { display: none; }
}

/* ═══════════════════════════════════════════════
   Icons
═══════════════════════════════════════════════ */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.icon--sm  { width: 0.875rem; height: 0.875rem; }
.icon--md  { width: 1.375rem; height: 1.375rem; }
.icon--lg  { width: 1.75rem; height: 1.75rem; }
.icon--thin { stroke-width: 1.4; }
.icon--filled { fill: currentColor; }
/* Official brand marks (X, YouTube, WhatsApp…) are solid glyphs, not outline
   strokes: filling and dropping the stroke keeps them at their intended weight
   instead of adding a 2px outline around every edge. */
.icon--brand { fill: currentColor; stroke: none; }

.icon-box {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(212, 177, 106, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   Form
═══════════════════════════════════════════════ */
.field { display: block; }

.field__label {
  display: block;
  color: rgba(248, 246, 241, 0.38);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}

.field__input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(212, 177, 106, 0.18);
  color: var(--ivory);
  font-size: 14px;
  padding-bottom: 0.75rem;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
}
.field__input::placeholder { color: rgba(248, 246, 241, 0.18); }
.field__input:focus { border-bottom-color: var(--gold); }

select.field__input {
  color: rgba(248, 246, 241, 0.7);
  appearance: none;
  cursor: pointer;
}
select.field__input option { background: var(--black-card); color: var(--ivory); }

textarea.field__input { resize: none; }

.field__error {
  display: none;
  color: #d98b7a;
  font-size: 11px;
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}
.field.has-error .field__input { border-bottom-color: #d98b7a; }
.field.has-error .field__error { display: block; }

.form__status {
  display: none;
  align-items: center;
  gap: 0.625rem;
  color: var(--gold);
  font-size: 13px;
  margin-top: 0.25rem;
}
.form__status.is-visible { display: flex; }

/* ═══════════════════════════════════════════════
   Footer
═══════════════════════════════════════════════ */
.footer { background: var(--black-deep); }

.footer__divider {
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(212, 177, 106, 0),
    rgba(212, 177, 106, 0.45),
    rgba(212, 177, 106, 0)
  );
  transform-origin: left;
}

.footer__inner { padding-block: 4rem; }

.footer__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer__logo {
  height: 2.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer__blurb {
  color: rgba(248, 246, 241, 0.32);
  font-size: 13.5px;
  line-height: 1.85;
  max-width: 20rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.footer__social {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(212, 177, 106, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 246, 241, 0.38);
  transition: all 0.3s ease;
}
.footer__social:hover { border-color: var(--gold); color: var(--gold); }

.footer__heading {
  color: var(--ivory);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__link {
  display: block;
  color: rgba(248, 246, 241, 0.32);
  font-size: 13px;
  margin-bottom: 0.625rem;
  transition: color 0.3s ease;
}
.footer__link:hover { color: var(--gold); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(248, 246, 241, 0.32);
  font-size: 13px;
}
.footer__contact-item .icon {
  color: var(--gold);
  width: 0.8125rem;
  height: 0.8125rem;
  stroke-width: 1.8;
  margin-top: 0.125rem;
}

.footer__hours {
  color: rgba(248, 246, 241, 0.32);
  font-size: 13px;
  line-height: 1.8;
}

.footer__rule {
  height: 1px;
  background: rgba(212, 177, 106, 0.12);
  margin-bottom: 1.75rem;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__bottom p,
.footer__bottom a {
  color: rgba(248, 246, 241, 0.22);
  font-size: 12px;
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { transition: color 0.3s ease; }
.footer__legal a:hover { color: var(--gold); }

@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; }
}

@media (min-width: 1024px) {
  .footer__inner { padding-block: 5rem; }
  .footer__grid  { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
