:root {
  --navy-950: #061322;
  --navy-900: #09203a;
  --navy-800: #0e2f53;
  --gold-700: #9c6f20;
  --gold-500: #c99a39;
  --gold-300: #e8c76f;
  --ink: #17202b;
  --muted: #637084;
  --line: #ded6c7;
  --paper: #fbfaf7;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(6, 19, 34, 0.14);
  --page-pad: clamp(24px, 5vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

.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;
}

.section-shell {
  width: 100%;
  margin: 0;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 12px var(--page-pad);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  min-height: 72px;
  background: rgba(6, 19, 34, 0.96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.brand {
  width: 58px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 58px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover {
  color: var(--gold-300);
}

.site-nav a[aria-current="page"] {
  color: var(--gold-300);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(232, 199, 111, 0.38);
  border-radius: 999px;
  background: rgba(6, 19, 34, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  min-width: 34px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-700));
  color: var(--navy-950);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 8px;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  align-items: center;
  gap: 54px;
  padding-top: 128px;
  padding-bottom: 96px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -2;
  background:
    linear-gradient(112deg, rgba(6, 19, 34, 0.96) 0%, rgba(9, 32, 58, 0.91) 56%, rgba(255, 255, 255, 0.5) 56.2%, rgba(251, 250, 247, 0.92) 100%),
    var(--navy-950);
}

.hero-copy {
  color: var(--white);
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.25vw, 4.45rem);
  font-weight: 700;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  color: var(--navy-950);
}

h3 {
  font-size: 1.35rem;
  color: var(--navy-950);
}

.hero-text {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500) 48%, var(--gold-700));
  color: #211704;
  box-shadow: 0 12px 28px rgba(201, 154, 57, 0.25);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.hero-mark {
  justify-self: end;
  width: min(430px, 100%);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.18));
}

.hero-mark img {
  width: 100%;
}

.page-hero {
  position: relative;
  padding: 156px 0 94px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(6, 19, 34, 0.98), rgba(9, 32, 58, 0.95) 64%, rgba(201, 154, 57, 0.18)),
    var(--navy-950);
}

.compact-page-hero {
  padding-bottom: 78px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 64px;
  align-items: end;
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

.contact-hero {
  padding: 140px 0 82px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(6, 19, 34, 0.98), rgba(9, 32, 58, 0.92) 58%, rgba(201, 154, 57, 0.18)),
    var(--navy-950);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 70px;
  align-items: center;
}

.contact-copy p:not(.eyebrow) {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.13rem;
}

.contact-copy .button {
  margin-top: 32px;
}

.owner-portrait {
  margin: 0;
  border: 1px solid rgba(232, 199, 111, 0.36);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.owner-portrait img {
  width: 100%;
  aspect-ratio: 4 / 3.35;
  object-fit: cover;
  object-position: center top;
}

.owner-portrait figcaption {
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, #ffffff, #f0ece4);
  color: var(--navy-950);
}

.owner-portrait span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-700);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-portrait strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.08;
}

.intro-band {
  padding: 92px 0;
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 70px;
}

.prose p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.prose p + p {
  margin-top: 18px;
}

.statement-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 58px;
  align-items: end;
  padding-top: 72px;
  padding-bottom: 72px;
  z-index: 1;
}

.statement-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: #f1eee7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-panel p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.focus {
  padding-top: 92px;
  padding-bottom: 92px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.focus-item {
  min-height: 282px;
  padding: 34px;
  background: var(--paper);
}

.focus-item span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold-700);
  font-weight: 900;
}

.focus-item p {
  margin: 16px 0 0;
  color: var(--muted);
}

.portfolio-band {
  padding: 92px 0;
  background: var(--navy-950);
  color: var(--white);
}

.portfolio-head {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 38px;
}

.portfolio-head h2,
.portfolio-band h3 {
  color: var(--white);
}

