@font-face {
  font-family: "FantasiaTitle";
  src: url("./font/title/SUIT-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FantasiaTitle";
  src: url("./font/title/SUIT-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FantasiaText";
  src: url("./font/text/Paperlogy-4Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FantasiaText";
  src: url("./font/text/Paperlogy-7Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --black-soft: #0e0e0e;
  --black-card: #151515;
  --white: #ffffff;
  --text: #ffffff;
  --muted: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d8b36a;
  --gold-deep: #9b7332;
  --red: #c64033;
  --kakao: #f5cf32;
  --green: #21b25b;
  --max: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "FantasiaText", "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif;
  color: var(--white);
  background:
    radial-gradient(ellipse at 18% -8%, rgba(255, 255, 255, 0.08), transparent 30rem),
    radial-gradient(ellipse at 84% 4%, rgba(216, 179, 106, 0.14), transparent 28rem),
    linear-gradient(118deg, transparent 0 23%, rgba(255, 255, 255, 0.045) 23.2%, transparent 27%),
    linear-gradient(145deg, transparent 0 54%, rgba(216, 179, 106, 0.055) 54.3%, transparent 58%),
    linear-gradient(180deg, #010101 0%, #0b0b0b 42%, #030303 100%);
  line-height: 1.8;
  text-align: center;
  word-break: keep-all;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(132deg, transparent 0 31%, rgba(255, 255, 255, 0.07) 31.2%, transparent 32.4%, transparent 58%, rgba(216, 179, 106, 0.055) 58.4%, transparent 60%),
    linear-gradient(24deg, transparent 0 37%, rgba(255, 255, 255, 0.035) 37.3%, transparent 41%),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.045), transparent 18rem),
    radial-gradient(circle at 88% 36%, rgba(216, 179, 106, 0.055), transparent 22rem);
  opacity: 0.9;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42) 62%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.5px, transparent 0.6px);
  background-size: 4px 4px;
  opacity: 0.08;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  font-family: "FantasiaTitle", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  margin-top: 0;
}

p {
  margin-top: 0;
}

.section-pad,
.section-narrow {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: 18px;
  padding-left: 18px;
}

.section-pad {
  padding-top: 92px;
  padding-bottom: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 14px max(14px, calc((100vw - 1080px) / 2));
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: clamp(118px, 34vw, 176px);
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.header-reserve {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 179, 106, 0.72);
  border-radius: 999px;
  padding: 0 18px;
  font-family: "FantasiaTitle", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(216, 179, 106, 0.22)),
    url("./images/index/banner-call-bg.png") center / cover no-repeat;
  box-shadow: 0 8px 24px rgba(216, 179, 106, 0.18);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.header-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: clamp(18px, 8vw, 42px);
  font-family: "FantasiaTitle", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.header-nav a:hover {
  color: var(--gold);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 69px);
  padding-top: clamp(14px, 3vw, 28px);
  text-align: center;
}

.hero-copy {
  width: 100%;
  padding-top: 0;
  padding-bottom: 28px;
}

.hero-title-image {
  width: min(100%, 820px);
  margin: 0 auto 22px;
  border: 1px solid rgba(216, 179, 106, 0.22);
  box-shadow: 0 18px 54px rgba(216, 179, 106, 0.14);
}

.seo-title {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.eyebrow {
  font-family: "FantasiaTitle", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: clamp(0.78rem, 2vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 15vw, 8.8rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

h1 span {
  display: block;
  margin-top: 16px;
  color: var(--gold);
  font-size: clamp(1.7rem, 6vw, 3.3rem);
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 8vw, 4.7rem);
  line-height: 1.15;
  letter-spacing: -0.07em;
}

h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.18rem, 4vw, 1.75rem);
  line-height: 1.4;
  letter-spacing: -0.045em;
}

.hero-subtitle {
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(1.35rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero-lead {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(1rem, 3vw, 1.4rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: min(100%, 300px);
  border: 1px solid rgba(216, 179, 106, 0.58);
  border-radius: 18px;
  padding: 0 26px;
  font-family: "FantasiaTitle", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: #fff;
  font-size: clamp(1.08rem, 4vw, 1.42rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.78);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42), 0 0 22px rgba(216, 179, 106, 0.16);
  background-position: center;
  background-size: cover;
  animation: promoButtonGlow 1.25s ease-in-out infinite;
}

.btn-primary {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52)),
    url("./images/index/banner-call-bg.png");
}

.btn-secondary {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46)),
    url("./images/index/banner-kakao-bg.png");
}

