:root {
  --ink: #10201e;
  --ink-2: #223633;
  --paper: #f7f3ec;
  --paper-2: #ede7db;
  --teal: #1e7067;
  --teal-dark: #164c47;
  --brass: #bf935d;
  --line: rgba(16, 32, 30, 0.14);
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(16, 32, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal-dark);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 32, 30, 0.76), rgba(16, 32, 30, 0));
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 243, 236, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand-core,
.brand-go {
  display: inline-block;
}

.brand-core {
  font-family: "BM JUA_TTF", "BMEULJIROTTF", "NanumSquareRound", "Gmarket Sans", "Jua", "Do Hyeon", "Arial Rounded MT Bold", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  transform: rotate(-1deg);
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.24),
    0 5px 0 rgba(16, 32, 30, 0.16),
    0 16px 28px rgba(16, 32, 30, 0.28);
}

.brand-go {
  margin-left: 0.04em;
  color: #30d7bd;
  background: linear-gradient(135deg, #30d7bd 0%, #fff0a6 45%, #ff9f5a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.34),
    0 4px 10px rgba(48, 215, 189, 0.34),
    0 12px 28px rgba(255, 159, 90, 0.2);
  transform: skewX(-6deg);
}

.brand small {
  margin-top: -4px;
  font-size: 11px;
  opacity: 0.76;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.35vw, 20px);
  font-size: 14px;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  padding: 12px 0;
}

.nav a {
  opacity: 0.84;
}

.nav a:hover,
.nav-item:focus-within > a,
.nav-item:hover > a {
  opacity: 1;
}

.submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(16, 32, 30, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(18px);
}

.submenu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--white);
  font-size: 13px;
  opacity: 0.86;
}

.submenu a:hover,
.submenu a:focus {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-header.is-scrolled .submenu {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.96);
}

.site-header.is-scrolled .submenu a {
  color: var(--ink);
}

.site-header.is-scrolled .submenu a:hover,
.site-header.is-scrolled .submenu a:focus {
  background: rgba(30, 112, 103, 0.08);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .nav-cta {
  color: var(--white);
  background: var(--teal-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 32, 30, 0.92), rgba(16, 32, 30, 0.58) 42%, rgba(16, 32, 30, 0.1)),
    linear-gradient(0deg, rgba(16, 32, 30, 0.6), rgba(16, 32, 30, 0.02) 42%);
}

.hero-content {
  width: min(760px, calc(100% - 40px));
  align-self: center;
  padding: 118px 0 86px;
  margin-left: clamp(20px, 7vw, 96px);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(68px, 14vw, 156px);
  line-height: 0.9;
  letter-spacing: 0;
}

h1 .brand-go {
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.32),
    0 10px 26px rgba(48, 215, 189, 0.38),
    0 24px 70px rgba(255, 159, 90, 0.28);
}

