
:root {
  --brand-green: #1f8a48;
  --brand-green-deep: #0f4b2f;
  --brand-forest: #10261c;
  --brand-forest-soft: #163527;
  --brand-lime: #d6df2d;
  --brand-lime-soft: #eff69a;
  --brand-bronze: #b98658;
  --brand-brown: #7a5a41;
  --brand-sand: #f7f4ee;
  --brand-mist: #eef4ef;
  --brand-card: rgba(255, 255, 255, 0.74);
  --brand-line: rgba(16, 38, 28, 0.11);
  --brand-text: #183126;
  --brand-muted: #586a5d;
  --brand-shadow: 0 24px 55px rgba(12, 27, 20, 0.10);

  --pico-primary: var(--brand-green);
  --pico-primary-hover: var(--brand-green-deep);
  --pico-primary-focus: rgba(31, 138, 72, 0.18);
  --pico-primary-inverse: #ffffff;
  --pico-form-element-border-color: rgba(16, 38, 28, 0.16);
  --pico-form-element-focus-color: rgba(31, 138, 72, 0.20);
  --pico-border-radius: 1rem;
  --pico-font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pico-block-spacing-vertical: 2rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  color: var(--brand-text);
  background:
    radial-gradient(circle at 0% 0%, rgba(214, 223, 45, 0.14), transparent 30rem),
    radial-gradient(circle at 100% 0%, rgba(31, 138, 72, 0.10), transparent 24rem),
    linear-gradient(180deg, #fcfbf8 0%, var(--brand-sand) 100%);
}

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

.topbar {
  background: linear-gradient(90deg, var(--brand-green-deep), #215433);
  color: #f2f7e9;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.55rem 0;
  font-size: 0.92rem;
}
.topbar strong { color: var(--brand-lime-soft); font-weight: 700; }

nav.container-fluid {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 0.9rem clamp(1rem, 2vw, 2.25rem);
  background: rgba(252, 251, 248, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 38, 28, 0.08);
  box-shadow: 0 10px 28px rgba(12, 27, 20, 0.05);
}
nav ul { align-items: center; gap: 0.5rem 1rem; flex-wrap: wrap; }
.brand-link,
.brand-link:hover {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--brand-text);
  text-decoration: none;
}
.brand-link img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(31, 138, 72, 0.16));
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-size: 1rem; letter-spacing: 0.02em; }
.brand-text small {
  color: var(--brand-muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a:not([role="button"]) {
  color: var(--brand-text);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}
.nav-links a:not([role="button"]):hover,
.nav-links a.is-active {
  background: rgba(31, 138, 72, 0.10);
  color: var(--brand-green-deep);
}
nav a[role="button"],
.cta-row a[role="button"],
button[type="submit"] {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-deep));
  border: none;
  box-shadow: 0 16px 30px rgba(31, 138, 72, 0.22);
}
nav a[role="button"]:hover,
.cta-row a[role="button"]:hover,
button[type="submit"]:hover {
  background: linear-gradient(135deg, var(--brand-green-deep), var(--brand-green));
}
.cta-row .ghost-link,
.button-ghost {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(16, 38, 28, 0.12);
  background: rgba(255,255,255,0.86);
  text-decoration: none;
  color: var(--brand-green-deep);
  font-weight: 700;
}
main.container { padding-top: 1.4rem; padding-bottom: 3rem; }
section { scroll-margin-top: 7rem; }
.hero, .page-hero { padding-top: 0.6rem; }
.hero-grid,
.page-hero-grid,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: 1.75rem;
  align-items: stretch;
}
.hero-grid { align-items: center; }
.page-hero-grid { align-items: center; }
.hero-copy,
.page-copy,
.glass-card,
.section-shell,
.executive-card,
.portfolio-card,
.contact-card,
.map-panel,
.matrix-card,
.timeline-card,
.surface-card {
  border: 1px solid var(--brand-line);
  box-shadow: var(--brand-shadow);
}
.hero-copy,
.page-copy {
  padding: clamp(1.6rem, 2vw, 2rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(214, 223, 45, 0.15), transparent 14rem),
    linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.70) 100%);
}
.hero-visual,
.visual-card {
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(180deg, #153725 0%, #0d2017 100%);
  border: 1px solid rgba(16, 38, 28, 0.12);
  box-shadow: var(--brand-shadow);
}
.hero-visual img,
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual video,
.visual-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: linear-gradient(180deg, #153725 0%, #0d2017 100%);
}
.video-panel {
  display: flex;
  flex-direction: column;
}
.hero-reel {
  aspect-ratio: 16 / 9;
  min-height: 24rem;
}
.video-note {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.15rem 1.2rem;
  background: linear-gradient(180deg, rgba(10, 29, 21, 0.94) 0%, rgba(12, 36, 24, 0.98) 100%);
  color: rgba(255, 255, 255, 0.92);
}
.video-note strong {
  font-size: 1.05rem;
  line-height: 1.25;
}
.video-note span:last-child {
  color: rgba(255,255,255,0.74);
  font-size: 0.96rem;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 1rem;
  max-width: 12.5ch;
  color: var(--brand-forest);
}
.page-hero h1 { max-width: 15ch; }
.lead {
  font-size: 1.09rem;
  line-height: 1.8;
  color: var(--brand-muted);
  max-width: 60ch;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--brand-green-deep);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 1.1rem;
  height: 0.18rem;
  border-radius: 999px;
  background: var(--brand-lime);
}
.pill-row,
.focus-tags,
.role-tags,
.signal-grid,
.quick-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.pill,
.focus-chip,
.role-tags span,
.signal-card small {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(31, 138, 72, 0.10);
  color: var(--brand-green-deep);
  border: 1px solid rgba(31, 138, 72, 0.12);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.cta-row {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.signal-card {
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(16, 38, 28, 0.05);
  border: 1px solid rgba(16, 38, 28, 0.08);
}
.signal-card strong {
  display: block;
  font-size: 1.35rem;
  color: var(--brand-green-deep);
  margin-bottom: 0.1rem;
}
.quick-metrics {
  margin-top: 1.25rem;
  gap: 1rem;
}
.quick-metrics strong {
  display: block;
  font-size: 1.4rem;
  color: var(--brand-green-deep);
}
.quick-metrics span {
  color: var(--brand-muted);
  font-size: 0.88rem;
}
.section-shell {
  margin-top: 1.4rem;
  padding: clamp(1.4rem, 2vw, 2rem);
  border-radius: 1.8rem;
  background: var(--brand-card);
}
.section-shell.dark {
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 223, 45, 0.10), transparent 16rem),
    linear-gradient(180deg, #10261c 0%, #153826 100%);
  color: #f7f9ef;
  border-color: rgba(255,255,255,0.06);
}
.section-shell.dark p,
.section-shell.dark li,
.section-shell.dark .section-copy {
  color: rgba(245, 248, 239, 0.78);
}
.section-shell.dark h2,
.section-shell.dark h3,
.section-shell.dark .eyebrow {
  color: #ffffff;
}
.section-shell.dark .eyebrow::before { background: var(--brand-lime); }
.section-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}
.section-head h2 {
  font-size: clamp(1.9rem, 2vw, 3rem);
  margin-bottom: 0.15rem;
  color: var(--brand-forest);
}
.section-head p {
  max-width: 70ch;
  color: var(--brand-muted);
}
.section-shell.dark .section-head p { color: rgba(245, 248, 239, 0.72); }
.card-grid {
  display: grid;
  gap: 1rem;
}
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.surface-card,
.matrix-card,
.timeline-card {
  padding: 1.2rem 1.15rem;
  border-radius: 1.35rem;
  background: rgba(255,255,255,0.84);
}
.section-shell.dark .surface-card,
.section-shell.dark .timeline-card,
.section-shell.dark .matrix-card {
  background: rgba(255,255,255,0.06);
}
.surface-card h3,
.matrix-card h3,
.timeline-card h3,
.portfolio-card h3 {
  margin-bottom: 0.55rem;
}
.kicker {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--brand-bronze);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.bullet-list,
.check-list,
.focus-list,
.credential-list {
  margin: 0;
  padding-left: 1rem;
}
.check-list li::marker,
.credential-list li::marker { color: var(--brand-green); }

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.25rem;
  align-items: stretch;
}
.map-stage {
  position: relative;
  min-height: 34rem;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, #153826 0%, #10261c 100%);
}
.map-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-marker {
  position: absolute;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 3px solid #fff;
  background: var(--brand-lime);
  box-shadow: 0 0 0 0 rgba(214, 223, 45, 0.6);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.map-marker::after {
  content: "";
  position: absolute;
  inset: -0.55rem;
  border-radius: inherit;
  border: 1px solid rgba(214, 223, 45, 0.28);
}
.map-marker.active,
.map-marker:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 12px rgba(214, 223, 45, 0.12);
  background: #ffffff;
}
.map-marker[data-region="texas"] { left: 24%; top: 45%; }
.map-marker[data-region="venezuela"] { left: 29.5%; top: 57%; }
.map-marker[data-region="bohai"] { left: 78%; top: 36%; }
.map-marker[data-region="australia"] { left: 79%; top: 70%; }
.region-stack {
  display: grid;
  gap: 0.8rem;
}
.region-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.region-card:hover,
.region-card.is-active {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.11);
  border-color: rgba(214, 223, 45, 0.32);
}
.region-card h3 { color: #fff; margin-bottom: 0.2rem; }
.region-card .region-sub {
  color: var(--brand-lime-soft);
  font-size: 0.85rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.55rem;
}
.region-card p { margin-bottom: 0.45rem; }
.region-card ul {
  margin: 0;
  padding-left: 1rem;
  color: rgba(255,255,255,0.76);
}
.region-card ul li::marker { color: var(--brand-lime); }

.executive-grid {
  display: grid;
  gap: 1rem;
}
.executive-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1.25rem;
  align-items: stretch;
  padding: 0;
  border-radius: 1.6rem;
  overflow: hidden;
  background: rgba(255,255,255,0.82);
}
.executive-photo {
  position: relative;
  min-height: 20rem;
  background: linear-gradient(180deg, #e2eee5 0%, #cad9cf 100%);
}
.executive-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.executive-body {
  padding: 1.35rem 1.25rem 1.3rem;
}
.role-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(31, 138, 72, 0.12);
  color: var(--brand-green-deep);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.executive-card h2 { margin: 0.75rem 0 0.35rem; font-size: 1.85rem; }
.executive-summary { color: var(--brand-muted); line-height: 1.75; }
.executive-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}
.meta-block {
  padding: 0.9rem;
  border-radius: 1rem;
  background: rgba(16,38,28,0.05);
  border: 1px solid rgba(16,38,28,0.06);
}
.meta-block strong {
  display: block;
  font-size: 0.78rem;
  color: var(--brand-bronze);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
}

