:root {
  --bg: #f7f5ef;
  --paper: #ffffff;
  --ink: #17201c;
  --muted: #63706a;
  --line: rgba(23, 32, 28, .14);
  --accent: #5d8f72;
  --accent-2: #c79f62;
  --dark: #16211d;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(17, 24, 39, .12);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

/* Dark course table, matched to the reference price-list capture. */
.price-list-section {
  background: #080706;
}
.price-grid article {
  border-color: rgba(211, 169, 87, .24);
  background: #11100e;
  color: #fff8e9;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}
.price-grid strong {
  color: #f2c96b;
}
.price-grid a {
  background: rgba(211, 169, 87, .14);
  color: #f2c96b;
}
.price-grid .featured {
  border-color: rgba(242, 201, 107, .5);
  background: linear-gradient(135deg, #18130c, #070707);
}
.price-grid .featured a {
  background: #f2c96b;
  color: #12100d;
}
.full-price-table {
  border: 1px solid rgba(211, 169, 87, .34);
  border-radius: 8px;
  background: #070707;
  color: #f8f1df;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}
.price-course {
  grid-template-columns: minmax(150px, .65fr) minmax(280px, 1.15fr) minmax(220px, .85fr);
  gap: 0;
  padding: 0;
  border-bottom: 1px solid rgba(211, 169, 87, .2);
  background: linear-gradient(90deg, #101010, #090909);
}
.course-name,
.course-desc,
.course-items {
  padding: 24px;
}
.course-name {
  display: grid;
  align-content: center;
  background: #13110e;
  border-right: 1px solid rgba(211, 169, 87, .2);
}
.course-name strong {
  color: #fff7e6;
  font-size: 21px;
}
.course-name span {
  color: #caa15c;
}
.course-desc {
  border-left: 0;
  border-right: 1px solid rgba(211, 169, 87, .16);
}
.course-desc p,
.course-desc ul {
  color: rgba(248, 241, 223, .72);
}
.course-desc li::before {
  background: #caa15c;
}
.course-items {
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-left: 0;
}
.course-row {
  min-height: 68px;
  border-bottom: 1px solid rgba(211, 169, 87, .14);
}
.course-row span {
  color: rgba(248, 241, 223, .68);
}
.course-row strong {
  color: #f2c96b;
  font-size: 20px;
}

@media (max-width: 760px) {
  .price-course {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .course-name,
  .course-desc,
  .course-items {
    padding: 20px;
  }
  .course-name,
  .course-desc {
    border-right: 0;
    border-bottom: 1px solid rgba(211, 169, 87, .18);
  }
  .course-items {
    padding-top: 0;
    padding-bottom: 0;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 88%, #fff), var(--bg) 420px),
    var(--bg);
  color: var(--ink);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.theme-1 { --bg: #f5f4ec; --ink: #16231d; --muted: #66736d; --accent: #638e74; --accent-2: #c7a767; --dark: #14211b; }
.theme-2 { --bg: #f6f1ed; --ink: #102427; --muted: #627174; --accent: #0e7c80; --accent-2: #dc7f69; --dark: #092f34; }
.theme-3 { --bg: #f8faf8; --ink: #18211f; --muted: #69736f; --accent: #6ca48f; --accent-2: #2f3d3a; --dark: #1d2926; }
.theme-4 { --bg: #f4efe9; --ink: #241712; --muted: #75665f; --accent: #b6674c; --accent-2: #d0a45f; --dark: #1c1514; }
.theme-5 { --bg: #f5f8f7; --ink: #0f2234; --muted: #647482; --accent: #49a99a; --accent-2: #ef9b86; --dark: #0c2438; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .12));
  backdrop-filter: blur(10px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
}
nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  font-size: 14px;
}
.nav-region {
  position: relative;
}
.nav-region > summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}
.nav-region > summary::-webkit-details-marker,
.nav-district > summary::-webkit-details-marker {
  display: none;
}
.nav-region > summary::after {
  content: "▾";
  margin-left: 5px;
  font-size: 11px;
}
.nav-mega {
  position: fixed;
  top: 66px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100vw - 24px));
  max-height: min(72vh, 680px);
  overflow: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(20, 33, 27, .97);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .32);
  color: #fff;
  backdrop-filter: blur(14px);
}
.nav-mega-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 6px 4px 14px;
}
.nav-mega-head strong {
  font-size: 18px;
}
.nav-mega-head a,
.nav-district-all {
  color: #f2c96b;
  font-weight: 900;
}
.nav-districts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.nav-category-mega {
  max-height: min(78vh, 760px);
}
.nav-category-compact {
  width: min(760px, calc(100vw - 24px));
}
.nav-category-help {
  margin: 0 4px 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.6;
}
.nav-area-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.nav-area-compact-tabs {
  margin-bottom: 0;
}
.nav-area-tabs a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(242, 201, 107, .14);
}
.nav-area-tabs strong {
  color: #f2c96b;
}
.nav-area-tabs span {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 800;
}
.nav-area-tabs em {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-style: normal;
}
.nav-category-regions {
  display: grid;
  gap: 16px;
}
.nav-category-region {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.nav-region-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 4px 10px;
}
.nav-region-title strong {
  font-size: 17px;
}
.nav-region-title a {
  color: #f2c96b;
  font-weight: 900;
}
.category-tree-section {
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(251,247,238,.95));
}
.category-tree-grid {
  display: grid;
  gap: 18px;
}
.category-tree-card {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(21, 53, 41, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(24, 39, 31, .08);
}
.category-tree-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.category-tree-head strong {
  font-size: clamp(20px, 3vw, 28px);
  color: #183629;
}
.category-tree-head span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(196, 143, 53, .12);
  color: #9b6b17;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.category-tree-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #4d5f56;
  font-size: 14px;
}
.category-tree-path b {
  padding: 8px 10px;
  border-radius: 999px;
  background: #f7f0e1;
  color: #203d31;
}
.category-tree-path i {
  color: #c48f35;
  font-style: normal;
  font-weight: 900;
}
.category-district-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}
.category-district-links a {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8faf8;
  color: #1f3d31;
  font-size: 13px;
  font-weight: 800;
}
.nav-district {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}
.nav-district > summary {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 14px;
  cursor: pointer;
  list-style: none;
}
.nav-district > summary span {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}
.nav-dong-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-height: 210px;
  overflow: auto;
  padding: 0 12px 12px;
}
.nav-dong-grid a {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: 13px;
  font-weight: 800;
}
.nav-district-all {
  display: inline-flex;
  padding: 0 12px 12px;
  font-size: 13px;
}
.header-call,
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 800;
}
.header-call,
.primary {
  background: var(--accent);
  color: #fff;
}
.mobile-area-menu,
.mobile-area-link {
  display: none;
}
.secondary {
  border: 1px solid rgba(255, 255, 255, .7);
  color: #fff;
}
.hero-area-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 14px 0 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #f2c96b;
  color: #12100d;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}
.hero-area-button::after {
  content: " →";
}
.area-step-stats {
  margin-top: 24px;
}
.area-step-card {
  min-height: 112px;
}
.detail-service-grid article p {
  font-size: 15px;
}
.service-explain-section {
  padding-top: clamp(42px, 7vw, 82px);
}
.service-detail-list {
  display: grid;
  gap: 14px;
}
.service-detail-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 42px rgba(16, 24, 40, .06);
}
.service-detail-list h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 22px;
}
.service-detail-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.service-detail-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.service-detail-list li {
  padding: 8px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, #fff);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}
.inline-more {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 900;
}
.inline-more::after {
  content: " →";
}
.course-fit-grid article {
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .43) 48%, rgba(0, 0, 0, .18)),
    linear-gradient(0deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, 0) 50%);
}
.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 46px;
  color: #fff;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.08;
  text-wrap: balance;
}
.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
  color: rgba(255, 255, 255, .84);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 860px;
  margin: 44px 0 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(14px);
}
.quick-stats div,
.quick-stats a {
  padding: 18px;
  background: rgba(255, 255, 255, .12);
}
.quick-stats a {
  display: block;
}
.quick-links a {
  position: relative;
  transition: transform .18s ease, background .18s ease;
}
.quick-links a::after {
  content: "보기";
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(242, 201, 107, .2);
  color: #f2c96b;
  font-size: 11px;
  font-weight: 900;
}
.quick-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .18);
}
.quick-stats dt {
  font-size: 22px;
  font-weight: 900;
}
.quick-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .75);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}
.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}
h3 { margin: 0; font-size: 20px; }
.section-head p:not(.eyebrow),
.split p,
article p,
details p,
footer span {
  color: var(--muted);
  line-height: 1.75;
}
.station-copy {
  margin-top: 12px;
  padding: 14px 16px;
  border-left: 4px solid var(--accent-2);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent-2) 9%, #fff);
  color: color-mix(in srgb, var(--ink) 78%, var(--muted));
  font-weight: 700;
}
.service-grid,
.step-grid,
.price-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-grid article,
.step-grid article,
.price-grid article,
.review-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, #fff 86%, var(--bg));
  box-shadow: 0 16px 46px rgba(16, 24, 40, .07);
}
.service-grid article {
  min-height: 190px;
  border-top: 4px solid var(--accent);
}
.seo-section {
  padding-top: clamp(42px, 7vw, 82px);
}
.geo-answer {
  padding-top: clamp(38px, 6vw, 72px);
  padding-bottom: clamp(38px, 6vw, 72px);
}
.geo-answer-lead {
  max-width: 920px;
}
.geo-answer-lead p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.geo-answer-lead strong {
  color: var(--ink);
}
.geo-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.geo-answer-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, #fff 88%, var(--bg));
  box-shadow: 0 14px 38px rgba(16, 24, 40, .06);
}
.geo-answer-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.geo-answer-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}
.geo-answer-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.seo-copy {
  display: grid;
  gap: 14px;
  max-width: 920px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, #fff 84%, var(--bg));
  box-shadow: 0 14px 38px rgba(16, 24, 40, .06);
}
.seo-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}
.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.area-tags,
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-tags span,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 13%, #fff);
  color: var(--accent);
  font-weight: 800;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.area-card {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, #fff 86%, var(--bg));
  box-shadow: 0 16px 46px rgba(16, 24, 40, .07);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.area-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  box-shadow: 0 22px 58px rgba(16, 24, 40, .11);
}
.area-card strong {
  font-size: 22px;
}
.area-card span {
  color: var(--accent);
  font-weight: 900;
}
.area-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}
.area-tree {
  display: grid;
  gap: 12px;
}
.metro-tree,
.district-tree {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 42px rgba(16, 24, 40, .06);
}
.metro-tree > summary,
.district-tree > summary {
  display: grid;
  grid-template-columns: minmax(90px, auto) 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}
