:root {
  --hos-bg: #f7f4ef;
  --hos-bg-2: #f2eee7;
  --hos-bg-3: #fbfaf7;
  --hos-surface: rgba(255,255,255,0.78);
  --hos-surface-strong: rgba(255,255,255,0.92);
  --hos-text: #12161d;
  --hos-muted: #5f6673;
  --hos-accent: #fcb927;
  --hos-accent-soft: rgba(252,185,39,0.18);
  --hos-accent-mid: rgba(252,185,39,0.3);
  --hos-line: rgba(18,22,29,0.08);
  --hos-line-strong: rgba(18,22,29,0.14);
  --hos-shadow: 0 18px 60px rgba(18,22,29,0.08), 0 4px 16px rgba(18,22,29,0.04);
  --hos-radius: 28px;
  --hos-radius-sm: 18px;
  --hos-max: 1240px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--hos-text);
  background:
    radial-gradient(circle at top left, rgba(252,185,39,0.13), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(252,185,39,0.08), transparent 20%),
    linear-gradient(180deg, var(--hos-bg-3) 0%, var(--hos-bg) 46%, var(--hos-bg-2) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.hos-nav-open {
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.hos-container {
  width: min(calc(100% - 32px), var(--hos-max));
  margin: 0 auto;
  min-width: 0;
}

.hos-site-shell {
  position: relative;
  overflow: clip;
  padding-left: 0;
  padding-right: 0;
}

.hos-site-shell::before,
.hos-site-shell::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.hos-site-shell::before {
  width: 280px;
  height: 280px;
  top: 110px;
  right: -80px;
  background: rgba(252,185,39,0.08);
}

.hos-site-shell::after {
  width: 320px;
  height: 320px;
  left: -140px;
  bottom: 120px;
  background: rgba(255,255,255,0.55);
}

.hos-header,
.hos-main,
.hos-footer {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hos-main {
  overflow-x: clip;
}

.hos-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(247,244,239,0.65);
  border-bottom: 1px solid rgba(18,22,29,0.06);
}

.hos-header__inner {
  display: grid;
  grid-template-columns: minmax(320px, auto) 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 86px;
}

.hos-branding {
  min-width: 0;
}

.hos-logo,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
}

.hos-logo--fallback {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 10px;
  line-height: 1;
}

.hos-logo__mark {
  font-size: clamp(1.8rem, 2.4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hos-logo__text {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  white-space: nowrap;
  transform: translateY(-3px);
}

.custom-logo {
  max-height: 64px;
  width: auto;
}

.hos-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.hos-menu a {
  color: var(--hos-text);
  transition: color 180ms ease, opacity 180ms ease;
}

.hos-menu--header {
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hos-menu--header a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.hos-menu--header a::after,
.hos-menu--footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: rgba(252,185,39,0.86);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.hos-menu--header a:hover::after,
.hos-menu--header a:focus-visible::after,
.hos-menu--footer a:hover::after,
.hos-menu--footer a:focus-visible::after {
  transform: scaleX(1);
}

.hos-menu--header a:hover,
.hos-menu--header a:focus-visible,
.hos-menu--footer a:hover,
.hos-menu--footer a:focus-visible {
  opacity: 1;
}

.hos-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(252,185,39,0.46);
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.68));
  color: var(--hos-text);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6), 0 12px 36px rgba(18,22,29,0.08), 0 0 0 4px rgba(252,185,39,0.08);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hos-button::after {
  content: "→";
  font-size: 1rem;
}

.hos-button:hover {
  transform: translateY(-1px);
  border-color: rgba(252,185,39,0.62);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,249,234,0.9));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), 0 18px 42px rgba(18,22,29,0.11), 0 0 0 5px rgba(252,185,39,0.12);
}

.hos-text-link {
  font-weight: 600;
  color: var(--hos-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(252,185,39,0.7);
  text-underline-offset: 4px;
}

.hos-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(252,185,39,0.34);
  background: rgba(255,255,255,0.74);
  padding: 0;
  cursor: pointer;
  justify-self: end;
  box-shadow: 0 10px 26px rgba(18,22,29,0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.hos-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--hos-text);
  margin: 0;
  border-radius: 999px;
}

