:root {
  --ink: #1c1118;
  --plum: #21121d;
  --plum-soft: #38202f;
  --wine: #6d2946;
  --rose: #e6a0b5;
  --rose-soft: #f8dce5;
  --champagne: #e8c58f;
  --cream: #fff9f6;
  --paper: #f7eeeb;
  --text: #fffaf7;
  --muted: #d8c7cd;
  --line: rgba(244, 205, 218, .18);
  --shadow: 0 28px 80px rgba(25, 9, 19, .28);
  --serif: ui-serif, "Noto Serif KR", "AppleMyungjo", "Batang", Georgia, serif;
  --sans: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 6%, rgba(149, 61, 95, .22), transparent 27rem),
    radial-gradient(circle at 92% 40%, rgba(230, 160, 181, .08), transparent 34rem),
    var(--plum);
  font-family: var(--sans);
  line-height: 1.75;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(28, 14, 24, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(130%);
}
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { font-family: var(--serif); font-size: 23px; font-weight: 700; letter-spacing: -.035em; }
.brand small { display: block; margin-bottom: 1px; color: var(--rose); font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: .26em; }
.links { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 650; }
.links > a:not(.btn) { position: relative; color: #f7eaf0; }
.links > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--rose); transition: .25s ease; }
.links > a:not(.btn):hover::after { right: 0; }
.menu { display: none; border: 1px solid var(--line); border-radius: 50%; width: 46px; height: 46px; color: white; background: rgba(255,255,255,.04); font-size: 22px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(247, 220, 229, .32);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: white;
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 1px rgba(255,255,255,.06);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); }
.btn.hot {
  color: #2b1520;
  border-color: transparent;
  background: linear-gradient(135deg, #f4c5d3, var(--rose) 52%, #d88ba6);
  box-shadow: 0 14px 35px rgba(202, 105, 140, .26), inset 0 1px rgba(255,255,255,.65);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 750px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: url('/assets/images/hero.webp') 65% center / cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(27, 12, 23, .98) 0%, rgba(35, 15, 29, .83) 43%, rgba(47, 18, 34, .32) 76%, rgba(26, 11, 21, .34)),
    linear-gradient(0deg, var(--plum) 0%, transparent 23%);
}
.hero::after {
  content: "GANGNAM · FOR HER";
  position: absolute;
  right: 4vw;
  bottom: 38px;
  color: rgba(255,255,255,.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .32em;
  writing-mode: vertical-rl;
}
.hero-inner { padding: 150px 0 112px; max-width: 760px; }
.eyebrow { color: var(--rose); font-size: 10px; font-weight: 850; letter-spacing: .24em; text-transform: uppercase; }
.hero h1, .page-hero h1 {
  margin: 20px 0 30px;
  font-family: var(--serif);
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.072em;
  text-wrap: balance;
}
.hero h1::after { content: ""; display: block; width: 76px; height: 1px; margin-top: 30px; background: linear-gradient(90deg, var(--rose), transparent); }
.hero p { max-width: 640px; margin: 0; color: #eadde2; font-size: 17px; line-height: 1.9; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.metrics { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -35px; overflow: hidden; border: 1px solid rgba(238,193,208,.25); border-radius: 28px; background: rgba(61, 28, 48, .72); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.metric { min-width: 0; padding: 30px 28px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric b { display: block; font-family: var(--serif); font-size: 25px; font-weight: 600; color: #fff7f3; }
.metric span { color: var(--muted); font-size: 12px; }

.section { position: relative; padding: 112px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.038)); border-block: 1px solid rgba(255,255,255,.04); }
.head { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; margin-bottom: 48px; }
.head h2 { margin: 12px 0 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 62px); font-weight: 500; line-height: 1.16; letter-spacing: -.055em; text-wrap: balance; }
.head p { align-self: end; margin: 0; color: var(--muted); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); box-shadow: 0 24px 60px rgba(13, 3, 10, .18); transition: transform .3s ease, border-color .3s ease; }
.card:hover { transform: translateY(-6px); border-color: rgba(235, 172, 193, .46); }
.card img { height: 270px; filter: saturate(.78) sepia(.08); }
.card-body { padding: 30px; }
.card h3 { margin: 9px 0 15px; font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.25; letter-spacing: -.035em; }
.card p { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.tag { display: inline-block; color: var(--champagne); font-size: 9px; font-weight: 850; letter-spacing: .18em; }
.text-link { color: #f2b7c9; font-size: 13px; font-weight: 800; }

.feature { display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; border: 1px solid rgba(235, 183, 202, .22); border-radius: 40px; background: linear-gradient(135deg, #3b2032, #1b1018 68%); box-shadow: var(--shadow); }
.feature img { min-height: 580px; height: 100%; filter: saturate(.78) contrast(.96); }
.feature-copy { padding: clamp(36px, 6vw, 80px); }
.feature-copy h2 { margin: 13px 0 25px; font-family: var(--serif); font-size: clamp(42px, 5vw, 68px); font-weight: 500; line-height: 1.04; letter-spacing: -.06em; }
.feature-copy > p { color: #ddced3; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 32px 0; }
.fact { padding: 17px 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.035); }
.fact span { display: block; color: #bfaeb4; font-size: 10px; }
.fact b { font-size: 14px; }

.brand-showcase { overflow: hidden; }
.brand-showcase-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: end; margin-bottom: 38px; }
.brand-showcase-head h2 { margin: 12px 0 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 62px); font-weight: 500; line-height: 1.13; letter-spacing: -.055em; text-wrap: balance; }
.brand-showcase-copy { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.brand-showcase-copy p { max-width: 630px; margin: 0; color: var(--muted); }
.brand-controls { display: flex; flex: 0 0 auto; gap: 8px; }
.brand-controls button { width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.045); color: #fff6f2; font: 700 17px/1 inherit; cursor: pointer; transition: border-color .2s, background .2s, opacity .2s; }
.brand-controls button:hover:not(:disabled) { border-color: var(--rose); background: rgba(230,160,181,.12); }
.brand-controls button:disabled { opacity: .28; cursor: default; }
.brand-rail { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 32px) / 3); gap: 16px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scroll-behavior: smooth; scrollbar-width: none; touch-action: pan-x pan-y; }
.brand-rail::-webkit-scrollbar { display: none; }
.brand-card { min-width: 0; overflow: hidden; scroll-snap-align: start; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025)); transition: transform .25s ease, border-color .25s ease; }
.brand-card:hover { transform: translateY(-4px); border-color: rgba(235,172,193,.46); }
.brand-card > a { display: block; height: 100%; color: inherit; }
.brand-card img { height: 205px; filter: saturate(.8) contrast(.97); }
.brand-card-body { padding: 23px 24px 26px; }
.brand-card h3 { margin: 8px 0 10px; font-family: var(--serif); font-size: 25px; font-weight: 600; line-height: 1.25; letter-spacing: -.04em; }
.brand-card p { min-height: 68px; margin: 0 0 17px; color: var(--muted); font-size: 13px; line-height: 1.72; }
.brand-card--primary { border-color: rgba(232,197,143,.34); background: linear-gradient(145deg, rgba(128,52,79,.28), rgba(255,255,255,.026)); }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step { min-width: 0; padding: 32px 28px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.035); }
.step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 34px; color: var(--rose); font-family: var(--serif); font-size: 21px; }
.step h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 22px; }
.step p { margin: 0; color: var(--muted); font-size: 13px; }

