:root {
  --accent: #126f7d;
  --accent-rgb: 18, 111, 125;
  --panel: rgba(250, 252, 250, 0.92);
  --ink: #172722;
  --muted: #667069;
  --line: rgba(37, 55, 44, 0.12);
  --white: #fff;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  color: var(--ink);
  background: #18251f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: transparent;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.3);
  outline-offset: 3px;
}

.scene,
.scene-shade,
.scene-glow,
.scene-grain {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.scene {
  background-image: url("assets/island-hero.png");
  background-size: cover;
  background-position: var(--scene-position, 48% center);
  filter: saturate(var(--scene-saturation, 1.04)) hue-rotate(var(--scene-hue, 0deg));
  transform: scale(1.045);
  transition: background-position 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
  animation: scene-breathe 18s ease-in-out infinite alternate;
}

.scene-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 20, 29, 0.79) 0%, rgba(3, 27, 36, 0.49) 42%, rgba(4, 22, 29, 0.11) 74%, rgba(2, 13, 19, 0.21) 100%),
    linear-gradient(180deg, rgba(4, 20, 27, 0.36) 0%, transparent 32%, rgba(2, 16, 22, 0.54) 100%),
    var(--season-wash, rgba(24, 116, 139, 0.08));
  transition: background 0.7s ease;
}

.scene-glow {
  z-index: -1;
  background:
    radial-gradient(circle at 73% 22%, rgba(255, 213, 151, 0.22), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(17, 117, 137, 0.2), transparent 36%);
  mix-blend-mode: screen;
}

.scene-grain {
  z-index: -1;
  opacity: 0.09;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.34) 0 .55px, transparent .8px),
    radial-gradient(circle at 70% 65%, rgba(0,0,0,.4) 0 .45px, transparent .75px);
  background-size: 5px 5px, 7px 7px;
  pointer-events: none;
}

@keyframes scene-breathe {
  from { transform: scale(1.045); }
  to { transform: scale(1.085) translate3d(-0.45%, -0.35%, 0); }
}

body[data-season="spring"] {
  --accent: #bf6f7d;
  --accent-rgb: 191, 111, 125;
  --scene-position: 6% center;
  --scene-saturation: 1.04;
  --season-wash: rgba(189, 99, 121, 0.09);
}

body[data-season="summer"] {
  --accent: #2d8b57;
  --accent-rgb: 45, 139, 87;
  --scene-position: 48% center;
  --scene-saturation: 1.08;
  --season-wash: rgba(35, 118, 69, 0.05);
}

body[data-season="autumn"] {
  --accent: #b66b2a;
  --accent-rgb: 182, 107, 42;
  --scene-position: 72% center;
  --scene-saturation: 1.12;
  --season-wash: rgba(175, 92, 24, 0.09);
}

body[data-season="winter"] {
  --accent: #5d85a3;
  --accent-rgb: 93, 133, 163;
  --scene-position: 98% center;
  --scene-saturation: 0.86;
  --season-wash: rgba(70, 114, 148, 0.12);
}

body[data-season="islands"] {
  --accent: #147d8e;
  --accent-rgb: 20, 125, 142;
  --panel: rgba(247, 250, 248, 0.95);
  --scene-position: center center;
  --scene-saturation: 1.06;
  --scene-hue: 0deg;
  --season-wash: rgba(18, 109, 129, 0.06);
}