.hos-mobile-nav {
  display: block;
  padding: 12px 0 22px;
  border-top: 1px solid var(--hos-line);
  background: rgba(247,244,239,0.95);
}

.hos-mobile-nav[hidden] {
  display: none !important;
}

.hos-menu--mobile {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: clamp(20px, 3vw, 32px);
}

.hos-menu--mobile li {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hos-menu--mobile a {
  width: min(100%, 260px);
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  box-shadow: inset 0 0 0 1px rgba(252,185,39,0.28);
  font-weight: 600;
  text-align: center;
}

.hos-button--mobile {
  width: min(100%, 360px);
  display: flex;
  justify-content: center;
  margin: 18px auto 0;
}

.hos-section,
.hos-hero {
  padding: clamp(52px, 10vw, 90px) 0;
}

.hos-license-notice-section {
  position: relative;
  z-index: 3;
  padding: 24px 0;
  background: linear-gradient(180deg, rgba(255,248,239,0.96), rgba(247,244,239,0.98));
}

.hos-license-notice {
  max-width: 1120px;
  margin: 0 auto;
  padding: 17px 22px;
  border: 1px solid rgba(232,96,39,0.38);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,244,235,0.86));
  color: #151515;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(167,70,28,0.18), 0 2px 10px rgba(18,22,29,0.06);
}

.hos-license-notice .hos-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #c5481f;
}

.hos-license-notice p {
  margin: 0;
  max-width: 980px;
  font-size: 0.96rem;
  line-height: 1.55;
  color: #48515f;
}

.hos-section--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
}

.hos-glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.72));
  border: 1px solid rgba(18,22,29,0.08);
  box-shadow: var(--hos-shadow);
  backdrop-filter: blur(22px);
  border-radius: var(--hos-radius);
}

.hos-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--hos-muted);
  text-transform: uppercase;
}

.hos-kicker::before {
  content: "";
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, rgba(252,185,39,0.95), rgba(252,185,39,0.16));
}

h1, h2, h3 {
  margin: 0 0 14px;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

h1 { font-size: clamp(3.1rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 16px; color: var(--hos-muted); font-size: 1.03rem; line-height: 1.65; }

.hos-hero--wide {
  padding-top: 0;
  padding-bottom: 0;
}

.hos-hero--fullbleed {
  overflow: clip;
}

.hos-hero--fullbleed .hos-hero__stage {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  height: auto;
  width: 100%;
  margin-left: 0;
  padding: 0;
  border-top: 1px solid rgba(18,22,29,0.04);
  border-bottom: 1px solid rgba(18,22,29,0.06);
}

.hos-hero__backdrop {
  min-height: 780px;
  width: 100%;
  border-radius: 0;
}

.hos-panel-image {
  height: 100%;
  min-height: 780px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hos-panel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02) 42%, rgba(252,185,39,0.05));
}

.hos-panel-image--hero {
  background-image:
    linear-gradient(118deg, rgba(247,244,239,0.12), rgba(247,244,239,0.04)),
    linear-gradient(135deg, #f1ece2 0%, #ded2bf 48%, #b8aa94 100%);
  background-position: center center;
}

.hos-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  padding: 0;
  background: transparent;
}

.hos-hero__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(251,250,247,0.97) 0%,
    rgba(251,250,247,0.95) 18%,
    rgba(251,250,247,0.88) 34%,
    rgba(251,250,247,0.68) 48%,
    rgba(251,250,247,0.38) 62%,
    rgba(251,250,247,0.14) 74%,
    rgba(251,250,247,0.00) 86%
  );
}

.hos-hero__copy--wide {
  position: relative;
  z-index: 1;
  width: min(62rem, 68vw);
  max-width: 62rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding:
    clamp(76px, 7vw, 104px)
    clamp(32px, 4vw, 60px)
    clamp(60px, 6vw, 84px)
    max(28px, calc((100vw - var(--hos-max)) / 2 + 28px));
  background: transparent;
}

