:root {
  --bg: #130f18;
  --bg-2: #1b1424;
  --surface: rgba(255, 255, 255, 0.1);
  --surface-strong: rgba(255, 255, 255, 0.16);
  --line: rgba(255, 255, 255, 0.18);
  --text: #fff8f2;
  --muted: rgba(255, 248, 242, 0.72);
  --muted-2: rgba(255, 248, 242, 0.54);
  --gold: #f6d47b;
  --gold-2: #d9a441;
  --rose: #ff7eb6;
  --violet: #9b7bff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", Meiryo, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 126, 182, 0.22), transparent 32rem),
    radial-gradient(circle at 86% 12%, rgba(155, 123, 255, 0.25), transparent 34rem),
    radial-gradient(circle at 52% 72%, rgba(246, 212, 123, 0.12), transparent 28rem),
    linear-gradient(145deg, #100d14 0%, #1a1125 54%, #100d14 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
body { font-size: 15px; }
button { cursor: pointer; }
code {
  padding: 0.16rem 0.38rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.05;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.ambient {
  position: fixed;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -2;
  animation: floatAmbient 15s ease-in-out infinite alternate;
}
.ambient--one { left: -18rem; top: 10rem; background: var(--rose); }
.ambient--two { right: -20rem; bottom: 4rem; background: var(--violet); animation-delay: -4s; }
@keyframes floatAmbient { to { transform: translate3d(5rem, -3rem, 0) scale(1.1); } }

.opening {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #2b1a35 0%, #100b14 68%);
  animation: openingOut 1.1s ease 2.9s forwards;
}
.opening__glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,212,123,0.45), rgba(255,126,182,0.12) 42%, transparent 70%);
  filter: blur(5px);
  animation: pulseGlow 2.2s ease-in-out infinite;
}
.opening__sparkles span {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #fff7d6;
  box-shadow: 0 0 20px rgba(246,212,123,0.85);
  animation: sparkleFloat 2.7s ease-in-out infinite;
}
.opening__sparkles span:nth-child(1){ left: 15%; top: 24%; animation-delay: .2s; }
.opening__sparkles span:nth-child(2){ left: 75%; top: 22%; animation-delay: .7s; }
.opening__sparkles span:nth-child(3){ left: 62%; top: 72%; animation-delay: .1s; }
.opening__sparkles span:nth-child(4){ left: 25%; top: 68%; animation-delay: 1s; }
.opening__sparkles span:nth-child(5){ left: 49%; top: 16%; animation-delay: 1.4s; }
.opening h1 {
  position: relative;
  margin: 0;
  font-size: clamp(2.55rem, 7.2vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  background: linear-gradient(92deg, #fff, #ffe8a6 35%, #ff89bd 65%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 20px 80px rgba(246,212,123,0.18);
  animation: titleIn 1.15s cubic-bezier(.2,.9,.2,1) both;
}
.opening__eyebrow, .opening__sub {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.opening__eyebrow { top: calc(50% - 6.2rem); font-size: .68rem; }
.opening__sub { top: calc(50% + 4.9rem); font-size: .72rem; }
@keyframes titleIn { from { opacity: 0; transform: translateY(24px) scale(.96); filter: blur(12px); } to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }
@keyframes pulseGlow { 50% { transform: scale(1.12); opacity: .78; } }
@keyframes sparkleFloat { 50% { transform: translateY(-18px) scale(1.7); opacity: .55; } }
@keyframes openingOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }

.hero {
  min-height: 100svh;
  padding: 28px clamp(18px, 4vw, 54px) 80px;
  position: relative;
}
.topbar {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 40px rgba(0,0,0,.16);
  position: sticky;
  top: 16px;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .03em; }
.brand__mark {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%;
  color: #2b1b05;
  background: linear-gradient(135deg, #fff0b7, #f3bd54);
  box-shadow: 0 0 24px rgba(246,212,123,.32);
}
.brand__text { font-size: .86rem; }
.topbar__actions { display: flex; align-items: center; gap: 10px; }
.ghost-button, .pill-button, .primary-button, .secondary-button, .secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.ghost-button, .secondary-button, .secondary-link { color: var(--text); background: rgba(255,255,255,.07); }
.pill-button, .primary-button {
  color: #241507;
  font-weight: 800;
  background: linear-gradient(135deg, #fff1be, #f1b851 62%, #ffdf8a);
  border-color: rgba(246,212,123,.56);
  box-shadow: 0 14px 34px rgba(246, 183, 83, .18);
}
.ghost-button:hover, .pill-button:hover, .primary-button:hover, .secondary-button:hover, .secondary-link:hover { transform: translateY(-2px); border-color: rgba(246,212,123,.5); }

.hero__content {
  max-width: 1180px;
  margin: 0 auto;
  min-height: calc(100svh - 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
}
.eyebrow, .card-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.05rem, 6.2vw, 2.25rem);
  line-height: .86;
  letter-spacing: -0.05em;
  background: linear-gradient(120deg, #fff 0%, #ffeab0 40%, #ff8fc5 72%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(.92rem, 1.55vw, 1.08rem);
  line-height: 1.75;
  color: var(--muted);
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero__chips span {
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.hero-card, .glass-card, .map-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}
.hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-xl);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -36% -20%;
  height: 46%;
  background: radial-gradient(ellipse at center, rgba(246,212,123,.28), transparent 70%);
}
.hero-card__ring {
  width: 78px; height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(246,212,123,.5);
  box-shadow: inset 0 0 30px rgba(246,212,123,.17), 0 0 50px rgba(246,212,123,.18);
  margin-bottom: 28px;
  position: relative;
}
.hero-card__ring::before { content: "🎤"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 2rem; animation: castleFloat 2.8s ease-in-out infinite; }
.hero-card__eyebrow { color: var(--gold); letter-spacing: .15em; text-transform: uppercase; font-weight: 900; }
.hero-card h2 { margin: 0; font-size: clamp(1.55rem, 3.1vw, 2.25rem); letter-spacing: -.05em; }
.muted { color: var(--muted-2); }
.address { color: var(--muted); line-height: 1.7; }
.hero-card__meta {
  margin: 26px 0;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  display: grid;
  gap: 6px;
}
.hero-card__meta span { color: var(--muted-2); font-size: .85rem; }
.hero-card__meta strong { font-size: .98rem; }
.hero-card__buttons { display: flex; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }
@keyframes castleFloat { 50% { transform: translateY(-5px) rotate(-2deg); } }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 74px clamp(18px, 4vw, 54px);
}
.grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.glass-card { border-radius: var(--radius-lg); padding: 26px; }
.detail-card { min-height: 210px; }
.card-icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 18px; background: rgba(255,255,255,.1); margin-bottom: 22px; font-size: 1.45rem; }
.detail-card h3, .access-card h3 { margin: 0 0 14px; font-size: 1.18rem; letter-spacing: -.03em; }
.detail-card p { color: var(--muted); line-height: 1.65; }

.section__heading { max-width: 620px; margin-bottom: 28px; }
.section__heading.center { text-align: center; margin-inline: auto; }
.section__heading h2, .notes-card h2, .contact-card h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.8vw, 3.2rem);
  line-height: .98;
  letter-spacing: -.075em;
}
.section__heading p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }
.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 22px;
  align-items: end;
}
.map-layout .section__heading { grid-column: 1 / -1; }
.map-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
#map { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  text-align: center;
  padding: 32px;
  background:
    radial-gradient(circle at center, rgba(246,212,123,.16), transparent 28rem),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
}
.map-fallback.is-visible { display: grid; }
.fallback-icons { display: flex; align-items: center; justify-content: center; gap: 18px; font-size: 4.3rem; filter: drop-shadow(0 18px 28px rgba(0,0,0,.3)); }
.fallback-icons span { animation: castleFloat 2.8s ease-in-out infinite; }
.fallback-icons span:nth-child(2) { animation-delay: .28s; }
.map-fallback h3 { margin: 12px 0 8px; font-size: 1.24rem; }
.map-fallback p { color: var(--muted); max-width: 520px; line-height: 1.8; }
.map-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}
.map-overlay span {
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(19,15,24,.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(0,0,0,.25);
}
.castle-marker {
  width: 72px;
  height: 72px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.42));
}
.castle-marker__body {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 26px 26px 32px 32px;
  background: linear-gradient(145deg, rgba(255,247,213,.98), rgba(241,177,83,.96));
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: inset 0 0 26px rgba(255,255,255,.3), 0 0 32px rgba(246,212,123,.45);
  font-size: 2.05rem;
  animation: markerBounce 2.6s ease-in-out infinite;
}
.castle-marker__label {
  position: absolute;
  left: 50%;
  top: -32px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(19,15,24,.78);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.2);
}

