:root {
  --ink: #17211d;
  --muted: #60716a;
  --leaf: #236b4a;
  --mint: #dff0df;
  --river: #2d6f88;
  --sun: #f4bd4a;
  --rose: #b95747;
  --paper: #fbfaf4;
  --line: rgba(23, 33, 29, 0.14);
  --shadow: 0 18px 45px rgba(23, 33, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 18, 14, 0.64), rgba(7, 18, 14, 0));
}

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

.brand {
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  font-size: 13px;
}

.nav-links a {
  min-width: 54px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.88;
}

.region-menu {
  margin-left: auto;
  gap: 6px;
}

.region-menu button {
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.region-menu button.is-active,
.region-menu button:hover {
  color: var(--ink);
  background: var(--sun);
}

.hero-kicker {
  margin: 0 0 10px;
  color: var(--sun);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
}

.hero {
  position: relative;
  min-height: 44vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 74px clamp(20px, 6vw, 84px) 28px;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 18, 12, 0.82), rgba(5, 18, 12, 0.36) 48%, rgba(5, 18, 12, 0.08)),
    linear-gradient(0deg, rgba(9, 20, 16, 0.58), rgba(9, 20, 16, 0.08) 45%);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  word-break: keep-all;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  width: min(610px, 100%);
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.65;
}

.search-box {
  width: min(640px, 100%);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.search-box label {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 10px;
}

input,
button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  font: inherit;
}

input {
  width: 100%;
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
}

button {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
  background: var(--sun);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-stats div {
  min-height: 128px;
  padding: 28px clamp(20px, 5vw, 64px);
  background: #fffdf7;
}

.quick-stats strong {
  display: block;
  font-size: 40px;
  line-height: 1;
}

.quick-stats span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.section-shell,
.editorial-band {
  padding: 78px clamp(20px, 5vw, 64px);
}

.featured-shell {
  background:
    linear-gradient(180deg, #fffdf7 0%, #f3f7ef 100%);
}

.section-heading {
  width: min(860px, 100%);
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.filter {
  min-width: 74px;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.filter.is-active {
  color: #fff;
  background: var(--leaf);
}

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

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

.course-card,
.featured-card {
  min-height: 272px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(23, 33, 29, 0.04);
}

.featured-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--leaf);
}

.featured-card.accent-river::before {
  background: var(--river);
}

.featured-card.accent-sun::before {
  background: var(--sun);
}

.featured-card.accent-rose::before {
  background: var(--rose);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.rank,
.region {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.rank {
  color: #fff;
  background: var(--river);
}

.region {
  color: var(--leaf);
  background: var(--mint);
}

.course-card h3,
.featured-card h3 {
  min-height: 68px;
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.course-card p,
.featured-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.55;
}

.course-card .area,
.featured-card .area {
  color: var(--rose);
  font-weight: 900;
}

.course-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--leaf);
  font-weight: 900;
  text-decoration: none;
}

.course-card small {
  display: block;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #7b8a84;
  line-height: 1.45;
}

.course-meta {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #7b8a84;
  font-size: 13px;
  line-height: 1.45;
}

.signal-row {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 18px;
}

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

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 6px;
  color: #fff;
  background: var(--leaf);
  font-weight: 900;
  text-decoration: none;
}

.button-link.secondary {
  color: var(--leaf);
  background: var(--mint);
}

.detail-hero {
  min-height: 460px;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 84px) 58px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 25, 18, 0.86), rgba(10, 25, 18, 0.34)),
    url("/assets/hero-parkgolf.png") center / cover;
}

.detail-hero h1 {
  width: min(820px, 100%);
  margin: 0;
}

.detail-hero p {
  width: min(640px, 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.7;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 28px;
  padding: 64px clamp(20px, 5vw, 64px);
}

.article-layout {
  padding: 64px clamp(20px, 5vw, 64px);
}

.article-body {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-body h2 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.3;
}

.article-body h2:not(:first-child) {
  margin-top: 40px;
}

.article-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.info-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 34px;
}

.info-row {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf6;
}

.info-row strong,
.info-row span {
  display: block;
}

.info-row strong {
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 14px;
}

.info-row span {
  color: var(--ink);
  line-height: 1.65;
}

.article-facts {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.article-facts li {
  padding: 14px 16px;
  border-left: 5px solid var(--leaf);
  background: #f7faf5;
  color: var(--ink);
  line-height: 1.65;
}

.notice-text {
  margin-top: 30px !important;
  padding: 18px;
  border-radius: 8px;
  background: #fff8e5;
  color: #6d5a1c !important;
  font-weight: 700;
}

.detail-panel,
.side-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-panel h2,
.side-panel h2 {
  margin-top: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 5px solid var(--leaf);
  background: #f7faf5;
  line-height: 1.6;
}

.quick-links {
  display: grid;
  gap: 10px;
}

.quick-links .button-link {
  width: 100%;
}

.editorial-band {
  background: #e9f1ea;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(35, 107, 74, 0.18);
}

.editorial-grid article {
  min-height: 230px;
  padding: 28px;
  background: #f8fbf6;
}

.editorial-grid span {
  color: var(--rose);
  font-size: 14px;
  font-weight: 900;
}

.editorial-grid h3 {
  margin: 36px 0 12px;
  font-size: 24px;
}

.editorial-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.empty {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: #fff;
  background: #17211d;
}

.site-footer span {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .course-grid,
  .featured-grid,
  .editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px 10px;
    background: linear-gradient(180deg, rgba(7, 18, 14, 0.82), rgba(7, 18, 14, 0.18));
  }

  .brand {
    width: max-content;
    font-size: 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    min-width: auto;
    padding: 8px;
    font-size: 13px;
  }

  .region-menu {
    width: 100%;
    max-width: none;
    margin-left: 0;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .region-menu::-webkit-scrollbar {
    display: none;
  }

  .region-menu button {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 13px;
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 6px 16px rgba(7, 18, 14, 0.16);
    font-size: 13px;
  }

  .hero {
    min-height: 43vh;
    padding: 116px 20px 24px;
  }

  h1 {
    font-size: 42px;
  }

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

  .hero-kicker {
    font-size: 30px;
  }

  .search-row,
  .quick-stats,
  .course-grid,
  .featured-grid,
  .info-table,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .quick-stats div {
    min-height: auto;
    padding: 22px 20px;
  }

  .section-shell,
  .editorial-band {
    padding: 54px 20px;
  }

  .course-card {
    min-height: 244px;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer small {
    white-space: normal;
  }
}