.page-shell {
  width: min(1480px, calc(100% - 80px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  height: 98px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  animation: reveal-down 0.9s var(--ease-out) both;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08), 0 8px 26px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.brand-mark svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-family: "Nanum Myeongjo", serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.brand small {
  display: block;
  margin-top: 5px;
  opacity: 0.68;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.main-nav {
  display: flex;
  align-self: stretch;
  gap: 40px;
}

.main-nav a,
.main-nav button {
  position: relative;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.68);
  border: 0;
  background: transparent;
  text-decoration: none;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.main-nav button small {
  display: block;
  color: rgba(255,255,255,.38);
  font-size: 7px;
  letter-spacing: .2em;
}

.main-nav a:hover,
.main-nav a.active,
.main-nav button:hover,
.main-nav button.active {
  color: var(--white);
}

.main-nav button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: currentColor;
}

body.search-open{overflow:hidden}
.island-search-overlay{position:fixed;inset:0;z-index:50;display:grid;place-items:start center;padding:112px 24px 30px;background:rgba(3,20,27,.66);backdrop-filter:blur(10px)}
.island-search-overlay[hidden]{display:none}
.island-search-dialog{width:min(720px,100%);max-height:calc(100vh - 142px);padding:30px;border:1px solid rgba(255,255,255,.48);border-radius:24px;background:rgba(248,251,250,.98);box-shadow:0 32px 90px rgba(0,0,0,.36);overflow:hidden}
.island-search-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}
.island-search-head span{color:var(--accent);font-size:9px;font-weight:800;letter-spacing:.18em}
.island-search-head h2{margin:7px 0 0;font-family:"Nanum Myeongjo",serif;font-size:29px;letter-spacing:-.04em}
.island-search-head>button{width:36px;height:36px;color:#64716b;border:1px solid var(--line);border-radius:50%;background:#fff;cursor:pointer;font-size:24px;line-height:1}
.island-search-input{height:52px;display:flex;align-items:center;gap:10px;margin-top:22px;padding:0 17px;border:1px solid rgba(var(--accent-rgb),.34);border-radius:14px;background:#fff;box-shadow:0 8px 22px rgba(var(--accent-rgb),.08)}
.island-search-input:focus-within{border-color:var(--accent);box-shadow:0 0 0 4px rgba(var(--accent-rgb),.1)}
.island-search-input svg{width:20px;fill:none;stroke:var(--accent);stroke-width:1.8}
.island-search-input input{width:100%;border:0;outline:0;background:transparent;font-size:15px}
.island-search-guide{margin:11px 2px 16px;color:#78817c;font-size:10px}
.island-search-results{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;max-height:360px;padding-right:4px;overflow-y:auto;scrollbar-width:thin}
.island-search-results>button{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;color:var(--ink);border:1px solid var(--line);border-radius:11px;background:#fff;cursor:pointer;text-align:left;transition:.18s ease}
.island-search-results>button:hover{transform:translateY(-1px);border-color:rgba(var(--accent-rgb),.45);background:rgba(var(--accent-rgb),.05)}
.island-search-results strong,.island-search-results small{display:block}.island-search-results strong{font-size:13px}.island-search-results small{margin-top:3px;color:#8b948f;font-size:9px}.island-search-results i{color:var(--accent);font-size:9px;font-style:normal;font-weight:700}
.search-empty{grid-column:1/-1;padding:45px;text-align:center}.search-empty strong,.search-empty span{display:block}.search-empty span{margin-top:7px;color:var(--muted);font-size:11px}

.main-nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--white);
}

.saved-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform .25s var(--ease-out), background .25s ease;
}

.saved-button:hover { transform: translateY(-2px); background: rgba(255,255,255,.17); }

.saved-button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.saved-button span {
  font-size: 12px;
  font-weight: 600;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(430px, 0.94fr) minmax(590px, 1.06fr);
  gap: clamp(52px, 6vw, 112px);
  align-items: center;
  padding: 48px 0 38px;
}

.hero-copy {
  color: var(--white);
  padding-left: clamp(4px, 2vw, 30px);
}

.hero-number {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.43);
  animation: reveal-up .9s .12s var(--ease-out) both;
}

.hero-number span {
  color: rgba(255,255,255,.9);
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .08em;
}

.hero-number i { width: 38px; height: 1px; background: rgba(255,255,255,.3); }
.hero-number small { font-size: 7px; font-weight: 700; letter-spacing: .24em; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  animation: reveal-up .9s .18s var(--ease-out) both;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-family: "Nanum Myeongjo", "Gowun Batang", serif;
  max-width: 650px;
  font-size: clamp(50px, 4.45vw, 74px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.24);
  animation: reveal-up 1s .24s var(--ease-out) both;
}

.hero h1 em {
  font-style: normal;
  color: #dff6f1;
  text-shadow: 0 0 30px rgba(169, 233, 222, .12);
}

.hero-description {
  max-width: 520px;
  margin: 25px 0 27px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.85;
  animation: reveal-up .9s .34s var(--ease-out) both;
}

.hero-actions { animation: reveal-up .9s .42s var(--ease-out) both; }

.hero-search {
  width: min(390px, 100%);
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 10px 16px 10px 10px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 18px;
  background: rgba(6, 31, 38, .28);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 16px 44px rgba(2,18,24,.16);
  backdrop-filter: blur(18px);
  cursor: pointer;
  text-align: left;
  transition: transform .3s var(--ease-out), background .3s ease, border-color .3s ease;
}

.hero-search:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.43);
  background: rgba(10, 48, 56, .42);
}