.portfolio-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.portfolio-card {
  padding: 1.2rem;
  border-radius: 1.45rem;
  background: rgba(255,255,255,0.84);
}
.portfolio-card header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}
.stage-pill {
  display: inline-flex;
  white-space: nowrap;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.stage-pill.active { background: rgba(31, 138, 72, 0.12); color: var(--brand-green-deep); }
.stage-pill.growth { background: rgba(185, 134, 88, 0.16); color: #7b4f26; }
.stage-pill.reference { background: rgba(214,223,45,0.18); color: #5f6500; }
.stage-pill.screen { background: rgba(16,38,28,0.08); color: var(--brand-text); }
.stage-meter {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.95rem;
}
.stage-meter .track {
  width: 100%;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(16, 38, 28, 0.08);
  overflow: hidden;
}
.stage-meter .fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-lime), var(--brand-green));
}
.stage-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--brand-muted);
}

.timeline-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.timeline-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.55rem;
  color: var(--brand-green-deep);
}
.matrix-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.matrix-card ul { margin: 0; padding-left: 1rem; }
.matrix-card ul li::marker { color: var(--brand-green); }

.hero-frame {
  display: grid;
  gap: 1rem;
}
.hero-notes {
  display: grid;
  gap: 0.85rem;
}
.hero-note {
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.78);
}
.hero-note strong {
  display: block;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.95fr 1.05fr;
}
.contact-card {
  padding: 1.2rem;
  border-radius: 1.45rem;
  background: rgba(255,255,255,0.82);
}
.contact-list {
  display: grid;
  gap: 0.85rem;
}
.contact-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--brand-bronze);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-item a,
.footer-links a {
  color: var(--brand-green-deep);
  text-decoration: none;
}
.form-note {
  font-size: 0.92rem;
  color: var(--brand-muted);
  min-height: 1.4rem;
}
.form-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.form-grid .full { grid-column: 1 / -1; }

