:root {
  --ink: #172019;
  --muted: #5b675f;
  --paper: #f7f8f4;
  --panel: #ffffff;
  --hedge: #2f7d43;
  --hedge-dark: #165a2d;
  --leaf: #7fc857;
  --hardware: #27323a;
  --metal: #d8e0df;
  --signal: #37a4ff;
  --amber: #ffb84d;
  --line: #d7dfd5;
  --shadow: 8px 8px 0 #cbd8c9;
  --content: 1180px;
  --gutter: clamp(1rem, 4vw, 3rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(247, 248, 244, 0.96), rgba(247, 248, 244, 0.96)),
    url("../backgrounds/pixel-hedge-pattern.svg");
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img,
iframe {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 92px;
  padding: 0.6rem var(--gutter);
  background: rgba(247, 248, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand,
.site-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  flex: 0 1 auto;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  image-rendering: pixelated;
}

.brand-wide img {
  display: block;
  width: clamp(150px, 20vw, 230px);
  height: auto;
  image-rendering: pixelated;
}

.brand-header-art img {
  display: block;
  width: auto;
  height: clamp(64px, 7vw, 82px);
  max-width: min(72vw, 680px);
  object-fit: contain;
  object-position: left center;
  image-rendering: pixelated;
}

.asset-home .site-header {
  align-items: center;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 0;
  padding-block: 0.25rem;
}

.asset-home .brand-header-art {
  flex: 0 1 auto;
  min-width: 0;
}

.asset-home .brand-header-art img {
  width: clamp(230px, 34vw, 520px);
  height: auto;
  max-width: none;
  max-height: 108px;
}

.asset-home .site-nav {
  width: auto;
  flex: 1 1 620px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem clamp(0.75rem, 1.8vw, 1.2rem);
  white-space: normal;
}

.site-nav {
  flex: 1 1 auto;
  gap: clamp(0.75rem, 3vw, 2rem);
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100vh - 72px);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: #e7efe5;
  border-bottom: 1px solid var(--line);
}

.quick-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.55rem 0.7rem;
  background: var(--panel);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 3px 3px 0 #cbd8c9;
}

.quick-actions img {
  width: 24px;
  height: 24px;
  image-rendering: pixelated;
}

.hero-compact {
  grid-template-columns: minmax(300px, 0.88fr) minmax(340px, 1.12fr);
  min-height: auto;
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.hero-compact h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.hero-panel {
  transform: translateY(-0.5rem);
}

.hero-service-first {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 420px);
  min-height: auto;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.support-panel,
.action-dashboard,
.feature-row,
.support-rail,
.metric-strip,
.editorial-grid {
  display: grid;
  gap: 1rem;
}

.support-panel {
  padding: 1rem;
  background: var(--panel);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}

.support-panel a,
.action-dashboard a,
.support-rail a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 56px;
  padding: 0.8rem 1rem;
  background: #e7efe5;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.support-panel img,
.action-dashboard img,
.feature-row img,
.editorial-grid img {
  width: 34px;
  height: 34px;
  image-rendering: pixelated;
}

.section-tight {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.compact-cards .service-card {
  min-height: 0;
}

.hero-showcase {
  grid-template-columns: minmax(340px, 1.12fr) minmax(280px, 0.88fr);
  min-height: auto;
  padding-top: clamp(2rem, 5vw, 4rem);
}

.hero-showcase h1 {
  max-width: 12ch;
}

.metric-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: var(--hardware);
  color: var(--paper);
}

.metric-strip div {
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: var(--leaf);
  font-size: 1.4rem;
}

.feature-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-row article,
.editorial-grid article {
  padding: 1.25rem;
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 #d4ded0;
}

.portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(rgba(247, 248, 244, 0.9), rgba(247, 248, 244, 0.9)),
    url("../backgrounds/stone-tile-pattern.svg");
}

.portal-hero h1,
.stack-copy h1,
.editorial-hero h1 {
  max-width: 12ch;
}

.action-dashboard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1rem;
  background: var(--panel);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}

.banner-image,
.editorial-media {
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
}