@keyframes promoTextFlash {
  0%,
  100% {
    color: #fff;
    filter: brightness(1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 0 10px rgba(255, 255, 255, 0.35);
    transform: scale(1);
  }

  42% {
    color: #ffe08a;
    filter: brightness(1.2);
    text-shadow: 0 0 16px rgba(255, 224, 138, 0.95), 0 0 34px rgba(216, 179, 106, 0.75);
    transform: scale(1.045);
  }

  68% {
    color: #ff4b3e;
    filter: brightness(1.18);
    text-shadow: 0 0 14px rgba(255, 75, 62, 0.95), 0 0 30px rgba(255, 210, 80, 0.55);
    transform: scale(1.02);
  }
}

@keyframes promoButtonGlow {
  0%,
  100% {
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42), 0 0 22px rgba(216, 179, 106, 0.16);
  }

  50% {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.52), 0 0 34px rgba(216, 179, 106, 0.48);
  }
}

.hero-visual,
.soft-image,
.mood-image {
  overflow: hidden;
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  background: #111;
}

.hero-visual {
  position: relative;
  max-width: 860px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 179, 106, 0.38);
  pointer-events: none;
}

.hero-visual img,
.soft-image img,
.mood-image img {
  min-height: 360px;
  object-fit: cover;
}

.quick-banners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(100%, 760px);
  padding-top: 30px;
  padding-bottom: 30px;
}

.banner {
  position: relative;
  display: grid;
  min-height: 122px;
  align-content: center;
  overflow: hidden;
  border: 1px solid rgba(216, 179, 106, 0.52);
  padding: 22px 24px;
  text-align: center;
  background-position: center;
  background-size: cover;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.62));
}

.banner span,
.banner strong,
.banner em {
  position: relative;
  z-index: 1;
}

.banner span,
.banner em {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 3.6vw, 1.28rem);
  font-style: normal;
  font-weight: 700;
  animation: promoTextFlash 1.2s ease-in-out infinite;
}

.banner strong {
  display: block;
  font-family: "FantasiaTitle", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--white);
  font-size: clamp(1.7rem, 7vw, 2.8rem);
  line-height: 1.25;
  animation: promoTextFlash 1.2s ease-in-out infinite;
}

.banner-call {
  background-image: url("./images/index/banner-call-bg.png");
}

.banner-kakao {
  background-image: url("./images/index/banner-kakao-bg.png");
}

.banner-cafe {
  background-image: url("./images/index/banner-review-bg.png");
}

.section-heading {
  text-align: center;
}

.section-heading.center {
  max-width: 900px;
  margin: 0 auto 34px;
}

.intro {
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.text-card,
.reservation-card,
.closing-inner,
.benefit-card {
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.text-card {
  padding: clamp(28px, 6vw, 58px) 0 0;
  text-align: center;
}

.text-card p,
.reservation-card p,
.closing-inner p,
.benefit-card p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--white);
  font-size: clamp(1rem, 2.8vw, 1.16rem);
  line-height: 2.05;
  letter-spacing: -0.015em;
}

.text-card p:last-child,
.reservation-card p:last-child,
.closing-inner p:last-of-type,
.benefit-card p:last-child {
  margin-bottom: 0;
}

.benefits {
  width: min(100%, 1080px);
}

.benefit-list {
  display: block;
}

.benefit-card {
  width: 100%;
  padding: clamp(28px, 5vw, 46px) 0;
}

.benefit-card h3 {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 12px;
  margin-left: auto;
  line-height: 1.5;
}

.card-number {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.benefit-card.wide {
  width: 100%;
}

.mood-image {
  max-width: var(--max);
  margin: 0 auto;
}

.reservation {
  padding-top: 92px;
}

.reservation-card {
  padding: clamp(28px, 6vw, 60px) 0 0;
}

.reservation-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.reservation-list li {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: var(--white);
  background: transparent;
  line-height: 1.85;
}

.reservation-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}

.closing {
  padding-top: 24px;
}

.closing-inner {
  padding: clamp(32px, 7vw, 68px) 0 0;
  text-align: center;
}

.closing-inner .btn {
  margin-top: 30px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 30px 18px 102px;
  color: var(--white);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100% - 28px, 620px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(216, 179, 106, 0.65);
  border-radius: 18px;
  background: url("./images/index/floating-cta-luxury-bg.png") center / cover no-repeat;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.62), 0 0 28px rgba(216, 179, 106, 0.2);
}

.floating-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.floating-cta a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "FantasiaTitle", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
}

.floating-cta a:first-child {
  color: #fff;
  background: transparent;
}

.floating-cta a:last-child {
  color: #fff;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: center;
  }

  .header-nav {
    width: 100%;
    justify-content: center;
  }

  .section-pad {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .hero {
    padding-top: 12px;
  }

  .quick-banners,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .text-card p,
  .reservation-card p,
  .closing-inner p,
  .benefit-card p,
  .reservation-list li {
    max-width: 21em;
    font-size: 1rem;
    line-height: 1.95;
  }

  .benefit-card h3 {
    max-width: 13em;
  }

  .hero-visual img,
  .soft-image img,
  .mood-image img {
    min-height: 280px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}
