﻿:root {
  --bg: #000;
  --text: #f6f6f6;
  --muted: #cecece;
  --line: rgba(255, 255, 255, 0.62);
  --cyan: #39e6ff;
  --peach: #FEA98F;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  background: var(--bg);
}

body {
  color: var(--text);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: url("images/default-arrow_pointer.png") 2 2, auto;
  }

  a,
  button,
  input[type="button"],
  input[type="submit"],
  input[type="reset"] {
    cursor: url("images/hand_pointer_button-01.png") 6 2, pointer;
  }

  input,
  textarea,
  [contenteditable="true"] {
    cursor: text;
  }
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -52px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
}

.is-hidden {
  display: none !important;
}

.site-copyright {
  position: relative;
  left: 0;
  right: 0;
  bottom: max(8px, env(safe-area-inset-bottom));
  z-index: 60;
  margin: 0;
  text-align: right;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  padding: 0;
}

.site-footer {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(24px, 4.7vw, 90px) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.site-footer .social-footer {
  margin: 0;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .page,
body.is-loading .dust-canvas {
  opacity: 0;
  visibility: hidden;
}

body.is-ready .page,
body.is-ready .dust-canvas {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background: radial-gradient(900px 420px at 50% -10%, rgba(255, 255, 255, 0.08), transparent 60%), #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}

body.is-ready .site-loader {
  opacity: 0;
  visibility: hidden;
}

.site-loader-logo {
  width: clamp(130px, 16vw, 190px);
  height: auto;
}

.site-loader-spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-top-color: rgba(255, 255, 255, 0.92);
  animation: loader-spin 0.8s linear infinite;
}

.site-loader-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.dust-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
  mix-blend-mode: normal;
  will-change: transform, opacity;
}

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: transparent;
  z-index: 3;
}

.site-header {
  position: absolute;
  top: clamp(28px, 4vw, 70px);
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(24px, 4.7vw, 90px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  width: clamp(155px, 11.2vw, 215px);
  display: block;
}

.top-nav {
  margin-left: auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-nav-list:empty {
  display: none;
}

.header-menu-btn {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.55);
  color: inherit;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.header-menu-btn img {
  width: 32px;
  height: 32px;
  display: block;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid rgb(151, 224, 245);
  outline-offset: 2px;
}

.content {
  position: relative;
  z-index: 4;
  width: min(36vw, 840px);
  padding-top: clamp(20vh, 24vh, 28vh);
  padding-left: clamp(24px, 4.6vw, 90px);
}

.quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 3.75vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: #f1f1f1;
}

.line .q {
  margin-right: 0.3rem;
}

.quote .line {
  display: block;
}

.accent-cyan {
  color: var(--cyan);
}

.accent-peach {
  color: var(--peach);
  font-style: italic;
  font-weight: 700;
}

.notify {
  margin-top: clamp(36px, 4vw, 56px);
  /* width: min(560px, 84vw); */
  /* width: min(100% 560px , 420px); */
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-heading{
  width: 100%;
  display: flex;
  /* margin-bottom: 24px; */
  line-height: 2rem;
}
.notify input {
  width: 100%;
  height: clamp(52px, 2.9vw, 58px);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 9px;
  outline: none;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(18px, 1vw, 20px);
  font-family: "Poppins", sans-serif;
  padding: 0 18px;
}

.notify input:focus,
.notify input:focus-visible {
  outline: 1px solid rgb(151, 224, 245);
  outline-offset: 2px;
}

.notify select {
  width: 100%;
  height: clamp(52px, 2.9vw, 58px);
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 9px;
  outline: none;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  padding: 0 48px 0 18px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("images/iconamoon_arrow-down-2-duotone.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
}

.notify select:focus,
.notify select:focus-visible {
  outline: none;
  border-color: rgb(151, 224, 245);
  box-shadow: 0 0 0 2px rgba(151, 224, 245, 0.25);
}

.notify select.event-type-selected {
  /* background-color: #fff;
  color: #000; */
  border-color: rgba(255, 255, 255, 0.95);
}

.event-date-wrap {
  position: relative;
  width: 100%;
  border-radius: 9px;
  overflow: hidden;
}

.event-date-wrap input[type="text"] {
  padding-right: 54px;
  border-radius: 9px;
}
.event-date-picker-btn {
  position: absolute !important;
  margin: 0 !important;
  top: 2px;
  right: 2px;
  bottom: 2px;
  width: 48px !important;
  height: auto !important;
  border-radius: 0 7px 7px 0;
  border: none !important;
  border-left: 1px solid rgba(255, 255, 255, 0.35) !important;
  background: transparent url("images/famicons_calendar-outline.svg") no-repeat center center !important;
  background-size: 18px 18px !important;
  color: transparent !important;
  font-size: 0 !important;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  line-height: 1;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

.event-date-picker-btn::before {
  content: none !important;
}

.event-date-picker-btn:hover,
.event-date-picker-btn:active {
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
  background: transparent url("images/famicons_calendar-outline.svg") no-repeat center center !important;
  background-size: 18px 18px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.35) !important;
  transform: none !important;
  outline: none !important;
}

.event-date-wrap input[type="date"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.event-date-wrap input[type="hidden"] {
  display: none;
}

.notify select option {
  background: #000;
  color: #fff;
  font-size: 0.8rem;
}

.notify select option:checked {
  background: #fff;
  color: #000;
}

.notify input::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.field-error {
  min-height: 1rem;
  margin-top: -4px;
  color: #ff9cab;
  font-size: 0.82rem;
  line-height: 1.15;
  text-align: left;
  width: 100%;
}

.notify input.is-invalid {
  border-color: rgba(255, 105, 128, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 105, 128, 0.3);
}

.notify select.is-invalid {
  border-color: rgba(255, 105, 128, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 105, 128, 0.3);
}

.notify button {
  position: relative;
  overflow: hidden;
  margin-top: 6px;
  width: min(100%, 420px);
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: linear-gradient(114deg, rgb(93 90 90 / 72%), rgb(56 54 54 / 36%));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #f2f2f2;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease, background 0.32s ease;
}

.notify button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.18) 48%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.notify button:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(100deg, rgba(52, 52, 52, 0.74), rgba(74, 74, 74, 0.45));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42), 0 0 18px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}

.notify button:hover::before {
  transform: translateX(120%);
}

.notify button:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.notify button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  filter: grayscale(0.1);
}