.banner-image img,
.editorial-media img {
  display: block;
  width: 100%;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  image-rendering: pixelated;
}

.stack-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem) 1rem;
}

.support-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1rem clamp(1rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
}

.editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
}

.editorial-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.2rem;
}

.editorial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--hedge-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button-primary {
  background: var(--leaf);
}

.button-secondary {
  background: var(--panel);
}

.pixel-scene {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  border: 3px solid var(--ink);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
  image-rendering: pixelated;
}

.pixel-scene picture,
.pixel-scene img {
  display: block;
  width: 100%;
  height: 100%;
}

.pixel-scene img {
  object-fit: cover;
  image-rendering: pixelated;
}

.asset-home {
  background:
    linear-gradient(rgba(248, 247, 237, 0.94), rgba(248, 247, 237, 0.94)),
    url("../backgrounds/pixel-grid.svg");
}

.asset-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(380px, 1.12fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--content);
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
}

.asset-hero-copy p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.12rem;
}

.asset-hero-image {
  aspect-ratio: 16 / 9;
}

.asset-action-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 0.75rem;
  padding: 0.85rem var(--gutter);
  background:
    linear-gradient(rgba(15, 48, 47, 0.94), rgba(15, 48, 47, 0.94)),
    url("../decor/hedge-border.svg");
}

.asset-action-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem;
  background: var(--panel);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--leaf);
}

.asset-section {
  background:
    linear-gradient(rgba(247, 248, 244, 0.92), rgba(247, 248, 244, 0.92)),
    url("../backgrounds/stone-tile-pattern.svg");
}

.asset-service-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: 1rem;
  align-items: stretch;
}

.asset-service-feature,
.asset-service-list article,
.blog-preview-grid article {
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 #d4ded0;
}

.asset-service-feature {
  display: grid;
  grid-template-rows: auto 1fr;
}

.asset-service-feature > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
  image-rendering: pixelated;
}

.asset-service-feature > div,
.asset-service-list article,
.blog-preview-grid article {
  padding: 1.15rem;
}

.asset-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.asset-service-list img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  image-rendering: pixelated;
}

.asset-service-list .service-card-art {
  display: block;
  width: 104px;
  height: 78px;
  margin-bottom: 0.85rem;
  object-fit: contain;
  object-position: left center;
}

.m365-card {
  min-height: 190px;
}

.m365-logo-strip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 78px;
  margin-bottom: 0.85rem;
}

.m365-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 2px 2px 0 rgba(23, 32, 25, 0.22);
}

.m365-outlook {
  background: linear-gradient(135deg, #0a6ed1 0 54%, #144da4 54% 100%);
  border-radius: 3px;
}

.m365-outlook::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 3px;
  width: 20px;
  height: 22px;
  background: #0f8bdc;
  transform: skewY(-20deg);
  z-index: -1;
}

.m365-onedrive {
  width: 42px;
  flex-basis: 42px;
  background: transparent;
  box-shadow: none;
}

.m365-onedrive::before,
.m365-onedrive::after {
  content: "";
  position: absolute;
  background: #1487d4;
}

.m365-onedrive::before {
  left: 3px;
  bottom: 7px;
  width: 36px;
  height: 18px;
  border-radius: 20px 20px 10px 10px;
}

.m365-onedrive::after {
  left: 11px;
  bottom: 16px;
  width: 22px;
  height: 16px;
  border-radius: 18px 18px 8px 8px;
  background: #1aa0ee;
}

.m365-sharepoint {
  background: #008272;
  border-radius: 4px;
}

.m365-sharepoint::after {
  content: "";
  position: absolute;
  right: -10px;
  width: 24px;
  height: 24px;
  background: #33b2a7;
  border-radius: 50%;
  z-index: -1;
}

.m365-teams {
  background: #635bcb;
  border-radius: 4px;
}

.m365-teams::before,
.m365-teams::after {
  content: "";
  position: absolute;
  background: #7f85f5;
  border-radius: 50%;
  z-index: -1;
}

.m365-teams::before {
  right: -6px;
  top: 3px;
  width: 11px;
  height: 11px;
}