.karaoke-marker {
  width: 72px;
  height: 72px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.42));
}
.karaoke-marker__body {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,141,190,.98), rgba(126,87,255,.96));
  border: 1px solid rgba(255,255,255,.75);
  box-shadow:
    inset 0 0 26px rgba(255,255,255,.28),
    0 0 36px rgba(255,120,196,.5);
  font-size: 2.05rem;
  animation: markerBounce 2.4s ease-in-out infinite;
}
.karaoke-marker__label {
  position: absolute;
  left: 50%;
  top: -32px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(19,15,24,.78);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.2);
}
.karaoke-badge {
  background: rgba(42, 22, 52, .72) !important;
}

@keyframes markerBounce { 50% { transform: translateY(-7px) rotateX(8deg) rotateZ(-2deg); } }
.access-card { align-self: stretch; }
.access-card ul, .notes-card ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.access-card li, .notes-card li {
  color: var(--muted);
  line-height: 1.75;
  padding-left: 24px;
  position: relative;
}
.access-card li::before, .notes-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
}
.route-actions { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.route-actions a { width: 100%; }

.timeline-section { padding-top: 90px; }
.timeline { margin-top: 42px; display: grid; gap: 14px; }
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: stretch;
}
.timeline-item__time {
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 1px solid var(--line);
  color: #2a1a08;
  font-weight: 900;
  background: linear-gradient(135deg, #fff1be, #efb855);
}
.timeline-item__body {
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
}
.timeline-item__body h3 { margin: 0 0 6px; font-size: 1.08rem; }
.timeline-item__body p { margin: 0; color: var(--muted); line-height: 1.65; }

.notes-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: stretch;
}
.contact-card p { color: var(--muted); line-height: 1.8; }
.footer {
  text-align: center;
  padding: 80px 20px 60px;
  color: var(--muted);
}
.footer__small { color: var(--muted-2); font-size: .8rem; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #1c1324;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.reveal { opacity: 0; transform: translateY(18px); animation: revealUp .8s cubic-bezier(.2,.9,.2,1) forwards; }
.reveal--delay { animation-delay: .16s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 920px) {
  .hero__content, .map-layout, .notes-section { grid-template-columns: 1fr; }
  .hero__content { padding-top: 58px; min-height: auto; }
  .grid-section { grid-template-columns: 1fr; }
  .map-card { min-height: 470px; }
  .access-card { order: 3; }
}
@media (max-width: 680px) {
  .hero { padding-inline: 14px; }
  .topbar { top: 10px; border-radius: 24px; align-items: stretch; }
  .brand__text { display: none; }
  .topbar__actions { width: 100%; justify-content: flex-end; }
  .ghost-button { display: none; }
  .pill-button { min-height: 38px; padding-inline: 12px; font-size: .82rem; }
  .hero h1 { font-size: clamp(2.35rem, 6.2vw, 3.6rem); }
  
  .hero-card__buttons, .map-overlay { flex-direction: column; }
  .primary-button, .secondary-button, .secondary-link { width: 100%; }
  .section { padding: 54px 14px; }
  .map-card { min-height: 430px; border-radius: 24px; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; }
  .timeline-item__time { min-height: 46px; }
  .opening__eyebrow { top: calc(50% - 5.4rem); }
  .opening__sub { top: calc(50% + 4.4rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .opening { display: none; }
}

/* --- Passphrase gate --- */
body.gate-locked {
  overflow: hidden;
}

.pass-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 126, 182, 0.3), transparent 28rem),
    radial-gradient(circle at 78% 20%, rgba(155, 123, 255, 0.34), transparent 30rem),
    radial-gradient(circle at 50% 80%, rgba(246, 212, 123, 0.18), transparent 28rem),
    linear-gradient(145deg, #100d14 0%, #1a1125 58%, #100d14 100%);
  transition: opacity .45s ease, visibility .45s ease;
}

.pass-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pass-gate__glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(246, 212, 123, .16);
  filter: blur(22px);
  animation: gateGlow 4s ease-in-out infinite alternate;
}