.hero-search-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255,255,255,.14);
}

.hero-search-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.65; }
.hero-search small, .hero-search strong { display: block; }
.hero-search small { margin-bottom: 3px; color: rgba(255,255,255,.52); font-size: 9px; letter-spacing: .04em; }
.hero-search strong { font-size: 13px; font-weight: 650; }
.hero-search > i { font-family: Georgia, serif; font-size: 19px; font-style: normal; opacity: .72; }

.quick-islands {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.quick-islands > span { margin-right: 3px; color: rgba(255,255,255,.42); font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.quick-islands button {
  padding: 6px 10px;
  color: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(3,25,33,.16);
  cursor: pointer;
  font-size: 10px;
  transition: .22s ease;
}
.quick-islands button:hover { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); }

.season-switcher {
  width: max-content;
  display: flex;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 20, 13, 0.22);
  backdrop-filter: blur(12px);
}

.season-switcher button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 64px;
  justify-content: center;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.62);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.season-switcher button:hover {
  color: var(--white);
}

.season-switcher button.active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.14);
}

.season-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

[data-season-button="spring"] .season-dot { color: #e58b9b; }
[data-season-button="summer"] .season-dot { color: #39a66b; }
[data-season-button="autumn"] .season-dot { color: #df862f; }
[data-season-button="winter"] .season-dot { color: #7aa0bd; }
[data-season-button="islands"] .season-dot { color: #2b91a5; }

.season-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 54px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  animation: reveal-up .9s .55s var(--ease-out) both;
}

.scroll-line {
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transform-origin: left;
  animation: line-breathe 2.6s ease-in-out infinite;
}

@keyframes reveal-down { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes line-breathe { 0%,100% { transform: scaleX(.45); opacity: .4; } 50% { transform: scaleX(1); opacity: 1; } }

.region-panel {
  position: relative;
  overflow: hidden;
  padding: 32px 34px 27px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: 0 36px 100px rgba(2, 19, 24, 0.34), inset 0 1px rgba(255,255,255,.72);
  backdrop-filter: blur(30px) saturate(1.12);
  animation: panel-reveal 1.05s .24s var(--ease-out) both;
}

.region-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 3%, rgba(var(--accent-rgb),.25), var(--accent) 50%, rgba(var(--accent-rgb),.25), transparent 97%);
  opacity: 0.78;
}

.region-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -110px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.13), transparent 68%);
  pointer-events: none;
}

@keyframes panel-reveal { from { opacity: 0; transform: translate3d(34px, 18px, 0) scale(.985); } to { opacity: 1; transform: none; } }

.panel-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.panel-progress span { display: flex; align-items: center; gap: 7px; color: #8c9992; font-size: 11px; }
.panel-progress span.active { color: var(--accent); }
.panel-progress span b { width: 23px; height: 23px; display: grid; place-items: center; color: #87958e; border: 1px solid rgba(36,58,48,.14); border-radius: 50%; background: rgba(255,255,255,.52); font-size: 10px; }
.panel-progress span.active b { color: #fff; border-color: var(--accent); background: var(--accent); box-shadow: 0 5px 13px rgba(var(--accent-rgb),.2); }
.panel-progress small { font-family: Pretendard, sans-serif; font-size: 10px; font-weight: 750; letter-spacing: .02em; }
.panel-progress i { width: 40px; height: 1px; background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb),.18)); }

.panel-heading,
.district-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.step-label {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.panel-heading h2 {
  margin: 7px 0 9px;
  font-family: "Nanum Myeongjo", serif;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.map-pin {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--accent);
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb),.12);
  background: rgba(var(--accent-rgb), 0.08);
  box-shadow: 0 8px 18px rgba(var(--accent-rgb),.07);
}

