:root {
  --bg: #090909;
  --bg2: #0f0f13;
  --text: #f5f5f7;
  --muted: #c4c4cc;
  --gold: #e1c57a;
  --gold2: #b7933d;
  --accent: #7aa2ff;
  --border: #21212a;
  --card: #121219e6;
  --radius: 22px;
  --max: 1280px;
  --shadow:
    0 22px 54px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    "Noto Sans KR",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  letter-spacing: 0.01em;
  background:
    radial-gradient(
      1200px 600px at 90% -10%,
      rgba(225, 197, 122, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 480px at -10% 30%,
      rgba(122, 162, 255, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #0b0b10 60%, #090909 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: "Noto Serif KR", "Playfair Display", serif;
  letter-spacing: -0.01em;
}

h1 {
  font-weight: 900;
}

h2 {
  font-weight: 800;
}

h3 {
  font-weight: 700;
}

.container,
.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 20px;
}

.glass {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.top-alert {
  padding: 12px 20px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff5f5;
  background: linear-gradient(90deg, #5c0909, #9f1a1a, #5c0909);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: linear-gradient(
    180deg,
    rgba(10, 10, 12, 0.92),
    rgba(10, 10, 12, 0.68)
  );
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: radial-gradient(
    120% 120% at 20% 20%,
    var(--gold) 0%,
    var(--gold2) 60%,
    #5f4b17 100%
  );
  box-shadow:
    0 12px 26px rgba(225, 197, 122, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.55);
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a,
.mobile-nav-list a {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  transition: 0.2s;
}

.nav-links a:hover,
.mobile-nav-list a:hover {
  color: var(--text);
  background: #191922;
}

.menu-btn {
  display: none;
}

.mobile-nav-list {
  padding: 10px 20px 16px;
  display: grid;
  gap: 8px;
}

.hero {
  position: relative;
  min-height: 76vh;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.1), rgba(8, 8, 10, 0.28)),
    url("assets/generated-hero-wide.png") center/cover no-repeat;
  filter: saturate(1.05);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.9), rgba(8, 8, 10, 0.34)),
    radial-gradient(
      120% 80% at 78% 18%,
      rgba(225, 197, 122, 0.24),
      transparent 60%
    );
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 360px);
  align-items: end;
  gap: 24px;
  padding-top: 88px;
  padding-bottom: 56px;
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.04;
  background: linear-gradient(
    180deg,
    var(--text) 0%,
    #eaeaea 35%,
    #d6d6d6 60%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero h1 .gold {
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 720px;
  color: #e6e6ea;
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 32px;
}

.hero-cta,
.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-contact {
  align-self: end;
  padding: 24px;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-number {
  display: inline-block;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-contact p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

.btn {
  appearance: none;
  border: 1px solid #26262e;
  background: #131319;
  color: var(--text);
  padding: 15px 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.24s;
  box-shadow: var(--shadow);
  letter-spacing: 0.02em;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  background: #171720;
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  color: #171410;
  border-color: transparent;
  box-shadow:
    0 14px 30px rgba(225, 197, 122, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 96px;
}

.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.sec-title {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  word-break: keep-all;
  letter-spacing: -0.01em;
}

.badge,
.chip {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #101014;
  color: #cfcfd6;
}

.about-panel {
  padding: 24px;
}

.lead {
  margin: 0;
  font-size: 18px;
  color: #ebebf1;
  line-height: 1.9;
}

.mini,
.small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.mini {
  margin-top: 12px;
}

.chip-row,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row {
  margin-top: 14px;
}

.visual-cards,
.loc-grid,
.pricing,
.foot-grid {
  display: grid;
  gap: 20px;
}

.visual-cards,
.loc-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing,
.foot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visual-card,
.loc,
.price-card {
  overflow: hidden;
  padding: 18px;
}

.thumb {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #14141b;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

.visual-card:hover .thumb img,
.loc:hover .thumb img {
  transform: scale(1.06);
}

.visual-copy h3,
.loc h3,
.price-card h3,
.cta h3,
.foot h4 {
  margin: 14px 0 10px;
  color: var(--text);
}

.visual-copy p,
.loc p,
.cta .note {
  margin: 0;
  color: #d0d0da;
  line-height: 1.86;
}

.loc .chips {
  margin-top: 12px;
}

.price-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed #2a2a33;
  color: #d8d8df;
}

.price-list li:last-child {
  border-bottom: none;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 26px;
}

.cta-actions {
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    box-shadow 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

footer {
  padding: 60px 0 88px;
  color: var(--muted);
}

.foot-grid {
  grid-template-columns: minmax(0, 2fr) 1fr 1fr;
}

.foot h4 {
  margin-top: 0;
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  color: #171410;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow:
    0 14px 30px rgba(225, 197, 122, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.floating-call:hover {
  transform: translateY(-2px);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 10px;
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .hero-layout,
  .visual-cards,
  .loc-grid,
  .pricing,
  .foot-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .top-alert {
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero p {
    font-size: 16px;
  }

  .sec-head {
    display: block;
  }

  .sec-title {
    font-size: 24px;
  }

  .floating-call {
    right: 14px;
    bottom: 14px;
    min-width: 0;
  }
}
