/*
 * GCS Solutions — © 2026 Himanshu Dadhich. All rights reserved.
 * Developed by Himanshu Dadhich. Proprietary & confidential — unauthorized
 * copying, distribution, or use of this file, in whole or in part, is prohibited.
 *
 * style.css — design tokens, reset, base type, header, footer and the shared
 * component layer (buttons, cards, icon tiles, section headings, CTA band).
 * Page-specific rules live in home.css and pages.css.
 */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
  /* Brand palette */
  --navy-900: #0a1f44;
  --navy-800: #0f2a5c;
  --navy-700: #16376f;
  --blue-600: #1652f0;
  --blue-500: #3d74ff;
  --blue-100: #d6e2fb;
  --blue-050: #eaf0fb;

  /* Neutrals */
  --white: #ffffff;
  --surface: #f4f6fb;
  --surface-2: #fafbfd;
  --ink-900: #0f172a;
  --ink-700: #33405a;
  --ink-500: #5b6478;
  --ink-400: #7b8398;
  --line: #e4e9f2;
  --line-strong: #cfd7e6;

  /* On-navy tints */
  --on-navy-body: rgba(255, 255, 255, 0.74);
  --on-navy-muted: rgba(255, 255, 255, 0.56);
  --on-navy-line: rgba(255, 255, 255, 0.14);

  /* Typography */
  --font-display: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Fluid type scale */
  --fs-display: clamp(2.5rem, 1.6rem + 3.9vw, 4.25rem);
  --fs-h2: clamp(1.75rem, 1.32rem + 1.85vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 1.13rem + 0.52vw, 1.5rem);
  --fs-h4: 1.0625rem;
  --fs-body: 1rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;
  --fs-eyebrow: 0.75rem;

  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 0.875rem;
  --gap: 1.25rem;
  --gap-lg: 2rem;
  --gap-xl: 3rem;
  --section-y: clamp(3.5rem, 2.4rem + 4.6vw, 6rem);

  /* Shape */
  --radius-sm: 8px;
  --radius-card: 12px;
  --radius-panel: 20px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-card: 0 2px 10px rgba(15, 23, 42, 0.05);
  --shadow-float: 0 12px 34px rgba(10, 31, 68, 0.14);
  --shadow-header: 0 1px 0 var(--line), 0 6px 20px rgba(10, 31, 68, 0.06);

  /* Layout */
  --container: 1240px;
  --container-pad: clamp(1.125rem, 0.7rem + 1.8vw, 2.5rem);
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.22s;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-500);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}

h1 { font-size: var(--fs-display); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-family: var(--font-body); font-weight: 600; letter-spacing: -0.005em; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--blue-600);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--navy-900); }

img, svg, video { display: block; max-width: 100%; height: auto; }

ul, ol { margin: 0 0 1rem; padding-left: 1.15rem; }
li { margin-bottom: 0.4rem; }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

strong { color: var(--ink-900); font-weight: 600; }

hr { border: 0; border-top: 1px solid var(--line); margin: var(--gap-lg) 0; }

::selection { background: var(--blue-100); color: var(--navy-900); }

/* Focus — visible for keyboard users, quiet for mouse users. */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 2px;
  border-radius: 4px;
}
.on-navy :focus-visible,
.site-footer :focus-visible { outline-color: var(--blue-500); }

/* ==========================================================================
   3. LAYOUT PRIMITIVES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * 0.66); }
.section--surface { background: var(--surface); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--white); }

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

/* ==========================================================================
   4. SECTION HEADINGS
   ========================================================================== */

.eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.on-navy .eyebrow { color: var(--blue-500); }

.section-head { margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem); }
.section-head--center { text-align: center; max-width: 44rem; margin-inline: auto; }
.section-head h2 { margin-bottom: 0.5rem; }
.section-head p {
  font-size: 1.0625rem;
  max-width: 42rem;
  margin-bottom: 0;
}
.section-head--center p { margin-inline: auto; }

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn .btn__arrow {
  flex: none;
  transition: transform var(--dur) var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: var(--shadow-float);
}