.m365-teams::after {
  right: -10px;
  bottom: 5px;
  width: 18px;
  height: 20px;
  border-radius: 9px 9px 5px 5px;
}

.asset-service-list p,
.asset-service-feature p,
.asset-feature-band p,
.blog-preview-grid p {
  color: var(--muted);
}

.service-mark {
  position: relative;
  width: 52px;
  height: 42px;
  margin-bottom: 0.95rem;
}

.shrub-mark::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--hedge-dark);
  box-shadow:
    8px -8px 0 var(--hedge),
    16px -8px 0 var(--leaf),
    24px -8px 0 var(--hedge),
    32px -8px 0 var(--hedge-dark),
    40px 0 0 var(--hedge),
    0 8px 0 var(--hedge),
    8px 8px 0 var(--leaf),
    16px 8px 0 var(--hedge),
    24px 8px 0 var(--hedge-dark),
    32px 8px 0 var(--leaf),
    40px 8px 0 var(--hedge-dark),
    8px 16px 0 var(--hedge-dark),
    16px 16px 0 var(--hedge),
    24px 16px 0 var(--leaf),
    32px 16px 0 var(--hedge),
    16px 24px 0 #8b6f3f,
    24px 24px 0 #8b6f3f;
  image-rendering: pixelated;
}

.shrub-mark::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 4px;
  background: var(--ink);
  box-shadow: 4px 4px 0 #cbd8c9;
}

.shrub-backup::before {
  box-shadow:
    8px -8px 0 var(--leaf),
    16px -8px 0 var(--hedge),
    24px -8px 0 var(--leaf),
    32px -8px 0 var(--hedge),
    0 0 0 var(--hedge-dark),
    8px 0 0 var(--hedge),
    16px 0 0 var(--leaf),
    24px 0 0 var(--hedge-dark),
    32px 0 0 var(--leaf),
    40px 0 0 var(--hedge),
    0 8px 0 var(--hedge),
    8px 8px 0 var(--leaf),
    16px 8px 0 var(--hedge),
    24px 8px 0 var(--leaf),
    32px 8px 0 var(--hedge-dark),
    40px 8px 0 var(--hedge),
    16px 16px 0 var(--hedge-dark),
    24px 16px 0 var(--hedge),
    16px 24px 0 #8b6f3f,
    24px 24px 0 #8b6f3f;
}

.shrub-security::before {
  box-shadow:
    16px -16px 0 var(--leaf),
    8px -8px 0 var(--hedge),
    16px -8px 0 var(--hedge-dark),
    24px -8px 0 var(--hedge),
    0 0 0 var(--leaf),
    8px 0 0 var(--hedge-dark),
    16px 0 0 var(--leaf),
    24px 0 0 var(--hedge-dark),
    32px 0 0 var(--leaf),
    40px 0 0 var(--hedge),
    0 8px 0 var(--hedge-dark),
    8px 8px 0 var(--leaf),
    16px 8px 0 var(--hedge),
    24px 8px 0 var(--leaf),
    32px 8px 0 var(--hedge),
    40px 8px 0 var(--hedge-dark),
    8px 16px 0 var(--hedge),
    16px 16px 0 var(--hedge-dark),
    24px 16px 0 var(--hedge),
    32px 16px 0 var(--leaf),
    16px 24px 0 #8b6f3f,
    24px 24px 0 #8b6f3f;
}

.shrub-infrastructure::before {
  box-shadow:
    8px -8px 0 var(--hedge-dark),
    24px -8px 0 var(--leaf),
    32px -8px 0 var(--hedge),
    0 0 0 var(--hedge),
    8px 0 0 var(--leaf),
    16px 0 0 var(--hedge-dark),
    24px 0 0 var(--hedge),
    32px 0 0 var(--leaf),
    40px 0 0 var(--hedge-dark),
    0 8px 0 var(--leaf),
    8px 8px 0 var(--hedge),
    16px 8px 0 var(--leaf),
    24px 8px 0 var(--hedge-dark),
    32px 8px 0 var(--hedge),
    40px 8px 0 var(--leaf),
    8px 16px 0 var(--hedge-dark),
    16px 16px 0 var(--hedge),
    24px 16px 0 var(--leaf),
    32px 16px 0 var(--hedge),
    16px 24px 0 #8b6f3f,
    24px 24px 0 #8b6f3f;
}