.portfolio-head > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.company-card {
  min-height: 250px;
  position: relative;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(232, 199, 111, 0.3);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.company-logo,
.directory-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 199, 111, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.company-logo {
  width: 118px;
  height: 118px;
  padding: 14px;
}

.company-logo img,
.directory-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.party-logo {
  background: #202b82;
}

.company-topline {
  width: 52px;
  height: 3px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-700));
}

.company-label {
  margin: 0 0 10px;
  color: var(--gold-300);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-card h3 {
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  line-height: 1.12;
}

.company-card p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.light-button {
  width: fit-content;
  margin-top: 28px;
  border: 1px solid rgba(232, 199, 111, 0.42);
  color: var(--white);
}

.muted-card {
  border-color: rgba(255, 255, 255, 0.16);
}

.values-section,
.company-directory,
.process-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

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

.value-grid article,
.process-grid article {
  min-height: 265px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
}

.value-grid span,
.process-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-700);
  font-weight: 900;
}

.value-grid p,
.process-grid p {
  margin: 15px 0 0;
  color: var(--muted);
}

.company-directory {
  display: grid;
  gap: 22px;
}

.contact-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 92px;
  padding-bottom: 92px;
}

.contact-panels article {
  min-height: 255px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
}

.contact-panels .eyebrow {
  color: var(--gold-700);
}

.contact-panels p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.directory-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  background: var(--white);
}

.featured-directory {
  border-color: rgba(201, 154, 57, 0.55);
  box-shadow: var(--shadow);
}

.directory-logo {
  width: 190px;
  height: 150px;
  padding: 20px;
}

.directory-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.directory-card h2 {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.directory-card p:not(.company-label) {
  margin: 18px 0 0;
  color: var(--muted);
}

.company-website-button {
  min-height: 42px;
  margin-top: 20px;
  padding: 11px 16px;
  border: 1px solid rgba(201, 154, 57, 0.42);
  background: linear-gradient(135deg, rgba(232, 199, 111, 0.18), rgba(201, 154, 57, 0.08));
  color: var(--navy-950);
  box-shadow: none;
}

.company-website-button:hover,
.company-website-button:focus-visible {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-700));
  color: #211704;
}

.company-website-button.is-hidden,
.company-website-button[hidden] {
  display: none;
}

.directory-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.directory-card li {
  border-bottom: 1px solid var(--line);
  padding: 13px 0 14px;
  color: var(--ink);
  font-weight: 700;
}

.blog-list-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.blog-list {
  display: grid;
  gap: 24px;
}

.blog-post {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(6, 19, 34, 0.06);
}

.blog-post.no-image {
  grid-template-columns: 1fr;
}

.blog-post figure {
  margin: 0;
}

.blog-post img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f6f0;
}

.blog-post-body {
  min-width: 0;
}

.blog-date {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-700);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-post h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.75rem);
}

.blog-post p {
  max-width: 850px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  white-space: pre-line;
}

.blog-post .button {
  width: fit-content;
  margin-top: 24px;
}

.blog-empty {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
}

.principles {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 64px;
  padding-top: 92px;
  padding-bottom: 92px;
}

.principle-list {
  display: grid;
  gap: 22px;
}

.principle-list > div {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.principle-list strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.08rem;
}

.principle-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cta-band {
  padding: 86px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 66px;
  align-items: center;
}

.cta-grid p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  padding: 52px 0;
  background: #f0ece4;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
}

.site-footer img {
  width: 190px;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.footer-contact {
  display: grid;
  gap: 8px;
  min-width: 240px;
}

.footer-contact .eyebrow {
  margin-bottom: 0;
  color: var(--gold-700);
}

.footer-contact a {
  color: var(--navy-950);
  font-weight: 800;
}

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

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(6, 19, 34, 0.98), rgba(9, 32, 58, 0.94) 58%, rgba(156, 111, 32, 0.28)),
    var(--navy-950);
}

.auth-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--navy-950);
}