.btn--accent { background: var(--blue-600); color: var(--white); }
.btn--accent:hover { background: #0f43d0; color: var(--white); }

.btn--outline {
  background: var(--white);
  border-color: var(--line-strong);
  color: var(--ink-900);
}
.btn--outline:hover {
  border-color: var(--navy-900);
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-card);
}

.btn--light {
  background: var(--white);
  color: var(--navy-900);
}
.btn--light:hover { background: #eef2fa; color: var(--navy-900); }

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn--pill { border-radius: var(--radius-pill); padding-inline: 1.75rem; }
.btn--sm { padding: 0.6rem 1.1rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

/* Inline text link with a trailing arrow. */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--blue-600);
}
.link-arrow svg { flex: none; transition: transform var(--dur) var(--ease); }
.link-arrow:hover { color: var(--navy-900); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ==========================================================================
   6. CARDS, TILES & BADGES
   ========================================================================== */

.card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.card--hover:hover {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-float);
  transform: translateY(-4px);
}
.card h3, .card h4 { margin-bottom: 0.5rem; }
.card p { font-size: var(--fs-sm); }

.icon-tile {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.1rem;
  background: var(--blue-050);
  border-radius: 10px;
  color: var(--blue-600);
  flex: none;
}
.icon-tile svg { width: 22px; height: 22px; }
.icon-tile--sm { width: 36px; height: 36px; border-radius: 8px; margin-bottom: 0; }
.icon-tile--sm svg { width: 18px; height: 18px; }
.on-navy .icon-tile {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.6rem;
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--navy-900);
}
.badge-pill svg { width: 15px; height: 15px; color: var(--blue-600); flex: none; }

/* ==========================================================================
   7. HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-header);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  min-height: var(--header-h);
}

/* --- Logo --- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: none;
  color: var(--ink-900);
}
.logo:hover { color: var(--ink-900); }
.logo__mark { width: 38px; height: 38px; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--navy-900);
}
.logo__sub {
  margin-top: 3px;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.site-footer .logo__name { color: var(--white); }
.site-footer .logo__sub { color: var(--on-navy-muted); }

/* --- Primary nav --- */
.nav { display: flex; align-items: center; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__list li { margin: 0; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-700);
  white-space: nowrap;
}
.nav__link:hover { color: var(--navy-900); background: var(--surface); }
.nav__link[aria-current="page"] { color: var(--navy-900); font-weight: 600; }

.nav__caret { transition: transform var(--dur) var(--ease); flex: none; }
[aria-expanded="true"] > .nav__caret { transform: rotate(180deg); }

/* --- Services dropdown --- */
.nav__item--has-menu { position: relative; }

.nav__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 10;
  min-width: 264px;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-float);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              visibility var(--dur) var(--ease);
}
.nav__item--has-menu.is-open .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__menu li { margin: 0; }
.nav__menu a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-700);
}
.nav__menu a:hover { background: var(--blue-050); color: var(--navy-900); }

/* The in-panel CTA is a mobile-only duplicate of the header button. */
.nav__cta { display: none; }

/* --- Header actions & burger --- */
.site-header__actions { display: flex; align-items: center; gap: 0.75rem; flex: none; }

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy-900);
}
.nav-toggle:hover { background: var(--surface); }
.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(10, 31, 68, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.nav-scrim.is-open { opacity: 1; visibility: visible; }

/* ==========================================================================
   8. CTA BAND (shared across pages)
   ========================================================================== */

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-panel);
  background: var(--navy-900);
  color: var(--on-navy-body);
  isolation: isolate;
}
.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg,
    var(--navy-900) 0%,
    rgba(10, 31, 68, 0.95) 42%,
    rgba(10, 31, 68, 0.62) 100%);
}
.cta-band__body {
  padding: clamp(2rem, 1.4rem + 2.6vw, 3.5rem);
  max-width: 40rem;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: var(--on-navy-body); margin-bottom: 1.75rem; }