.metro-tree > summary::-webkit-details-marker,
.district-tree > summary::-webkit-details-marker {
  display: none;
}
.metro-tree > summary::after,
.district-tree > summary::after {
  content: "펼치기";
  justify-self: end;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 13%, #fff);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}
.metro-tree[open] > summary::after,
.district-tree[open] > summary::after {
  content: "접기";
}
.metro-tree > summary strong {
  font-size: 24px;
  color: var(--ink);
}
.district-tree > summary strong {
  color: var(--accent);
  font-size: 18px;
}
.metro-tree > summary span,
.district-tree > summary span {
  color: var(--muted);
  font-weight: 700;
}
.metro-tree > summary em,
.district-tree > summary em {
  color: var(--accent-2);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}
.district-tree-list {
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
}
.dong-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 18px;
}
.dong-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.dong-link.priority {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  background: color-mix(in srgb, var(--accent) 10%, #fff);
  color: var(--accent);
}
.district-more {
  display: inline-flex;
  margin: 0 18px 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}
.metro-more {
  margin: 2px 18px 18px;
}
.step-grid article strong {
  color: var(--accent);
  font-size: 30px;
}
.board-section {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  background: color-mix(in srgb, var(--dark) 94%, var(--accent));
  color: #fff;
}
.board-section .section-head p:not(.eyebrow) { color: rgba(255, 255, 255, .68); }
.board-list {
  display: grid;
  gap: 8px;
}
.board-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}
.board-list time { color: rgba(255, 255, 255, .55); }
.price-grid { grid-template-columns: repeat(3, 1fr); }
.price-grid article {
  display: grid;
  gap: 12px;
}
.price-grid strong {
  font-size: 34px;
}
.price-grid a {
  display: inline-flex;
  justify-content: center;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  font-weight: 800;
}
.price-grid .featured {
  background: var(--dark);
  color: #fff;
  transform: translateY(-10px);
}
.price-grid .featured span { color: rgba(255, 255, 255, .72); }
.price-grid .featured a { background: var(--accent); }
.review-grid { grid-template-columns: repeat(4, 1fr); }
.review-grid strong { color: var(--accent-2); }
.topic-section {
  padding-top: 20px;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.topic-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, #fff 86%, var(--bg));
  box-shadow: 0 14px 42px rgba(16, 24, 40, .06);
}
.topic-region {
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
}
.topic-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.topic-services a,
.keyword-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 13%, #fff);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}
.faq {
  display: grid;
  gap: 10px;
}
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
}
summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}
details p {
  margin: 0;
  padding: 0 20px 20px;
}
.cta {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 80px;
  padding: clamp(42px, 7vw, 76px);
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta p:not(.eyebrow) { color: rgba(255, 255, 255, .74); }
footer {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}
.site-footer {
  display: grid;
  gap: 10px;
  width: 100%;
  justify-content: center;
  justify-items: center;
  align-items: center;
  text-align: center;
  background: color-mix(in srgb, var(--bg) 86%, #fff);
}
.site-footer p {
  margin: 0;
  max-width: 1080px;
  color: var(--muted);
  line-height: 1.7;
}
.site-footer small {
  color: var(--ink);
  font-weight: 900;
}
.compact-header {
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 34px rgba(16, 24, 40, .08);
  backdrop-filter: blur(16px);
}
.price-page {
  padding-top: 76px;
}
.area-page {
  padding-top: 76px;
}
.price-hero {
  position: relative;
  overflow: hidden;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  min-height: clamp(430px, 58vw, 620px);
  display: grid;
  align-items: end;
  padding: clamp(86px, 11vw, 132px) clamp(22px, 5vw, 64px) clamp(34px, 6vw, 62px);
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow);
}
.area-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 106px) 0 28px;
}
.price-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
}
.price-hero-bg,
.price-hero-shade {
  position: absolute;
  inset: 0;
}
.price-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.price-hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 33, 27, .88), rgba(20, 33, 27, .58) 46%, rgba(20, 33, 27, .08)),
    linear-gradient(0deg, rgba(20, 33, 27, .52), rgba(20, 33, 27, 0) 48%);
}
.price-hero-content {
  position: relative;
  max-width: 690px;
  color: #fff;
}
.price-hero-content .eyebrow {
  color: #e4c887;
}
.price-hero-content h1 {
  color: #fff;
  text-shadow: 0 18px 46px rgba(0, 0, 0, .2);
}
.area-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
}
.price-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.75;
}
.price-hero-meta {
  display: inline-grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  gap: 10px 14px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}
