:root {
  --ink: #12181d;
  --ink-soft: #263037;
  --white: #fbfaf7;
  --paper: #f3efe7;
  --sand: #d9cdb7;
  --stone: #b7aa94;
  --gold: #b5964d;
  --navy: #101922;
  --line: rgba(18, 24, 29, 0.14);
  --line-light: rgba(251, 250, 247, 0.18);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Aptos", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: geometricPrecision;
}

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

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

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

::selection {
  color: var(--white);
  background: var(--gold);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 96px;
  max-width: none;
  margin: 0 auto;
  padding: 12px max(24px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background: linear-gradient(135deg, rgba(18, 24, 29, 0.98), rgba(16, 25, 34, 0.95));
  border-bottom: 1px solid rgba(181, 150, 77, 0.26);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: linear-gradient(135deg, rgba(18, 24, 29, 0.99), rgba(16, 25, 34, 0.97));
  border-color: rgba(181, 150, 77, 0.28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-grid;
  justify-items: center;
  gap: 7px;
  width: auto;
  min-width: 210px;
}

.brand img {
  width: 108px;
  height: auto;
  flex: 0 0 auto;
}

.brand span {
  display: block;
  padding-left: 0;
  color: var(--white);
  font-family: "Optima", "Aptos Display", "Avenir Next", var(--sans);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.6vw, 24px);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(251, 250, 247, 0.78);
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 13px;
  color: var(--white) !important;
  background: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.language-switch {
  display: flex;
  gap: 0;
  border: 1px solid rgba(251, 250, 247, 0.2);
}

.language-switch a {
  padding: 6px 9px;
}

.language-switch a[aria-current="page"] {
  color: var(--ink);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(251, 250, 247, 0.24);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 17, 20, 0.82), rgba(12, 17, 20, 0.38) 52%, rgba(12, 17, 20, 0.12)),
    linear-gradient(0deg, rgba(12, 17, 20, 0.64), rgba(12, 17, 20, 0) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: clamp(150px, 19vh, 210px) 24px 110px;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
}

.hero-logo {
  display: inline-grid;
  justify-items: center;
  width: min(480px, 80vw);
  margin-bottom: 42px;
  padding: 0;
}

.hero-logo img {
  width: min(370px, 78vw);
}

.hero-logo span {
  display: block;
  margin-top: 22px;
  color: var(--white);
  font-family: "Optima", "Aptos Display", "Avenir Next", var(--sans);
  font-size: clamp(1.18rem, 2vw, 1.72rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

h1 span {
  display: block;
  margin-top: 18px;
  color: rgba(251, 250, 247, 0.84);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

h3 {
  margin-bottom: 16px;
  font-size: 1.45rem;
  font-weight: 500;
}

.lead {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  line-height: 1.45;
}

.hero-copy {
  max-width: 680px;
  color: rgba(251, 250, 247, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(251, 250, 247, 0.48);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 24px;
  border-bottom: 1px solid var(--line);
}

.intro-strip div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  border-right: 1px solid var(--line);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.9rem;
}

.intro-strip strong {
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 150px) 24px;
}

section[id] {
  scroll-margin-top: 116px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(42px, 7vw, 94px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.split.reverse .section-copy {
  order: 2;
}

.section-copy p,
.feature-copy p,
.values-copy p,
.contact-form-wrap p {
  color: rgba(18, 24, 29, 0.72);
}

.image-panel {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.08 / 1;
  background: var(--paper);
}

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

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.service-card div {
  padding: 28px;
}

.service-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(18, 24, 29, 0.68);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  padding: clamp(78px, 10vw, 150px) max(24px, calc((100vw - var(--max)) / 2));
}

.feature.dark {
  color: var(--white);
  background: var(--ink);
}

.feature-media {
  min-height: 520px;
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.feature-copy p {
  color: rgba(251, 250, 247, 0.72);
}

.values {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.values > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 17, 20, 0.86), rgba(12, 17, 20, 0.42));
}

.values-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(76px, 10vw, 130px) 24px;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
}

.values-copy p {
  color: rgba(251, 250, 247, 0.74);
}

.portal-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.portal-heading p:not(.eyebrow) {
  color: rgba(18, 24, 29, 0.7);
  font-size: 1.08rem;
}

.portal-feature-grid,
.portal-card-grid,
.task-board,
.portal-stat-grid,
.portal-dashboard-grid,
.participant-list,
.portal-admin-grid,
.portal-admin-lists {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.portal-feature-grid {
  margin-bottom: 24px;
}

.portal-feature-grid article,
.portal-card-grid article,
.task-board article,
.portal-stat-grid article,
.portal-dashboard-grid article,
.participant-list article {
  min-height: 150px;
  padding: 22px;
  background: #fffdf8;
  border: 1px solid rgba(18, 24, 29, 0.12);
}

.portal-feature-grid span,
.task-board span,
.portal-stat-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.portal-feature-grid strong,
.portal-card-grid strong,
.task-board strong,
.portal-stat-grid strong,
.portal-dashboard-grid strong,
.participant-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.portal-feature-grid p,
.portal-card-grid p,
.task-board p,
.portal-stat-grid p,
.portal-dashboard-grid p,
.participant-list p {
  margin: 0;
  color: rgba(18, 24, 29, 0.64);
  font-size: 0.92rem;
  line-height: 1.55;
}

.portal-app {
  min-height: 620px;
  background: #fffdf8;
  border: 1px solid rgba(18, 24, 29, 0.14);
  box-shadow: 0 24px 70px rgba(18, 24, 29, 0.08);
}

.portal-gate {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 0;
}

.portal-login-card {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 560px;
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, #111820, #17222b);
}

.portal-login-card h3,
.portal-gate-dashboard h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.04;
}

.portal-login-card p:not(.eyebrow),
.portal-login-card .form-note {
  color: rgba(251, 250, 247, 0.72);
}

.portal-login-card input {
  color: var(--white);
  border-color: rgba(251, 250, 247, 0.42);
}

.portal-login-card input::placeholder {
  color: rgba(251, 250, 247, 0.42);
}

.portal-login-card label {
  color: rgba(251, 250, 247, 0.82);
}

.portal-gate-dashboard {
  display: grid;
  align-content: center;
  gap: 24px;
  min-height: 560px;
  padding: clamp(28px, 5vw, 54px);
  background: #fffdf8;
}

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

.portal-stat-grid.wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.portal-stat-grid article {
  min-height: 138px;
  background: rgba(18, 24, 29, 0.035);
}

.portal-stat-grid span {
  margin-bottom: 8px;
  font-size: 2.25rem;
}

.portal-workspace {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 680px;
}

.portal-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  background: linear-gradient(180deg, #111820, #17222b);
  border-right: 1px solid rgba(18, 24, 29, 0.12);
}

.portal-sidebar button {
  width: 100%;
  padding: 14px 13px;
  color: rgba(251, 250, 247, 0.72);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.portal-sidebar button:hover,
.portal-sidebar button:focus-visible,
.portal-sidebar button.is-active {
  color: var(--white);
  background: rgba(181, 150, 77, 0.16);
  border-color: rgba(181, 150, 77, 0.36);
}

.portal-panels {
  min-width: 0;
  padding: clamp(24px, 4vw, 40px);
}

.portal-session {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
  padding: 16px;
  background: rgba(181, 150, 77, 0.1);
  border: 1px solid rgba(181, 150, 77, 0.26);
}

.portal-session strong,
.portal-session span {
  display: block;
}

.portal-session span {
  margin-top: 4px;
  color: rgba(18, 24, 29, 0.62);
  font-size: 0.9rem;
}

.portal-upload button {
  cursor: pointer;
}

.portal-panel {
  display: none;
}

.portal-panel.is-active {
  display: block;
}

.portal-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.portal-panel-head h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--ink);
  background: rgba(181, 150, 77, 0.18);
  border: 1px solid rgba(181, 150, 77, 0.32);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.portal-table {
  display: grid;
  border: 1px solid rgba(18, 24, 29, 0.12);
}

.portal-table [role="row"] {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 0.9fr 0.8fr;
  gap: 14px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(18, 24, 29, 0.1);
}

.portal-table [role="row"]:first-child {
  color: rgba(18, 24, 29, 0.62);
  background: rgba(18, 24, 29, 0.04);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portal-table [role="row"]:last-child {
  border-bottom: 0;
}

.portal-card-grid,
.task-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-card-grid.compact {
  margin-top: 22px;
}

.portal-card-grid.compact article {
  min-height: 122px;
}

.portal-dashboard-grid {
  grid-template-columns: 1fr 0.85fr;
  margin-top: 18px;
}

.portal-dashboard-grid article {
  min-height: 210px;
  background: #fff;
}

.portal-dashboard-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portal-dashboard-grid li {
  padding-bottom: 10px;
  color: rgba(18, 24, 29, 0.64);
  border-bottom: 1px solid rgba(18, 24, 29, 0.08);
}

.portal-dashboard-grid li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.portal-quick-actions button {
  padding: 12px 14px;
  color: var(--ink);
  text-align: left;
  background: rgba(181, 150, 77, 0.1);
  border: 1px solid rgba(181, 150, 77, 0.24);
  cursor: pointer;
  font-weight: 700;
}

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

.participant-list article {
  min-height: 132px;
}

.participant-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portal-admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

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

.project-hub {
  display: grid;
  gap: 16px;
  margin: 22px 0;
  padding: 20px;
  background: #f7f5ef;
  border: 1px solid rgba(18, 24, 29, 0.12);
}

.project-hub-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.project-hub-head strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.project-hub-head span {
  color: rgba(18, 24, 29, 0.64);
  font-size: 0.9rem;
}

.project-inline-form {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(18, 24, 29, 0.1);
}

.project-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.project-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(18, 24, 29, 0.1);
  box-shadow: 0 14px 34px rgba(18, 24, 29, 0.06);
}

.project-card.is-active {
  border-color: rgba(181, 150, 77, 0.72);
  box-shadow: 0 18px 42px rgba(181, 150, 77, 0.14);
}

.project-card h4 {
  margin: 12px 0 4px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.project-card p {
  margin: 0;
  color: rgba(18, 24, 29, 0.64);
}

.project-card dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
}

.project-card dt {
  color: rgba(18, 24, 29, 0.52);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card dd {
  grid-row: 2;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.portal-admin-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(18, 24, 29, 0.12);
}

.portal-admin-card > strong {
  font-size: 1.05rem;
}

.portal-admin-lists {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.portal-admin-lists.single {
  grid-template-columns: 1fr;
}

.local-list .list-empty {
  margin: 0;
  color: rgba(18, 24, 29, 0.62);
}

.local-list .list-item-main {
  font-weight: 700;
}

.local-list .list-item-meta {
  display: block;
  margin-top: 3px;
  color: rgba(18, 24, 29, 0.58);
  font-size: 0.84rem;
}

.task-list-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.traffic-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.traffic-status.is-red {
  background: #9f2e24;
}

.traffic-status.is-orange {
  color: #2b2115;
  background: #d89a35;
}

.traffic-status.is-green {
  background: #2f6f4f;
}

.traffic-status.is-yellow {
  color: #2b2115;
  background: #d8bd55;
}

.task-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.task-item-actions button {
  padding: 8px 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(18, 24, 29, 0.2);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.task-item-actions button[data-task-complete] {
  color: #fff;
  background: #2f6f4f;
  border-color: #2f6f4f;
}

.task-workspace {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2fr);
  gap: 22px;
  align-items: start;
}

.task-filter-panel,
.task-main-panel,
.task-create-card {
  min-width: 0;
}

.task-filter-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(18, 24, 29, 0.035);
  border: 1px solid rgba(18, 24, 29, 0.1);
}

.local-list.compact {
  margin-top: 0;
  padding: 14px;
  background: #fff;
}

.local-list.compact strong {
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.local-list.compact li {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.task-create-card {
  margin-top: 18px;
}

.task-create-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.task-create-head strong {
  margin-right: auto;
  font-size: 1.05rem;
}

.task-create-head span,
.task-list-summary {
  color: rgba(18, 24, 29, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.task-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  background: rgba(18, 24, 29, 0.04);
  border: 1px solid rgba(18, 24, 29, 0.1);
}

.task-editor-toolbar button,
.task-list-summary button {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(18, 24, 29, 0.16);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.task-list-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(18, 24, 29, 0.04);
  border: 1px solid rgba(18, 24, 29, 0.1);
}

.task-location-map {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(18, 24, 29, 0.035);
  border: 1px solid rgba(18, 24, 29, 0.1);
}

.task-location-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  align-items: end;
}

.task-location-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(54px, 1fr));
  gap: 8px;
  width: 100%;
}

.task-location-tools .button {
  min-width: 0;
  padding-right: 10px;
  padding-left: 10px;
}

.task-location-controls .button {
  min-height: 46px;
  width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.task-location-map .button.secondary,
.task-pdf-viewer .button.secondary,
.task-native-pdf-head .button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: rgba(18, 24, 29, 0.24);
}

.task-plan-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
  color: rgba(18, 24, 29, 0.58);
  background:
    linear-gradient(90deg, rgba(18, 24, 29, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(18, 24, 29, 0.05) 1px, transparent 1px),
    #fff;
  background-size: 24px 24px;
  border: 1px dashed rgba(18, 24, 29, 0.24);
  cursor: crosshair;
  touch-action: none;
  user-select: none;
}

.task-plan-viewport {
  position: relative;
  width: 100%;
  height: min(72vh, 720px);
  min-height: 460px;
  overflow: hidden;
  background: #fff;
}

.task-plan-content {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  justify-items: center;
  width: max-content;
  min-width: 100%;
  transform-origin: 0 0;
  will-change: transform;
}

.task-plan-stage img,
.task-pdf-viewer,
.task-native-pdf-frame {
  display: block;
  width: 100%;
  background: #fff;
}

.task-plan-stage img {
  width: auto;
  max-width: none;
  max-height: none;
  min-height: 360px;
  object-fit: contain;
}

.task-pdf-viewer {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-height: 420px;
  padding: 16px;
  overflow: visible;
  pointer-events: none;
  width: max-content;
  min-width: 100%;
}

.task-native-pdf-frame {
  height: 620px;
  min-height: 420px;
  border: 0;
  pointer-events: none;
}

.task-native-pdf-frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
}

.task-pdf-page {
  display: grid;
  justify-items: center;
  gap: 6px;
  max-width: 100%;
  margin: 0;
}

.task-pdf-page canvas {
  max-width: none;
  height: auto;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 24, 29, 0.12);
}

.task-pdf-page figcaption {
  color: rgba(18, 24, 29, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
}

.task-plan-point {
  position: absolute;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: #9f2e24;
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(18, 24, 29, 0.28);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.task-point-list {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(18, 24, 29, 0.1);
}

.task-point-list strong {
  display: block;
  margin-bottom: 8px;
}

.task-point-list ol {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  margin: 0;
}

.task-point-list li {
  padding: 0;
}

.task-point-list small {
  display: block;
  margin-top: 2px;
  color: rgba(18, 24, 29, 0.56);
}

.upload-preview-grid,
.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.upload-preview-grid figure {
  display: grid;
  gap: 5px;
  margin: 0;
}

.upload-preview-grid img,
.photo-preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(18, 24, 29, 0.12);
}

.upload-preview-grid figcaption {
  overflow: hidden;
  color: rgba(18, 24, 29, 0.58);
  font-size: 0.7rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-panel[data-portal-panel="tasks"] {
  padding-top: 30px;
}

.portal-panel[data-portal-panel="tasks"] .portal-panel-head {
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(18, 24, 29, 0.1);
}

.task-workspace {
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 2.38fr);
  gap: 28px;
}

.task-filter-panel {
  position: sticky;
  top: 126px;
  align-self: start;
  gap: 14px;
  padding: 20px;
  background: #f7f5ef;
  border: 1px solid rgba(18, 24, 29, 0.12);
  box-shadow: 0 18px 40px rgba(18, 24, 29, 0.08);
}

.task-filter-panel .form-row input {
  background: #fff;
}

.task-main-panel {
  display: grid;
  gap: 20px;
}

.task-main-panel .portal-card-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.task-main-panel .portal-card-grid.compact article {
  min-height: 118px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(18, 24, 29, 0.1);
  border-left: 3px solid #b49a56;
  box-shadow: 0 14px 34px rgba(18, 24, 29, 0.06);
}

.task-create-card {
  margin-top: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(18, 24, 29, 0.12);
  box-shadow: 0 20px 54px rgba(18, 24, 29, 0.09);
}

.task-create-head {
  gap: 12px;
  padding: 0 0 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(18, 24, 29, 0.1);
}

.task-create-head strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0;
}

.task-create-head span {
  padding: 7px 10px;
  color: rgba(18, 24, 29, 0.72);
  background: #f4f1e8;
  border: 1px solid rgba(180, 154, 86, 0.28);
}

.task-editor-toolbar {
  padding: 10px;
  background: #f8f7f2;
  border-color: rgba(18, 24, 29, 0.12);
}

.task-editor-toolbar button,
.task-list-summary button,
.task-item-actions button {
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.task-editor-toolbar button:hover,
.task-list-summary button:hover,
.task-item-actions button:hover {
  color: #fff;
  background: #12181d;
  border-color: #12181d;
  transform: translateY(-1px);
}

.task-location-map {
  gap: 16px;
  padding: 18px;
  background: #f7f5ef;
  border: 1px solid rgba(18, 24, 29, 0.12);
}

.task-location-controls {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(18, 24, 29, 0.1);
}

.task-plan-stage {
  min-height: 440px;
  background:
    linear-gradient(90deg, rgba(18, 24, 29, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(18, 24, 29, 0.045) 1px, transparent 1px),
    #fff;
  background-size: 28px 28px;
  border: 1px dashed rgba(18, 24, 29, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.task-native-pdf-head {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #f4f1e8;
  border-bottom: 1px solid rgba(18, 24, 29, 0.12);
}

.task-native-pdf-head span {
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.task-native-pdf-note {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  color: rgba(18, 24, 29, 0.62);
  background: #fff;
  border-top: 1px solid rgba(18, 24, 29, 0.1);
  font-size: 0.82rem;
}

.task-native-pdf-frame {
  height: 640px;
  min-height: 520px;
  background: #fff;
}

.task-native-pdf-frame iframe {
  height: 640px;
}

.task-list-summary {
  margin-top: 0;
  background: #12181d;
  border-color: #12181d;
  color: rgba(255, 255, 255, 0.78);
}

.task-list-summary button {
  color: #12181d;
  background: #fff;
}

[data-task-list].local-list {
  padding: 0;
  background: transparent;
  border: 0;
}

[data-task-list].local-list > strong {
  display: block;
  margin-bottom: 12px;
  color: rgba(18, 24, 29, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-task-list].local-list ul {
  gap: 12px;
}

[data-task-list].local-list li {
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(18, 24, 29, 0.1);
  box-shadow: 0 14px 36px rgba(18, 24, 29, 0.07);
}

.task-list-head {
  gap: 12px;
}

.traffic-status {
  min-width: 136px;
  text-align: center;
}

.upload-preview-grid {
  grid-template-columns: repeat(auto-fill, minmax(122px, 1fr));
  gap: 10px;
}

.upload-preview-grid img,
.photo-preview-grid img {
  border-color: rgba(18, 24, 29, 0.16);
  box-shadow: 0 8px 22px rgba(18, 24, 29, 0.08);
}

.portal-upload {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 24, 29, 0.12);
}

.local-list {
  margin-top: 18px;
  padding: 18px;
  background: rgba(18, 24, 29, 0.04);
  border: 1px solid rgba(18, 24, 29, 0.1);
}

.local-list p {
  margin: 0;
  color: rgba(18, 24, 29, 0.62);
}

.local-list strong {
  display: block;
  margin-bottom: 10px;
}

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

.local-list li {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-top: 1px solid rgba(18, 24, 29, 0.08);
}

.local-list small {
  color: rgba(18, 24, 29, 0.58);
}

.daily-report-form {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

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

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.button.ghost {
  color: var(--ink);
  border-color: rgba(18, 24, 29, 0.22);
  background: transparent;
}

.portal-actions .button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: rgba(18, 24, 29, 0.24);
}

.report-preview {
  display: none;
  margin-top: 26px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(18, 24, 29, 0.14);
}

.report-preview.is-visible {
  display: block;
}

.report-preview h4 {
  margin: 0 0 16px;
  font-size: 1.4rem;
}

.report-preview dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 8px 16px;
  margin: 0;
}

.report-preview dt {
  color: rgba(18, 24, 29, 0.58);
  font-weight: 700;
}

.report-preview dd {
  margin: 0;
  white-space: pre-wrap;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 150px) 24px;
}

.contact-image {
  min-height: 650px;
  overflow: hidden;
}

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

.contact-form-wrap {
  align-self: center;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(18, 24, 29, 0.12);
  border-bottom: 1px solid rgba(18, 24, 29, 0.12);
}

.contact-details a,
.contact-details span {
  color: var(--ink);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.contact-details a {
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.legal-page {
  min-height: 100vh;
  padding-top: 116px;
  background:
    linear-gradient(180deg, rgba(18, 24, 29, 0.05), transparent 320px),
    var(--white);
}

.legal-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 24px 34px;
}

.legal-hero h1 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(18, 24, 29, 0.72);
  font-size: 1.05rem;
}

.legal-content {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px clamp(82px, 10vw, 140px);
}

.legal-content article {
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  padding: 24px 0;
  border-top: 1px solid rgba(18, 24, 29, 0.13);
}

.legal-content h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.legal-content p {
  margin: 0;
  color: rgba(18, 24, 29, 0.76);
}

.legal-content a {
  color: var(--ink);
  border-bottom: 1px solid rgba(181, 150, 77, 0.55);
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(18, 24, 29, 0.28);
  border-radius: 0;
  padding: 10px 0 12px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(181, 150, 77, 0.35);
  outline-offset: 4px;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 6px;
  color: rgba(18, 24, 29, 0.7);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.consent input {
  width: 18px;
  margin-top: 2px;
}

.contact .button {
  justify-self: start;
  margin-top: 8px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--ink-soft);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(42px, 8vw, 110px);
  padding: 58px max(24px, calc((100vw - var(--max)) / 2)) 52px;
  color: rgba(251, 250, 247, 0.68);
  background: linear-gradient(135deg, rgba(18, 24, 29, 0.98), rgba(16, 25, 34, 0.96));
  border-top: 1px solid rgba(181, 150, 77, 0.22);
}

.footer-brand {
  display: grid;
  justify-items: start;
  max-width: 480px;
}

.footer-logo {
  display: inline-grid;
  justify-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 178px;
}

.footer-logo span {
  display: block;
  margin-top: 13px;
  color: var(--white);
  font-family: "Optima", "Aptos Display", "Avenir Next", var(--sans);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.site-footer p {
  max-width: 390px;
  margin: 0;
  color: rgba(251, 250, 247, 0.74);
  font-size: 0.98rem;
  line-height: 1.65;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 26px;
  align-content: start;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: rgba(251, 250, 247, 0.72);
  transition: color 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal,
  .site-header {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 82px;
    padding: 10px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(18, 24, 29, 0.98);
    border: 1px solid rgba(181, 150, 77, 0.24);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(251, 250, 247, 0.12);
  }

  .language-switch {
    justify-self: start;
    margin-top: 12px;
  }

  .hero {
    min-height: 90svh;
  }

  .intro-strip,
  .service-grid,
  .portal-feature-grid,
  .portal-card-grid,
  .task-board,
  .task-workspace,
  .portal-gate,
  .portal-stat-grid,
  .portal-stat-grid.wide,
  .portal-dashboard-grid,
  .participant-list,
  .portal-admin-grid,
  .portal-admin-lists,
  .split,
  .split.reverse,
  .feature,
  .contact {
    grid-template-columns: 1fr;
  }

  .portal-workspace {
    grid-template-columns: 1fr;
  }

  .portal-login-card,
  .portal-gate-dashboard {
    min-height: auto;
  }

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

  .portal-table {
    overflow-x: auto;
  }

  .portal-table [role="row"] {
    min-width: 720px;
  }

  .form-grid.two,
  .form-grid.three,
  .form-grid.four,
  .task-location-controls {
    grid-template-columns: 1fr;
  }

  .task-filter-panel {
    position: static;
  }

  .task-main-panel .portal-card-grid.compact {
    grid-template-columns: 1fr;
  }

  .task-native-pdf-frame,
  .task-native-pdf-frame iframe {
    height: 520px;
    min-height: 420px;
  }

  .split.reverse .section-copy {
    order: 0;
  }

  .feature-media,
  .feature-media img,
  .contact-image {
    min-height: 420px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-logo {
    justify-items: start;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

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

  .brand img {
    width: 82px;
  }

  .brand span {
    font-size: 0.62rem;
    letter-spacing: 0.11em;
  }

  .hero-content {
    padding-top: 128px;
    padding-bottom: 78px;
  }

  .hero-logo {
    width: min(320px, 84vw);
    margin-bottom: 30px;
    padding: 0;
  }

  .hero-logo img {
    width: min(260px, 76vw);
  }

  .hero-logo span {
    margin-top: 17px;
    font-size: 1rem;
    letter-spacing: 0.12em;
    white-space: normal;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.55rem);
  }

  .intro-strip {
    gap: 0;
  }

  .intro-strip div {
    display: grid;
    gap: 6px;
    align-content: center;
    padding-right: 8px;
  }

  .intro-strip span {
    font-size: 1.3rem;
  }

  .intro-strip strong {
    font-size: 0.66rem;
  }

  .service-card div {
    padding: 24px;
  }

  .image-panel,
  .service-card img {
    aspect-ratio: 1 / 0.9;
  }

  .values {
    min-height: 680px;
  }

  .portal-sidebar {
    grid-template-columns: 1fr;
  }

  .portal-session {
    display: grid;
  }

  .portal-panels {
    padding: 22px 18px;
  }

  .portal-panel-head {
    display: grid;
  }

  .legal-page {
    padding-top: 96px;
  }

  .legal-content article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .report-preview dl {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    width: 160px;
  }

  .footer-logo span {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }
}

@media print {
  body {
    color: #111820;
    background: #fff;
  }

  .site-header,
  .hero,
  .intro-strip,
  .section,
  .feature,
  .values,
  .portal-heading,
  .portal-feature-grid,
  .portal-gate,
  .portal-session,
  .portal-sidebar,
  .portal-panel:not([data-portal-panel="daily-report"]),
  .daily-report-form,
  .contact,
  .site-footer {
    display: none !important;
  }

  .portal-app,
  .portal-panels,
  .portal-panel,
  .report-preview {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .report-preview {
    color: #111820;
  }
}
