:root {
  color-scheme: dark;
  --bg: #09090c;
  --panel: #15141a;
  --panel-2: #201b22;
  --text: #f7f1e5;
  --muted: #b8ad9d;
  --line: rgba(241, 214, 148, 0.26);
  --gold: #f1d694;
  --gold-strong: #d6ad5a;
  --copper: #c78462;
  --ink: #0d0b0a;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(9, 9, 12, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: Georgia, serif;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

.header-call {
  border: 1px solid var(--gold);
  padding: 9px 13px;
  color: var(--gold);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 66px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(9, 9, 12, 0.92), rgba(9, 9, 12, 0.55), rgba(9, 9, 12, 0.34)), url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  content: "";
  background: linear-gradient(0deg, var(--bg), transparent);
}

.hero-content {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #eadfcb;
  font-size: 19px;
}

.hero-actions,
.section .btn,
.final-cta .btn {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  font-weight: 800;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-secondary {
  margin-left: 10px;
  color: var(--gold);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  margin: 42px 0 0;
}

.hero-facts div {
  border: 1px solid var(--line);
  background: rgba(15, 14, 18, 0.72);
  padding: 15px;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 13px;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--gold);
  font-weight: 800;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro-band,
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: none;
  padding: 38px max(18px, calc((100vw - var(--max)) / 2));
  background: #121015;
  border-block: 1px solid var(--line);
}

.intro-copy {
  max-width: 740px;
}

.intro-copy p,
.section-heading p,
.notice,
.final-cta p,
.site-footer p,
.site-footer address {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.article-card,
.location-grid article,
.steps article,
.trust-grid article,
.policy-list article {
  border: 1px solid var(--line);
  background: var(--panel);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div,
.article-card,
.location-grid article,
.steps article,
.trust-grid article,
.policy-list article {
  padding: 22px;
}

.service-card p,
.article-card p,
.location-grid p,
.steps p,
.trust-grid p,
.policy-list p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.trust-section {
  max-width: 1180px;
}

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

.trust-grid article {
  min-height: 260px;
}

.trust-grid p + p,
.policy-list p + p {
  margin-top: 10px;
}

.pricing-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: #100f13;
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(241, 214, 148, 0.24);
  border-top-color: #e0b57a;
  border-radius: 18px;
  background: #121116;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.price-card-featured {
  border-color: rgba(241, 214, 148, 0.55);
}

.price-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.price-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.price-copy {
  min-height: 74px;
  margin: 0;
  color: #c7bbad;
  font-size: 15px;
  line-height: 1.75;
}

.price-list {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(241, 214, 148, 0.14);
}

.price-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(241, 214, 148, 0.08);
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list dt {
  color: #b8c4da;
}

.price-list dd {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f1c09f;
  color: #23110c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.notice {
  margin: 18px 0 0;
}

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

.guide-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.policy-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: #121015;
  border-block: 1px solid var(--line);
}

.detail-section {
  max-width: 980px;
}

.detail-section .section-heading {
  max-width: none;
}

.detail-section p + p {
  margin-top: 16px;
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  min-height: 190px;
}

.article-card p {
  color: var(--copper);
  font-weight: 800;
}

.article-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 800;
}

.faq-section {
  max-width: 880px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--gold);
  font-weight: 800;
}

details p {
  padding-top: 12px;
}

.final-cta {
  display: block;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 48px max(18px, calc((100vw - var(--max)) / 2)) 86px;
  border-top: 1px solid var(--line);
  background: #060608;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.mobile-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: none;
  width: calc(100% - 32px);
  min-height: 50px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 67px 0 auto;
    display: none;
    padding: 20px 18px 28px;
    background: rgba(9, 9, 12, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: grid;
  }

  .header-call {
    display: none;
  }

  .card-grid.three,
  .location-grid,
  .pricing-grid,
  .trust-grid,
  .policy-list,
  .guide-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-band {
    display: block;
  }

  .mobile-call {
    display: flex;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding: 70px 0 62px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }
}
