:root {
  --cream: #eef1f4;
  --cream-light: #ffffff;
  --blue: #0796d7;
  --blue-dark: #0578ae;
  --blue-soft: #dff3fb;
  --ink: #211f1e;
  --muted: #626361;
  --gray: #9ea19b;
  --line: rgba(33, 31, 30, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(33, 31, 30, 0.1);
  --radius-lg: 32px;
  --radius-md: 20px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-light);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
}

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

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(33, 31, 30, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  position: relative;
  display: inline-grid;
  width: max-content;
  padding: 4px 6px 12px;
  line-height: 0.78;
}

.brand-main,
.brand-name {
  display: block;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.brand-main {
  font-size: 1.75rem;
  text-align: center;
}

.brand-name {
  font-size: 1.15rem;
}

.brand-waves,
.brand-waves::after {
  position: absolute;
  content: "";
  left: 0;
  right: -6px;
  height: 5px;
  bottom: 5px;
  border-radius: 50%;
  border-top: 4px solid var(--blue);
  transform: rotate(-2deg);
}

.brand-image-link {
  width: 148px;
  height: 76px;
  display: block;
  overflow: hidden;
  padding: 0;
}

.brand-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-waves::after {
  left: 8px;
  right: 4px;
  bottom: -7px;
  border-color: var(--gray);
  transform: rotate(2deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a.active::after {
  right: 0;
}

.nav-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(7, 150, 215, 0.24);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 30px rgba(7, 150, 215, 0.32);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 94px;
  background:
    radial-gradient(circle at 84% 12%, rgba(7, 150, 215, 0.13), transparent 30%),
    var(--cream-light);
}

.hero::after {
  position: absolute;
  content: "";
  left: -8%;
  right: -8%;
  bottom: -66px;
  height: 98px;
  border-top: 14px solid var(--blue);
  border-radius: 50%;
  transform: rotate(-1deg);
  opacity: 0.9;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 68px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--blue-soft);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
}

h1 span {
  color: var(--blue);
  font-style: italic;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.5vw, 4.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.22;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.15rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.hero-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-contact a:hover {
  color: var(--blue-dark);
}

.hero-contact strong {
  margin-right: 5px;
  color: var(--ink);
}

.hero-contact > span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 44px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.tagline-pill {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 14px 24px;
  border-radius: 0 42px 0 28px;
  color: var(--white);
  background: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.hero-logo {
  width: 100%;
  height: 460px;
  display: block;
  padding: 30px 10px 4px;
  object-fit: contain;
}

.service-orbit {
  position: relative;
  height: 100%;
  min-height: 460px;
}

.service-orbit::before,
.service-orbit::after {
  position: absolute;
  content: "";
  inset: 15% 17%;
  border: 1px dashed rgba(33, 31, 30, 0.15);
  border-radius: 50%;
}

.service-orbit::after {
  inset: 28%;
  border-color: rgba(7, 150, 215, 0.24);
}

.orbit-center,
.orbit-card {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-center {
  inset: 50% auto auto 50%;
  width: 172px;
  height: 172px;
  flex-direction: column;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(33, 31, 30, 0.2);
}

.orbit-center span {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 3.4rem;
  line-height: 0.9;
}

.orbit-center small {
  color: var(--blue-soft);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-card {
  width: 126px;
  min-height: 96px;
  flex-direction: column;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(33, 31, 30, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(33, 31, 30, 0.08);
  font-size: 0.83rem;
  text-align: center;
}

.orbit-icon {
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.orbit-deep { left: 5%; top: 15%; }
.orbit-floor { right: 2%; top: 23%; }
.orbit-rental { left: 10%; bottom: 10%; }
.orbit-business { right: 7%; bottom: 7%; }

.service-intro {
  padding: 132px 0 110px;
  background: var(--white);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

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

.service-card {
  min-height: 310px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream-light);
}

.service-card.featured {
  background: var(--cream);
}

.service-card.blue-card {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.service-number {
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.blue-card .service-number {
  color: var(--blue-soft);
}

.service-card p {
  color: var(--muted);
}

.blue-card p {
  color: rgba(255, 255, 255, 0.82);
}

.service-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  margin-top: 8px;
  padding-left: 18px;
  font-weight: 700;
  font-size: 0.92rem;
}

.service-card li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--blue);
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
  text-align: center;
}

.services-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.why-section {
  padding: 110px 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 82px;
}

.why-mark {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: inset 0 0 0 24px rgba(255, 255, 255, 0.12);
}

.why-mark::after {
  position: absolute;
  content: "";
  inset: 11%;
  border: 1px dashed rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.why-mark strong {
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.9;
}

.why-mark small {
  z-index: 1;
  margin-top: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.spark {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
}

.spark-one { top: 20%; left: 22%; }
.spark-two { right: 18%; bottom: 29%; width: 7px; height: 7px; }
.spark-three { top: 26%; right: 24%; width: 5px; height: 5px; }

.why-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 38px 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.values-row div {
  display: grid;
  gap: 7px;
}

.values-row span {
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.values-row strong {
  font-size: 0.9rem;
}

.dark-link {
  color: var(--blue-dark);
}

.contact-band {
  padding: 72px 0;
  color: var(--white);
  background: var(--ink);
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-band h2 {
  margin-bottom: 0;
}

.contact-band-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  color: var(--blue-dark);
}

.contact-band-actions > a:not(.button) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--cream-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.7fr;
  gap: 70px;
}

.footer-brand {
  margin-bottom: 24px;
}

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

.footer-grid h2 {
  margin-bottom: 18px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-grid a:not(.brand):hover {
  color: var(--blue-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

/* Interior pages */
.page-hero {
  padding: 88px 0 78px;
  background: var(--cream);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  align-items: end;
  gap: 72px;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(3.5rem, 7vw, 6.3rem);
}

.page-hero-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero-copy p:last-child {
  margin-bottom: 0;
}

.bio-section,
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

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

.bio-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream-light);
}

.portrait-placeholder {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.portrait-placeholder::before,
.portrait-placeholder::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.portrait-placeholder::before {
  width: 260px;
  height: 260px;
}

.portrait-placeholder::after {
  width: 360px;
  height: 360px;
}

.portrait-placeholder span {
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-style: italic;
}

.portrait-placeholder.terri {
  background: var(--gray);
}

.bio-copy {
  padding: 34px;
}

.placeholder-label,
.demo-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bio-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.about-note {
  padding: 100px 0;
  background: var(--cream);
}

.about-note-inner {
  max-width: 850px;
}

.about-note-inner p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
}

.contact-details h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.contact-details > p {
  color: var(--muted);
}

.direct-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.direct-link {
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream-light);
}

.direct-link:hover {
  border-color: var(--blue);
}

.direct-link span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-wrap {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream-light);
  box-shadow: var(--shadow);
}

.demo-notice {
  align-items: flex-start;
  border-radius: 12px;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

.demo-notice::before {
  content: "i";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-family: Georgia, serif;
  font-style: italic;
}

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

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

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  font-size: 0.82rem;
  font-weight: 900;
}

.field label span,
.field legend span {
  color: var(--blue-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(33, 31, 30, 0.2);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}

.form-help,
.field-error {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.field-error {
  color: #a53427;
  font-weight: 800;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(7, 150, 215, 0.18);
}

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

fieldset.field {
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 700;
}

.radio-option input {
  width: auto;
  accent-color: var(--blue);
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.form-actions button {
  border: 0;
  cursor: pointer;
}

.form-actions small {
  max-width: 320px;
  color: var(--muted);
}

.form-status {
  display: none;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(7, 150, 215, 0.36);
  border-radius: 14px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-weight: 800;
}

.form-status.visible {
  display: block;
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .header-inner {
    min-height: 82px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 24px 16px 30px;
    border-bottom: 1px solid var(--line);
    background: var(--cream-light);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 18px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-grid,
  .split-heading,
  .why-grid,
  .page-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .why-grid,
  .contact-grid {
    gap: 52px;
  }

  .split-heading,
  .page-hero-grid {
    gap: 28px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .values-row {
    gap: 12px;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 28px);
  }

  .hero {
    padding-top: 52px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .hero-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .hero-contact > span {
    display: none;
  }

  .hero-visual {
    min-height: 360px;
    padding: 16px;
    border-radius: 30px;
  }

  .hero-logo {
    height: 340px;
    padding-inline: 0;
  }

  .tagline-pill {
    border-radius: 0 28px 0 20px;
    font-size: 0.85rem;
  }

  .service-orbit {
    min-height: 400px;
  }

  .orbit-center {
    width: 140px;
    height: 140px;
  }

  .orbit-center span {
    font-size: 2.8rem;
  }

  .orbit-card {
    width: 105px;
    min-height: 82px;
    padding: 10px;
    font-size: 0.72rem;
  }

  .services-grid,
  .bio-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .values-row {
    grid-template-columns: 1fr;
  }

  .values-row div {
    grid-template-columns: 36px 1fr;
    align-items: center;
  }

  .why-mark {
    max-width: 430px;
    margin-inline: auto;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero,
  .bio-section,
  .contact-section,
  .about-note {
    padding-block: 70px;
  }

  .portrait-placeholder {
    min-height: 330px;
  }

  .contact-form-wrap {
    padding: 26px 20px;
  }

  .field.full {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