.hos-hero__copy--wide h1 {
  max-width: 11.2ch;
  font-size: clamp(3rem, 4.5vw, 5rem);
  line-height: 0.92;
}

.hos-hero__lead {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  color: var(--hos-text);
  max-width: 26ch;
}

.hos-hero__copy--wide p:not(.hos-hero__lead) {
  max-width: 38ch;
}

.hos-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
}

.hos-panel-image--office {
  background-image:
    linear-gradient(145deg, rgba(255,255,255,0.18), rgba(18,22,29,0.12)),
    linear-gradient(135deg, #e9e3d7 0%, #c9bda9 54%, #8e8272 100%);
}

.hos-panel-image--media {
  background-image:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(18,22,29,0.14)),
    linear-gradient(135deg, #ddd6c8 0%, #a99c89 52%, #4a4d50 100%);
}

.hos-panel-image--pantry {
  background-image:
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(18,22,29,0.10)),
    linear-gradient(135deg, #f2ede3 0%, #d4c2a4 48%, #927d5d 100%);
}

.hos-panel-image--render {
  background-image:
    linear-gradient(145deg, rgba(255,255,255,0.18), rgba(18,22,29,0.12)),
    linear-gradient(135deg, #f7f4ef 0%, #d9cdbb 45%, #7d8a86 100%);
}

.hos-panel-image--wall {
  background-image:
    linear-gradient(145deg, rgba(255,255,255,0.18), rgba(18,22,29,0.12)),
    linear-gradient(135deg, #e6e0d5 0%, #bab0a2 50%, #6c5f53 100%);
}

.hos-section__heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.hos-card-grid {
  display: grid;
  gap: 20px;
}

.hos-card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hos-card { overflow: hidden; }
.hos-card__media { min-height: 260px; }
.hos-card__body { padding: 24px; }
.hos-card__body p { margin-bottom: 0; }

.hos-showcase {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.hos-showcase__copy {
  padding-right: 8px;
  max-width: 38rem;
  min-width: 0;
}

.hos-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.hos-showcase__panel {
  padding: 14px 14px 24px;
  display: flex;
  flex-direction: column;
}

.hos-showcase__panel .hos-panel-image {
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
}

.hos-showcase__panel h3 {
  padding: 0 8px;
  margin-bottom: 8px;
}

.hos-showcase__panel p {
  padding: 0 8px;
  margin-bottom: 0;
}

.hos-process {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  min-width: 0;
}

.hos-process__left,
.hos-process__right,
.hos-content-shell,
.hos-not-found {
  padding: clamp(26px, 4vw, 42px);
  min-width: 0;
}

.hos-checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

.hos-checklist li {
  position: relative;
  padding-left: 34px;
  font-size: 1.02rem;
  color: var(--hos-text);
}

.hos-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(252,185,39,0.22);
  color: var(--hos-text);
  font-size: 0.78rem;
  font-weight: 700;
}

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

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

.hos-form label {
  display: grid;
  gap: 8px;
  color: var(--hos-text);
  font-weight: 600;
  font-size: 0.95rem;
}

.hos-form input,
.hos-form textarea {
  width: 100%;
  border: 1px solid rgba(18,22,29,0.1);
  background: rgba(255,255,255,0.76);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--hos-text);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

.hos-form input:focus,
.hos-form textarea:focus {
  outline: 2px solid rgba(252,185,39,0.34);
  outline-offset: 1px;
}

.hos-form__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  color: var(--hos-muted);
}

.hos-form__checks > span {
  width: 100%;
  color: var(--hos-text);
  font-weight: 600;
}

.hos-form__checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

.hos-form__checks input { width: 16px; height: 16px; }
.hos-form__note { font-size: 0.9rem; margin-bottom: 0; }

.hos-form-fallback {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(252,185,39,0.34);
  border-radius: 16px;
  background: rgba(252,185,39,0.12);
  color: var(--hos-text);
}

.hos-page-header { margin-bottom: 26px; }
.hos-entry-content > *:last-child { margin-bottom: 0; }
.hos-post-list { display: grid; gap: 18px; }
.hos-post-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--hos-line);
}