@keyframes gateGlow {
  to {
    transform: scale(1.15) translateY(-14px);
    opacity: .75;
  }
}

.pass-gate__card {
  position: relative;
  width: min(92vw, 460px);
  padding: 34px 30px 30px;
  border-radius: 30px;
  text-align: center;
  color: var(--text, #fff8f2);
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 34px 90px rgba(0,0,0,.46);
  backdrop-filter: blur(20px);
}

.pass-gate__eyebrow {
  margin: 0 0 10px;
  color: var(--gold, #f6d47b);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pass-gate__card h1 {
  margin: 0;
  font-size: clamp(1.45rem, 4.8vw, 2.1rem);
  letter-spacing: -0.04em;
}

.pass-gate__message {
  margin: 14px 0 22px;
  color: var(--muted, rgba(255,248,242,.72));
  font-size: .92rem;
  line-height: 1.7;
}

.pass-gate__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.pass-gate__form input {
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  outline: none;
  color: #fff;
  background: rgba(255,255,255,.1);
}

.pass-gate__form input::placeholder {
  color: rgba(255,255,255,.5);
}

.pass-gate__form input:focus {
  border-color: rgba(246,212,123,.7);
  box-shadow: 0 0 0 4px rgba(246,212,123,.14);
}

.pass-gate__form button {
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #1a1021;
  font-weight: 900;
  background: linear-gradient(135deg, #f6d47b, #ff9fc9);
  box-shadow: 0 16px 30px rgba(246, 212, 123, .22);
  cursor: pointer;
}

.pass-gate__error {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: #ffd1df;
  font-size: .84rem;
  font-weight: 700;
}

.pass-gate__hint {
  margin: 14px 0 0;
  color: rgba(255,255,255,.42);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* --- Compact fee label --- */
.fee-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 10px 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .78rem;
}

.fee-mini span {
  color: var(--muted-2);
  font-weight: 700;
}

.fee-mini strong {
  color: var(--text);
  font-size: .82rem;
  font-weight: 800;
}

/* --- Photo card replacing the fee card --- */
.photo-card {
  overflow: hidden;
  padding: 0;
}

.photo-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: rgba(255, 255, 255, .08);
}

.photo-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

.photo-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(18, 11, 24, .45)),
    radial-gradient(circle at 30% 20%, rgba(255, 214, 232, .18), transparent 38%);
  pointer-events: none;
}

.photo-card__body {
  padding: 20px 22px 22px;
}

.photo-card__body h3 {
  margin: 4px 0 8px;
}

.photo-card__body p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .pass-gate {
    padding: 18px;
  }

  .pass-gate__card {
    padding: 28px 20px 24px;
    border-radius: 24px;
  }

  .pass-gate__form {
    grid-template-columns: 1fr;
  }

  .pass-gate__form button {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .photo-card__image {
    aspect-ratio: 16 / 11;
    border-radius: 20px 20px 0 0;
  }

  .photo-card__body {
    padding: 18px 18px 20px;
  }
}