.map-pin svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin-top: 24px;
}

.region-button,
.district-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.region-button:hover,
.district-button:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.45);
}

.region-button {
  min-height: 45px;
  padding: 7px 4px 6px;
  border-radius: 11px;
  color: #4d5952;
}

.region-button strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.region-button small {
  display: block;
  margin-top: 2px;
  color: #9aa19d;
  font-size: 7px;
  letter-spacing: 0.02em;
}

.region-button.active {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(var(--accent-rgb), 0.23);
}

.region-button.active small {
  color: rgba(255, 255, 255, 0.68);
}

.region-button.theme:not(.active) {
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.3);
  background: rgba(var(--accent-rgb), 0.07);
}

.region-button.theme:not(.active) small {
  color: rgba(var(--accent-rgb), 0.72);
}

.district-area {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  column-gap: 22px;
  margin-top: 23px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.district-heading {
  grid-column: 1 / -1;
  align-items: end;
}

.district-heading h3 {
  margin: 5px 0 0;
  color: #606a64;
  font-size: 15px;
  font-weight: 500;
}

.district-heading h3 strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.district-grid {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 352px;
  margin-top: 15px;
  padding: 1px 4px 4px 1px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--accent-rgb), 0.42) transparent;
}

.district-button {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 10px 12px;
  color: #5b655f;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.district-button small{color:#87948d;font-size:10px;font-weight:700}.district-button i{width:23px;height:23px;display:grid;place-items:center;color:#8f9b95;border-radius:50%;background:rgba(36,58,48,.055);font-size:17px;font-style:normal}.district-button.active small,.district-button.active i{color:var(--accent)}

.district-button.active {
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.5);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb),.055));
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.04), 0 6px 16px rgba(var(--accent-rgb),.06);
}

.island-area {
  grid-column: 2;
  grid-row: 2 / span 2;
  min-width: 0;
  min-height: 222px;
  margin-top: 15px;
  padding: 20px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.05), rgba(255,255,255,.38));
}

.island-empty{grid-column:2;grid-row:2 / span 2;min-height:210px;display:grid;place-content:center;margin-top:13px;color:#8b9791;border:1px dashed rgba(var(--accent-rgb),.24);border-radius:16px;text-align:center;background:linear-gradient(145deg,rgba(var(--accent-rgb),.025),rgba(255,255,255,.28))}
.island-empty[hidden]{display:none}.island-empty>span{color:var(--accent);font-size:30px}.island-empty strong{margin-top:7px;color:#69746e;font-size:13px}.island-empty p{margin:7px 0 0;font-size:10px;line-height:1.6}

.island-area[hidden] {
  display: none;
}

.island-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
}

.island-heading h3 {
  margin: 5px 0 0;
  color: #606a64;
  font-size: 15px;
  font-weight: 500;
}

.island-heading h3 strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.island-count {
  padding: 5px 9px;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb),.18);
  border-radius: 999px;
  background: rgba(var(--accent-rgb),.07);
  font-size: 10px;
  font-weight: 800;
}

.island-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 7px 9px;
  max-height: 282px;
  margin-top: 14px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.island-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width:100%;
  min-height: 40px;
  padding: 9px 11px;
  color: #46534c;
  border: 1px solid rgba(36,58,48,.09);
  border-radius: 11px;
  background: rgba(255,255,255,.48);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: 0.18s ease;
}

.island-button .island-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: #6ecbf3;
  box-shadow: 0 0 0 2px rgba(110,203,243,.2), 0 3px 8px rgba(61,168,215,.25);
}

.island-button b{font-size:14px;line-height:1.25}

.island-button:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(255,255,255,.78);
}

.island-button.active {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 6px 14px rgba(var(--accent-rgb), 0.2);
}

.island-button.active .island-dot {
  border-color: rgba(255,255,255,.55);
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(255,255,255,.18);
}

.no-results {
  margin: 20px 0 8px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.explore-button {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--white);
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f7a89, #126877);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), 0.26), inset 0 1px rgba(255,255,255,.13);
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.explore-button:not(:disabled):hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.explore-button:disabled {
  opacity: 1;
  color: #98a5a0;
  border: 1px solid rgba(36,58,48,.08);
  background: rgba(28,52,42,.07);
  cursor: not-allowed;
  box-shadow: none;
}

.panel-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 0;
  color: #8a9590;
  font-size: 8px;
  letter-spacing: .01em;
}
.panel-note span { color: var(--accent); }

