.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  box-shadow: 0 0 10px rgba(168, 83, 31, 0.5);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header--solid,
.site-header.is-menu-open {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-nav);
}

.site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.98);
  z-index: 120;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 2.4vw, 32px);
  letter-spacing: 0.02em;
  color: var(--white);
}

.site-header.is-scrolled .brand,
.site-header--solid .brand,
.site-header.is-menu-open .brand { color: var(--ink); }

.brand__logo-btn {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex: none;
  line-height: 0;
  border-radius: 50%;
}

.brand__logo-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.site-header.is-scrolled .brand__logo-btn:focus-visible,
.site-header--solid .brand__logo-btn:focus-visible,
.site-header.is-menu-open .brand__logo-btn:focus-visible {
  outline-color: var(--ink);
}

.brand__text {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.brand__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  object-fit: contain;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
}

.site-nav a:hover { background: rgba(140, 130, 120, 0.14); color: var(--white); }

.site-header.is-scrolled .site-nav a:not(.btn-pill),
.site-header--solid .site-nav a:not(.btn-pill) {
  color: var(--ink-muted);
}

.site-header.is-scrolled .site-nav a:not(.btn-pill):hover,
.site-header--solid .site-nav a:not(.btn-pill):hover { color: var(--ink); }

.site-nav a.btn-pill,
.site-nav a.btn-pill:hover {
  color: var(--white);
}

.site-nav a.is-active { color: var(--accent-bright); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 8px 8px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(140% 210% at 78% 22%, rgba(126, 150, 190, 0.42), rgba(126, 150, 190, 0) 55%), linear-gradient(180deg, #35363c 0%, #191a1e 46%, #0b0b0e 100%);
  box-shadow: 0 0 0 4px rgba(214, 218, 226, 0.5), 0 16px 32px rgba(12, 14, 18, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.btn-pill__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  color: #1b2230;
  background: radial-gradient(circle at 35% 28%, #fff, #e6e8ec 92%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.btn-pill--nav {
  margin-left: 10px;
  padding: 5px 5px 5px 18px;
  font-size: 14px;
  box-shadow: 0 0 0 3px rgba(214, 218, 226, 0.45), 0 8px 18px rgba(12, 14, 18, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-pill--nav .btn-pill__icon {
  width: 28px;
  height: 28px;
}

.btn-pill--sm .btn-pill__icon { width: 26px; height: 26px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  line-height: 0;
}

.nav-toggle svg {
  display: block;
}

.nav-toggle .nav-toggle__close { display: none; }

.site-header.is-menu-open .nav-toggle .nav-toggle__open { display: none; }

.site-header.is-menu-open .nav-toggle .nav-toggle__close { display: block; }

.site-header.is-scrolled .nav-toggle,
.site-header--solid .nav-toggle,
.site-header.is-menu-open .nav-toggle { color: var(--ink); }

.site-footer {
  position: relative;
  z-index: 2;
  background: var(--dark-footer);
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 30px 32px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}

.site-footer__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex: none;
  object-fit: contain;
  display: block;
}

.site-footer__copy {
  font-family: var(--font-mono);
  font-size: 12px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(32px, 4vw, 44px);
}

.site-footer__col {
  display: flex;
  flex-direction: column;
}

.site-footer__col--brand {
  max-width: 38ch;
}

.site-footer__tagline {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 12px;
}

.site-footer__address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color 0.2s;
}

.site-footer__contact-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.site-footer__contact-link--wa:hover {
  color: #25d366;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hide-scrollbar {
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar { display: none; }

.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
}

.carousel-btn--primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.carousel-btn--dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--white);
}

.carousel-btn--dark-primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--dark);
}

.form-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: clamp(26px, 3vw, 38px);
}

.form-field { margin-top: 18px; }

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 13px 14px;
  color: var(--white);
  font-size: 15px;
}