.auth-shell {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: stretch;
  padding: 0;
  background:
    url("assets/login-background.png") center / cover no-repeat,
    var(--navy-950);
}

.auth-intro {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(42px, 5.2vw, 78px);
  overflow: hidden;
  color: var(--white);
  background: transparent;
}

.auth-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: none;
  opacity: 1;
  pointer-events: none;
}

.auth-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 12, 24, 0.44) 0%, rgba(3, 12, 24, 0.28) 36%, rgba(3, 12, 24, 0.08) 62%, rgba(3, 12, 24, 0) 82%);
  pointer-events: none;
}

.auth-intro-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.auth-intro h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--white);
  font-size: clamp(2.45rem, 4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.auth-intro h1 span,
.auth-intro h2 span {
  color: var(--gold-300);
}

.auth-title-rule {
  width: 92px;
  height: 2px;
  margin: 18px 0 22px;
  background: linear-gradient(90deg, var(--gold-300), rgba(232, 199, 111, 0));
  box-shadow: 0 0 18px rgba(232, 199, 111, 0.38);
}

.auth-intro h2 {
  max-width: 540px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.auth-intro-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.65;
}

.auth-usp-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.auth-usp-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
}

.usp-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  background: rgba(6, 19, 34, 0.42);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.usp-icon svg,
.field-icon,
.auth-login-button svg,
.environment-icon svg,
.environment-check svg,
.environment-arrow svg,
.password-toggle svg,
.auth-support svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-slogan {
  display: inline-block;
  margin-top: 30px;
  color: var(--gold-300);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.25;
  transform: rotate(-4deg);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.auth-panel {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 28px clamp(24px, 4.4vw, 70px);
  background: transparent;
  overflow: hidden;
}

.auth-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(3, 12, 24, 0.26) 0%, rgba(3, 12, 24, 0.1) 42%, rgba(3, 12, 24, 0) 78%);
  pointer-events: none;
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  border: 1px solid rgba(6, 19, 34, 0.08);
  border-radius: 24px;
  padding: 26px 34px 18px;
  background: rgba(252, 252, 253, 0.97);
  text-align: center;
  box-shadow:
    0 34px 82px rgba(2, 12, 26, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.auth-back-button {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(232, 199, 111, 0.24);
  border-radius: 999px;
  background: linear-gradient(145deg, #031932, #06254a);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(6, 19, 34, 0.18);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.auth-back-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(145deg, #08294f, #0b315f);
  box-shadow: 0 16px 28px rgba(6, 19, 34, 0.24);
}

.auth-back-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-card-logo {
  width: 68px;
  margin: 0 auto 12px;
}

.auth-card .eyebrow {
  margin: 0 0 8px;
  color: var(--gold-700);
  letter-spacing: 0;
}

.auth-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--navy-950);
  font-size: clamp(2.1rem, 3.2vw, 3.05rem);
}