.explore-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero-footer {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 9px;
  letter-spacing: 0.1em;
  animation: reveal-up .9s .65s var(--ease-out) both;
}

.toast {
  position: fixed;
  z-index: 10;
  left: 50%;
  bottom: 28px;
  max-width: calc(100% - 32px);
  padding: 13px 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(18, 31, 24, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: 0.28s ease;
  font-size: 13px;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 2026 homepage visual renewal */
body {
  overflow-y: auto;
}

.scene {
  background-position: 50% center;
  filter: saturate(1.08) contrast(1.03);
}

.scene-shade {
  background:
    linear-gradient(90deg, rgba(2, 20, 29, 0.84) 0%, rgba(3, 28, 37, 0.62) 36%, rgba(4, 24, 32, 0.2) 68%, rgba(2, 15, 21, 0.28) 100%),
    linear-gradient(180deg, rgba(4, 19, 26, 0.42) 0%, transparent 30%, rgba(2, 17, 23, 0.58) 100%),
    var(--season-wash, rgba(24, 116, 139, 0.08));
}

.scene-glow {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 218, 163, 0.24), transparent 25%),
    radial-gradient(circle at 27% 70%, rgba(48, 169, 181, 0.13), transparent 38%);
}

.page-shell {
  width: min(1520px, calc(100% - 64px));
}

.site-header {
  height: 84px;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.09), 0 10px 30px rgba(0, 0, 0, 0.16);
}

.brand strong {
  font-size: 25px;
}

.hero {
  grid-template-columns: minmax(440px, 0.9fr) minmax(650px, 1.1fr);
  gap: clamp(48px, 5vw, 88px);
  padding: 30px 0 34px;
}

.hero-copy {
  max-width: 650px;
  padding-left: clamp(4px, 1.6vw, 24px);
}

.eyebrow {
  margin-bottom: 17px;
  color: rgba(229, 249, 246, 0.9);
  font-size: 13px;
}

.eyebrow-line {
  width: 36px;
}

.hero h1 {
  max-width: 630px;
  font-size: clamp(52px, 4.1vw, 70px);
  line-height: 1.16;
  letter-spacing: -0.058em;
  text-shadow: 0 5px 38px rgba(0, 0, 0, 0.32);
}

.hero h1 em {
  color: #daf6f1;
}

.hero-description {
  max-width: 540px;
  margin: 24px 0 25px;
  color: rgba(245, 252, 251, 0.79);
  font-size: 15.5px;
  line-height: 1.82;
}

.hero-search {
  width: min(430px, 100%);
  min-height: 68px;
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, rgba(5, 43, 52, 0.62), rgba(8, 58, 67, 0.42));
  box-shadow: inset 0 1px rgba(255,255,255,.12), 0 18px 48px rgba(1, 16, 22, .24);
}

.hero-search-icon {
  color: #eafffb;
  background: linear-gradient(145deg, rgba(62, 178, 190, 0.62), rgba(24, 116, 133, 0.76));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
}

.hero-search small {
  color: rgba(239, 252, 250, 0.62);
  font-size: 10px;
}

.hero-search strong {
  font-size: 14px;
}

.quick-islands {
  margin-top: 14px;
  gap: 7px;
}

.quick-islands > span {
  color: rgba(255,255,255,.56);
  font-size: 10px;
}

.quick-islands button {
  padding: 7px 12px;
  color: rgba(255,255,255,.84);
  border-color: rgba(255,255,255,.22);
  background: rgba(2, 26, 34, .24);
  font-size: 11px;
}

.region-panel {
  width: 100%;
  max-width: 720px;
  justify-self: end;
  padding: 25px 28px 21px;
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 27px;
  background:
    linear-gradient(150deg, rgba(252, 254, 253, 0.975), rgba(238, 247, 246, 0.95));
  box-shadow:
    0 30px 90px rgba(1, 17, 23, 0.36),
    0 0 0 1px rgba(255,255,255,.24),
    inset 0 1px rgba(255,255,255,.88);
  backdrop-filter: blur(34px) saturate(1.16);
}