.form-select {
  background-color: #1d1b18;
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  line-height: 1.45;
  min-height: 48px;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.custom-select {
  position: relative;
}

.custom-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background-color: #1d1b18;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 13px 14px;
  min-height: 48px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.45;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-select__trigger.is-placeholder { color: rgba(255, 255, 255, 0.5); }

.custom-select.is-open .custom-select__trigger,
.custom-select__trigger:focus-visible {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(194, 106, 43, 0.22);
}

.custom-select__value {
  flex: 1;
  min-width: 0;
}

.custom-select__chevron {
  flex: none;
  color: rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select__chevron { transform: rotate(180deg); }

.custom-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #1a1816;
  border: 1px solid rgba(194, 106, 43, 0.45);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  max-height: min(280px, 50vh);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(194, 106, 43, 0.5) transparent;
}

.custom-select__list[hidden] { display: none; }

.custom-select__option {
  padding: 12px 14px;
  border-radius: calc(var(--radius-md) - 2px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
  line-height: 1.45;
  cursor: pointer;
}

.custom-select__option:hover,
.custom-select__option.is-focused {
  background: rgba(194, 106, 43, 0.16);
  color: var(--white);
}

.custom-select__option.is-selected {
  background: rgba(194, 106, 43, 0.24);
  color: var(--accent-bright);
  font-weight: 600;
}

.custom-select__option.is-placeholder { color: rgba(255, 255, 255, 0.45); }

.form-select option {
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  line-height: 1.5;
  padding: 10px 14px;
}

.form-select option:checked {
  background: var(--surface-alt);
  color: var(--ink);
  font-weight: 600;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-bright);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(194, 106, 43, 0.22);
}

.form-input.is-invalid,
.form-textarea.is-invalid,
.form-select.is-invalid,
.custom-select__trigger.is-invalid {
  border-color: rgba(255, 138, 128, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 138, 128, 0.14);
}

.form-input.is-invalid:focus,
.form-textarea.is-invalid:focus,
.form-select.is-invalid:focus,
.custom-select__trigger.is-invalid:focus-visible {
  border-color: rgba(255, 138, 128, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 138, 128, 0.18);
}

.form-textarea { resize: vertical; min-height: 110px; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.form-panel__title {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0;
}

.form-field-error {
  display: block;
  font-family: var(--font-sans);
  font-size: 11.5px;
  line-height: 1.35;
  color: #ff9b91;
  margin-top: 5px;
}

.form-field-error:empty {
  display: none;
}

.form-submit {
  width: 100%;
  justify-content: space-between;
  margin-top: 22px;
  cursor: pointer;
}

.form-status {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-bright);
  margin: 14px 0 0;
  min-height: 18px;
}

.form-status.is-error { color: #ff8a80; }

.form-status.is-success { color: #8fd49a; }

.turnstile-wrap {
  margin-top: 18px;
  min-height: 65px;
  overflow: visible;
}

.turnstile-wrap iframe,
.cf-turnstile iframe {
  display: inline-block !important;
  max-width: none !important;
  width: 300px !important;
  height: 65px !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 11, 10, 0.86);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 48px);
}

.modal.is-open { display: flex; }

.modal--logo {
  flex-direction: column;
  gap: 16px;
}

.modal--logo .modal__close--logo {
  position: fixed;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  z-index: 1;
}

.modal__logo-image {
  max-width: min(90vw, 480px);
  max-height: min(85vh, 85dvh);
  width: auto;
  height: auto;
  border-radius: 50%;
  object-fit: contain;
}

.modal__panel {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  max-width: 1120px;
  width: 100%;
  max-height: min(90vh, 90dvh);
  overflow: auto;
  padding: clamp(22px, 3vw, 38px);
  padding-bottom: calc(clamp(22px, 3vw, 38px) + env(safe-area-inset-bottom, 0px));
}

.modal__close {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(20px, 2.4vw, 30px);
}

.modal__head h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 14px;
}

.tag-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.06);
}

.location-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0b0a08;
  background: linear-gradient(135deg, #f7ce74 0%, #e8b64a 100%);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 16px rgba(245, 204, 110, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 80px;
}

.page-404__inner {
  max-width: 36rem;
}

.page-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.page-404__copy {
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