.lead-status {
  min-height: 1.1rem;
  font-size: 0.9rem;
  color: rgba(232, 232, 232, 0.9);
}

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

.social-footer {
  margin-top: 16px;
  margin-bottom: 32px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  /* padding: 16px 18px; */
  border-radius: 14px;
  border: 0.5px solid rgba(249, 249, 249, 0.02);
  /* background: linear-gradient(110deg, rgba(48, 48, 48, 0.62), rgba(90, 90, 90, 0.28)); */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  font-size: 0.8rem;
}

.opacity-half {
  opacity: 0.5;
}

.social-footer a {
  position: relative;
  overflow: hidden;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  /* background: linear-gradient(100deg, rgba(38, 38, 38, 0.72), rgba(56, 56, 56, 0.36)); */
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease, background 0.28s ease;
}

.social-footer a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 26%, rgba(255, 255, 255, 0.16) 50%, transparent 74%);
  transform: translateX(-130%);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.social-footer img {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform 0.24s ease, filter 0.24s ease, opacity 0.24s ease;
}

.social-footer a:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(100deg, rgba(52, 52, 52, 0.74), rgba(74, 74, 74, 0.45));
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.36), 0 0 14px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-footer a:hover::before {
  transform: translateX(120%);
}

.social-footer a:hover img {
  transform: scale(1.1);
  filter: saturate(1.12);
  opacity: 1;
}

.social-footer a:active {
  transform: translateY(0) scale(0.97);
}

.visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
}

.visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 18vh, 220px);
  background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.84) 46%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(56vw, 800px);
  max-height: 100vh;
  z-index: 1;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) brightness(0.88) contrast(1.06);
}

.message-wrap {
  position: absolute;
  top: clamp(386px, 22vw, 430px);
  left: clamp(42vw, 46vw, 48vw);
  width: clamp(340px, 28vw, 540px);
  z-index: 4;
}

.message-card {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(100deg, rgba(38, 38, 38, 0.72), rgba(56, 56, 56, 0.36));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* padding: clamp(13px, 1vw, 18px);
   */
  padding: 24px 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.message-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}

.message-head img {
  width: clamp(38px, 2.4vw, 47px);
  height: clamp(38px, 2.4vw, 47px);
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.3);
}