.price-hero-meta span {
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.price-hero-meta strong {
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
}
.price-hero .dark-secondary {
  border-color: rgba(255, 255, 255, .72);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}
.area-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.dark-secondary {
  border-color: var(--line);
  color: var(--ink);
}
.price-hero .dark-secondary {
  border-color: rgba(255, 255, 255, .72);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}
.price-list-section {
  padding-top: 28px;
}
.full-price-table {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, #fff);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.price-course {
  display: grid;
  grid-template-columns: minmax(150px, .65fr) minmax(320px, 1.25fr) minmax(210px, .75fr);
  gap: 24px;
  align-items: stretch;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.price-course:last-child {
  border-bottom: 0;
}
.course-name,
.course-desc,
.course-items {
  padding: 26px 24px;
}
.course-name {
  display: grid;
  align-content: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent) 10%, #fff);
}
.course-name strong {
  font-size: 20px;
}
.course-name span,
.course-desc {
  color: var(--muted);
  line-height: 1.7;
}
.course-desc {
  margin: 0;
  display: grid;
  align-content: center;
  gap: 12px;
  border-left: 1px solid var(--line);
}
.course-desc p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 72%, var(--muted));
  font-weight: 700;
}
.course-desc ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.course-desc li {
  position: relative;
  padding-left: 14px;
}
.course-desc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-2);
}
.course-items {
  display: grid;
  padding-top: 0;
  padding-bottom: 0;
  border-left: 1px solid var(--line);
}
.course-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}
.course-row:last-child {
  border-bottom: 0;
}
.course-row span {
  font-size: 18px;
  font-weight: 900;
}
.course-row strong {
  justify-self: end;
  color: var(--accent-2);
  font-size: 20px;
}
.zone-table,
.check-grid,
.service-table,
.dong-grid {
  display: grid;
  gap: 10px;
}
.zone-table {
  grid-template-columns: repeat(5, 1fr);
}
.zone-table article,
.check-grid article,
.service-table article,
.dong-grid article,
.neighborhood-box {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, #fff 86%, var(--bg));
  box-shadow: 0 12px 34px rgba(16, 24, 40, .05);
}
.zone-table article,
.service-table article,
.dong-grid article {
  display: grid;
  gap: 8px;
}
.zone-table strong,
.service-table strong,
.dong-grid strong,
.neighborhood-box strong {
  color: var(--accent);
  font-size: 18px;
}
.zone-table span,
.service-table span,
.service-table em,
.dong-grid p,
.neighborhood-box p {
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}
.neighborhood-box {
  margin-top: 12px;
}
.neighborhood-box p {
  margin: 8px 0 0;
}
.check-grid {
  grid-template-columns: repeat(4, 1fr);
}
.dong-grid {
  grid-template-columns: repeat(3, 1fr);
}
.dong-grid p {
  margin: 0;
}
.service-table article {
  grid-template-columns: minmax(120px, .7fr) minmax(120px, .7fr) 1fr;
  align-items: center;
}
.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-keyword-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, .68);
}
.area-review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.theme-2 .service-grid,
.theme-4 .service-grid { grid-template-columns: repeat(2, 1fr); }
.theme-3 .hero { min-height: 84vh; }
.theme-3 .hero-overlay { background: linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.54), rgba(255,255,255,.06)); }
.theme-3 .hero-content,
.theme-3 .hero p:not(.eyebrow),
.theme-3 .secondary { color: var(--ink); }
.theme-3 .secondary { border-color: rgba(24, 33, 31, .32); }
.theme-4 .hero h1 { max-width: 780px; }
.theme-5 .quick-stats { margin-left: auto; }

