@charset "utf-8";

:root {
  --navy: #071426;
  --black: #05070b;
  --gold: #d6ad5f;
  --gold-light: #f1d58b;
  --text: #172033;
  --muted: #667488;
  --bg: #f4f6f9;
  --line: #dfe4ec;
  --white: #ffffff;
  --radius-lg: 12px;
  --radius-md: 8px;
  --shadow: 0 24px 54px rgba(7, 20, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nanum Gothic", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: 0;
}

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

img {
  max-width: 100%;
  height: auto;
}

.shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(4, 8, 15, 0.96);
  color: #fff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214, 173, 95, 0.22);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(250px, auto) 1fr auto;
  gap: 20px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-copy strong {
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a,
.header-cta,
.category-strip a,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.83);
  border: 1px solid transparent;
}

.main-nav a:hover,
.category-strip a:hover {
  color: var(--gold-light);
  border-color: rgba(214, 173, 95, 0.24);
}

.header-cta,
.btn.gold {
  background: linear-gradient(135deg, #c89c45, var(--gold-light));
  color: #1e1606;
  box-shadow: 0 10px 24px rgba(214, 173, 95, 0.25);
}

.category-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
}

.category-strip a {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center 58%;
  background-size: cover;
  opacity: 0.62;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(7, 20, 38, 0.76) 48%, rgba(5, 7, 11, 0.3)),
    linear-gradient(0deg, rgba(5, 7, 11, 0.66), rgba(5, 7, 11, 0.04) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 94px 0 118px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(214, 173, 95, 0.14);
  color: var(--gold-light);
  border: 1px solid rgba(214, 173, 95, 0.34);
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  max-width: 880px;
  margin: 18px 0 18px;
  font-family: "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  font-size: 38px;
  line-height: 1.32;
  font-weight: 500;
  word-break: keep-all;
  text-shadow: none;
}

.hero-service-line,
.hero-title-tail {
  display: inline-block;
}

.hero-title-tail {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-service-line {
  white-space: nowrap;
}

.hero-lead {
  max-width: 720px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 700;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 10px;
  max-width: 780px;
  margin-top: 34px;
}

.hero-proof div {
  min-height: 86px;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.hero-proof span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.btn.light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.12);
}

.btn.outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
}

.section {
  padding: 80px 0;
}

.section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.section-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-head h2,
.two-col h2,
.contact-panel h2,
.form-panel h2,
.listing-head h1 {
  margin: 0;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.25;
  font-weight: 900;
}

.product-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card,
.article-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 20, 38, 0.055);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(214, 173, 95, 0));
}

.product-card:hover,
.article-card:hover {
  border-color: rgba(214, 173, 95, 0.55);
  box-shadow: 0 18px 38px rgba(7, 20, 38, 0.105);
  transform: translateY(-3px);
}

.product-card img,
.article-card img {
  width: 100%;
  height: 204px;
  object-fit: cover;
  display: block;
}

.product-card div,
.article-card div {
  padding: 20px;
}

.product-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.product-card h3,
.article-card h3 {
  margin: 7px 0 9px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.3;
}

.product-card p,
.article-card p,
.two-col p,
.listing-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.keyword-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #071426;
  box-shadow: var(--shadow);
}

.keyword-panel.tall {
  align-content: flex-start;
  min-height: 260px;
}

.keyword-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-weight: 900;
}

.reservation-cta {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #05070b, #071426);
  color: #fff;
  box-shadow: var(--shadow);
}

.reservation-cta span {
  color: var(--gold-light);
  font-weight: 900;
}

.reservation-cta h2 {
  margin: 4px 0 8px;
  font-size: 28px;
  line-height: 1.25;
}

.reservation-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.page-hero,
.product-hero {
  background: var(--black);
  color: #fff;
}

.page-hero.compact {
  padding: 86px 0;
}

.page-hero h1,
.product-hero h1 {
  margin: 14px 0;
  font-size: 44px;
  line-height: 1.2;
}

.page-hero p,
.product-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 700;
}

.product-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.product-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 11, 0.92), rgba(5, 7, 11, 0.22));
}

.product-hero-copy {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.reservation-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(7, 20, 38, 0.06);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.step-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.step-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.step-list strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #1e1606;
}

.article-shell,
.listing-shell,
.not-found {
  padding: 52px 0 84px;
}

.article-view {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 20, 38, 0.08);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article-view h1 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 40px;
  line-height: 1.26;
}

.article-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.article-meta span,
.article-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f0f3f8;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.article-cover {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 28px;
}

.wp-content {
  color: #253044;
  font-size: 17px;
}

.wp-content h2,
.wp-content h3 {
  color: var(--navy);
  line-height: 1.3;
}

.wp-content a {
  color: #0f55aa;
  font-weight: 900;
  text-decoration: underline;
}

.wp-content img {
  border-radius: 16px;
  margin: 12px 0;
}

.privacy-policy .wp-content h2 {
  margin-top: 28px;
}

.privacy-policy .wp-content ul {
  padding-left: 22px;
}

.privacy-policy .wp-content li {
  margin: 6px 0;
}

.optimization-blocks {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.optimization-blocks > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafc;
}

.optimization-blocks span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.optimization-blocks h2,
.optimization-blocks h3 {
  margin: 8px 0;
  color: var(--navy);
}

.optimization-blocks p,
.optimization-blocks dd {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.optimization-blocks dl {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
}

.optimization-blocks dt {
  color: var(--navy);
  font-weight: 900;
}

.listing-head {
  margin-bottom: 26px;
}

.site-footer {
  padding: 0;
  background:
    linear-gradient(180deg, #071426 0%, #05070b 100%);
  color: #fff;
  border-top: 1px solid rgba(214, 173, 95, 0.26);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.4fr);
  gap: 54px;
  padding: 54px 0 34px;
}

.footer-brand-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}

.footer-brand-block img {
  width: 64px;
  height: 64px;
}

.footer-brand-block strong {
  color: var(--gold-light);
  font-size: 22px;
  line-height: 1.2;
}

.footer-brand-block span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand-block p {
  max-width: 470px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links span {
  color: var(--gold-light);
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 900;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .two-col,
  .reservation-layout,
  .reservation-cta,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-service-line {
    font-size: 27px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, 1160px);
  }

  .brand-logo {
    width: 52px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 540px;
  }

  .hero-content {
    padding: 58px 0 86px;
  }

  .hero h1,
  .page-hero h1,
  .product-hero h1,
  .article-view h1 {
    font-size: 27px;
  }

  .hero-service-line {
    font-size: 25px;
    white-space: normal;
  }

  .hero-lead,
  .page-hero p,
  .product-hero p {
    font-size: 16px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-proof div {
    min-height: 72px;
    padding: 13px 14px;
  }

  .product-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .section-head h2,
  .two-col h2,
  .contact-panel h2,
  .form-panel h2,
  .listing-head h1 {
    font-size: 27px;
  }

  .article-view {
    padding: 22px;
  }

  .reservation-cta {
    margin-bottom: 54px;
    padding: 24px;
  }

  .footer-inner {
    gap: 30px;
    padding: 42px 0 26px;
  }

  .footer-brand-block {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .footer-brand-block img {
    width: 54px;
    height: 54px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    display: grid;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero-service-line {
    font-size: 23px;
  }
}