.shrub-helpdesk::before {
  box-shadow:
    16px -8px 0 var(--hedge),
    24px -8px 0 var(--hedge-dark),
    0 0 0 var(--hedge-dark),
    8px 0 0 var(--leaf),
    16px 0 0 var(--hedge),
    24px 0 0 var(--leaf),
    32px 0 0 var(--hedge),
    40px 0 0 var(--hedge-dark),
    0 8px 0 var(--hedge),
    8px 8px 0 var(--hedge-dark),
    16px 8px 0 var(--leaf),
    24px 8px 0 var(--hedge),
    32px 8px 0 var(--leaf),
    40px 8px 0 var(--hedge),
    8px 16px 0 var(--leaf),
    16px 16px 0 var(--hedge),
    24px 16px 0 var(--hedge-dark),
    32px 16px 0 var(--leaf),
    16px 24px 0 #8b6f3f,
    24px 24px 0 #8b6f3f;
}

.asset-feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--content);
  margin-inline: auto;
}

.asset-feature-band > img {
  display: block;
  width: 100%;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  image-rendering: pixelated;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-preview-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
  border: 2px solid var(--ink);
  object-fit: cover;
  image-rendering: pixelated;
}

.asset-contact {
  background:
    linear-gradient(90deg, rgba(7, 63, 55, 0.95), rgba(12, 97, 79, 0.92)),
    url("../decor/hedge-border.svg");
}

.check-in-section {
  background:
    linear-gradient(rgba(231, 239, 229, 0.92), rgba(231, 239, 229, 0.92)),
    url("../backgrounds/pixel-hedge-pattern.svg");
  border-top: 1px solid var(--line);
}

.check-in-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.check-in-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 1.4rem;
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.check-in-card > p {
  flex: 1 1 auto;
  color: var(--muted);
}

.check-in-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--hedge-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.check-in-card .button {
  margin-top: 0.8rem;
}

.bookings-section {
  background:
    linear-gradient(rgba(247, 248, 244, 0.95), rgba(247, 248, 244, 0.95)),
    url("../backgrounds/stone-tile-pattern.svg");
  border-top: 1px solid var(--line);
}

.bookings-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.booking-card p {
  max-width: 58ch;
  color: var(--muted);
}

.booking-card .button {
  flex: 0 0 auto;
}

.booking-page {
  min-height: calc(100vh - 92px);
  background:
    linear-gradient(rgba(247, 248, 244, 0.95), rgba(247, 248, 244, 0.95)),
    url("../backgrounds/stone-tile-pattern.svg");
}

.booking-page-heading {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2rem;
  text-align: center;
}

.booking-title {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.booking-page-stack {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  width: min(100%, 680px);
  margin-inline: auto;
}

.booking-widget-frame {
  width: 100%;
  min-height: 920px;
  margin: 0 auto;
  padding: 0;
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  overflow-x: visible;
  overflow-y: visible;
}

.booking-widget-frame iframe {
  display: block;
  width: 100% !important;
  min-width: 520px;
  min-height: 920px;
  height: 920px !important;
  border: 0;
}

.booking-ticket-card {
  width: 100%;
  min-height: auto;
}

.ticket-lookup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: end;
  width: 100%;
  margin-top: 1rem;
}

.ticket-lookup-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--hardware);
  font-size: 0.88rem;
  font-weight: 900;
}

.ticket-lookup-form input {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.7rem;
  border: 2px solid var(--ink);
  background: #fbfcf8;
  color: var(--ink);
  font: inherit;
}

.ticket-lookup-form input:focus {
  outline: 3px solid rgba(127, 200, 87, 0.45);
  outline-offset: 2px;
}