.footer-shell {
  margin-top: 2rem;
  border-top: 1px solid rgba(16,38,28,0.08);
  padding-top: 1.35rem;
}
footer.container {
  display: grid;
  gap: 0.6rem;
  padding-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}
small.subtle { color: var(--brand-muted); }

@media (max-width: 1100px) {
  .hero-grid,
  .page-hero-grid,
  .map-layout,
  .contact-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .card-grid.four { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .timeline-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .executive-card {
    grid-template-columns: 1fr;
  }
  .executive-photo { min-height: 18rem; }
  .portfolio-grid,
  .matrix-grid,
  .card-grid.two,
  .card-grid.three,
  .signal-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .card-grid.four { grid-template-columns: 1fr; }
  .executive-meta { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  nav.container-fluid {
    position: static;
  }
  .brand-text small { display: none; }
  .hero h1,
  .page-hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }
  .topbar .container {
    flex-direction: column;
    align-items: start;
  }
  .map-stage { min-height: 22rem; }
  .timeline-grid { grid-template-columns: 1fr; }
  .quick-metrics { flex-direction: column; gap: 0.5rem; }
}


.align-center { align-items: center; }
.section-copy { color: var(--brand-muted); line-height: 1.8; max-width: 68ch; }
.visual-card.contain img,
.hero-visual.contain img,
.map-stage img.map-image {
  object-fit: contain;
  background: linear-gradient(180deg, #10261c 0%, #153826 100%);
}
.map-stage.no-markers { min-height: 30rem; }
.region-card.is-active { border-color: rgba(214,223,45,0.28); box-shadow: 0 18px 32px rgba(0,0,0,0.18); }
.action-grid .action-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}
.direct-email {
  margin: 0;
  color: var(--brand-muted);
}
.notice-card {
  margin-top: 1.2rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.1rem;
  background: rgba(16, 38, 28, 0.05);
  border: 1px solid rgba(16, 38, 28, 0.08);
}
.notice-card h3 {
  margin-bottom: 0.35rem;
}
.status-banner {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(16, 38, 28, 0.12);
  background: rgba(255,255,255,0.82);
  color: var(--brand-text);
}
.status-banner.show { display: block; }
.status-banner.success {
  background: rgba(31, 138, 72, 0.12);
  border-color: rgba(31, 138, 72, 0.18);
  color: var(--brand-green-deep);
}
.status-banner.warning {
  background: rgba(185, 134, 88, 0.14);
  border-color: rgba(185, 134, 88, 0.20);
  color: #6d4b2d;
}
.status-banner.error {
  background: rgba(148, 43, 43, 0.10);
  border-color: rgba(148, 43, 43, 0.20);
  color: #7d2929;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-card form {
  margin-bottom: 0;
}
.contact-card button[type="submit"] {
  margin-bottom: 0;
}
.contact-item span,
.contact-item a {
  line-height: 1.65;
}
.footer-links a:hover,
.contact-item a:hover,
.direct-email a:hover {
  text-decoration: underline;
}
.map-stage .map-marker {
  cursor: pointer;
}
.map-stage .map-marker:focus-visible {
  outline: 3px solid rgba(255,255,255,0.9);
  outline-offset: 4px;
}
.hero-visual img,
.visual-card img {
  min-height: 100%;
}


.photo-panel {
  min-height: 25rem;
}
.photo-panel img {
  filter: saturate(1.02) contrast(1.02);
}
.ghost-link,
.button-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand-green-deep);
  text-decoration: none;
  font-weight: 700;
}
.button-ghost {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 38, 28, 0.12);
  background: rgba(255,255,255,0.74);
}
.hero-copy .button-ghost {
  background: rgba(255,255,255,0.72);
}
.quick-metrics {
  display: grid;
}
.region-sub {
  margin: 0.4rem 0 0;
  color: rgba(245, 248, 239, 0.78);
  font-size: 0.9rem;
}
.status-banner {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid transparent;
}
.status-banner.show {
  display: block;
}
.status-banner.success {
  background: rgba(31, 138, 72, 0.10);
  border-color: rgba(31, 138, 72, 0.18);
}
.status-banner.warning {
  background: rgba(185, 134, 88, 0.12);
  border-color: rgba(185, 134, 88, 0.18);
}
.status-banner.error {
  background: rgba(170, 32, 32, 0.10);
  border-color: rgba(170, 32, 32, 0.16);
}
.notice-card {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(16,38,28,0.05);
  border: 1px solid rgba(16,38,28,0.08);
}
.hero .signal-card span,
.page-hero .signal-card span {
  color: var(--brand-muted);
  display: block;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .photo-panel { min-height: 20rem; }
}


.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.media-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(16, 38, 28, 0.10);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--brand-shadow);
}
.media-frame {
  background: linear-gradient(180deg, #153725 0%, #0d2017 100%);
}
.media-frame img,
.media-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.media-copy {
  padding: 1.15rem 1.2rem 1.35rem;
}
@media (max-width: 800px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 800px) {
  .hero-reel {
    min-height: 15rem;
  }
}