.time {
  font-size: clamp(10px, 0.6vw, 12px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.1;
}

.name {
  font-size: clamp(28px, 2.05vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.message-text {
  font-size: clamp(15px, 1vw, 18px);
  color: #e8e8e8;
  line-height: 1.25;
}
.message-text.modal {
  font-size: 1rem;
  line-height: 1.5;
}

.message-text + .message-text {
  margin-top: 7px;
}

.connector {
  --hx: 1;
  --vy: 1;
  position: absolute;
  top: -104px;
  left: 74%;
  width: clamp(66px, 5vw, 94px);
  height: clamp(4vw, 4.5vw, 5vw);
  z-index: 2;
}

.connector::before,
.connector::after {
  content: "";
  position: absolute;
  background: var(--line);
}

.connector::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform-origin: left center;
  transform: scaleX(var(--hx));
}

.connector::after {
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  transform-origin: center top;
  transform: scaleY(var(--vy));
}

.connector span {
  display: none;
}

.connector::selection {
  background: transparent;
}

.status-pill {
  position: absolute;
  left: clamp(50vw, 49vw, 51.7vw);
  bottom: clamp(54px, 7.7vw, 86px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(110deg, rgba(48, 48, 48, 0.72), rgba(86, 86, 86, 0.38));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  z-index: 4;
}

.status-pill span {
  /* font-size: clamp(24px, 1.3vw, 35px); */
  font-size: 1.2rem;
  color: #f1f1f1;
  line-height: 1;
}

.submit-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.80);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  pointer-events: none;
}

.submit-modal.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease;
  pointer-events: auto;
}

.submit-modal-card {
  position: relative;
  width: min(92vw, 560px);
  border-radius: 24px;
}

.submit-modal-card.modal {
  background: linear-gradient(195deg, rgb(84 85 87 / 72%), rgba(56, 56, 56, 0.36));
}

.submit-modal-card .name {
  font-size: clamp(26px, 3.3vw, 34px);
  margin-bottom: 16px;
}

.submit-modal-link {
  margin-top: 14px;
  display: inline-block;
  color: #dff7ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.submit-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(100deg, rgba(38, 38, 38, 0.72), rgba(56, 56, 56, 0.36));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease, background 0.28s ease;
}

.submit-modal-close::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 26%, rgba(255, 255, 255, 0.16) 50%, transparent 74%);
  transform: translateX(-130%);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.submit-modal-close img {
  width: 18px;
  height: 18px;
  display: block;
}

.submit-modal-close:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(100deg, rgba(52, 52, 52, 0.74), rgba(74, 74, 74, 0.45));
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.36), 0 0 14px rgba(255, 255, 255, 0.1);
}

.submit-modal-close:hover::before {
  transform: translateX(120%);
}

.submit-modal-close:active {
  transform: translateY(0) scale(0.97);
}

.dot {
  width: clamp(10px, 0.7vw, 13px);
  height: clamp(10px, 0.7vw, 13px);
  border-radius: 50%;
  background: #59ff4e;
  box-shadow: 0 0 10px rgba(110, 255, 101, 0.7);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.only-info-sr{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.more-info {
  margin-top: 10px;
  margin-bottom: 12px;
  color: rgba(241, 241, 241, 0.9);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 2.2;
  margin-bottom: 64px;
}
.more-info p{
  line-height: 1.8;
}

@media (max-width: 1700px) {
  .content {
    width: 52vw;
    padding-top: 35vh;
  }

  .hero-image {
    width: 58vw;
  }
  .connector {
    display: none;
  }
  .message-wrap {
    top: 10vh;
    left: 42vw;
    width: min(30vw, 36vw);
  }

  .status-pill {
    left: 50vw;
  }
  .notify input{
    width: 100%;
  }
}

@media (max-width: 1366px) {
  .content {
    width: 42vw;
    padding-top: 180px;
  }

  .hero-image {
    width: 58vw;
  }

  .message-wrap {
    left: 42vw;
    width: min(40vw, 45vw);
  }

  .status-pill {
    left: 50vw;
  }

  .notify{
    width: 80%;
  }
}

@media (max-width: 1280px) {
  .content {
    width: 42vw;
    padding-top: 180px;
  }

  .hero-image {
    width: 58vw;
  }

  .message-wrap {
    left: 42vw;
    width: min(43vw, 45vw);
  }

  .status-pill {
    left: 50vw;
  }
}

@media (max-width: 980px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 16px 24px;
    gap: 12px;
  }

  .site-copyright {
    text-align: center;
  }

  .page {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .site-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 28px auto 0;
    width: 100%;
    padding: 0 32px;
    justify-content: center;
  }

  .top-nav {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    margin: 0 auto;
    width: 180px;
  }

  .content {
    display: contents;
  }

  .quote {
    order: 1;
    width: 100%;
    padding: 12vh 7vw 0;
    text-align: center;
    font-size: clamp(44px, 8.5vw, 68px);
    line-height: 1.05;
    text-align: center;
  }
  

  .visual {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    margin-top: 12px;
  }

  .visual::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: clamp(140px, 28vh, 260px);
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.88) 42%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 3;
  }

  .notify {
    order: 3;
    /* width: calc(100% - 32px); */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 64px;
    width: 100%;
  }

  .more-info {
    order: 4;
    width: 100%;
    padding: 0 64px;
    text-align: center;
  }

  .social-footer {
    /* margin: -20px auto 26px; */
    width: calc(100% - 32px);
    justify-content: center;
  }

  .notify input,
  .notify select {
    height: 60px;
    font-size: clamp(18px, 2.7vw, 28px);
    border-radius: 14px;
    text-align: left;
    padding: 0 22px;
  }

  .event-date-wrap input[type="text"] {
    padding-right: 56px;
  }

  .event-date-picker-btn {
    width: 46px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    height: auto;
  }

  .notify select {
    font-size: 0.8rem;
  }

  .notify button {
    height: 64px;
    width: min(100%, 460px);
    font-size: clamp(17px, 2.6vw, 24px);
    border-radius: 11px;
    margin-top: 4px;
  }

  .hero-image {
    width: 100%;
    position: static;
    display: block;
    height: auto;
    max-height: none;
    object-position: center top;
    transform: none;
  }

  .message-wrap {
    top: 36px;
    left: 35%;
    transform: translateX(-50%);
    width: min(82vw, 560px);
  }

  .message-card {
    border-radius: 22px;
    padding: 12px;
  }

  .name {
    font-size: clamp(28px, 4.5vw, 46px);
  }

  .time {
    font-size: clamp(10px, 1.2vw, 14px);
  }

  .message-text {
    font-size: clamp(15px, 1.9vw, 23px);
    line-height: 1.3;
  }

  .connector {
    top: -90px;
    left: 76%;
    width: 68px;
    height: 98px;
  }

  .status-pill {
    left: auto;
    left: 9vw;
    top: 480px;
    bottom: auto;
    padding: 8px 14px;
  }

  .status-pill span {
    font-size: 1.2rem;
  }

  .dot {
    width: 11px;
    height: 11px;
  }
  h1.quote.reveal{
    text-align: center;
  }
}