.region-panel::before {
  height: 2px;
  background: linear-gradient(90deg, transparent 4%, rgba(79, 188, 198, .52), #148394 52%, rgba(79, 188, 198, .34), transparent 96%);
}

.region-panel::after {
  width: 260px;
  height: 260px;
  right: -120px;
  top: -150px;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.14), transparent 68%);
}

.panel-progress {
  gap: 10px;
  margin-bottom: 15px;
}

.panel-progress span {
  font-size: 11px;
}

.panel-progress span b {
  width: 25px;
  height: 25px;
}

.panel-progress i {
  width: 34px;
}

.panel-heading h2 {
  margin: 5px 0 7px;
  font-size: 33px;
  line-height: 1.18;
}

.panel-heading p {
  font-size: 12.5px;
  line-height: 1.55;
}

.step-label {
  font-size: 10.5px;
  letter-spacing: .14em;
}

.district-area {
  grid-template-columns: 202px minmax(0, 1fr);
  column-gap: 18px;
  margin-top: 17px;
  padding-top: 16px;
}

.district-heading h3 {
  margin-top: 4px;
  font-size: 14px;
}

.district-heading h3 strong {
  font-size: 19px;
}

.district-grid {
  height: 334px;
  max-height: 334px;
  gap: 6px;
  margin-top: 12px;
  padding: 1px 5px 1px 1px;
}

.district-button {
  flex: 1 0 0;
  min-height: 38px;
  padding: 8px 10px;
  gap: 7px;
  border-color: rgba(32, 60, 51, .1);
  border-radius: 11px;
  background: rgba(255,255,255,.68);
  font-size: 13.5px;
}

.district-button small {
  font-size: 9.5px;
}

.district-button i {
  width: 21px;
  height: 21px;
  font-size: 15px;
}

.district-button.active {
  color: #fff;
  border-color: #157f90;
  background: linear-gradient(135deg, #168596, #126e7d);
  box-shadow: 0 8px 18px rgba(var(--accent-rgb), .2), inset 0 1px rgba(255,255,255,.16);
}

.district-button.active small,
.district-button.active i {
  color: rgba(255,255,255,.88);
}

.district-button.active i {
  background: rgba(255,255,255,.14);
}

.island-area {
  min-height: 334px;
  margin-top: 12px;
  padding: 17px;
  border-color: rgba(var(--accent-rgb), .2);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), .075), rgba(255,255,255,.56));
  box-shadow: inset 0 1px rgba(255,255,255,.72);
}

.island-heading h3 {
  margin-top: 4px;
  font-size: 14px;
}

.island-heading h3 strong {
  font-size: 18px;
}

.island-count {
  padding: 5px 9px;
  background: rgba(255,255,255,.54);
}

.island-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  max-height: 252px;
  margin-top: 12px;
  padding-right: 3px;
}

.island-button {
  min-height: 37px;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 10px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 3px 10px rgba(20, 55, 48, .025);
}

.island-button .island-dot {
  width: 8px;
  height: 8px;
}

