:root {
  color-scheme: light;
  --max-width: 480px;
  --gallery-surface: #221e20;
  --gallery-track: #d9d4cf;
  --gallery-track-thumb: #bbb3aa;
  --gallery-page-bg: rgb(239, 238, 235);
  --bank-page-bg: rgb(239, 238, 235);
  --bank-header-bg: #231f20;
  --bank-card-bg: #fdfcfc;
  --bank-divider: rgba(35, 31, 32, 0.3);
}

@font-face {
  font-family: "Maigre";
  src: url("../assets/fonts/Maigre-DEMO.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
}

.site-shell {
  width: 100%;
  margin: 0 auto;
}

.page-stack {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.invite-page {
  width: 100%;
}

.invite-page--interactive {
  position: relative;
}

.invite-page--gallery {
  aspect-ratio: 4500 / 10128;
  background: #ffffff;
}

.gallery-page-background {
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 0;
}

.invite-page--bank {
  aspect-ratio: 1440 / 2560;
  background: var(--bank-page-bg);
}

.invite-page--location {
  aspect-ratio: 1440 / 2808;
  background: #ffffff;
}

.invite-image {
  display: block;
  width: 100%;
  height: auto;
}

.image-hotspot {
  position: absolute;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.image-hotspot:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.55);
  outline-offset: 2px;
}

.image-hotspot--contact {
  left: 20.3%;
  top: 72.8%;
  width: 59.4%;
  height: 5.6%;
  border-radius: 999px;
}

.image-hotspot--calendar {
  left: 20.6%;
  top: calc(84.1% + 10px);
  width: 58.8%;
  height: 5.2%;
  border-radius: 999px;
  z-index: 2;
}

.calendar-dday-overlay {
  position: absolute;
  left: 50%;
  top: calc(72.05% + 8px);
  width: 48%;
  height: 6.1%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  z-index: 1;
  color: #3b3838;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.calendar-dday-mask {
  display: block;
  position: absolute;
  left: 20.8%;
  top: calc(71.1% + 8px);
  width: 58.4%;
  height: 8.4%;
  background: #ffffff;
  z-index: 0;
}

.calendar-dday-line {
  display: flex;
  align-items: baseline;
  margin: 0;
  white-space: nowrap;
  color: inherit;
}

.calendar-dday-line--first {
  margin-top: 0;
  gap: 0;
  font-size: 20px;
  line-height: 1;
}

.calendar-dday-name-part {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.1em;
}

.calendar-dday-name-part--first {
  margin-right: 2px;
}

.calendar-dday-name-part--second {
  margin-left: 3px;
  margin-right: 1px;
  padding-left: 0;
}

.calendar-dday-particle {
  margin-left: 1px;
  margin-right: 1px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.08em;
}

.calendar-dday-title {
  margin-left: 1px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.11em;
}

.calendar-dday-line--second {
  margin-top: 6px;
  gap: 0;
  font-size: 20px;
  line-height: 1;
  align-items: center;
}

.calendar-dday-number {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.calendar-dday-day {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.calendar-dday-tail {
  margin-left: 3px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.gallery-page {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.gallery-body-mask {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(15.5% + 40px);
  bottom: 0;
  background: #ffffff;
  z-index: 0;
}

.gallery-feature-mask,
.gallery-strip-mask {
  position: absolute;
  background: #ffffff;
  z-index: 1;
}

.gallery-feature-mask {
  left: 6.67%;
  top: 21.13%;
  width: 86.66%;
  height: 45.21%;
}

.gallery-feature {
  position: absolute;
  left: 6.67%;
  top: 21.13%;
  width: 86.66%;
  height: 45.21%;
  z-index: 2;
  padding: 0;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.gallery-feature-viewport {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.gallery-feature-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-feature-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  scroll-snap-align: start;
}

.gallery-feature-image {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  background: #ffffff;
}

.gallery-feature-controls {
  position: absolute;
  left: 6.67%;
  width: 86.66%;
  top: 68.85%;
  z-index: 3;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
}

.gallery-feature-pagination {
  margin: 0;
  color: #6f6a69;
  text-align: center;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}

.gallery-feature-arrow {
  padding: 0;
  border: 0;
  background: transparent;
  color: #b2ab9f;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
}

.gallery-feature-arrow--prev {
  justify-self: start;
}

.gallery-feature-arrow--next {
  justify-self: end;
}

.gallery-strip-mask {
  left: 3.33%;
  width: 94.23%;
  top: 75.72%;
  height: 7.7%;
}

.gallery-strip {
  position: absolute;
  left: 3.33%;
  width: 94.23%;
  top: 75.72%;
  z-index: 2;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 18%;
  gap: 1.78%;
  overflow-x: auto;
  padding-bottom: 10px;
}

.gallery-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
}

.gallery-thumb.is-active::after {
  border-color: rgba(255, 255, 255, 0.72);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: block;
  background: rgba(17, 14, 15, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-modal-arrow--prev {
  left: 14px;
}

.gallery-modal-arrow--next {
  right: 14px;
}

.gallery-modal-close {
  position: absolute;
  top: 22px;
  right: 20px;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-modal-body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.gallery-modal-viewport {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  width: 100%;
  height: 100vh;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pinch-zoom;
}

.gallery-modal-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-modal-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 24px 20px;
  scroll-snap-align: start;
  overflow: hidden;
  overscroll-behavior: contain;
}

.gallery-modal-slide img {
  max-width: 100%;
  max-height: min(84vh, 880px);
  object-fit: contain;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  transform-origin: center center;
  transition: transform 120ms ease;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-modal-slide.is-zoomed {
  touch-action: none;
}

.gallery-modal-slide img.is-zoomed {
  transition: none;
}

.gallery-modal-pagination {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.attendance-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.attendance-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.attendance-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 23, 24, 0.48);
}

.attendance-modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92.6vw, 448px);
  transform: translate(-50%, -50%);
  background: transparent;
  color: #342f30;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.attendance-modal-image {
  display: block;
  width: 100%;
  height: auto;
}

.attendance-modal-close-hotspot {
  position: absolute;
  right: 6.2%;
  top: 2.5%;
  width: 12%;
  height: 7.5%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.attendance-modal-action {
  position: absolute;
  width: 7.4%;
  height: 6.3%;
  border-radius: 999px;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
}

.attendance-modal-action:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.attendance-modal-action--phone {
  left: 74.4%;
}

.attendance-modal-action--sms {
  left: 82.4%;
}

.attendance-modal-action--row-1 {
  top: 30.5%;
}

.attendance-modal-action--row-2 {
  top: 39.1%;
}

.attendance-modal-action--row-3 {
  top: 47.6%;
}

.attendance-modal-action--row-4 {
  top: 69.2%;
}

.attendance-modal-action--row-5 {
  top: 77.8%;
}

.attendance-modal-action--row-6 {
  top: 86.3%;
}

.contact-modal-body {
  padding: 9.3% 8.5% 9.5%;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: #615958;
}

.contact-group + .contact-group {
  margin-top: 13.6%;
}

.contact-group-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.contact-group-title {
  margin: 0;
  color: #302a2a;
  font-size: clamp(1.2rem, 4vw, 1.46rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.contact-group-label {
  margin: 0;
  color: #4d4544;
  font-family: "Maigre", serif;
  font-size: clamp(1.62rem, 5.2vw, 2.05rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.contact-group-divider {
  height: 1px;
  margin-top: 1.8%;
  background: rgba(102, 96, 95, 0.24);
}

.contact-row {
  display: grid;
  grid-template-columns: 4.8em 1fr auto;
  align-items: center;
  min-height: 64px;
}

.contact-role {
  color: #3a3333;
  font-size: clamp(1.06rem, 3.6vw, 1.34rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.contact-role--spaced {
  letter-spacing: 0.34em;
}

.contact-name {
  color: #6a6463;
  font-size: clamp(1.06rem, 3.55vw, 1.32rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.contact-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 999px;
  background: #0f0f10;
  color: #ffffff;
  text-decoration: none;
}

.contact-call-icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(1);
}

.rsvp-modal {
  position: fixed;
  inset: 0;
  z-index: 31;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.rsvp-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.rsvp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 23, 24, 0.48);
}

.rsvp-modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92.3vw, 443px);
  transform: translate(-50%, -50%);
  background: transparent;
  color: #342f30;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.rsvp-modal-image {
  display: block;
  width: 100%;
  height: auto;
}

.rsvp-modal-close-hotspot {
  position: absolute;
  right: 6.2%;
  top: 2.5%;
  width: 12%;
  height: 8%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.rsvp-modal-cta-hotspot {
  position: absolute;
  left: 16.35%;
  top: 84.39%;
  width: 67.3%;
  height: 7.64%;
  border-radius: 999px;
  background: transparent;
  z-index: 2;
  cursor: pointer;
}

.rsvp-modal-close-hotspot:focus-visible,
.rsvp-modal-cta-hotspot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.attendance-page-modal {
  position: fixed;
  inset: 0;
  z-index: 32;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.attendance-page-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.attendance-page-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 23, 24, 0.42);
}

.attendance-page-modal-dialog {
  position: relative;
  width: min(100vw, var(--max-width));
  height: 100dvh;
  margin: 0 auto;
  overflow-y: auto;
  background: #e6e5e4;
  color: #231f20;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.attendance-page-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(95, 90, 90, 0.58);
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.attendance-page {
  min-height: 100dvh;
  padding: 79px 30px 40px;
}

.attendance-page-header {
  padding-top: 6px;
  text-align: center;
}

.attendance-page-title {
  margin: 0;
  color: #231f20;
  font-size: 1.95rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.065em;
}

.attendance-page-subtitle {
  margin: 24px 0 0;
  color: #5f5a59;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.05em;
}

.attendance-form {
  margin-top: 58px;
}

.attendance-field {
  margin-top: 28px;
}

.attendance-field:first-child {
  margin-top: 0;
}

.attendance-field-label {
  display: block;
  margin: 0 0 14px;
  color: #262122;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.055em;
}

.attendance-field-label--inline {
  margin: 0;
}

.attendance-required {
  margin-right: 0.16em;
  color: #dc3d35;
  font-weight: 700;
}

.attendance-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.attendance-choice-button {
  min-height: 54px;
  padding: 0 10px;
  border: 1px solid rgba(94, 88, 89, 0.18);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.3);
  color: #282324;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  cursor: pointer;
  transition:
    background 120ms ease,
    border-color 120ms ease,
    color 120ms ease;
}

.attendance-choice-button.is-active {
  border-color: #231f20;
  background: #231f20;
  color: #ffffff;
}

.attendance-text-input {
  width: 100%;
  padding: 0 0 11px;
  border: 0;
  border-bottom: 1px solid rgba(101, 98, 98, 0.24);
  background: transparent;
  color: #231f20;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.045em;
}

.attendance-text-input::placeholder {
  color: #b7b1b1;
}

.attendance-text-input:focus {
  outline: none;
  border-bottom-color: rgba(35, 31, 32, 0.55);
}

.attendance-field--counter {
  margin-top: 10px;
}

.attendance-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.attendance-counter {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  flex: 0 0 auto;
}

.attendance-counter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid rgba(113, 108, 108, 0.2);
  border-radius: 999px;
  background: transparent;
  color: #c0bbbb;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.attendance-counter-value {
  min-width: 1.2em;
  text-align: center;
  color: #231f20;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
}

.attendance-shuttle-box {
  margin-top: 16px;
  padding: 21px 12px 14px;
  border: 1px solid rgba(104, 98, 99, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
}

.attendance-shuttle-text {
  margin: 0 0 14px;
  color: #2f2a2b;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.52;
  letter-spacing: -0.055em;
}

.attendance-choice-grid--shuttle {
  gap: 10px;
}

.attendance-submit-button {
  display: block;
  width: min(71.5%, 320px);
  min-height: 50px;
  margin: 44px auto 0;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #dfdedd;
  color: #2c2728;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  cursor: pointer;
  transition:
    opacity 120ms ease,
    background 120ms ease;
}

.attendance-submit-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.attendance-submit-button.is-loading {
  background: #d7d5d5;
}

.attendance-submit-status {
  min-height: 1.5em;
  margin: 12px auto 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.34);
  color: #6c6767;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.04em;
  text-align: center;
  opacity: 1;
  transition: opacity 120ms ease;
}

.attendance-submit-status[hidden] {
  display: none;
}

.attendance-submit-status[data-state="success"] {
  background: rgba(80, 136, 101, 0.12);
  color: #2d5f44;
}

.attendance-submit-status[data-state="error"] {
  background: rgba(177, 59, 52, 0.1);
  color: #b13b34;
}

.attendance-page-modal-close:focus-visible,
.attendance-choice-button:focus-visible,
.attendance-counter-button:focus-visible,
.attendance-text-input:focus-visible,
.attendance-submit-button:focus-visible {
  outline: 2px solid rgba(35, 31, 32, 0.65);
  outline-offset: 2px;
}

@media (max-width: 360px) {
  .attendance-page {
    padding-left: 22px;
    padding-right: 22px;
  }

  .attendance-page-title {
    font-size: 1.75rem;
  }

  .attendance-choice-button {
    min-height: 50px;
    font-size: 0.92rem;
  }

  .attendance-counter {
    gap: 18px;
  }
}

.bank-page {
  position: absolute;
  inset: 0;
  background: var(--bank-page-bg);
  color: #231f20;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

.bank-page-title {
  position: absolute;
  top: 9.85%;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  font-size: clamp(1.25rem, 5.15vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.bank-page-subtitle {
  position: absolute;
  top: 16.25%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  color: #231f20;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(0.68rem, 2.8vw, 0.84rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.04em;
  text-align: center;
}

.bank-page-subtitle p {
  margin: 0;
}

.bank-accordion-stack {
  position: absolute;
  left: 7.1%;
  top: 26.55%;
  width: 85.8%;
  display: flex;
  flex-direction: column;
  gap: 58px;
}

.bank-accordion {
  width: 100%;
}

.bank-accordion-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 43px;
  height: 11.1vw;
  max-height: 53px;
  padding: 0 7.1%;
  border: 0;
  background: var(--bank-header-bg);
  color: #ffffff;
  cursor: pointer;
}

.bank-accordion-title {
  font-size: clamp(0.95rem, 3.45vw, 1.08rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.bank-accordion-arrow {
  display: block;
  width: 26px;
  height: 15px;
  flex: 0 0 auto;
  object-fit: contain;
}

.bank-accordion:not(.is-open) .bank-accordion-arrow {
  transform: rotate(180deg);
}

.bank-accordion-body {
  background: var(--bank-card-bg);
  overflow: hidden;
}

.bank-accordion:not(.is-open) .bank-accordion-body {
  display: none;
}

.bank-account-row {
  display: grid;
  grid-template-columns: 15.5% 15% 34.5% 17% 18%;
  align-items: center;
  min-height: 45px;
  padding: 0 5.3% 0 7.4%;
}

.bank-account-row + .bank-account-row {
  border-top: 1px solid var(--bank-divider);
}

.bank-account-role {
  font-size: clamp(0.9rem, 3.35vw, 1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.bank-account-role--spaced {
  letter-spacing: 0.28em;
}

.bank-account-name,
.bank-account-number,
.bank-account-bank {
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.bank-account-name {
  font-size: clamp(0.76rem, 2.95vw, 0.9rem);
}

.bank-account-number {
  font-size: clamp(0.72rem, 2.75vw, 0.84rem);
}

.bank-account-bank {
  font-size: clamp(0.72rem, 2.65vw, 0.82rem);
}

.bank-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #231f20;
  cursor: pointer;
}

.bank-copy-icon {
  display: block;
  width: 18px;
  height: 23px;
  object-fit: contain;
}

.bank-copy-label {
  font-size: clamp(0.56rem, 2.1vw, 0.7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.06em;
}

.bank-copy-button.is-copied .bank-copy-label {
  font-weight: 500;
}

.location-map-embed {
  position: absolute !important;
  left: calc(3.5% + 4px);
  top: calc(24% - 18px);
  width: calc(92.3% - 4px);
  aspect-ratio: 443 / 305;
  height: auto;
  background: #ece9e3;
  overflow: hidden;
}

@media (hover: none) and (pointer: coarse) {
  .gallery-modal-arrow {
    display: none;
  }
}

@media (min-width: 481px) {
  .site-shell {
    max-width: var(--max-width);
  }

  .location-map-embed {
    width: 443px;
  }
}