.hos-not-found { text-align: center; }
.hos-not-found .hos-button { margin-top: 8px; }

.hos-footer {
  padding-top: 34px;
  padding-bottom: 42px;
}

.hos-footer__inner {
  width: min(calc(100% - 80px), var(--hos-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) minmax(160px, 0.7fr) minmax(160px, 0.7fr) minmax(170px, 0.8fr);
  gap: 40px;
  align-items: start;
}

.hos-footer__brand {
  display: grid;
  gap: 12px;
  max-width: 440px;
}

.hos-footer__copy {
  font-size: 0.92rem;
  line-height: 1.62;
  margin-bottom: 0;
  max-width: 31ch;
}

.hos-footer__location {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}

.hos-footer__column {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hos-footer__column--connect {
  justify-self: end;
}

.hos-footer__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hos-muted);
}

.hos-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.hos-footer__list a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  font-weight: 600;
  line-height: 1.2;
}

.hos-footer__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: rgba(252,185,39,0.86);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.hos-footer__list a:hover::after,
.hos-footer__list a:focus-visible::after {
  transform: scaleX(1);
}

.hos-footer__social {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.hos-social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(18,22,29,0.08);
  background: rgba(255,255,255,0.46);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hos-text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hos-social-link:hover,
.hos-social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(252,185,39,0.48);
  background: rgba(255,255,255,0.7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65), 0 10px 24px rgba(18,22,29,0.06);
}

.hos-social-link svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hos-social-link[aria-label="LinkedIn"] svg {
  fill: currentColor;
  stroke: none;
}

.hos-footer__legal {
  width: min(calc(100% - 80px), var(--hos-max));
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(18,22,29,0.08);
  text-align: center;
}

.hos-footer__legal p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--hos-muted);
}

.hos-section--legal {
  padding-top: clamp(44px, 6vw, 72px);
}

.hos-legal-shell {
  width: min(calc(100% - 32px), 1180px);
  max-width: 1040px;
  padding: clamp(30px, 4vw, 54px);
}

.hos-page-header--legal {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(18,22,29,0.08);
  margin-bottom: 26px;
}

.hos-page-header--legal p {
  max-width: 60ch;
  margin: 0;
  color: var(--hos-muted);
  font-size: 1rem;
}

.hos-policy {
  max-width: 860px;
  margin: 0 auto;
}

.hos-policy__section + .hos-policy__section {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(18,22,29,0.06);
}

.hos-policy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 0 0 14px;
}

.hos-policy p,
.hos-entry-content--legal p,
.hos-entry-content--legal li {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--hos-muted);
  margin: 0 0 16px;
}