.island-button b {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.island-button.active {
  background: linear-gradient(135deg, #168596, #126e7d);
}

.district-grid::-webkit-scrollbar,
.island-grid::-webkit-scrollbar {
  width: 5px;
}

.district-grid::-webkit-scrollbar-thumb,
.island-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(var(--accent-rgb), .35);
}

.explore-button {
  min-height: 49px;
  margin-top: 14px;
  border-radius: 13px;
  background: linear-gradient(135deg, #128395, #0d6675);
  font-size: 14px;
  box-shadow: 0 12px 26px rgba(var(--accent-rgb), .22), inset 0 1px rgba(255,255,255,.16);
}

.explore-button:disabled {
  color: #7d8c86;
  border-color: rgba(33, 60, 51, .1);
  background: rgba(35, 68, 59, .08);
}

.panel-note {
  margin-top: 8px;
  color: #778681;
  font-size: 9px;
}

.hero-footer {
  min-height: 48px;
}

@media (max-width: 1180px) {
  .page-shell {
    width: min(1100px, calc(100% - 40px));
  }

  .hero {
    grid-template-columns: minmax(370px,.82fr) minmax(540px,1.18fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(42px, 5vw, 60px);
  }

  .region-panel {
    padding: 28px 26px 24px;
  }

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

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

@media (max-width: 900px) {
  body {
    overflow-y: auto;
  }

  .page-shell {
    width: min(720px, calc(100% - 32px));
  }

  .site-header {
    height: 84px;
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0 38px;
  }

  .hero-copy {
    max-width: 610px;
    padding-left: 0;
  }

  .hero-number { margin-bottom: 26px; }

  .hero-search { width: min(440px,100%); }

  .hero h1 {
    font-size: clamp(44px, 8vw, 66px);
  }

  .season-caption {
    display: none;
  }

  .region-panel {
    margin-bottom: 20px;
  }

  .hero-footer {
    padding: 16px 0;
  }
}

@media (max-width: 580px) {
  .page-shell {
    width: min(100% - 24px, 520px);
  }

  .site-header {
    height: 74px;
  }

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

  .brand strong {
    font-size: 19px;
  }

  .saved-button span {
    display: none;
  }

  .saved-button {
    padding: 10px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-number { margin-bottom: 22px; }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-search { min-height: 62px; border-radius: 16px; }
  .hero-search-icon { width: 41px; height: 41px; }
  .quick-islands { margin-top: 11px; }

  .desktop-only {
    display: none;
  }

  .season-switcher {
    width: 100%;
  }

  .season-switcher button {
    flex: 1;
    min-width: 0;
    padding-inline: 7px;
  }

  .region-panel {
    padding: 28px 20px 22px;
    border-radius: 22px;
  }

  .panel-progress { margin-bottom: 16px; }

  .panel-heading h2 {
    font-size: 27px;
  }

  .region-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .region-button strong {
    font-size: 11px;
  }

  .district-heading {
    align-items: flex-start;
  }

  .district-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-height: 180px;
  }

  .hero-footer {
    display: none;
  }
}

@media (max-width: 380px) {
  .district-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .island-search-overlay{padding:76px 14px 20px}
  .island-search-dialog{max-height:calc(100vh - 96px);padding:22px 18px;border-radius:20px}
  .island-search-results{grid-template-columns:1fr;max-height:390px}
  .district-area{display:block}
  .district-grid{height:auto;flex-direction:row;max-height:none;padding-bottom:8px;overflow-x:auto;overflow-y:hidden}
  .district-button{min-width:158px;font-size:13px}
  .island-empty,.island-area{min-height:210px;margin-top:14px}
  .island-grid{grid-template-columns:repeat(2,minmax(0,1fr));max-height:230px}
  .island-button{min-height:44px;padding:11px 12px}
  .island-button b{font-size:13.5px}
  .panel-note{font-size:7.5px}
}

@media (max-width: 420px) {
  .island-grid{grid-template-columns:1fr}
}

@media (min-width: 901px) and (max-height: 820px) {
  .site-header { height: 72px; }
  .hero { padding: 14px 0 22px; }
  .hero-copy { transform: translateY(-8px); }
  .region-panel { padding: 19px 24px 16px; }
  .panel-progress { margin-bottom: 10px; }
  .panel-progress span b { width: 22px; height: 22px; }
  .panel-progress i { width: 30px; }
  .panel-heading h2 { margin: 4px 0 5px; font-size: 30px; }
  .panel-heading p { font-size: 11.5px; }
  .step-label { font-size: 10px; }
  .district-area { margin-top: 12px; padding-top: 11px; }
  .district-heading h3 { margin-top: 2px; }
  .district-heading h3 strong { font-size: 18px; }
  .district-grid { height: 270px; max-height: 270px; gap: 5px; margin-top: 10px; }
  .district-button { min-height: 32px; padding: 6px 9px; font-size: 13px; }
  .island-area { min-height: 270px; margin-top: 10px; padding: 14px; }
  .island-grid { gap: 5px; max-height: 200px; margin-top: 9px; }
  .island-button { min-height: 31px; padding: 6px 8px; }
  .island-button .island-dot { width: 7px; height: 7px; }
  .island-button b { font-size: 12.5px; }
  .explore-button { min-height: 46px; margin-top: 10px; }
  .panel-note { margin-top: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .scene { transform: scale(1.045); }
}
