:root {
  --pink: #ff73c7;
  --pink-strong: #f35eb8;
  --black: #050505;
  --cream: #fff7f1;
  --white: #ffffff;
  --gray: #6f676c;
  --line: #111111;
  --header-height: 70px;
  --page-pad: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--black);
  background: var(--cream);
  font-family: Arial, "Helvetica Neue", Helvetica, Pretendard, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-x: hidden;
}

body.has-consent-banner {
  padding-bottom: 0;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  color: var(--black);
  background: var(--pink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-wrap {
  width: min(1380px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: stretch;
  justify-content: space-between;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.brand {
  display: flex;
  min-width: 230px;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  color: var(--pink);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.brand span {
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  margin-top: 5px;
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: stretch;
}

.site-nav > a {
  display: grid;
  min-width: 92px;
  place-items: center;
  padding: 0 18px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--black);
  background: var(--pink);
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 30px));
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: min(860px, calc(100svh - 30px));
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-height) + 36px) var(--page-pad) 54px;
}

.hero-kicker {
  position: absolute;
  top: calc(var(--header-height) + 32px);
  left: var(--page-pad);
  margin: 0;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  max-width: 1000px;
  margin: 0 0 42px;
  color: var(--pink);
  font-size: clamp(82px, 13.5vw, 210px);
  font-weight: 500;
  line-height: 0.72;
}

.hero h1 span {
  display: block;
}

.hero-bottom {
  display: flex;
  max-width: 920px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-bottom p {
  max-width: 540px;
  margin: 0;
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.4;
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 12px;
  color: currentColor;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.text-link-pink {
  color: var(--pink);
}

.hero-index {
  position: absolute;
  z-index: 1;
  right: var(--page-pad);
  bottom: 54px;
  margin: 0;
  font-size: 10px;
  font-weight: 900;
  writing-mode: vertical-rl;
}

.intro {
  padding: clamp(84px, 11vw, 170px) 0;
  color: var(--black);
  background: var(--pink);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1.45fr);
  gap: 48px;
}

.intro h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(54px, 8vw, 116px);
  font-weight: 500;
  line-height: 0.92;
}

.intro-copy {
  max-width: 740px;
  margin: 44px 0 0 auto;
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 700;
  line-height: 1.55;
}

.guide-browser {
  padding: 0 0 clamp(90px, 11vw, 160px);
  background: var(--cream);
}

.guide-toolbar {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--cream);
  border-bottom: 2px solid var(--black);
}

.guide-toolbar > p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

.filter-control {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(78px, 1fr));
  border: 2px solid var(--black);
}

.filter-button {
  min-height: 42px;
  padding: 0 18px;
  color: var(--black);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--black);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.filter-button:last-child {
  border-right: 0;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: var(--pink);
  background: var(--black);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 2px solid var(--black);
}

.guide-card {
  min-width: 0;
  background: var(--cream);
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.guide-card[hidden] {
  display: none;
}

.guide-card > a {
  display: grid;
  height: 100%;
  min-height: 620px;
  grid-template-rows: 350px minmax(320px, 1fr);
  color: var(--black);
  text-decoration: none;
}

.guide-card-featured {
  grid-column: 1 / -1;
}

.guide-card-featured > a {
  min-height: 520px;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  grid-template-rows: 1fr;
}

.guide-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--black);
}

.guide-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.guide-card:first-child .guide-image img {
  object-position: 50% 62%;
}

.guide-number,
.guide-place {
  position: absolute;
  display: inline-flex;
  align-items: center;
  color: var(--pink);
  font-weight: 900;
}

.guide-number {
  bottom: 20px;
  left: 20px;
  font-size: clamp(92px, 13vw, 190px);
  font-weight: 500;
  line-height: 0.72;
}

.guide-place {
  top: 20px;
  right: 20px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--pink);
  font-size: 10px;
}

.guide-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 4vw, 54px);
}

.card-label {
  margin-bottom: 24px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 900;
}

.guide-body h3 {
  margin-bottom: 26px;
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 0.94;
}

.guide-body > p:not(.card-label) {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.guide-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.guide-points li {
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--black);
  font-size: 11px;
  font-weight: 900;
}

.card-action {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  font-size: 14px;
  font-weight: 900;
  border-top: 2px solid var(--black);
}