.hos-entry-content--legal a,
.hos-policy a {
  color: var(--hos-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(252,185,39,0.75);
  text-underline-offset: 3px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .hos-header__inner {
    grid-template-columns: minmax(220px, 1fr) auto;
  }

  .hos-header__nav,
  .hos-button--nav {
    display: none;
  }

  .hos-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .hos-showcase,
  .hos-process,
  .hos-footer__inner {
    grid-template-columns: 1fr;
  }

  .hos-showcase__copy { padding-right: 0; }

  .hos-hero--fullbleed .hos-hero__stage,
  .hos-hero__backdrop {
    min-height: 660px;
  }

  .hos-hero__copy--wide {
    width: min(48rem, 62vw);
    padding-right: clamp(24px, 4vw, 42px);
  }

  .hos-hero__copy--wide h1 {
    max-width: 9.8ch;
    font-size: clamp(3rem, 6vw, 5rem);
  }

  .hos-hero__overlay::before {
    background: linear-gradient(
      90deg,
      rgba(251,250,247,0.97) 0%,
      rgba(251,250,247,0.94) 22%,
      rgba(251,250,247,0.84) 40%,
      rgba(251,250,247,0.54) 58%,
      rgba(251,250,247,0.18) 74%,
      rgba(251,250,247,0.00) 88%
    );
  }

  
}

@media (max-width: 900px) {
  .hos-footer__inner {
    width: min(calc(100% - 40px), var(--hos-max));
    gap: 24px;
  }

  .hos-footer__brand,
  .hos-footer__nav,
  .hos-footer__connect {
    max-width: none;
  }

  .hos-footer__legal {
    width: min(calc(100% - 40px), var(--hos-max));
    margin-top: 22px;
    padding-top: 18px;
  }

  .hos-policy__section + .hos-policy__section {
    margin-top: 28px;
    padding-top: 24px;
  }
}

@media (max-width: 820px) {
  .hos-card-grid--three,
  .hos-showcase__grid,
  .hos-form__grid {
    grid-template-columns: 1fr;
  }

  .hos-showcase {
    gap: 28px;
  }

  .hos-showcase__panel {
    padding: 14px 14px 28px;
  }

  .hos-showcase__panel .hos-panel-image {
    min-height: 260px;
    aspect-ratio: 4 / 3;
    margin-bottom: 16px;
  }

  .hos-showcase__panel h3,
  .hos-showcase__panel p {
    padding: 0 8px;
  }

  .hos-showcase__panel p {
    margin-bottom: 0;
    padding-bottom: 6px;
  }

  .hos-process {
    gap: 28px;
  }

  .hos-hero--wide {
    padding-bottom: 0;
  }

  .hos-hero--fullbleed .hos-hero__stage {
    min-height: auto;
  }

  .hos-hero__backdrop {
    min-height: 420px;
  }

  .hos-hero__overlay {
    position: relative;
    inset: auto;
    display: block;
    margin: -44px 20px 0;
    padding: 0;
    background: transparent;
  }

  .hos-hero__overlay::before {
    display: none;
  }

  .hos-hero__copy--wide {
    width: 100%;
    max-width: none;
    min-height: auto;
    padding: 24px;
    margin-bottom: 28px;
    border: 1px solid rgba(18,22,29,0.06);
    border-radius: 28px;
    box-shadow: var(--hos-shadow);
    background: linear-gradient(180deg, rgba(251,250,247,0.97), rgba(251,250,247,0.92));
  }

  .hos-hero__copy--wide h1,
  .hos-hero__lead,
  .hos-hero__copy--wide p:not(.hos-hero__lead) {
    max-width: none;
  }

  h1 { font-size: clamp(2.6rem, 9vw, 3.9rem); }
  h2 { font-size: clamp(2rem, 7vw, 3rem); }
}

@media (max-width: 560px) {
  .hos-container {
    width: min(calc(100% - 20px), var(--hos-max));
  }

  .hos-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 76px;
  }

  .hos-logo__mark { font-size: 2rem; }
  .hos-logo__text { font-size: 0.6rem; letter-spacing: 0.17em; }
  .custom-logo { max-height: 54px; }

  .hos-hero__copy--wide,
  .hos-process__left,
  .hos-process__right,
  .hos-content-shell,
  .hos-not-found,
  .hos-legal-shell {
    padding: 22px;
  }

  .hos-button--nav {
    display: none;
  }

  .hos-button {
    width: 100%;
  }

  .hos-hero__actions {
    align-items: stretch;
  }

  .hos-footer__inner {
    gap: 20px;
  }

  .hos-menu--footer {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hos-footer__brand,
  .hos-footer__nav,
  .hos-footer__connect {
    justify-self: center;
    text-align: center;
  }

  .hos-menu--footer {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 14px;
  }

  .hos-footer__social {
    justify-items: center;
    gap: 12px;
  }

  .hos-footer__copy {
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hos-policy p,
  .hos-entry-content--legal p,
  .hos-entry-content--legal li {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hos-social-link {
    min-height: 40px;
    padding: 0 12px;
  }

  .hos-social-link span {
    font-size: 0.88rem;
  }
}

@media (max-width: 720px) {
  .hos-license-notice-section {
    padding: 16px 0;
  }

  .hos-license-notice {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .hos-license-notice p {
    font-size: 0.9rem;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

#services,
#portfolio,
#process,
#start {
  scroll-margin-top: 110px;
}

@media (max-width: 1120px) {
  html {
    scroll-padding-top: 92px;
  }

  #services,
  #portfolio,
  #process,
  #start {
    scroll-margin-top: 84px;
  }
}

html {
  scroll-behavior: smooth;
}

#services,
#portfolio,
#process,
#start {
  scroll-margin-top: 24px;
}

@media (max-width: 1120px) {
  #services,
  #portfolio,
  #process,
  #start {
    scroll-margin-top: 18px;
  }
}

html {
  scroll-behavior: smooth;
}

#services,
#portfolio,
#process,
#start {
  scroll-margin-top: 24px;
}

@media (max-width: 1120px) {
  #services,
  #portfolio,
  #process,
  #start {
    scroll-margin-top: 18px;
  }
}