@media (max-width: 870px) {
  .message-wrap {
    left: 42%;
  }
}
@media (max-width: 620px) {
  .site-header {
    margin: 24px auto 0;
    padding: 0 20px;
  }

  .top-nav {
    right: 20px;
  }

  .logo {
    width: 170px;
    margin: 0 auto;
  }

  .quote {
    padding: 10vh 20px 0;
    text-align: center;
    font-size: clamp(31px, 9.8vw, 42px);
    line-height: 1.04;
  }

  .notify {
    margin: 32px auto;
    width: calc(100% - 32px);
    padding: 32px;
  }

  .social-footer {
    /* margin: -18px auto 22px; */
    width: calc(100% - 32px);
    justify-content: center;
    padding: 16px 12px;
    gap: 8px;
    border-radius: 12px;
  }

  .more-info {
    width: calc(100% - 32px);
    padding: 0;
    text-align: center;
  }

  .social-footer a {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .social-footer img {
    width: 24px;
    height: 24px;
  }

  .notify input,
  .notify select {
    height: 48px;
    font-size: 16px;
    border-radius: 8px;
    padding: 0 14px;
  }

  .event-date-wrap input[type="text"] {
    padding-right: 50px;
  }

  .event-date-picker-btn {
    width: 42px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    height: auto;
    border-radius: 0 7px 7px 0;
  }

  .notify select {
    font-size: 1rem;
  }

  .notify button {
    margin-top: 4px;
    height: 46px;
    width: 100%;
    font-size: 0.96rem;
    border-radius: 8px;
  }

  .hero-image {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .visual {
    width: 100%;
    height: auto;
    margin-top: 32px;
  }

  .message-wrap {
    top: 10px;
    left: 20px;
    right: 20px;
    transform: none;
    width: auto;
    max-width: 320px;
  }

  .message-card {
    border-radius: 18px;
    padding: 9px 10px;
  }

  .message-head {
    gap: 8px;
    margin-bottom: 7px;
  }

  .message-head img {
    width: 32px;
    height: 32px;
  }

  .name {
    font-size: 22px;
  }

  .time {
    font-size: 8px;
  }

  .message-text {
    font-size: 12px;
    line-height: 1.22;
  }

  .connector {
    width: 40px;
    height: 60px;
    right: 18px;
    left: auto;
    top: -46px;
  }

  .status-pill {
    left: 16px;
    top: 320px;
    bottom: auto;
    padding: 6px 10px;
    border-radius: 12px;
    gap: 8px;
  }

  .status-pill span {
    font-size: 14px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}
