/* Huashu variant final corrections. Loaded after site.css on purpose. */
.hero__content {
  text-align: center;
  align-items: center;
}

.hero__title {
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle,
.hero__copy,
.hero__actions,
.hero__brief-grid {
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator {
  left: 50%;
  right: auto;
  width: 5.5rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center;
  text-align: center;
}

.js [data-reveal].scroll-indicator,
.js [data-reveal].scroll-indicator.is-visible {
  transform: translateX(-50%) !important;
}

.scroll-indicator > span:first-child {
  display: block;
  width: 100%;
  text-align: center;
}

.scroll-indicator__line {
  margin-left: auto;
  margin-right: auto;
  justify-self: center;
}

.work-card__pill {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.work-card__pill.accent-amber,
.work-card__pill.accent-sky,
.work-card__pill.accent-emerald,
.work-card__pill.accent-orange {
  color: #fff !important;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1.08fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: 4rem;
}

.contact-panel__copy h2 {
  max-width: 11ch;
  margin: 0.75rem 0 1.1rem;
  font-size: clamp(3rem, 6.5vw, 6.25rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.contact-panel__copy h2 em {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.035em;
  color: #f7f4ed;
  text-shadow:
    0 0 24px rgba(25, 137, 255, 0.28),
    0 0 48px rgba(47, 215, 184, 0.14);
}

.contact-panel__copy .section-copy {
  max-width: 33rem;
  margin: 0;
  text-align: left;
}

.eyebrow--compact {
  margin-bottom: 1rem;
}

.contact-method,
.contact-form-card {
  border: 1px solid rgba(247, 244, 237, 0.13);
  background:
    radial-gradient(circle at 10% 0%, rgba(21, 112, 214, 0.18), transparent 30%),
    radial-gradient(circle at 100% 18%, rgba(48, 214, 184, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.015)),
    rgba(5, 7, 8, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.contact-method {
  width: min(24rem, 100%);
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
}

.contact-method small,
.contact-form label span,
.contact-form__fineprint {
  display: block;
  color: rgba(247, 244, 237, 0.48);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-method strong {
  display: block;
  margin-top: 0.45rem;
}

.contact-booking-button,
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3.35rem;
  margin-top: 1rem;
  border: 1px solid rgba(247, 244, 237, 0.18);
  border-radius: 999px;
  color: var(--bg);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 44px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-booking-button {
  background: #f7f4ed;
}

.contact-form__submit {
  background:
    linear-gradient(135deg, rgba(247, 244, 237, 0.98), rgba(206, 226, 234, 0.94)),
    #f7f4ed;
}

.contact-booking-button:hover,
.contact-form__submit:hover {
  transform: translateY(-1px);
  border-color: rgba(72, 154, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 44px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(72, 154, 255, 0.16);
}

.contact-form-card {
  padding: clamp(1.1rem, 3vw, 2rem);
  border-radius: 1.35rem;
}

.contact-form,
.contact-form-frame {
  width: 100%;
}

.contact-form-frame {
  min-height: 32rem;
  border: 0;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.24);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.1rem;
  margin-top: 0.45rem;
  border: 1px solid rgba(247, 244, 237, 0.11);
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.42);
  color: var(--text);
  padding: 0.85rem 0.9rem;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(72, 154, 255, 0.74);
  box-shadow:
    0 0 0 3px rgba(72, 154, 255, 0.13),
    0 0 28px rgba(47, 215, 184, 0.08);
}

.contact-form__fineprint {
  margin: 0.15rem 0 0;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.contact-form__status {
  min-height: 1.35rem;
  margin: -0.2rem 0 0;
  color: rgba(247, 244, 237, 0.74);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form__status[data-state="success"] {
  color: #43e09b;
}

.contact-form__status[data-state="error"] {
  color: #ff9b9b;
}

.contact-form__submit:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.cal-modal[hidden] {
  display: none;
}

.cal-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  isolation: isolate;
}

.cal-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.cal-modal__dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(68rem, calc(100vw - 2rem));
  height: min(46rem, calc(100svh - 2rem));
  transform: translate(-50%, -50%);
  overflow: hidden;
  border: 1px solid rgba(247, 244, 237, 0.18);
  border-radius: 1rem;
  background: #080909;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.58);
}

.cal-modal__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 3.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(247, 244, 237, 0.12);
  color: var(--text);
}

.cal-modal__bar button {
  border: 1px solid rgba(247, 244, 237, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  cursor: pointer;
}

.cal-modal__fallback {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(247, 244, 237, 0.1);
  background:
    radial-gradient(circle at 0% 50%, rgba(72, 154, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.035);
  color: rgba(247, 244, 237, 0.68);
  font-size: 0.9rem;
}

.cal-modal__fallback a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.45rem;
  padding: 0 1rem;
  border: 1px solid rgba(247, 244, 237, 0.16);
  border-radius: 999px;
  background: #f7f4ed;
  color: #050606;
  font-weight: 800;
  white-space: nowrap;
}

.cal-modal__frame {
  width: 100%;
  height: calc(100% - 7.4rem);
  border: 0;
  background: #fff;
}

body.is-cal-open {
  overflow: hidden;
}

@media (max-width: 959px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel__copy h2,
  .contact-panel__copy .section-copy {
    max-width: none;
  }

  .hero__subtitle,
  .hero__copy,
  .hero__actions,
  .hero__brief-grid {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-panel__copy h2 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }
}
