:root {
  --bg: #edf2ef;
  --bg-soft: #f7f4ee;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-brand: linear-gradient(135deg, #0b4d3c, #133a3b 62%, #9d7a43 140%);
  --ink: #10202b;
  --ink-soft: #30404d;
  --muted: #5f6c75;
  --line: rgba(18, 52, 47, 0.12);
  --line-strong: rgba(18, 52, 47, 0.2);
  --brand: #0f6a51;
  --brand-strong: #0d4d3d;
  --accent: #b88a49;
  --accent-soft: rgba(184, 138, 73, 0.12);
  --danger: #b7504f;
  --success: #2d7053;
  --shadow-lg: 0 28px 80px rgba(16, 32, 43, 0.11);
  --shadow-md: 0 14px 34px rgba(16, 32, 43, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1160px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 106, 81, 0.12), transparent 32%),
    radial-gradient(circle at right 20%, rgba(184, 138, 73, 0.1), transparent 24%),
    linear-gradient(180deg, #eef4f0 0%, #edf2ef 48%, #f6f3ed 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(15, 106, 81, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 106, 81, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 95%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(246, 248, 245, 0.84);
  border-bottom: 1px solid rgba(16, 32, 43, 0.06);
}

.header-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand toggle"
    "nav actions";
  align-items: center;
  column-gap: 20px;
  row-gap: 16px;
  padding: 16px 0 18px;
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-mark {
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  display: block;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.brand-note {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

.site-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.96rem;
  color: var(--ink-soft);
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: rgba(16, 32, 43, 0.05);
}

.header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.header-actions .button {
  white-space: nowrap;
}

.nav-toggle {
  grid-area: toggle;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 18px 34px rgba(15, 106, 81, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  border-color: var(--line);
}

.button.ghost {
  padding-inline: 0;
  border: 0;
  color: var(--brand);
  background: transparent;
}

.button.small {
  padding: 10px 14px;
  font-size: 0.93rem;
}

main {
  position: relative;
  z-index: 1;
}

.section {
  padding: 56px 0;
}

.section-compact {
  padding: 36px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--brand);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(15, 106, 81, 0.32);
}

.section-title,
.page-title,
.hero-title {
  margin: 10px 0 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.anchor-target {
  scroll-margin-top: 132px;
}

.hero-title {
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  max-width: 11ch;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.lead-text,
.section-text,
.page-text {
  color: var(--muted);
  line-height: 1.75;
}

.lead-text {
  font-size: 1.08rem;
  max-width: 68ch;
}

.page-shell {
  padding: 30px 0 12px;
}

.brief-screen .page-hero {
  min-height: calc(100vh - 220px);
  align-items: stretch;
}

.brief-panel {
  height: 100%;
}

.presentation-toolbar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: min(320px, calc(100vw - 24px));
  max-height: calc(100vh - 36px);
}

.presentation-toolbar__shell {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(16, 32, 43, 0.94);
  color: #f7f7f4;
  border: 1px solid rgba(184, 138, 73, 0.18);
  box-shadow: 0 22px 46px rgba(16, 32, 43, 0.22);
  backdrop-filter: blur(18px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.presentation-toolbar__full {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.presentation-toolbar__compact {
  display: none;
  grid-template-columns: auto auto auto minmax(78px, auto) auto;
  gap: 6px;
  align-items: center;
}

.presentation-toolbar__compact-readout {
  display: grid;
  justify-items: center;
  gap: 2px;
  min-width: 78px;
  font-size: 0.75rem;
  color: rgba(247, 247, 244, 0.82);
}

.presentation-toolbar__compact-readout strong {
  font-size: 0.8rem;
  color: #f7f7f4;
}

.presentation-toolbar.is-collapsed {
  width: auto;
}

.presentation-toolbar.is-collapsed .presentation-toolbar__shell {
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(16, 32, 43, 0.44);
  border-color: rgba(184, 138, 73, 0.16);
  box-shadow: 0 16px 34px rgba(16, 32, 43, 0.18);
  backdrop-filter: blur(14px);
  max-height: none;
  overflow: visible;
}

.presentation-toolbar.is-collapsed .presentation-toolbar__full {
  display: none;
}

.presentation-toolbar.is-collapsed .presentation-toolbar__compact {
  display: grid;
}

.presentation-toolbar__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.presentation-toolbar__meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  flex-shrink: 0;
}

.presentation-toolbar__head strong {
  display: block;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.94rem;
}

.presentation-toolbar__head p {
  margin: 4px 0 0;
  color: rgba(247, 247, 244, 0.72);
  font-size: 0.8rem;
  line-height: 1.4;
}

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

.presentation-toolbar__scenarios {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.presentation-toolbar__pace {
  display: grid;
  gap: 8px;
}

.presentation-toolbar__pace-buttons,
.presentation-toolbar__route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.presentation-toolbar__timer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.presentation-toolbar__steps {
  display: grid;
  gap: 6px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.presentation-toolbar__notes {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.presentation-toolbar__notes-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.presentation-toolbar__notes-text {
  margin: 0;
  color: rgba(247, 247, 244, 0.78);
  font-size: 0.84rem;
  line-height: 1.45;
}

.presentation-toolbar__notes-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 16px;
  color: rgba(247, 247, 244, 0.88);
  font-size: 0.82rem;
}

.presentation-toolbar__route {
  display: grid;
  gap: 8px;
}

.presentation-scenario-shell {
  padding: clamp(20px, 3vw, 28px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 246, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.presentation-scenario-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.presentation-audience-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 43, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 700;
  transition: 180ms ease;
}

.presentation-audience-button:hover,
.presentation-audience-button.active {
  border-color: rgba(184, 138, 73, 0.36);
  background: rgba(184, 138, 73, 0.12);
  color: var(--ink-strong);
}

.presentation-audience-button.compact {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.88rem;
}

.presentation-toolbar .presentation-audience-button {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #f7f7f4;
}

.presentation-toolbar .presentation-audience-button.compact {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.8rem;
}

.presentation-toolbar .presentation-audience-button:hover,
.presentation-toolbar .presentation-audience-button.active {
  border-color: rgba(184, 138, 73, 0.42);
  background: rgba(184, 138, 73, 0.18);
  color: #f7ecd6;
}

.presentation-toolbar .button.small {
  gap: 6px;
  padding: 8px 11px;
  font-size: 0.8rem;
}

.presentation-toolbar .meta-pill {
  padding: 5px 8px;
  font-size: 0.72rem;
}

.presentation-scenario-panel[hidden] {
  display: none !important;
}

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

.presentation-scenario-column strong,
.presentation-scenario-route strong {
  display: block;
  margin-bottom: 12px;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink-strong);
}

.presentation-scenario-route {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.presentation-step-button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  text-align: left;
  font-size: 0.84rem;
  line-height: 1.35;
  transition: 160ms ease;
}

.presentation-step-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 247, 244, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.presentation-step-button:hover,
.presentation-step-button.active {
  border-color: rgba(184, 138, 73, 0.42);
  background: rgba(255, 255, 255, 0.11);
}

.presentation-step-button.is-recommended {
  border-color: rgba(184, 138, 73, 0.28);
}

.presentation-step-button.is-muted {
  opacity: 0.44;
}

.presentation-step-button.active span {
  background: rgba(184, 138, 73, 0.18);
  color: #f7ecd6;
}

.presentation-tool-active .site-header,
.presentation-tool-active .site-footer {
  display: none;
}

.presentation-tool-active {
  padding-bottom: 210px;
}

.presentation-tool-active [data-presentation-step].is-current-step .section-copy,
.presentation-tool-active [data-presentation-step].is-current-step > .container > .card,
.presentation-tool-active [data-presentation-step].is-current-step .presentation-scenario-shell,
.presentation-tool-active [data-presentation-step].is-current-step [data-followup-card] {
  box-shadow: 0 0 0 2px rgba(184, 138, 73, 0.22);
  border-radius: 22px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.page-summary,
.card,
.cta-panel,
.detail-main,
.detail-side,
.notice,
.admin-panel,
.news-card,
.timeline-item,
.metric-card,
.gallery-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 252, 250, 0.9));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 138, 73, 0.12), transparent 70%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-chip,
.chip,
.tag,
.status,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-chip,
.chip {
  padding: 9px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(15, 106, 81, 0.08);
  color: var(--brand-strong);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-weight: 700;
  transition: 160ms ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: var(--brand-strong);
  background: rgba(15, 106, 81, 0.1);
  border-color: rgba(15, 106, 81, 0.18);
}

.status-cluster {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.priority-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.priority-pill.high {
  color: #8a3736;
  background: rgba(183, 80, 79, 0.12);
}

.priority-pill.medium {
  color: #8a6225;
  background: rgba(184, 138, 73, 0.16);
}

.priority-pill.low {
  color: var(--brand-strong);
  background: rgba(15, 106, 81, 0.1);
}

.tag {
  padding: 7px 11px;
  font-size: 0.86rem;
  background: rgba(16, 32, 43, 0.06);
  color: var(--ink-soft);
}

.status {
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status.active,
.status.in-progress,
.status.live {
  color: var(--success);
  background: rgba(45, 112, 83, 0.1);
}

.status.planned,
.status.pending {
  color: #93652b;
  background: rgba(184, 138, 73, 0.14);
}

.status.completed {
  color: #2b5c70;
  background: rgba(49, 115, 139, 0.1);
}

.status.draft {
  color: #8e5468;
  background: rgba(168, 85, 126, 0.11);
}

.badge {
  padding: 6px 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  background: rgba(16, 32, 43, 0.08);
  color: var(--ink-soft);
}

.badge.sample {
  color: #7e5623;
  background: rgba(184, 138, 73, 0.14);
}

.page-summary {
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-summary.photo {
  min-height: 100%;
}

.page-summary.photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.page-summary.overlay-card {
  position: relative;
  overflow: hidden;
}

.page-summary.overlay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
}

.overlay-panel {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
}

.overlay-panel strong {
  display: block;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
}

.metric-grid,
.grid-2,
.grid-3,
.grid-4,
.pillars-grid,
.gallery-grid,
.directory-grid,
.reports-grid {
  display: grid;
  gap: 18px;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

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

.grid-3,
.pillars-grid,
.gallery-grid,
.directory-grid,
.reports-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.metric-card,
.card,
.gallery-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.metric-card {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  padding-right: 30px;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 106, 81, 0.08), transparent 48%, rgba(184, 138, 73, 0.08));
}

.metric-card > * {
  position: relative;
}

.metric-value {
  display: block;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.ops-attention-card {
  gap: 14px;
}

.ops-focus-card {
  background:
    linear-gradient(180deg, rgba(183, 80, 79, 0.06), rgba(255, 255, 255, 0.92)),
    var(--surface);
  border-color: rgba(183, 80, 79, 0.14);
}

.ops-case-card {
  position: relative;
  overflow: hidden;
}

.ops-case-card.priority-high {
  box-shadow: inset 4px 0 0 rgba(183, 80, 79, 0.88);
}

.ops-case-card.priority-medium {
  box-shadow: inset 4px 0 0 rgba(184, 138, 73, 0.9);
}

.ops-case-card.priority-low {
  box-shadow: inset 4px 0 0 rgba(15, 106, 81, 0.82);
}

.ops-mini-list {
  display: grid;
  gap: 10px;
}

.ops-mini-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.ops-mini-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(16, 32, 43, 0.04);
  border: 1px solid rgba(16, 32, 43, 0.06);
}

.ops-mini-item strong {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.ops-mini-item span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.ops-mini-note {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.ops-case-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-title {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1.22rem;
}

.card-subtitle {
  color: var(--muted);
  font-size: 0.94rem;
}

.card-text {
  color: var(--muted);
  line-height: 1.72;
}

.membership-price-card {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15, 106, 81, 0.05), rgba(255, 255, 255, 0.92)),
    var(--surface);
  border: 1px solid rgba(15, 106, 81, 0.12);
}

.brief-price-card {
  margin-bottom: 0;
  padding: 18px;
}

.price-caption {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-old,
.price-new {
  display: grid;
  gap: 8px;
}

.price-old strong {
  color: rgba(16, 32, 43, 0.48);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(183, 80, 79, 0.7);
}

.price-new {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 106, 81, 0.14);
}

.price-new strong {
  color: var(--brand-strong);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.04;
}

.brief-price-card .price-old strong {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.brief-price-card .price-new strong {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.offer-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a5a27;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-list,
.detail-list,
.inline-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.card-list li,
.detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.card-list li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.brand-band {
  border-radius: var(--radius-xl);
  padding: clamp(26px, 3vw, 40px);
  color: #f4f8f5;
  background: var(--surface-brand);
  box-shadow: 0 28px 64px rgba(9, 55, 44, 0.26);
}

.brand-band .section-title,
.brand-band .section-text {
  color: inherit;
}

.brand-band .section-text {
  opacity: 0.9;
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 24px;
  align-items: start;
}

.band-side {
  display: grid;
  gap: 14px;
}

.band-side .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.band-side .card-text,
.band-side .card-subtitle,
.band-side .card-list li {
  color: rgba(244, 248, 245, 0.88);
}

.band-side .tag {
  color: rgba(244, 248, 245, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-card img,
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 20px;
}

.gallery-card strong {
  display: block;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}

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

.directory-card,
.resident-card,
.company-card {
  position: relative;
}

.identity-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.avatar,
.logo-tile {
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, #134b43, #0f7c67 68%, #bb9453);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.logo-tile {
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, rgba(15, 106, 81, 0.18), rgba(184, 138, 73, 0.18));
  color: var(--brand-strong);
  border: 1px solid rgba(15, 106, 81, 0.18);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.meta-stack {
  display: grid;
  gap: 6px;
}

.meta-stack h3 {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1.16rem;
}

.meta-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(16, 32, 43, 0.05);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.news-copy {
  padding: 22px 24px;
  display: grid;
  gap: 14px;
}

.news-date {
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-title {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1.26rem;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  border-radius: var(--radius-lg);
  padding: 22px;
}

.timeline-phase {
  display: grid;
  gap: 10px;
  align-content: start;
}

.timeline-phase strong {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1.12rem;
}

.timeline-phase span {
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline-body {
  display: grid;
  gap: 12px;
}

.timeline-body h3 {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1.24rem;
}

.timeline-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

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

.report-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(15, 106, 81, 0.06);
}

.report-stat strong {
  display: block;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.report-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.detail-main,
.detail-side {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.detail-block {
  display: grid;
  gap: 16px;
}

.detail-block + .detail-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.detail-heading {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 1.34rem;
}

.detail-grid {
  display: grid;
  gap: 14px;
}

.contact-list a {
  color: var(--brand-strong);
  font-weight: 700;
}

.qr-card {
  display: grid;
  gap: 14px;
}

.qr-box {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #ffffff;
  display: grid;
  place-items: center;
}

.qr-box canvas,
.qr-box img {
  max-width: 100%;
  height: auto;
}

.cta-panel {
  border-radius: var(--radius-xl);
  padding: clamp(26px, 3vw, 40px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at top right, rgba(184, 138, 73, 0.2), transparent 30%);
}

.cta-panel strong {
  display: block;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.cta-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.empty-state {
  padding: 30px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line-strong);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
}

.inline-note {
  color: var(--muted);
  font-size: 0.93rem;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 32, 43, 0.14), transparent);
  margin: 14px 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 52px 0 70px;
}

.footer-shell {
  border-radius: var(--radius-xl);
  padding: 30px;
  background: rgba(16, 32, 43, 0.96);
  color: rgba(244, 248, 245, 0.9);
  box-shadow: 0 34px 80px rgba(16, 32, 43, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 24px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(244, 248, 245, 0.9);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(244, 248, 245, 0.62);
  font-size: 0.88rem;
}

.admin-shell {
  padding: 30px 0 64px;
}

.admin-hero {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 246, 0.88)),
    radial-gradient(circle at right top, rgba(15, 106, 81, 0.1), transparent 34%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.admin-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 22px;
  margin-top: 24px;
  align-items: start;
}

.admin-sidebar,
.admin-content {
  display: grid;
  gap: 18px;
}

.admin-panel {
  border-radius: var(--radius-lg);
  padding: 20px;
}

.admin-panel.sticky {
  position: static;
  top: auto;
}

.admin-nav {
  display: grid;
  gap: 10px;
}

.admin-nav button {
  text-align: left;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: rgba(16, 32, 43, 0.04);
  color: var(--ink);
  font-weight: 700;
}

.admin-nav button.active {
  background: rgba(15, 106, 81, 0.1);
  border-color: rgba(15, 106, 81, 0.16);
  color: var(--brand-strong);
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-status {
  display: grid;
  gap: 10px;
}

.notice {
  padding: 16px 18px;
  border-radius: 18px;
  line-height: 1.65;
}

.notice.info {
  background: rgba(15, 106, 81, 0.08);
  color: var(--brand-strong);
  border: 1px solid rgba(15, 106, 81, 0.12);
}

.notice.warning {
  background: rgba(184, 138, 73, 0.12);
  color: #7d5a28;
  border: 1px solid rgba(184, 138, 73, 0.16);
}

.notice.error {
  background: rgba(183, 80, 79, 0.1);
  color: #944e4d;
  border: 1px solid rgba(183, 80, 79, 0.14);
}

.settings-grid,
.field-grid {
  display: grid;
  gap: 16px;
}

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

.field,
.field-full {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-full label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.field input,
.field textarea,
.field select,
.field-full input,
.field-full textarea,
.field-full select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(16, 32, 43, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.field textarea,
.field-full textarea {
  min-height: 112px;
  resize: vertical;
}

.followup-panel {
  height: 100%;
}

.followup-preview {
  min-height: 280px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(16, 32, 43, 0.04);
  border: 1px solid rgba(16, 32, 43, 0.08);
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.75;
  white-space: pre-wrap;
}

.followup-actions {
  margin-top: 18px;
}

.followup-history {
  display: grid;
  gap: 14px;
}

.followup-history-item {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.followup-history-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

.inline-meta {
  font-size: 0.84rem;
  color: var(--muted);
}

.file-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

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

.collection-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(16, 32, 43, 0.08);
  background: rgba(16, 32, 43, 0.03);
}

.collection-item strong {
  display: block;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  margin-bottom: 6px;
}

.collection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collection-editor {
  display: grid;
  gap: 18px;
}

.muted {
  color: var(--muted);
}

.text-link {
  color: var(--brand);
  font-weight: 700;
}

.hide-desktop {
  display: none;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .page-hero,
  .band-grid,
  .detail-shell,
  .admin-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 920px) {
  .header-bar {
    display: flex;
    flex-wrap: wrap;
    padding-block: 14px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
  }

  .header-actions {
    margin-left: auto;
  }

  .grid-3,
  .pillars-grid,
  .gallery-grid,
  .directory-grid,
  .reports-grid,
  .ops-callout-grid,
  .grid-2,
  .settings-grid,
  .field-grid,
  .news-card {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .presentation-toolbar {
    right: 16px;
    bottom: 16px;
    width: min(312px, calc(100vw - 20px));
    max-height: calc(100vh - 32px);
  }

  .presentation-toolbar__compact {
    grid-template-columns: repeat(5, minmax(0, auto));
  }

  .followup-history-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1160px, calc(100% - 28px));
  }

  .section {
    padding: 42px 0;
  }

  .hero-copy,
  .page-summary,
  .detail-main,
  .detail-side,
  .card,
  .metric-card,
  .cta-panel,
  .admin-panel,
  .timeline-item {
    padding: 20px;
  }

  .metric-grid,
  .grid-4,
  .report-stats {
    grid-template-columns: 1fr;
  }

  .header-actions .button.secondary {
    display: none;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }

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

  .hero-meta {
    gap: 8px;
  }

  .hero-chip,
  .chip {
    max-width: 100%;
    white-space: normal;
    text-align: left;
    line-height: 1.35;
  }

  .page-summary.overlay-card {
    padding: 0;
  }

  .page-summary.overlay-card img {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .overlay-panel {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 16px;
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: none;
  }

  .overlay-panel strong {
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .overlay-panel .section-text,
  .overlay-panel p {
    margin: 0;
    line-height: 1.58;
  }

  .presentation-toolbar {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    max-height: calc(100vh - 24px);
  }

  .presentation-toolbar__actions {
    grid-template-columns: 1fr;
  }

  .presentation-toolbar__scenarios,
  .presentation-scenario-switch {
    display: grid;
    grid-template-columns: 1fr;
  }

  .presentation-toolbar__compact {
    grid-template-columns: 1fr 1fr;
  }

  .presentation-toolbar__compact-readout {
    grid-column: 1 / -1;
    order: -1;
  }

  .presentation-toolbar__notes-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hide-desktop {
    display: block;
  }
}
