@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f3efe7;
  --bg-alt: #ebe6dc;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #111111;
  --muted: #5e5a51;
  --line: rgba(17, 17, 17, 0.14);
  --accent: #b4832f;
  --accent-2: #30434d;
  --accent-soft: #ead9b2;
  --shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  --shadow-strong: 0 24px 70px rgba(17, 17, 17, 0.14);
  --radius: 8px;
  --display: "Fraunces", Georgia, serif;
  --body: "Manrope", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8f5ef 0%, #f1ece3 58%, #ebe7df 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 82%);
}

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

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

a:hover {
  color: var(--accent);
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 8px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 100;
}

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

.site-shell {
  position: relative;
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(248, 245, 239, 0.84);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.site-header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}

.brand-tag {
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.1;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
  border-bottom-color: rgba(17, 17, 17, 0.34);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex: 0 0 auto;
}

.header-cta:hover {
  color: #fff;
  background: #202020;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.main {
  padding-bottom: 56px;
}

.hero,
.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 28px;
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero {
  grid-template-columns: 1.02fr 0.98fr;
  min-height: calc(100vh - 78px);
}

.home .hero {
  min-height: 0;
  align-items: start;
  padding: 28px 0 18px;
  gap: 22px;
}

.home .hero-copy,
.home .hero-media {
  align-self: start;
}

.page-hero {
  grid-template-columns: 0.98fr 0.82fr;
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-title,
.page-title,
.section-title {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.96;
  margin: 0;
}

.hero-title {
  font-size: 3.35rem;
  max-width: 11ch;
}

.page-title {
  font-size: 2.7rem;
  max-width: 13ch;
}

.section-title {
  font-size: 1.95rem;
  max-width: 15ch;
}

.lede,
.intro-copy,
.section-copy,
.page-copy,
.card-copy {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-copy,
.page-copy-block {
  display: grid;
  gap: 18px;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

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

.button.primary:hover {
  color: #fff;
  background: #222;
}

.button.secondary {
  background: transparent;
}

.button.secondary:hover,
.button:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.hero-facts,
.fact-grid,
.detail-grid,
.profile-grid,
.contact-grid {
  display: grid;
  gap: 12px;
}

.hero-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 6px;
}

.fact {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
}

.fact dt {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.fact dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.45;
}

.hero-media,
.page-media {
  position: relative;
}

.frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

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

.hero-media .frame {
  aspect-ratio: 5 / 6;
}

.page-media .frame {
  aspect-ratio: 4 / 3;
}

.frame-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(17, 17, 17, 0.58);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.84rem;
  line-height: 1.45;
  max-width: 34ch;
}

.section,
.band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 0;
}

.section + .section,
.hero + .section,
.page-hero + .section {
  padding-top: 52px;
}

.home .hero + .section {
  padding-top: 38px;
}

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

.section-head .section-title {
  margin-top: 3px;
}

.section-link {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}

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

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

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

.grid-wide {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
}

.panel,
.card,
.info-card,
.topic-card,
.project-card,
.product-card,
.company-card,
.contact-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel {
  padding: 18px;
}

.panel-soft {
  background: rgba(255, 255, 255, 0.5);
}

.card,
.info-card,
.topic-card,
.project-card,
.product-card,
.company-card,
.contact-card {
  overflow: hidden;
}

.card-body,
.topic-body,
.product-body,
.project-body,
.company-body,
.contact-body {
  padding: 18px;
}

.card-eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.card-title,
.project-title,
.product-title,
.topic-title,
.company-title,
.contact-title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.card-copy,
.project-copy,
.product-copy,
.topic-copy,
.company-copy,
.contact-copy {
  margin: 10px 0 0;
}

.mini-list,
.tag-list,
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-list li,
.tag-list li,
.bullet-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.64);
}

.mini-list.compact li {
  border-radius: var(--radius);
}