.pattern-split .hero {
  align-items: center;
}
.pattern-split .hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 34px;
  align-items: end;
}
.pattern-split .quick-stats {
  grid-template-columns: 1fr 1fr;
  margin: 0;
}
.pattern-split .service-grid {
  grid-template-columns: repeat(2, 1fr);
}

.pattern-light .hero {
  min-height: 84vh;
}
.pattern-light .hero-overlay {
  background: linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.58), rgba(255,255,255,.08));
}
.pattern-light .hero-content,
.pattern-light .hero p:not(.eyebrow),
.pattern-light .secondary {
  color: var(--ink);
}
.pattern-light .secondary {
  border-color: rgba(24, 33, 31, .32);
}
.pattern-light .quick-stats {
  background: rgba(255, 255, 255, .62);
}
.pattern-light .quick-stats div {
  background: rgba(255, 255, 255, .44);
}
.pattern-light .quick-stats dd {
  color: var(--muted);
}

.pattern-compact .hero-content {
  width: min(980px, calc(100% - 36px));
}
.pattern-compact .service-grid {
  grid-template-columns: repeat(2, 1fr);
}
.pattern-compact .section {
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(52px, 7vw, 88px);
}
.pattern-compact .board-list a {
  grid-template-columns: auto 1fr;
}
.pattern-compact .board-list time {
  grid-column: 2;
}