.auth-card-copy {
  max-width: 430px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.auth-card-copy strong {
  color: var(--gold-700);
}

.auth-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.auth-form label,
.admin-search,
.admin-field label {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  text-align: left;
  font-weight: 800;
}

.auth-form input,
.admin-search input,
.admin-field input,
.admin-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.auth-input-shell {
  display: grid;
  min-height: 52px;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(6, 19, 34, 0.15);
  border-radius: 14px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 8px 22px rgba(6, 19, 34, 0.04),
    inset 0 1px 2px rgba(6, 19, 34, 0.03);
}

.auth-input-shell:focus-within {
  border-color: rgba(201, 154, 57, 0.72);
  box-shadow: 0 0 0 4px rgba(232, 199, 111, 0.17);
}

.auth-input-shell input {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  outline: 0;
}

.field-icon,
.password-toggle {
  color: var(--navy-950);
}

.password-toggle {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.password-toggle:hover {
  background: rgba(6, 19, 34, 0.06);
}

.auth-login-button {
  display: grid;
  min-height: 54px;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  justify-items: center;
  gap: 12px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(180deg, #f4d060 0%, #d39b25 48%, #a86f11 100%);
  color: #fff;
  font-size: 1.08rem;
  text-shadow: 0 1px 2px rgba(75, 45, 4, 0.32);
  box-shadow:
    0 18px 30px rgba(156, 96, 12, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -3px 0 rgba(91, 52, 3, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.auth-login-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    0 22px 36px rgba(156, 96, 12, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -3px 0 rgba(91, 52, 3, 0.24);
}

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

.form-message,
.admin-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.auth-form .form-message:empty {
  min-height: 0;
}

.form-message[data-type="error"] {
  color: #9d2525;
}

.form-message[data-type="info"] {
  color: var(--gold-700);
}

.environment-area {
  margin-top: 6px;
}

.environment-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 6px 0 12px;
  color: rgba(6, 19, 34, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.environment-title::before,
.environment-title::after {
  content: "";
  height: 1px;
  background: rgba(6, 19, 34, 0.16);
}

.environment-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.environment-switch button {
  position: relative;
  display: block;
  min-height: 112px;
  border: 1px solid rgba(6, 19, 34, 0.12);
  border-radius: 12px;
  padding: 16px 40px 14px 16px;
  background: #fff;
  color: var(--navy-950);
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(6, 19, 34, 0.1);
}

.environment-switch button.is-active {
  border-color: var(--gold-500);
  background: linear-gradient(145deg, #031932, #06254a);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(6, 19, 34, 0.22);
}

.environment-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 10px;
  color: var(--gold-700);
}

.environment-icon svg {
  width: 31px;
  height: 31px;
}

.environment-switch button.is-active .environment-icon {
  color: var(--white);
}

.environment-switch button.is-active small {
  color: rgba(255, 255, 255, 0.86);
}

.environment-switch strong {
  display: block;
  margin-bottom: 4px;
  line-height: 1.1;
}

.environment-switch small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.environment-check {
  position: absolute;
  top: 16px;
  right: 16px;
  display: none;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-700));
  color: #fff;
}

.environment-switch button.is-active .environment-check {
  display: inline-grid;
}

.environment-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--navy-950);
}

.environment-switch button.is-active .environment-arrow {
  display: none;
}

.auth-support {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  margin: 14px auto 0;
  max-width: 430px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.38;
  font-weight: 700;
}

.auth-support svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold-700);
}

.auth-copyright {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px var(--page-pad);
  background: rgba(6, 19, 34, 0.97);
  border-bottom: 1px solid rgba(232, 199, 111, 0.22);
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 900;
}

.admin-brand img {
  width: 48px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-actions .button,
.admin-open-site {
  min-height: 40px;
  padding: 10px 14px;
}

.admin-actions [data-logout] {
  border-color: rgba(232, 199, 111, 0.56);
  background: rgba(232, 199, 111, 0.12);
  color: var(--gold-300);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.admin-actions [data-logout]:hover,
.admin-actions [data-logout]:focus-visible {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-700));
  color: var(--navy-950);
}

.admin-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 77px);
  background: var(--paper);
}

.admin-sidebar {
  border-right: 1px solid var(--line);
  padding: 28px;
  background: #f0ece4;
}

.admin-sidebar .eyebrow,
.admin-intro .eyebrow,
.admin-field > span {
  color: var(--gold-700);
}

.admin-tabs {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
}

.admin-tabs button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 900;
  text-align: left;
}

.admin-tabs button.is-active {
  background: var(--navy-950);
  color: var(--white);
  border-color: var(--navy-950);
}

.admin-content {
  padding: 34px var(--page-pad) 70px;
}

.admin-intro {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 22px;
}