.image-top {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.accent-bar {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 999px;
  margin-bottom: 14px;
}

.product-card .product-body,
.project-card .project-body,
.topic-card .topic-body {
  display: grid;
  gap: 10px;
}

.product-kicker,
.project-kicker,
.topic-kicker,
.company-kicker,
.contact-kicker {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  margin: 0;
}

.product-specs,
.project-meta,
.topic-meta,
.company-meta,
.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.spec-pill,
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

.spec-pill.highlight {
  background: rgba(180, 131, 47, 0.12);
  border-color: rgba(180, 131, 47, 0.22);
  color: #6b4b11;
}

.split-banner {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 18px;
  align-items: stretch;
}

.band-dark {
  color: #fff;
  background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.band-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.25;
}

.band-dark .band-inner {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.band-title {
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1.08;
  margin: 0;
}

.band-copy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.band-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.band-dark .button {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.band-dark .button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table th {
  width: 28%;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  color: var(--muted);
  text-transform: uppercase;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.timeline-step {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.timeline-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 42px auto 0;
  padding: 24px 0 42px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

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

.footer a:hover {
  color: var(--ink);
}

.footer-note {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 12px 0 0;
}

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

.footer-links a {
  display: inline-flex;
  width: fit-content;
}

.footer-col {
  display: grid;
  gap: 10px;
}

.footer-col .brand {
  align-items: center;
}

.footer-small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.page-seal {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
}

.page-seal strong {
  font-size: 1rem;
}

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

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

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
}

.contact-link span {
  color: var(--muted);
  font-weight: 600;
}

.highlight-box {
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(48, 67, 77, 0.08);
  border: 1px solid rgba(48, 67, 77, 0.18);
}

.highlight-box h3 {
  margin: 0;
  font-size: 1.08rem;
}

.highlight-box p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.measure {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.measure .value {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.measure .label {
  color: var(--muted);
  line-height: 1.55;
}

.page-band {
  margin-top: 22px;
  padding: 22px;
}

.topics-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 18px;
}

.topic-list {
  display: grid;
  gap: 14px;
}

.topic-article {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.topic-article h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.topic-article p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.topic-article .meta-pill {
  margin-top: 12px;
}

.product-rows {
  display: grid;
  gap: 18px;
}

.product-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.product-row .image-top {
  aspect-ratio: 16 / 10;
}

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

.product-spec-item {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.product-spec-item h4 {
  margin: 0;
  font-size: 1rem;
}

.product-spec-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.company-layout {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 18px;
}

.company-panel {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
}

.company-panel h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
}

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

.company-panel .bullet-list {
  margin-top: 16px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.contact-panel {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
}

.contact-panel h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
}

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

.contact-panel .bullet-list {
  margin-top: 14px;
}

.form-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.is-ready .hero-copy,
.is-ready .page-copy-block,
.is-ready .section-head,
.is-ready .card,
.is-ready .panel,
.is-ready .measure,
.is-ready .product-card,
.is-ready .topic-article,
.is-ready .project-card,
.is-ready .company-panel,
.is-ready .contact-panel {
  animation: rise 720ms ease both;
}

.is-ready .hero-media,
.is-ready .page-media {
  animation: rise 820ms ease both;
}

.is-ready .grid-3 .card:nth-child(2),
.is-ready .grid-4 .card:nth-child(2) {
  animation-delay: 70ms;
}

.is-ready .grid-3 .card:nth-child(3),
.is-ready .grid-4 .card:nth-child(3) {
  animation-delay: 140ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero,
  .page-hero,
  .grid-wide,
  .split-banner,
  .topics-layout,
  .company-layout,
  .contact-layout,
  .product-row {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 920px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  body.nav-open .site-nav {
    display: grid;
    gap: 4px;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav a {
    padding: 10px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-title {
    font-size: 2.9rem;
  }

  .page-title {
    font-size: 2.45rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 700px) {
  .page,
  .site-header-inner,
  .hero,
  .page-hero,
  .section,
  .footer {
    width: min(1180px, calc(100% - 20px));
  }

  .site-header-inner {
    min-height: 72px;
  }

  .hero,
  .page-hero {
    padding-top: 24px;
    gap: 20px;
  }

  .hero-title {
    font-size: 2.45rem;
    max-width: 12ch;
  }

  .page-title {
    font-size: 2.15rem;
  }

  .hero-facts,
  .grid-2,
  .grid-3,
  .grid-4,
  .measure-grid,
  .product-spec-grid,
  .form-row,
  .footer-links {
    grid-template-columns: 1fr;
  }

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

  .card-body,
  .topic-body,
  .product-body,
  .project-body,
  .company-body,
  .contact-body,
  .band-dark .band-inner,
  .panel {
    padding: 16px;
  }
}

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

  .is-ready .hero-copy,
  .is-ready .page-copy-block,
  .is-ready .section-head,
  .is-ready .card,
  .is-ready .panel,
  .is-ready .measure,
  .is-ready .product-card,
  .is-ready .topic-article,
  .is-ready .project-card,
  .is-ready .company-panel,
  .is-ready .contact-panel,
  .is-ready .hero-media,
  .is-ready .page-media {
    animation: none;
  }
}

@media print {
  @page {
    size: A4;
    margin: 14mm;
  }

  body {
    background: #fff;
    color: #111;
  }

  body::before,
  .skip-link,
  .site-header,
  .footer,
  .nav-toggle,
  .header-cta,
  .section-link,
  .button,
  .band-actions,
  .site-nav {
    display: none !important;
  }

  .page,
  .hero,
  .page-hero,
  .section,
  .band {
    width: 100%;
    margin: 0;
    padding: 0 0 18px;
  }

  .hero,
  .page-hero {
    min-height: 0;
    grid-template-columns: 1fr 0.9fr;
  }

  .panel,
  .card,
  .topic-card,
  .project-card,
  .product-card,
  .company-panel,
  .contact-panel,
  .measure,
  .page-seal,
  .highlight-box,
  .band-dark {
    box-shadow: none;
  }

  .band-dark {
    background: #fff;
    color: #111;
    border: 1px solid var(--line);
  }

  .band-dark .band-copy,
  .band-dark .page-seal p {
    color: #444;
  }

  .frame-caption {
    background: rgba(17, 17, 17, 0.82);
  }
}