.ticket-lookup-form .button {
  min-width: 118px;
  cursor: pointer;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section > .section-heading,
.section > .asset-service-layout,
.section > .blog-preview-grid,
.section > .check-in-grid,
.section > .booking-card {
  max-width: var(--content);
  margin-inline: auto;
}

.section > .section-heading {
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 220px;
  padding: 1.25rem;
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 #d4ded0;
}

.service-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
  border: 2px solid var(--ink);
  object-fit: cover;
  image-rendering: pixelated;
}

.service-card p {
  color: var(--muted);
}

.pixel-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 1.25rem;
  background: var(--hedge);
  border: 3px solid var(--ink);
  box-shadow: 8px 0 0 var(--leaf), 0 8px 0 var(--hedge-dark);
}

.rack {
  background: var(--hardware);
  box-shadow: inset 0 10px 0 var(--signal), inset 0 22px 0 var(--metal);
}

.help {
  background: var(--amber);
  box-shadow: inset 14px 0 0 var(--panel), inset 0 -12px 0 var(--hardware);
}

.backup {
  border-radius: 50%;
  background: var(--signal);
  box-shadow: inset 10px 0 0 var(--metal), 8px 8px 0 var(--hedge-dark);
}

.cloud {
  background: var(--signal);
  box-shadow: inset 10px 10px 0 var(--metal), 8px 8px 0 var(--hedge-dark);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  background: #e7efe5;
  border-block: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 1rem;
}

.steps div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.58);
  border-left: 6px solid var(--hedge);
}

.steps span {
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(23, 32, 25, 0.92), rgba(22, 90, 45, 0.9)),
    repeating-linear-gradient(45deg, #2f7d43 0 16px, #7fc857 16px 32px);
}

.contact-band div {
  max-width: 680px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.contact-band .eyebrow,
.contact-band p {
  color: #e6f4e6;
}

.simple-page {
  min-height: calc(100vh - 72px);
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(rgba(247, 248, 244, 0.94), rgba(247, 248, 244, 0.94)),
    url("../backgrounds/stone-tile-pattern.svg");
}

.simple-page p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.site-footer {
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .asset-home .site-header {
    justify-content: center;
    padding-block: 0.55rem;
  }

  .asset-home .brand-header-art {
    flex-basis: 100%;
    justify-content: center;
  }

  .asset-home .brand-header-art img {
    width: min(82vw, 460px);
  }

  .asset-home .site-nav {
    flex-basis: 100%;
    justify-content: center;
    gap: 0.35rem 0.8rem;
    font-size: 0.9rem;
  }

  .hero,
  .split-section,
  .asset-hero,
  .asset-service-layout,
  .asset-feature-band,
  .hero-service-first,
  .hero-showcase,
  .portal-hero,
  .stack-hero,
  .editorial-hero {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-compact {
    min-height: auto;
  }

  .quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-strip,
  .feature-row,
  .support-rail,
  .editorial-grid,
  .blog-preview-grid,
  .check-in-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asset-action-strip {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-band {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header,
  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 0.25rem 0.65rem;
    font-size: 0.84rem;
    line-height: 1.2;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .metric-strip,
  .feature-row,
  .support-rail,
  .editorial-grid,
  .asset-service-list,
  .blog-preview-grid,
  .check-in-grid,
  .action-dashboard {
    grid-template-columns: 1fr;
  }

  .asset-action-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .asset-action-strip a {
    min-height: 42px;
    padding: 0.55rem;
    font-size: 0.85rem;
  }

  .hero-actions .button,
  .check-in-card .button,
  .contact-actions .button {
    width: 100%;
  }

  .check-in-card {
    padding: 1rem;
  }

  .booking-card {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-card .button {
    width: 100%;
  }

  .ticket-lookup-form {
    grid-template-columns: 1fr;
  }

  .ticket-lookup-form .button {
    width: 100%;
  }

  .booking-widget-frame {
    min-height: 900px;
    overflow-x: auto;
  }

  .booking-widget-frame iframe {
    min-width: 520px;
    min-height: 900px;
    height: 900px !important;
  }


  .hero-compact {
    padding-top: 1.25rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .pixel-scene {
    aspect-ratio: 16 / 9;
  }

  .steps div {
    grid-template-columns: 48px 1fr;
  }
}