@media (min-width: 1121px) {
  .hos-hero--wide {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hos-hero--fullbleed .hos-hero__stage {
    height: 780px;
    min-height: 780px;
    max-height: 780px;
  }

  .hos-hero__backdrop,
  .hos-panel-image--hero {
    height: 780px;
    min-height: 780px;
    max-height: 780px;
  }

  .hos-hero__copy--wide {
    width: 800px;
    max-width: 800px;
    min-height: 780px;
    padding:
      76px
      48px
      56px
      max(32px, calc((100vw - var(--hos-max)) / 2 + 40px));
    justify-content: flex-start;
    background: transparent;
  }

  .hos-hero__copy--wide h1 {
    font-size: 4.4rem;
    line-height: 0.92;
    max-width: 10.6ch;
    margin-bottom: 16px;
  }

  .hos-hero__lead {
    font-size: 1.06rem;
    line-height: 1.5;
    max-width: 24ch;
    margin-bottom: 16px;
  }

  .hos-hero__copy--wide p:not(.hos-hero__lead) {
    font-size: 0.96rem;
    line-height: 1.5;
    max-width: 36ch;
    margin-bottom: 18px;
  }

  .hos-hero__actions {
    gap: 18px;
    margin-top: 0;
  }

  .hos-hero__actions .hos-button {
    min-height: 52px;
    padding: 0 24px;
    width: auto;
  }

  .hos-hero__actions .hos-text-link {
    font-size: 1rem;
  }
}

/* WPForms embed styling, tuned for WPForms Base Styling Only */
.hos-form-embed .wpforms-container,
.hos-form-embed .wpforms-container-full,
.hos-form-embed .wpforms-form {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.hos-form-embed .wpforms-field-container {
  display: block !important;
  width: 100% !important;
}

.hos-form-embed .wpforms-field {
  display: block !important;
  width: 100% !important;
  clear: both !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
}

.hos-form-embed .wpforms-field:last-of-type {
  margin-bottom: 0 !important;
}

.hos-form-embed .wpforms-field-label {
  display: block !important;
  width: 100% !important;
  margin: 0 0 8px !important;
  color: var(--hos-text) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  line-height: 1.3 !important;
}

.hos-form-embed .wpforms-required-label {
  color: #cf3f3f !important;
  margin-left: 4px !important;
}

.hos-form-embed .wpforms-field input[type="text"],
.hos-form-embed .wpforms-field input[type="email"],
.hos-form-embed .wpforms-field input[type="tel"],
.hos-form-embed .wpforms-field input[type="number"],
.hos-form-embed .wpforms-field input[type="url"],
.hos-form-embed .wpforms-field select,
.hos-form-embed .wpforms-field textarea {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 52px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(18,22,29,0.10) !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,0.92) !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--hos-text) !important;
  font: inherit !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
}

.hos-form-embed .wpforms-field textarea {
  min-height: 160px !important;
  resize: vertical !important;
}

.hos-form-embed .wpforms-field input::placeholder,
.hos-form-embed .wpforms-field textarea::placeholder {
  color: rgba(95,102,115,0.62) !important;
}