h1 .brand-core {
  color: var(--white);
  -webkit-text-stroke: 1px rgba(255, 253, 248, 0.08);
  text-shadow:
    0 3px 0 rgba(255, 255, 255, 0.18),
    0 7px 0 rgba(16, 32, 30, 0.34),
    0 18px 38px rgba(0, 0, 0, 0.42),
    0 30px 90px rgba(48, 215, 189, 0.16);
  transform: rotate(-1.5deg) scaleY(0.96);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(18px, 2.4vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.button.primary {
  color: var(--ink);
  background: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.on-light {
  border-color: rgba(16, 32, 30, 0.18);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
}

.hero-metrics {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(16, 32, 30, 0.48);
  backdrop-filter: blur(10px);
}

.hero-metrics dt {
  color: rgba(255, 253, 248, 0.62);
  font-size: 13px;
}

.hero-metrics dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.notice-band,
.section,
.coverage-section,
.editorial,
.site-footer {
  padding: clamp(56px, 9vw, 112px) clamp(20px, 6vw, 88px);
}

.notice-band {
  color: var(--white);
  background: var(--teal-dark);
}

.notice-band p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  text-align: center;
}

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

.section-heading p:last-child,
.coverage-section p,
.editorial li,
.feature-card p,
.trust-layout p,
.faq-list p {
  color: rgba(16, 32, 30, 0.72);
}

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

.feature-card,
.trust-layout article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card {
  min-height: 250px;
  padding: 28px;
}

.card-number {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 900;
}

.muted {
  background: var(--paper-2);
}

.coverage-section {
  background: var(--paper);
}

.coverage-intro {
  display: grid;
  max-width: 1080px;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.64fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: end;
  margin-bottom: 30px;
}

.area-explorer {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(16, 32, 30, 0.1);
}

.area-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #ebe2d3;
}

.area-tab {
  display: grid;
  min-height: 96px;
  gap: 4px;
  padding: 20px;
  border: 0;
  border-right: 1px solid var(--line);
  color: rgba(16, 32, 30, 0.7);
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.area-tab:last-child {
  border-right: 0;
}

.area-tab span {
  font-size: 16px;
  font-weight: 900;
}

.area-tab strong {
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.15;
}

.area-tab.is-active {
  color: var(--white);
  background: var(--teal-dark);
}

.area-panel {
  padding: clamp(24px, 5vw, 48px);
}

.panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-heading h3 {
  margin-bottom: 0;
  font-size: clamp(26px, 4vw, 40px);
}

.panel-badge {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(30, 112, 103, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(30, 112, 103, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.panel-badge.highlight {
  border-color: rgba(191, 147, 93, 0.4);
  color: #785124;
  background: rgba(191, 147, 93, 0.16);
}

.panel-note {
  max-width: 860px;
  margin-bottom: 18px;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.district-grid.wide {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.district-grid li {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px;
  border: 1px solid rgba(16, 32, 30, 0.12);
  border-radius: 8px;
  color: var(--ink-2);
  background: linear-gradient(180deg, #fffdf8, #f3eee4);
  font-weight: 800;
  text-align: center;
}

.district-grid a {
  display: flex;
  width: 100%;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.district-grid small {
  padding: 2px 6px;
  border-radius: 999px;
  color: var(--white);
  background: var(--brass);
  font-size: 11px;
  font-weight: 900;
}

.source-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.review-card {
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.review-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.review-card-head span {
  color: var(--brass);
  font-size: 13px;
  font-weight: 900;
}

.review-card-head strong {
  color: var(--teal-dark);
  text-align: right;
}

.review-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.review-card dl div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.review-card dt {
  color: rgba(16, 32, 30, 0.58);
  font-weight: 800;
}

.review-card dd {
  margin: 0;
  color: rgba(16, 32, 30, 0.78);
}

.review-policy {
  max-width: 920px;
  margin: 24px 0 0;
  color: rgba(16, 32, 30, 0.68);
  font-size: 14px;
}

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

.magazine-card {
  min-height: 250px;
  padding: clamp(24px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.magazine-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 900;
}

.magazine-card h3 {
  max-width: 360px;
}

.magazine-card p {
  color: rgba(16, 32, 30, 0.72);
}

.area-page {
  background: var(--paper);
}

.area-page .site-header {
  position: sticky;
}

.area-hero {
  padding: clamp(96px, 12vw, 150px) clamp(20px, 6vw, 88px) clamp(52px, 8vw, 88px);
  background:
    linear-gradient(120deg, rgba(16, 32, 30, 0.92), rgba(22, 76, 71, 0.82)),
    url("assets/gandago-hero.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.area-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.02;
}

.area-hero p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

.area-subnav {
  position: sticky;
  top: 74px;
  z-index: 20;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px clamp(20px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 252, 245, 0.94);
  backdrop-filter: blur(18px);
}

.area-subnav a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(16, 32, 30, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(16, 32, 30, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.area-subnav a:hover,
.area-subnav a:focus {
  border-color: rgba(41, 211, 191, 0.5);
  color: var(--ink);
}

.area-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(42px, 7vw, 88px) clamp(20px, 6vw, 88px);
}

.area-content article {
  min-height: 260px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.area-content h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.area-content .area-link-panel,
.area-content .area-dong-list,
.area-content .area-faq,
.area-content .area-price-panel {
  grid-column: 1 / -1;
}

.area-price-panel > p {
  max-width: 980px;
}

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

.price-card {
  --price-accent: var(--teal);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 30, 0.14);
  border-top: 5px solid var(--price-accent);
  border-radius: 10px;
  background: #fffdf8;
  box-shadow: 0 18px 44px rgba(16, 32, 30, 0.1);
}

.price-card.rose {
  --price-accent: #e64f93;
}

.price-card.amber {
  --price-accent: #df8a12;
}

.price-card.violet {
  --price-accent: #8a5cf6;
}

.price-card.red {
  --price-accent: #e04444;
}

.price-card.cyan {
  --price-accent: #16a8c7;
}

.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 26px 10px;
}

.price-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.price-card-head span {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
}

.price-card p {
  min-height: 82px;
  margin: 0;
  padding: 0 26px 22px;
  color: rgba(16, 32, 30, 0.74);
  line-height: 1.7;
}

.price-card dl {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  padding: 16px 26px 24px;
  background: rgba(238, 241, 244, 0.72);
}

.price-card dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(16, 32, 30, 0.18);
}

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

.price-card dt {
  color: rgba(16, 32, 30, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.price-card dd {
  margin: 0;
  color: #006367;
  font-size: 18px;
  font-weight: 950;
  text-align: right;
}

.price-note {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(16, 32, 30, 0.1);
  border-radius: 8px;
  background: rgba(41, 211, 191, 0.08);
  color: rgba(16, 32, 30, 0.74);
}

.area-faq details {
  border-top: 1px solid rgba(16, 32, 30, 0.1);
}

.area-faq summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--ink);
  font-weight: 900;
}

.area-faq p {
  margin-top: 0;
  color: rgba(16, 32, 30, 0.72);
}

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

.local-link-grid a {
  min-height: 54px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 32, 30, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf8, #f4efe5);
  color: var(--ink);
  font-weight: 900;
}

.content-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
}

.content-grid.compact .content-card {
  min-height: 190px;
  box-shadow: none;
}

.content-grid.compact h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 0;
}

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

.trust-layout article {
  padding: 30px;
}

.trust-layout h3 {
  color: var(--teal-dark);
  font-size: 28px;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.editorial h2 {
  color: var(--white);
}

.editorial ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.editorial li {
  color: rgba(255, 253, 248, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 16px;
}

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

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(320px, 1fr);
  gap: 34px 56px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(248, 245, 237, 0.72), rgba(255, 252, 245, 0.96));
}

.site-footer strong {
  font-size: 24px;
}

.footer-brand p {
  max-width: 420px;
  margin: 10px 0 20px;
  color: rgba(16, 32, 30, 0.68);
}

.footer-call {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(16, 32, 30, 0.16);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 22px;
}

.footer-nav h2 {
  margin: 0 0 14px;
  color: rgba(16, 32, 30, 0.54);
  font-size: 13px;
  font-weight: 800;
}

.footer-nav a {
  display: block;
  padding: 7px 0;
  color: var(--ink);
  font-weight: 700;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--teal);
}

.footer-business,
.footer-disclosure {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(16, 32, 30, 0.1);
  padding-top: 22px;
}

.footer-business {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: rgba(16, 32, 30, 0.72);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.footer-business span {
  position: relative;
}

.footer-business span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(16, 32, 30, 0.22);
  transform: translateY(-50%);
}

.footer-disclosure {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  color: rgba(16, 32, 30, 0.64);
  font-size: 14px;
}

.footer-disclosure p {
  margin: 0;
}

.content-page {
  background: var(--paper);
}

.content-main {
  padding-top: 120px;
}

.content-hero {
  padding: 80px clamp(22px, 5vw, 80px) 46px;
  background:
    linear-gradient(135deg, rgba(16, 32, 30, 0.94), rgba(31, 89, 80, 0.88)),
    linear-gradient(0deg, rgba(201, 162, 86, 0.22), rgba(201, 162, 86, 0));
  color: var(--paper);
}

.content-hero h1 {
  max-width: 920px;
  margin: 10px 0 18px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
}

.content-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 252, 245, 0.82);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 56px clamp(22px, 5vw, 80px);
}

.content-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.86);
  box-shadow: 0 18px 44px rgba(16, 32, 30, 0.08);
}

.content-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: rgba(16, 32, 30, 0.72);
  line-height: 1.8;
}

.content-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(22px, 5vw, 80px) 70px;
  padding: 28px;
  border: 1px solid rgba(16, 32, 30, 0.14);
  border-radius: 8px;
  background: #fffaf0;
}

.content-cta h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.content-cta p {
  margin: 0;
  color: rgba(16, 32, 30, 0.66);
}

@media (max-width: 900px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav {
    display: none;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 32, 30, 0.93), rgba(16, 32, 30, 0.52)),
      linear-gradient(0deg, rgba(16, 32, 30, 0.56), rgba(16, 32, 30, 0.06));
  }

  .hero-metrics,
  .feature-grid,
  .trust-layout,
  .coverage-intro,
  .editorial,
  .site-footer,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .content-main {
    padding-top: 96px;
  }

  .content-hero {
    padding-top: 56px;
  }

  .content-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .area-subnav {
    top: 66px;
  }

  .local-link-grid,
  .content-grid.compact,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .area-tabs {
    grid-template-columns: 1fr;
  }

  .area-tab {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .panel-heading {
    display: grid;
  }

  .panel-badge {
    justify-self: start;
  }

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

  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .area-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand small,
  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 72px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .feature-card {
    min-height: auto;
  }

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

  .district-grid li {
    min-height: 48px;
    padding: 10px 8px;
  }

  .review-card-head,
  .review-card dl div {
    grid-template-columns: 1fr;
  }

  .review-card-head {
    display: grid;
  }

  .review-card-head strong {
    text-align: left;
  }
}