.admin-intro h1 {
  color: var(--navy-950);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.admin-intro > p {
  margin: 0;
  color: var(--muted);
}

.admin-status {
  margin-bottom: 22px;
}

.admin-status[data-type="dirty"] {
  color: var(--gold-700);
}

.admin-status[data-type="saved"] {
  color: #176c45;
}

.admin-status[data-type="error"] {
  color: #9d2525;
}

.admin-fields {
  display: grid;
  gap: 22px;
}

.admin-group {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.admin-group h2 {
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.admin-field {
  display: grid;
  grid-template-columns: 200px minmax(180px, 0.4fr) 1fr;
  gap: 16px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.admin-field > span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.image-editor {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.image-editor img {
  width: 120px;
  height: 90px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f6f0;
  padding: 8px;
}

.image-editor input[type="file"] {
  grid-column: 2;
  padding: 10px;
}

.admin-empty {
  margin: 0;
  color: var(--muted);
}

.blog-manager-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.blog-manager-header p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
}

.admin-blog-post {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.admin-blog-post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-blog-post-header h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

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

.admin-blog-control {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-weight: 800;
}

.admin-blog-control.wide {
  grid-column: 1 / -1;
}

.admin-blog-control input,
.admin-blog-control textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.admin-blog-control textarea {
  min-height: 150px;
  resize: vertical;
}

.admin-blog-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: var(--navy-950);
  font-weight: 900;
}

.admin-blog-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-700);
}

.button.admin-danger {
  border: 1px solid #d8b0a8;
  background: #fff6f4;
  color: #9d2525;
  box-shadow: none;
}

.openai-panel {
  gap: 20px;
}

.openai-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.openai-panel-heading p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

.openai-warning {
  margin: 0;
  border: 1px solid rgba(157, 37, 37, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(157, 37, 37, 0.07);
  color: #7c1e1e;
  font-weight: 800;
}

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

.openai-control,
.openai-toggle {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-weight: 900;
}

.openai-control input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.openai-toggle {
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfaf7;
}

.openai-toggle input {
  position: absolute;
  opacity: 0;
}

.openai-toggle-visual {
  position: relative;
  width: 48px;
  height: 26px;
  border-radius: 999px;
  background: #d7d0c1;
  transition: background 160ms ease;
}

.openai-toggle-visual::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease;
}

.openai-toggle input:checked + .openai-toggle-visual {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-700));
}

.openai-toggle input:checked + .openai-toggle-visual::after {
  transform: translateX(22px);
}

.openai-toggle small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
}

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

.openai-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfaf7;
}

.openai-stats strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.5rem;
}

.openai-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.openai-actions,
.translation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.translation-overview > p {
  margin: -4px 0 8px;
  color: var(--muted);
}