.hos-form-embed .wpforms-field input:focus,
.hos-form-embed .wpforms-field select:focus,
.hos-form-embed .wpforms-field textarea:focus {
  outline: none !important;
  border-color: rgba(252,185,39,0.9) !important;
  box-shadow: 0 0 0 3px rgba(252,185,39,0.14) !important;
}

.hos-form-embed .wpforms-field-medium,
.hos-form-embed .wpforms-field-large,
.hos-form-embed .wpforms-field-row-block {
  max-width: 100% !important;
}

.hos-form-embed .wpforms-field.wpforms-field-checkbox ul,
.hos-form-embed .wpforms-field.wpforms-field-radio ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.hos-form-embed .wpforms-field.wpforms-field-checkbox li,
.hos-form-embed .wpforms-field.wpforms-field-radio li {
  margin: 0 !important;
}

.hos-form-embed .wpforms-field.wpforms-field-checkbox label,
.hos-form-embed .wpforms-field.wpforms-field-radio label {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  color: var(--hos-text) !important;
}

.hos-form-embed .wpforms-field.wpforms-field-checkbox input[type="checkbox"],
.hos-form-embed .wpforms-field.wpforms-field-radio input[type="radio"] {
  width: 16px !important;
  height: 16px !important;
  min-height: 16px !important;
  padding: 0 !important;
  border-radius: 4px !important;
}

.hos-form-embed .wpforms-submit-container {
  display: block !important;
  width: 100% !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
}

.hos-form-embed .wpforms-submit,
.hos-form-embed button[type="submit"],
.hos-form-embed input[type="submit"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  width: 100% !important;
  min-height: 56px !important;
  margin: 0 !important;
  padding: 0 22px !important;
  border: 1px solid rgba(252,185,39,0.46) !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.68)) !important;
  color: var(--hos-text) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-align: center !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6), 0 12px 36px rgba(18,22,29,0.08), 0 0 0 4px rgba(252,185,39,0.08) !important;
  cursor: pointer !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease !important;
}

.hos-form-embed .wpforms-submit::after,
.hos-form-embed button[type="submit"]::after,
.hos-form-embed input[type="submit"]::after {
  content: "→";
  font-size: 1rem;
}

.hos-form-embed .wpforms-submit:hover,
.hos-form-embed button[type="submit"]:hover,
.hos-form-embed input[type="submit"]:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(252,185,39,0.62) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,249,234,0.9)) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), 0 18px 42px rgba(18,22,29,0.11), 0 0 0 5px rgba(252,185,39,0.12) !important;
}

.hos-form-embed .wpforms-error {
  font-size: 0.86rem !important;
  margin-top: 6px !important;
}

.hos-form-embed .wpforms-confirmation-container-full,
.hos-form-embed .wpforms-confirmation-scroll {
  border-radius: 16px !important;
  border: 1px solid rgba(18,22,29,0.08) !important;
  background: rgba(255,255,255,0.72) !important;
  padding: 16px 18px !important;
  color: var(--hos-text) !important;
}

.hos-form-embed input:-webkit-autofill,
.hos-form-embed input:-webkit-autofill:hover,
.hos-form-embed input:-webkit-autofill:focus,
.hos-form-embed textarea:-webkit-autofill,
.hos-form-embed textarea:-webkit-autofill:hover,
.hos-form-embed textarea:-webkit-autofill:focus,
.hos-form-embed select:-webkit-autofill,
.hos-form-embed select:-webkit-autofill:hover,
.hos-form-embed select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--hos-text) !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,0.92) inset !important;
  transition: background-color 9999s ease-in-out 0s !important;
}

/* Contact page styling */
.hos-contact-hero {
  padding-bottom: 20px;
}

.hos-contact-form-section {
  padding-top: 12px;
  padding-bottom: 52px;
}

.contact-page-glass-container {
  margin: 0 180px;
}

.contact-page-form-container {
  padding: 30px 36px 32px !important;
}

.contact-page-form-container .wpforms-field:first-of-type {
  margin-top: 0 !important;
}

.contact-page-form-container .wpforms-submit-container {
  margin-top: 20px !important;
  padding-bottom: 2px !important;
}