.pattern-stat .hero-content {
  text-align: center;
}
.pattern-stat .hero h1,
.pattern-stat .hero p:not(.eyebrow),
.pattern-stat .quick-stats,
.pattern-stat .hero-actions {
  margin-left: auto;
  margin-right: auto;
}
.pattern-stat .quick-stats {
  max-width: 760px;
}
.pattern-stat .split {
  grid-template-columns: 1fr;
  text-align: center;
}
.pattern-stat .area-tags {
  justify-content: center;
}

.index-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(135deg, #eef7f4, #f8efe9);
}
.index-hero {
  width: min(860px, 100%);
  padding: clamp(36px, 7vw, 72px);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.index-hero h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.1;
}
.index-hero p { color: var(--muted); line-height: 1.75; }
.index-links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.index-links a {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }
  nav { display: none; }
  .mobile-area-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    background: #f2c96b;
    color: #12100d;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
    white-space: nowrap;
  }
  .mobile-area-link::after {
    content: " →";
  }
  .mobile-area-menu {
    display: block;
    justify-self: center;
  }
  .mobile-area-menu > summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f2c96b;
    color: #12100d;
    font-size: 13px;
    font-weight: 900;
    list-style: none;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .2);
  }
  .mobile-area-menu > summary::-webkit-details-marker,
  .mobile-metro > summary::-webkit-details-marker,
  .mobile-district > summary::-webkit-details-marker {
    display: none;
  }
  .mobile-area-menu > summary::after {
    content: "▼";
    margin-left: 7px;
    font-size: 10px;
  }
  .mobile-area-menu[open] > summary::after {
    content: "▲";
  }
  .mobile-area-panel {
    position: fixed;
    top: 62px;
    left: 10px;
    right: 10px;
    max-height: calc(100vh - 82px);
    overflow: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    background: rgba(20, 33, 27, .98);
    color: #fff;
    box-shadow: 0 26px 80px rgba(0, 0, 0, .38);
    z-index: 50;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-metro,
  .mobile-district {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
  }
  .mobile-metro + .mobile-metro,
  .mobile-district + .mobile-district {
    margin-top: 8px;
  }
  .mobile-metro > summary,
  .mobile-district > summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 14px;
    list-style: none;
    cursor: pointer;
    font-weight: 900;
  }
  .mobile-metro > summary::after,
  .mobile-district > summary::after {
    content: "열기";
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(242, 201, 107, .16);
    color: #f2c96b;
    font-size: 11px;
  }
  .mobile-metro[open] > summary::after,
  .mobile-district[open] > summary::after {
    content: "닫기";
  }
  .mobile-metro > summary span,
  .mobile-district > summary span {
    margin-left: auto;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 800;
  }
  .mobile-district-list {
    padding: 0 8px 8px;
  }
  .mobile-dong-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    max-height: 230px;
    overflow: auto;
    padding: 0 10px 10px;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-dong-list a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
  }
  .mobile-district-all {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin: 0 10px 10px;
    color: #f2c96b;
    font-size: 13px;
    font-weight: 900;
  }
  .hero { min-height: 88vh; }
  .quick-stats,
  .service-grid,
  .step-grid,
  .price-grid,
  .review-grid,
  .area-grid,
  .topic-grid,
  .zone-table,
  .check-grid,
  .dong-grid,
  .area-review-grid,
  .theme-2 .service-grid,
  .theme-4 .service-grid,
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .index-links { grid-template-columns: 1fr 1fr; }
  .pattern-split .hero-content {
    display: block;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }
  .brand { font-size: 15px; }
  .brand span {
    width: 30px;
    height: 30px;
  }
  .header-call {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }
  .hero-content {
    width: calc(100% - 28px);
    padding-bottom: 30px;
  }
  .hero h1 { font-size: 32px; line-height: 1.15; }
  .hero p:not(.eyebrow) { font-size: 15px; line-height: 1.65; }
  .hero-area-button {
    width: 100%;
    min-height: 56px;
    margin: 12px 0 8px;
    font-size: 17px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 14px;
  }
  .hero-actions a,
  .primary,
  .secondary {
    width: 100%;
    min-height: 50px;
  }
  .quick-stats {
    margin-top: 18px;
  }
  .quick-stats div {
    padding: 14px;
  }
  .quick-stats dt {
    font-size: 18px;
  }
  .quick-stats dd {
    font-size: 13px;
  }
  .section {
    width: calc(100% - 28px);
    padding: 42px 0;
  }
  h2 {
    font-size: 28px;
    line-height: 1.18;
  }
  .section-head {
    margin-bottom: 18px;
  }
  .section-head p:not(.eyebrow),
  .split p,
  article p,
  details p {
    font-size: 15px;
    line-height: 1.65;
  }
  .area-hero {
    width: calc(100% - 28px);
    padding: 74px 0 18px;
  }
  .area-hero h1 {
    font-size: 32px;
    line-height: 1.15;
  }
  .area-hero p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.65;
  }
  .area-card,
  .area-step-card,
  .dong-grid article {
    min-height: auto;
    padding: 18px;
    border-radius: 14px;
  }
  .area-card strong,
  .dong-grid strong {
    font-size: 20px;
  }
  .area-card span {
    font-size: 15px;
  }
  .area-card em {
    font-size: 13px;
    line-height: 1.45;
  }
  .featured-area-card {
    background: #16211d;
    color: #fff;
    border-color: #16211d;
  }
  .featured-area-card span,
  .featured-area-card em {
    color: #f2c96b;
  }
  .quick-stats,
  .service-grid,
  .step-grid,
  .price-grid,
  .review-grid,
  .theme-2 .service-grid,
  .theme-4 .service-grid,
  .split,
  .board-list a {
    grid-template-columns: 1fr;
  }
  .board-list time { justify-self: start; }
  .price-grid .featured { transform: none; }
  .cta { padding: 34px 22px; }
  footer {
    flex-direction: column;
  }
  .site-footer {
    align-items: center;
  }
  .index-links { grid-template-columns: 1fr; }
  .price-page {
    padding-top: 62px;
  }
  .area-page {
    padding-top: 62px;
  }
  .price-course {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .course-name,
  .course-desc,
  .course-items {
    padding: 20px;
  }
  .course-desc,
  .course-items {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }
  .course-row {
    grid-template-columns: 70px 1fr;
  }
  .area-grid,
  .topic-grid,
  .zone-table,
  .check-grid,
  .geo-answer-grid,
  .dong-grid,
  .area-review-grid,
  .service-table article {
    grid-template-columns: 1fr;
  }
  .area-tree {
    gap: 10px;
  }
  .metro-tree,
  .district-tree {
    border-radius: 12px;
  }
  .metro-tree > summary,
  .district-tree > summary {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 16px;
  }
  .metro-tree > summary::after,
  .district-tree > summary::after {
    justify-self: start;
    margin-top: 4px;
    min-height: 30px;
    padding: 7px 12px;
  }
  .metro-tree > summary strong {
    font-size: 22px;
  }
  .district-tree > summary strong {
    font-size: 18px;
  }
  .metro-tree > summary span,
  .district-tree > summary span {
    font-size: 13px;
    line-height: 1.45;
  }
  .metro-tree > summary em,
  .district-tree > summary em {
    font-size: 12px;
  }
  .district-tree-list {
    padding: 0 10px 10px;
  }
  .dong-link-grid {
    gap: 7px;
    padding: 0 12px 14px;
    max-height: 280px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dong-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }
  .district-more {
    margin: 0 12px 14px;
    min-height: 38px;
    align-items: center;
  }
}