.translation-card {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.translation-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.translation-card-header h3 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.translation-status {
  border-radius: 999px;
  padding: 6px 10px;
  background: #e7e1d3;
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.translation-status.current {
  background: rgba(23, 108, 69, 0.12);
  color: #176c45;
}

.translation-status.missing,
.translation-status.outdated {
  background: rgba(196, 142, 31, 0.14);
  color: var(--gold-700);
}

.translation-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.translation-source {
  margin: 0;
  border-left: 3px solid var(--gold-300);
  padding: 10px 12px;
  background: #fbfaf7;
  color: var(--muted);
}

.translation-card textarea {
  width: 100%;
  min-height: 110px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

@media (max-width: 1180px) and (min-width: 921px) {
  .site-nav {
    gap: 14px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(2.65rem, 4.7vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
  }

  .hero {
    gap: 38px;
  }

  .hero-mark {
    width: min(330px, 100%);
  }

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

  .company-card {
    min-height: auto;
    grid-template-columns: 132px 1fr;
  }

  .company-logo {
    width: 132px;
    height: 112px;
  }

  .value-grid,
  .process-grid,
  .contact-panels {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-field {
    grid-template-columns: 170px 1fr;
  }

  .admin-field > :last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 921px) and (max-height: 820px) {
  .auth-intro {
    padding: 34px clamp(34px, 4.4vw, 62px);
  }

  .auth-intro-content {
    max-width: 650px;
  }

  .auth-intro h1 {
    font-size: clamp(2.35rem, 3.6vw, 3.28rem);
  }

  .auth-title-rule {
    margin: 12px 0 16px;
  }

  .auth-intro h2 {
    font-size: clamp(1.32rem, 2vw, 1.78rem);
  }

  .auth-intro-content > p:not(.eyebrow) {
    max-width: 550px;
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .auth-usp-list {
    gap: 10px;
    margin-top: 18px;
  }

  .usp-icon {
    width: 36px;
    height: 36px;
  }

  .usp-icon svg,
  .field-icon,
  .auth-login-button svg,
  .environment-icon svg,
  .environment-check svg,
  .environment-arrow svg,
  .password-toggle svg,
  .auth-support svg {
    width: 18px;
    height: 18px;
  }

  .auth-slogan {
    margin-top: 18px;
    font-size: 1.18rem;
  }

  .auth-panel {
    padding: 18px clamp(20px, 3.8vw, 56px);
  }

  .auth-card {
    width: min(468px, 100%);
    padding: 18px 28px 14px;
  }

  .auth-card-logo {
    width: 50px;
    margin-bottom: 8px;
  }

  .auth-card .eyebrow {
    margin-bottom: 6px;
    font-size: 0.68rem;
  }

  .auth-card h2 {
    font-size: 2.38rem;
  }

  .auth-card-copy {
    margin-top: 8px;
    font-size: 0.85rem;
    line-height: 1.38;
  }

  .auth-form {
    gap: 9px;
    margin-top: 14px;
  }

  .auth-form label {
    gap: 5px;
    font-size: 0.82rem;
  }

  .auth-input-shell {
    min-height: 44px;
    border-radius: 12px;
  }

  .password-toggle {
    width: 26px;
    height: 26px;
  }

  .auth-login-button {
    min-height: 46px;
    border-radius: 12px;
    font-size: 0.94rem;
  }

  .environment-area {
    margin-top: 4px;
  }

  .environment-title {
    gap: 10px;
    margin: 4px 0 8px;
    font-size: 0.66rem;
  }

  .environment-switch {
    gap: 10px;
  }

  .environment-switch button {
    min-height: 78px;
    grid-template-columns: 26px minmax(0, 1fr) 22px;
    gap: 8px;
    padding: 10px;
  }

  .environment-check {
    width: 24px;
    height: 24px;
  }

  .environment-switch strong {
    margin-bottom: 3px;
    font-size: 0.88rem;
  }

  .environment-switch small {
    font-size: 0.68rem;
    line-height: 1.28;
  }

  .auth-support {
    margin-top: 10px;
    font-size: 0.74rem;
    line-height: 1.34;
  }

  .auth-copyright {
    margin-top: 8px;
    font-size: 0.7rem;
  }
}

@media (max-width: 920px) {
  .auth-shell {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .auth-intro {
    min-height: 48svh;
    padding: 64px 28px 50px;
    background-position: center;
  }

  .auth-intro-content {
    max-width: 680px;
  }

  .auth-panel {
    min-height: auto;
    padding: 34px 20px 44px;
  }

  .auth-card {
    width: min(560px, 100%);
  }

  .site-header {
    padding-inline: 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(232, 199, 111, 0.28);
    border-radius: 8px;
    padding: 10px;
    background: rgba(6, 19, 34, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.nav-active .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .language-switcher {
    align-self: flex-start;
    margin: 8px 12px 10px;
  }

  .hero,
  .split,
  .portfolio-head,
  .principles,
  .footer-grid,
  .page-hero-grid,
  .contact-hero-grid,
  .statement-panel,
  .cta-grid,
  .directory-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
    padding-bottom: 58px;
  }

  .hero::before {
    min-height: 100%;
    background:
      linear-gradient(180deg, rgba(6, 19, 34, 0.97) 0%, rgba(9, 32, 58, 0.95) 68%, rgba(251, 250, 247, 0.92) 68.2%, rgba(251, 250, 247, 1) 100%),
      var(--navy-950);
  }

  .hero-mark {
    justify-self: center;
    max-width: 320px;
  }

  .focus-grid,
  .company-grid,
  .value-grid,
  .process-grid,
  .contact-panels {
    grid-template-columns: 1fr;
  }

  .company-card {
    grid-template-columns: 98px 1fr;
  }

  .company-logo {
    width: 98px;
    height: 98px;
  }

  .focus-item {
    min-height: 220px;
  }

  .admin-header,
  .admin-layout,
  .admin-intro,
  .admin-field,
  .image-editor,
  .openai-form,
  .openai-stats {
    grid-template-columns: 1fr;
  }

  .admin-header {
    align-items: flex-start;
  }

  .admin-layout {
    display: grid;
  }

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .image-editor input[type="file"] {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .auth-intro::after {
    background: linear-gradient(90deg, rgba(3, 12, 24, 0.54) 0%, rgba(3, 12, 24, 0.34) 56%, rgba(3, 12, 24, 0.08) 100%);
  }

  .auth-intro {
    min-height: auto;
    padding: 46px 18px 38px;
  }

  .auth-intro h1 {
    font-size: 2.26rem;
  }

  .auth-intro h2 {
    font-size: 1.38rem;
  }

  .auth-intro-content > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 0.95rem;
  }

  .auth-usp-list {
    gap: 10px;
    margin-top: 20px;
  }

  .usp-icon {
    width: 38px;
    height: 38px;
  }

  .auth-slogan {
    margin-top: 22px;
    font-size: 1.22rem;
  }

  .auth-panel {
    padding: 20px 14px 30px;
  }

  .auth-card {
    padding: 22px 18px 18px;
    border-radius: 18px;
  }

  .auth-card-logo {
    width: 58px;
    margin-bottom: 12px;
  }

  .auth-card h2 {
    font-size: 2.15rem;
  }

  .auth-card-copy {
    font-size: 0.92rem;
  }

  .auth-input-shell {
    min-height: 52px;
  }

  .auth-login-button {
    min-height: 54px;
  }

  .environment-switch {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .environment-switch button {
    min-height: 92px;
  }

  .auth-support {
    font-size: 0.82rem;
  }

  .section-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand,
  .brand img {
    width: 46px;
  }

  .hero {
    gap: 36px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: 2.18rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button.secondary {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(9, 32, 58, 0.12);
    color: var(--navy-950);
  }

  .intro-band,
  .focus,
  .portfolio-band,
  .blog-list-section,
  .principles,
  .values-section,
  .company-directory,
  .process-section,
  .contact-panels,
  .cta-band {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .page-hero {
    padding: 132px 0 66px;
  }

  .contact-hero {
    padding: 122px 0 64px;
  }

  .statement-panel {
    padding-top: 54px;
  }

  .focus-item,
  .company-card,
  .directory-card,
  .contact-panels article,
  .value-grid article,
  .process-grid article {
    padding: 24px;
  }

  .directory-logo {
    width: 100%;
    height: 142px;
  }

  .blog-post {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px;
  }

  .blog-post.no-image {
    grid-template-columns: 1fr;
  }

  .blog-post img {
    aspect-ratio: 1 / 1;
  }

  .blog-post h2 {
    font-size: 1.18rem;
  }

  .blog-post p {
    margin-top: 10px;
    font-size: 0.91rem;
  }

  .blog-post .button {
    width: 100%;
  }

  .blog-manager-header,
  .admin-blog-post-header,
  .admin-blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-manager-header,
  .admin-blog-post-header {
    display: grid;
  }

  .owner-portrait strong {
    font-size: 1.42rem;
  }
}

@media (max-width: 380px) {
  .company-card {
    grid-template-columns: 1fr;
  }

  .company-logo {
    width: 100%;
    height: 104px;
  }

  .company-card h3 {
    font-size: 1.05rem;
  }

  h1 {
    font-size: 2rem;
  }
}