@media only screen and (max-width: 1280px) {
  .contact-page-glass-container {
    margin-left: 60px;
    margin-right: 60px;
  }
}

@media only screen and (max-width: 1024px) {
  .contact-page-glass-container {
    margin-left: 36px !important;
    margin-right: 36px !important;
  }

  .contact-page-form-container,
  .hos-contact-form-shell {
    padding: 24px 26px 28px !important;
  }
}

@media only screen and (max-width: 767px) {
  .hos-contact-hero {
    padding-top: 96px !important;
  }

  .hos-form-embed .wpforms-field {
    margin-bottom: 14px !important;
  }

  .hos-form-embed .wpforms-field-label {
    margin-bottom: 6px !important;
    font-size: 0.92rem !important;
  }

  .hos-form-embed .wpforms-field input[type="text"],
  .hos-form-embed .wpforms-field input[type="email"],
  .hos-form-embed .wpforms-field input[type="tel"],
  .hos-form-embed .wpforms-field input[type="number"],
  .hos-form-embed .wpforms-field input[type="url"],
  .hos-form-embed .wpforms-field select,
  .hos-form-embed .wpforms-field textarea {
    min-height: 50px !important;
    padding: 13px 14px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
  }

  .hos-form-embed .wpforms-field textarea {
    min-height: 140px !important;
  }

  .hos-form-embed .wpforms-submit-container {
    margin-top: 16px !important;
  }

  .hos-form-embed .wpforms-submit,
  .hos-form-embed button[type="submit"],
  .hos-form-embed input[type="submit"] {
    width: 100% !important;
    min-height: 54px !important;
  }

  .hos-form-embed .wpforms-field-row,
  .hos-form-embed .wpforms-layout-row,
  .hos-form-embed .wpforms-one-half,
  .hos-form-embed .wpforms-one-third,
  .hos-form-embed .wpforms-two-thirds,
  .hos-form-embed .wpforms-first {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .contact-page-glass-container {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }

  .contact-page-form-container,
  .hos-contact-form-shell {
    padding: 22px 14px 24px !important;
    border-radius: 22px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-page-form-container,
  .hos-contact-form-shell {
    padding: 26px 28px 30px !important;
  }
}


/* Contact page desktop spacing refinement */
@media (min-width: 1025px) {
  .hos-contact-hero {
    padding-bottom: 28px;
  }

  .hos-contact-form-section {
    padding-top: 28px;
    padding-bottom: 52px;
  }

  .contact-page-form-container {
    padding-top: 32px !important;
    padding-bottom: 34px !important;
  }
}




/* Footer refinement v15 */
@media (max-width: 1200px) {
  .hos-footer__inner {
    width: min(calc(100% - 56px), var(--hos-max));
    grid-template-columns: minmax(260px, 1.15fr) minmax(150px, 0.8fr) minmax(150px, 0.8fr) minmax(160px, 0.85fr);
    gap: 32px;
  }

  .hos-footer__column--connect {
    justify-self: start;
  }
}

@media (max-width: 980px) {
  .hos-footer__inner {
    width: min(calc(100% - 40px), var(--hos-max));
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 28px 32px;
  }

  .hos-footer__brand {
    max-width: none;
  }

  .hos-footer__copy {
    max-width: 28ch;
  }

  .hos-footer__column--connect {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .hos-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hos-footer__brand,
  .hos-footer__column {
    justify-items: center;
    text-align: center;
  }

  .hos-footer__copy {
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hos-footer__list {
    justify-items: center;
  }

  .hos-footer__social {
    justify-items: center;
  }

  .hos-footer__column--connect {
    justify-self: center;
  }

  .hos-footer__legal {
    width: min(calc(100% - 40px), var(--hos-max));
    margin-top: 22px;
    padding-top: 18px;
  }
}

@media (max-width: 560px) {
  .hos-footer__inner {
    gap: 22px;
  }

  .hos-social-link {
    min-height: 40px;
    padding: 0 12px;
  }

  .hos-social-link span {
    font-size: 0.88rem;
  }
}