/* Final price-table override: keep the reference-style dark course table last. */
.price-list-section {
  background: #080706;
}
.price-grid article {
  border-color: rgba(211, 169, 87, .24);
  background: #11100e;
  color: #fff8e9;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}
.price-grid strong {
  color: #f2c96b;
}
.price-grid a {
  background: rgba(211, 169, 87, .14);
  color: #f2c96b;
}
.price-grid .featured {
  border-color: rgba(242, 201, 107, .5);
  background: linear-gradient(135deg, #18130c, #070707);
}
.price-grid .featured a {
  background: #f2c96b;
  color: #12100d;
}
.full-price-table {
  border: 1px solid rgba(211, 169, 87, .34);
  border-radius: 8px;
  background: #070707;
  color: #f8f1df;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}
.price-course {
  grid-template-columns: minmax(150px, .65fr) minmax(280px, 1.15fr) minmax(220px, .85fr);
  gap: 0;
  padding: 0;
  border-bottom: 1px solid rgba(211, 169, 87, .2);
  background: linear-gradient(90deg, #101010, #090909);
}
.course-name,
.course-desc,
.course-items {
  padding: 24px;
}
.course-name {
  display: grid;
  align-content: center;
  background: #13110e;
  border-right: 1px solid rgba(211, 169, 87, .2);
}
.course-name strong {
  color: #fff7e6;
  font-size: 21px;
}
.course-name span {
  color: #caa15c;
}
.course-desc {
  border-left: 0;
  border-right: 1px solid rgba(211, 169, 87, .16);
}
.course-desc p,
.course-desc ul {
  color: rgba(248, 241, 223, .72);
}
.course-desc li::before {
  background: #caa15c;
}
.course-items {
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-left: 0;
}
.course-row {
  min-height: 68px;
  border-bottom: 1px solid rgba(211, 169, 87, .14);
}
.course-row span {
  color: rgba(248, 241, 223, .68);
}
.course-row strong {
  color: #f2c96b;
  font-size: 20px;
}

@media (max-width: 760px) {
  .price-course {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .course-name,
  .course-desc,
  .course-items {
    padding: 20px;
  }
  .course-name,
  .course-desc {
    border-right: 0;
    border-bottom: 1px solid rgba(211, 169, 87, .18);
  }
  .course-items {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Global area selector and course table shown on every page. */
.global-booking-panel {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 0 20px;
  display: grid;
  gap: 16px;
}
.global-area-picker,
.global-course-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 45px rgba(17, 24, 39, .08);
  padding: 22px;
}
.global-area-picker {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(360px, 1.25fr);
  gap: 18px;
  align-items: center;
}
.global-area-picker h2,
.global-course-head h2 {
  margin: 3px 0 8px;
  font-size: clamp(22px, 3vw, 32px);
}
.global-area-picker p,
.global-course-head p,
.global-course-table p {
  color: var(--muted);
}
.global-area-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.global-area-links a {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(93, 143, 114, .22);
  background: linear-gradient(135deg, #f8fbf6, #fff);
  color: var(--ink);
  text-decoration: none;
}
.global-area-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(93, 143, 114, .5);
  box-shadow: 0 14px 35px rgba(93, 143, 114, .12);
}
.global-area-links strong {
  font-size: 18px;
}
.global-area-links span {
  color: var(--muted);
  font-size: 13px;
}
.global-area-links .all-area {
  background: linear-gradient(135deg, var(--dark), #26362f);
  color: #fff;
}
.global-area-links .all-area span { color: rgba(255,255,255,.72); }
.global-course-panel {
  background: #080706;
  color: #f8f1df;
  border-color: rgba(211, 169, 87, .34);
}
.global-course-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.global-course-head h2 { color: #fff7e6; }
.global-course-head p { color: #caa15c; }
.global-course-head a {
  color: #12100d;
  background: #f2c96b;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.global-course-table {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(211, 169, 87, .22);
  border-radius: 14px;
  overflow: hidden;
}
.global-course-table article {
  padding: 18px;
  background: linear-gradient(180deg, #101010, #090909);
  border-right: 1px solid rgba(211, 169, 87, .16);
}
.global-course-table article:last-child { border-right: 0; }
.global-course-table h3 {
  margin: 0 0 8px;
  color: #fff7e6;
  font-size: 18px;
}
.global-course-table p {
  min-height: 62px;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(248, 241, 223, .72);
}
.global-course-table div {
  display: grid;
  gap: 8px;
}
.global-course-table span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid rgba(211, 169, 87, .14);
}
.global-course-table em {
  color: rgba(248, 241, 223, .68);
  font-style: normal;
}
.global-course-table strong {
  color: #f2c96b;
  font-size: 16px;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .global-area-picker { grid-template-columns: 1fr; }
  .global-area-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .global-course-table { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .global-course-table article { border-bottom: 1px solid rgba(211, 169, 87, .16); }
}
@media (max-width: 620px) {
  .global-booking-panel { margin-top: 10px; padding: 0 12px; }
  .global-area-picker,
  .global-course-panel { padding: 16px; border-radius: 14px; }
  .global-area-links,
  .global-course-table { grid-template-columns: 1fr; }
  .global-course-head { align-items: start; flex-direction: column; }
  .global-course-table p { min-height: auto; }
  .global-course-table article { border-right: 0; }
}


/* Bottom image course/area panel */
.bottom-course-area-panel{max-width:1180px;margin:42px auto 28px;padding:0 20px}.bottom-course-wrap{display:grid;grid-template-columns:.8fr 1.2fr;gap:20px;align-items:center;border:1px solid rgba(23,32,28,.12);border-radius:24px;background:#fff;box-shadow:0 18px 55px rgba(17,24,39,.10);padding:24px}.bottom-area-select h2{margin:4px 0 10px;font-size:clamp(26px,3vw,38px);color:#17201c}.bottom-area-select p{color:#63706a;line-height:1.7}.bottom-area-buttons{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:18px}.bottom-area-buttons a{display:flex;align-items:center;justify-content:center;min-height:54px;border-radius:14px;background:#16211d;color:#fff;text-decoration:none;font-weight:900}.bottom-area-buttons a:first-child{grid-column:1/-1;background:linear-gradient(135deg,#5d8f72,#16211d)}.bottom-course-image img{display:block;width:100%;height:auto;border-radius:22px;box-shadow:0 20px 55px rgba(0,0,0,.18)}@media(max-width:820px){.bottom-course-area-panel{padding:0 12px;margin:32px auto 20px}.bottom-course-wrap{grid-template-columns:1fr;padding:16px;border-radius:18px}.bottom-area-buttons{grid-template-columns:repeat(4,minmax(0,1fr))}.bottom-area-buttons a:first-child{grid-column:auto}.bottom-area-buttons a{min-height:48px;font-size:14px}.bottom-course-image img{border-radius:16px}}@media(max-width:520px){.bottom-area-buttons{grid-template-columns:repeat(2,minmax(0,1fr))}.bottom-area-buttons a:first-child{grid-column:1/-1}}
/* End bottom image course/area panel */

/* Strong SMS button visibility */
.hero-actions .secondary.dark-secondary,.area-hero .secondary.dark-secondary,.cta .secondary.dark-secondary,.price-hero .secondary.dark-secondary{background:#ffffff!important;color:#17201c!important;border:2px solid #ffffff!important;box-shadow:0 14px 34px rgba(0,0,0,.18)!important;opacity:1!important;backdrop-filter:none!important}.hero-actions .secondary.dark-secondary:hover,.area-hero .secondary.dark-secondary:hover,.cta .secondary.dark-secondary:hover,.price-hero .secondary.dark-secondary:hover{background:#f2c96b!important;border-color:#f2c96b!important;transform:translateY(-2px)}
/* End strong SMS button visibility */