.guide-card > a:hover .card-action,
.guide-card > a:focus-visible .card-action {
  color: var(--pink-strong);
}

.empty-state {
  padding: 80px 0 0;
  font-size: 24px;
  font-weight: 800;
}

.visit-note {
  min-height: 720px;
  color: var(--pink);
  background: var(--black);
}

.visit-copy {
  display: flex;
  width: min(1380px, calc(100% - (var(--page-pad) * 2)));
  min-height: 720px;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 130px) 0;
}

.visit-copy h2 {
  max-width: 1080px;
  margin: 36px 0;
  font-size: clamp(50px, 6.5vw, 94px);
  font-weight: 500;
  line-height: 0.94;
}

.visit-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 42px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.visit-copy .text-link {
  align-self: flex-start;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 64px;
  padding: clamp(70px, 9vw, 130px) var(--page-pad) 34px;
  color: var(--black);
  background: var(--pink);
}

.footer-title > p {
  margin-bottom: 36px;
  font-size: 13px;
  font-weight: 900;
}

.footer-title h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(68px, 9.5vw, 138px);
  font-weight: 500;
  line-height: 0.84;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-self: end;
  border-top: 2px solid var(--black);
}

.footer-links a,
.footer-links button {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 0;
  color: var(--black);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible {
  padding-left: 12px;
  color: var(--pink);
  background: var(--black);
}

.footer-note {
  max-width: 720px;
  margin: 60px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.copyright {
  align-self: end;
  justify-self: end;
  margin: 60px 0 0;
  font-size: 11px;
  font-weight: 900;
}

@media (max-width: 900px) {
  :root {
    --header-height: 62px;
  }

  .brand {
    min-width: 176px;
    padding: 0 18px;
  }

  .site-nav > a {
    min-width: 70px;
    padding: 0 12px;
  }

  .site-nav > a:nth-child(2),
  .site-nav > a:nth-child(3) {
    display: none;
  }

  .hero,
  .hero-copy {
    min-height: min(720px, calc(100svh - 62px));
  }

  .hero h1 {
    font-size: clamp(72px, 16vw, 132px);
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    margin-left: 0;
  }

  .guide-card-featured > a {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(320px, 1fr) auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    justify-self: start;
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --page-pad: 18px;
  }

  .site-header {
    min-width: 0;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand span {
    font-size: 14px;
  }

  .site-nav > a {
    min-width: 0;
    padding: 0 14px;
  }

  .hero,
  .hero-copy {
    min-height: min(620px, calc(100svh - 62px));
  }

  .hero-copy {
    padding-bottom: 32px;
  }

  .hero-kicker {
    top: calc(var(--header-height) + 22px);
  }

  .hero h1 {
    margin-bottom: 26px;
    font-size: clamp(56px, 19vw, 84px);
    line-height: 0.75;
  }

  .hero-bottom {
    display: block;
  }

  .hero-bottom p {
    font-size: 17px;
  }

  .hero-bottom .text-link {
    margin-top: 18px;
  }

  .hero-index {
    display: none;
  }

  .intro h2 {
    font-size: clamp(52px, 16vw, 74px);
  }

  .intro-copy {
    margin-top: 32px;
    font-size: 18px;
  }

  .guide-toolbar {
    position: relative;
    top: auto;
    display: block;
    padding: 22px 0;
  }

  .guide-toolbar > p {
    margin-bottom: 14px;
  }

  .filter-control {
    width: 100%;
  }

  .filter-button {
    min-width: 0;
    padding: 0 10px;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-card-featured {
    grid-column: auto;
  }

  .guide-card > a,
  .guide-card-featured > a {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto;
  }

  .guide-body {
    min-height: 380px;
    padding: 28px 24px;
  }

  .guide-body h3 {
    font-size: 48px;
  }

  .guide-body > p:not(.card-label) {
    font-size: 16px;
  }

  .visit-copy {
    min-height: 620px;
    padding: 70px 0;
  }

  .visit-copy h2 {
    font-size: 50px;
  }

  .site-footer {
    gap: 46px;
  }

  .footer-title h2 {
    font-size: clamp(64px, 19vw, 88px);
  }

  .footer-note {
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