/* ==========================================================================
   9. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--navy-900);
  color: var(--on-navy-body);
  padding-top: clamp(3rem, 2.2rem + 3vw, 4.5rem);
}
.site-footer a { color: var(--on-navy-body); }
.site-footer a:hover { color: var(--white); }
/* The blanket link colour above must not bleed into button variants. */
.site-footer .btn--light, .site-footer .btn--light:hover { color: var(--navy-900); }
.site-footer .btn--outline, .site-footer .btn--outline:hover { color: var(--ink-900); }
.site-footer .btn--primary, .site-footer .btn--ghost-light,
.site-footer .btn--primary:hover, .site-footer .btn--ghost-light:hover { color: var(--white); }
.site-footer h4 {
  margin-bottom: 1.15rem;
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.35fr;
  gap: clamp(1.75rem, 1rem + 3vw, 3.25rem);
  padding-bottom: clamp(2.25rem, 1.8rem + 2vw, 3.25rem);
}
.footer__about p {
  margin-top: 1.15rem;
  font-size: var(--fs-sm);
  max-width: 22rem;
}

.footer__list { margin: 0; padding: 0; list-style: none; }
.footer__list li { margin-bottom: 0.7rem; }
.footer__list a { font-size: var(--fs-sm); }

.footer__contact { margin: 0; padding: 0; list-style: none; }
.footer__contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: var(--fs-sm);
  line-height: 1.55;
}
.footer__contact svg {
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--blue-500);
}

.social-row { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social-row a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  color: var(--white);
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.social-row a:hover { background: var(--blue-600); transform: translateY(-2px); }
.social-row svg { width: 16px; height: 16px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-block: 1.35rem;
  border-top: 1px solid var(--on-navy-line);
  font-size: var(--fs-xs);
  color: var(--on-navy-muted);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; align-items: center; }
.footer__legal span { color: rgba(255, 255, 255, 0.28); }
.footer__bottom a { font-size: var(--fs-xs); }

/* ==========================================================================
   10. SCROLL-TO-TOP
   ========================================================================== */

.scroll-top {
  position: fixed;
  right: clamp(1rem, 0.5rem + 1.4vw, 2rem);
  bottom: clamp(1rem, 0.5rem + 1.4vw, 2rem);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--navy-900);
  box-shadow: var(--shadow-float);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--dur) var(--ease),
              visibility var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--surface); }
.scroll-top__ring {
  position: absolute;
  inset: -1px;
  width: 46px;
  height: 46px;
  transform: rotate(-90deg);
}
.scroll-top__ring circle {
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}
.scroll-top__icon { width: 17px; height: 17px; }

/* ==========================================================================
   11. SCROLL REVEAL
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   12. RESPONSIVE — HEADER / FOOTER
   ========================================================================== */

@media (max-width: 1100px) {
  .nav__link { padding-inline: 0.5rem; font-size: 0.9rem; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__contact-col { grid-column: 1 / -1; }
  .footer__contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 0 2rem; }
}

@media (max-width: 960px) {
  :root { --header-h: 68px; }

  .nav-toggle { display: grid; }
  .site-header__actions .btn { display: none; }

  /* Slide-in mobile panel */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: min(360px, 86vw);
    height: 100dvh;
    padding: calc(var(--header-h) + 1.25rem) 1.5rem 2rem;
    background: var(--white);
    border-left: 1px solid var(--line);
    box-shadow: -14px 0 40px rgba(10, 31, 68, 0.14);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.28s var(--ease), visibility 0.28s var(--ease);
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    width: 100%;
  }
  .nav__link {
    justify-content: space-between;
    width: 100%;
    padding: 0.85rem 0.75rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  /* Dropdown becomes an inline accordion */
  .nav__menu {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 0.75rem;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 0 0 0 0.75rem;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transform: none;
    transition: max-height 0.28s var(--ease), padding 0.28s var(--ease);
  }
  .nav__item--has-menu.is-open .nav__menu {
    max-height: 26rem;
    padding-block: 0.35rem;
    transform: none;
  }

  .nav__cta {
    display: flex;
    width: 100%;
    margin-top: 1.25rem;
  }
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .btn-row .btn { flex: 1 1 100%; }
  .logo__mark { width: 34px; height: 34px; }
  .logo__name { font-size: 1.16rem; }
}

/* ==========================================================================
   13. MOTION & PRINT PREFERENCES
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}

@media print {
  .site-header, .site-footer, .scroll-top, .nav-scrim { display: none !important; }
  body { color: #000; }
  .reveal { opacity: 1; transform: none; }
}