.faq details { margin-bottom: 10px; padding: 21px 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.026); }
summary { cursor: pointer; font-family: var(--serif); font-size: 18px; font-weight: 600; }
.faq p { max-width: 900px; margin-bottom: 0; color: var(--muted); }

.page-hero { position: relative; overflow: hidden; padding: 138px 0 86px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 85% 18%, rgba(182, 86, 121, .22), transparent 25rem); }
.page-hero::after { content: ""; position: absolute; width: 320px; height: 320px; right: -90px; bottom: -180px; border: 1px solid rgba(232,197,143,.19); border-radius: 50%; }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 17px; }
.crumbs { margin-bottom: 30px; color: #bcaab0; font-size: 11px; }

.content { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 68px; }
.article { min-width: 0; }
.article > img { max-height: 560px; border-radius: 34px; box-shadow: var(--shadow); filter: saturate(.8); }
.article h2 { margin: 62px 0 19px; font-family: var(--serif); font-size: 38px; font-weight: 550; line-height: 1.2; letter-spacing: -.045em; }
.article h3 { margin-top: 36px; font-family: var(--serif); font-size: 24px; }
.article p, .article li { color: #dbcdd2; }
.article table { width: 100%; margin: 28px 0; overflow: hidden; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: 20px; }
.article th, .article td { padding: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.article tr:last-child > * { border-bottom: 0; }
.article tr > *:last-child { border-right: 0; }
.article th { color: #f1c8d5; background: rgba(255,255,255,.05); font-size: 13px; }
.notice { margin: 28px 0; padding: 22px 24px; border: 1px solid rgba(232,197,143,.25); border-radius: 18px; background: rgba(232,197,143,.06); color: #decfd4; }
.aside { position: sticky; top: 108px; height: max-content; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: rgba(57,31,48,.72); box-shadow: 0 20px 60px rgba(9,2,7,.18); backdrop-filter: blur(16px); }
.aside h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 22px; }
.aside a:not(.btn) { display: block; padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.aside .btn { width: 100%; margin-top: 20px; }

.ad-form { display: grid; grid-template-columns: .86fr 1.14fr; gap: 58px; padding: clamp(30px, 6vw, 70px); border: 1px solid rgba(234, 181, 200, .24); border-radius: 36px; background: linear-gradient(135deg, rgba(112,43,70,.3), rgba(255,255,255,.035)); box-shadow: var(--shadow); }
.ad-form h2 { margin: 12px 0 18px; font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 500; line-height: 1.15; }
.ad-form p, .ad-form li { color: var(--muted); }
form { display: grid; gap: 17px; }
label span { display: block; margin-bottom: 7px; color: #f3e7ea; font-size: 12px; font-weight: 750; }
input, textarea { width: 100%; padding: 16px 17px; border: 1px solid var(--line); border-radius: 14px; outline: 0; background: rgba(18,8,15,.55); color: white; font: inherit; transition: border-color .2s, box-shadow .2s; }
input:focus, textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(230,160,181,.1); }
textarea { resize: vertical; }
.status { min-height: 24px; margin: 0; color: var(--champagne) !important; font-size: 13px; }
.map-frame { width: 100%; height: 380px; border: 0; border-radius: 24px; filter: grayscale(.65) sepia(.15); }

.venue-hero { position: relative; min-height: 720px; display: grid; align-items: end; overflow: hidden; }
.venue-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.venue-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,9,18,.97) 0%, rgba(30,12,25,.8) 44%, rgba(25,9,20,.25) 78%), linear-gradient(0deg, var(--plum), transparent 36%); }
.venue-hero-copy { position: relative; z-index: 1; padding-block: 150px 92px; }
.venue-hero-copy h1 { max-width: 900px; margin: 18px 0 24px; font-family: var(--serif); font-size: clamp(58px, 8vw, 112px); font-weight: 500; line-height: 1; letter-spacing: -.075em; text-wrap: balance; }
.venue-hero-copy > p { max-width: 680px; color: #eadde2; font-size: 17px; line-height: 1.85; }
.venue-facts { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4,1fr); margin-top: -32px; overflow: hidden; border: 1px solid rgba(238,193,208,.25); border-radius: 24px; background: rgba(58,27,47,.86); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.venue-facts > div { padding: 25px 26px; border-right: 1px solid var(--line); }
.venue-facts > div:last-child { border-right: 0; }
.venue-facts span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10px; letter-spacing: .12em; }
.venue-facts b { font-family: var(--serif); font-size: 18px; }
.venue-story { display: grid; grid-template-columns: .76fr 1.24fr; gap: 76px; }
.venue-story h2, .venue-location h2, .venue-operation h2 { margin: 12px 0 0; font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); font-weight: 500; line-height: 1.13; letter-spacing: -.055em; }
.venue-prose { columns: 2; column-gap: 34px; }
.venue-prose p { break-inside: avoid; margin: 0 0 24px; color: #ddcfd4; font-size: 15px; line-height: 1.95; }
.venue-gallery { display: grid; grid-template-columns: repeat(12,1fr); gap: 14px; }
.venue-gallery figure { grid-column: span 4; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.03); }
.venue-gallery figure:nth-child(1), .venue-gallery figure:nth-child(5) { grid-column: span 8; }
.venue-gallery figure:nth-child(2), .venue-gallery figure:nth-child(6) { grid-column: span 4; }
.venue-gallery img { height: 310px; transition: transform .45s ease; }
.venue-gallery figure:hover img { transform: scale(1.035); }
.venue-gallery figcaption { padding: 14px 17px; color: var(--muted); font-size: 11px; letter-spacing: .05em; }
.venue-data-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.data-panel { min-width: 0; padding: 28px; border: 1px solid var(--line); border-radius: 25px; background: rgba(255,255,255,.034); }
.data-panel h3, .price-advice h3, .booking-note h3 { margin: 0 0 18px; font-family: var(--serif); font-size: 25px; }
.data-panel table, .venue-operation table { width: 100%; border-collapse: collapse; }
.data-panel th, .data-panel td, .venue-operation td { padding: 14px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 12px; }
.data-panel th { color: var(--champagne); }
.data-panel td { color: #d9cbd0; }
.price-advice { margin-top: 20px; padding: 28px; border: 1px solid rgba(232,197,143,.25); border-radius: 24px; background: rgba(232,197,143,.055); }
.price-advice p { margin: 0; color: #decfd4; }
.venue-operation { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.venue-operation table { margin-top: 28px; }
.venue-operation td:first-child { width: 34%; color: var(--muted); }
.booking-note { align-self: end; padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, rgba(120,47,74,.26), rgba(255,255,255,.028)); }
.booking-note ol { margin: 0; padding-left: 22px; color: #e4d6db; }
.booking-note li { padding: 6px 0; }
.booking-note p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.venue-location { display: grid; grid-template-columns: .88fr 1.12fr; gap: 46px; align-items: center; }
.venue-address { margin: 24px 0 12px; color: #fff4f0; font-family: var(--serif); font-size: 21px; }
.venue-location .map-frame { height: 470px; }
.venue-location .notice small { color: var(--muted); }
.venue-steps { grid-template-columns: repeat(3,1fr); }
.venue-action { width: min(var(--max),calc(100% - 48px)); margin: 0 auto 112px; padding: clamp(40px,7vw,84px); border: 1px solid rgba(234,181,200,.24); border-radius: 38px; background: linear-gradient(135deg, rgba(112,43,70,.34), rgba(255,255,255,.035)); box-shadow: var(--shadow); }
.venue-action h2 { margin: 12px 0 18px; font-family: var(--serif); font-size: clamp(40px,5vw,64px); font-weight: 500; line-height: 1.12; letter-spacing: -.055em; }
.venue-action > p { max-width: 760px; color: var(--muted); }
.external-action { display: grid; grid-template-columns: .82fr 1.18fr; gap: 58px; }
.external-action form { align-self: start; }

.footer { padding: 58px 0 100px; border-top: 1px solid var(--line); background: #170c14; color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 42px; }
.footer a { color: white; }
.legal { max-width: 720px; font-size: 11px; }
.mobile-cta { display: none; }

@media (max-width: 860px) {
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .nav { min-height: 74px; }
  .links { display: none; position: absolute; top: 74px; left: 0; right: 0; padding: 26px 22px 30px; border-bottom: 1px solid var(--line); background: rgba(25,12,21,.98); flex-direction: column; align-items: flex-start; }
  .links.open { display: flex; }
  .menu { display: grid; place-items: center; }
  .hero { min-height: 700px; background-position: 61% center; }
  .hero-inner { padding: 110px 0 100px; }
  .hero::before { background: linear-gradient(90deg, rgba(27,12,23,.96), rgba(35,15,29,.65)), linear-gradient(0deg,var(--plum),transparent 30%); }
  .hero::after { display: none; }
  .metrics { grid-template-columns: repeat(2, 1fr); margin-top: -26px; border-radius: 22px; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .head, .feature, .content, .ad-form, .brand-showcase-head { grid-template-columns: 1fr; }
  .head { gap: 24px; }
  .brand-showcase-head { gap: 22px; }
  .brand-rail { grid-auto-columns: calc((100% - 16px) / 2); }
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .feature { border-radius: 28px; }
  .feature img { min-height: 390px; }
  .aside { position: static; }
  .footer-grid { display: grid; }
  .venue-hero { min-height: 650px; }
  .venue-facts { grid-template-columns: repeat(2,1fr); }
  .venue-facts > div:nth-child(2) { border-right: 0; }
  .venue-facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .venue-story, .venue-data-grid, .venue-operation, .venue-location, .external-action { grid-template-columns: 1fr; }
  .venue-prose { columns: 1; }
  .venue-gallery figure, .venue-gallery figure:nth-child(1), .venue-gallery figure:nth-child(2), .venue-gallery figure:nth-child(5), .venue-gallery figure:nth-child(6) { grid-column: span 6; }
  .venue-steps { grid-template-columns: repeat(2,1fr); }
  .mobile-cta { display: flex; position: fixed; z-index: 35; left: 0; right: 0; bottom: 0; gap: 9px; padding: 10px; border-top: 1px solid var(--line); background: rgba(27,13,23,.94); backdrop-filter: blur(14px); }
  .mobile-cta .btn { flex: 1; }
  .footer { padding-bottom: 120px; }
}

@media (max-width: 520px) {
  .brand { font-size: 20px; }
  .hero { min-height: 670px; }
  .hero h1, .page-hero h1 { font-size: 49px; line-height: 1.08; }
  .hero p, .page-hero p { font-size: 15px; }
  .section { padding: 82px 0; }
  .head h2 { font-size: 40px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { padding: 23px 18px; }
  .metric b { font-size: 21px; }
  .steps { grid-template-columns: 1fr; }
  .card { border-radius: 24px; }
  .card img { height: 240px; }
  .facts { grid-template-columns: 1fr; }
  .brand-showcase-copy { align-items: center; }
  .brand-rail { grid-auto-columns: 86%; }
  .brand-card img { height: 220px; }
  .page-hero { padding: 110px 0 72px; }
  .article h2 { font-size: 32px; }
  .article th, .article td { padding: 13px 11px; font-size: 12px; }
  .venue-hero-copy h1 { font-size: 54px; }
  .venue-hero-copy { padding-block: 120px 78px; }
  .venue-facts { margin-top: -20px; }
  .venue-gallery figure, .venue-gallery figure:nth-child(1), .venue-gallery figure:nth-child(2), .venue-gallery figure:nth-child(5), .venue-gallery figure:nth-child(6) { grid-column: span 12; }
  .venue-gallery img { height: 260px; }
  .venue-steps { grid-template-columns: 1fr; }
  .venue-action { width: calc(100% - 28px); padding: 32px 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
