/**
 * Tax Liability Consultants — main stylesheet
 * Source: assets/less/ — compiled to assets/css/main.css via Grunt
 */
/**
 * Brand & theme LESS variables
 * Tax Liability Consultants
 */
:root {
  --navy: #1e3f77;
  --navy-deep: #152c54;
  --navy-soft: #2a5299;
  --red: #bc2026;
  --red-deep: #9a1a1f;
  --red-soft: #d4343a;
  --ink: #1a1f2c;
  --muted: #5a6478;
  --line: #d8dee8;
  --paper: #ffffff;
  --mist: #f3f5f9;
  --mist-2: #e8edf5;
  --font-sans: "Google Sans", "Segoe UI", sans-serif;
  --font-serif: "Google Sans", "Segoe UI", sans-serif;
  --header-h: 76px;
  --max: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 40px rgba(21, 44, 84, 0.1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover {
  color: var(--red);
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.75em;
}
p {
  margin: 0 0 1em;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
@media screen and (min-width: 1251px) {
  .site-header .header-cta {
    margin-left: 2vw;
  }
}
@media screen and (min-width: 1251px) {
  .site-header .nav-menu {
    gap: 3rem;
  }
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(21, 44, 84, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  min-width: 0;
}
.site-brand:hover {
  color: var(--navy);
}
.site-logo {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--red);
}
.brand-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 0.25rem 0;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--navy);
}
.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  transform: scaleX(1);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-accent:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: #fff;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-deep);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.8rem;
}
.btn-block {
  width: 100%;
}
/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.section-header {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-header--light .section-title,
.section-header--light .section-intro {
  color: #fff;
}
.section-header--light .section-label {
  color: #f5b0b2;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: 0.85rem;
}
.section-intro {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
}
/* ---------- Parallax ---------- */
.parallax-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.parallax-bg {
  position: absolute;
  inset: -20% 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.hero-bg {
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(188, 32, 38, 0.18), transparent 55%), linear-gradient(180deg, rgba(15, 35, 72, 0.72) 0%, rgba(15, 35, 72, 0.55) 50%, rgba(15, 35, 72, 0.82) 100%);
}
/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 4rem;
  color: #fff;
}
.hero-content {
  position: relative;
  max-width: 760px;
  padding-block: 2rem;
  animation: heroIn 1s var(--ease) both;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-brand-mark {
  width: 100px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
  animation: markFloat 6s ease-in-out infinite;
}
@keyframes markFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8b037;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  color: #fff;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36em;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  width: 28px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  display: grid;
  place-items: center;
}
.scroll-hint span {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}
/* ---------- Services ---------- */
.services {
  background: var(--mist);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--paper);
  padding: 2.25rem 1.85rem 2rem;
  border-top: 3px solid var(--navy);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--red);
  box-shadow: 0 24px 48px rgba(21, 44, 84, 0.14);
}
.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1.35rem;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.service-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
  color: var(--navy);
}
.service-text {
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-link {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
}
.service-link:hover {
  color: var(--navy);
}
/* ---------- Parallax band ---------- */
.parallax-band {
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
.band-bg {
  background-image: linear-gradient(120deg, rgba(30, 63, 119, 0.92), rgba(188, 32, 38, 0.78)), url("../images/hero-pattern.svg");
  background-size: cover, 420px;
  background-position: center;
}
.band-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(21, 44, 84, 0.3), transparent);
}
.band-quote {
  margin: 0;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.band-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.45;
  color: #fff;
  margin: 0;
  font-style: italic;
}
/* ---------- About ---------- */
.about {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-panel {
  background: linear-gradient(160deg, #507bc4 0%, var(--navy-deep) 55%, #4a1720 100%);
  color: #fff;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-pattern.svg") center / 280px repeat;
  opacity: 0.08;
  pointer-events: none;
}
.about-logo {
  width: 140px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.3));
}
.about-stats {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  gap: 1rem;
}
.about-stats li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  min-width: 3.5rem;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}
.about-copy .section-title {
  text-align: left;
}
.about-copy p {
  color: var(--muted);
}
.about-list {
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.65rem;
}
.about-list li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 1px;
}
/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--mist);
  overflow: hidden;
}
.testimonials .section-header {
  margin-bottom: 3rem;
}
.testimonials-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  padding-top: 2.5rem;
}
.testimonials-viewport {
  overflow: hidden;
  padding: 5rem 0.5rem;
  margin: 0 -0.25rem;
}
.testimonials-track {
  display: flex;
  gap: 2.2rem;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.t-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: var(--paper);
  border-radius: 4px;
  padding: 3.25rem 1.75rem 2rem;
  text-align: center;
  border: 1px solid rgba(30, 63, 119, 0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.t-card.is-active {
  transform: scale(1.12);
  box-shadow: 0 22px 48px rgba(21, 44, 84, 0.12);
  border-color: rgba(30, 63, 119, 0.1);
  z-index: 10;
}
.t-avatar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 100%);
  border: 4px solid var(--paper);
  box-shadow: 0 6px 18px rgba(21, 44, 84, 0.15);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.t-avatar--alt {
  background: linear-gradient(145deg, var(--red) 0%, var(--red-soft) 100%);
}
.t-initials {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-quote {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 0.6;
  color: var(--navy);
  opacity: 0.9;
  user-select: none;
  display: block;
}
.t-quote-open {
  align-self: flex-start;
  margin-bottom: 0.35rem;
  color: var(--navy);
}
.t-quote-close {
  align-self: flex-end;
  margin-top: auto;
  color: var(--red);
}
.t-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0.15rem 0 0.75rem;
  letter-spacing: 0.01em;
}
.t-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 0.75rem;
  flex: 1;
}
.t-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 4px 12px rgba(21, 44, 84, 0.06);
}
.t-nav:hover,
.t-nav:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  outline: none;
}
.t-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.t-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.t-dot.is-active {
  background: var(--red);
  transform: scale(1.2);
}
.t-dot:hover,
.t-dot:focus-visible {
  background: var(--navy);
  outline: none;
}
/* ---------- Contact ---------- */
.contact {
  color: #fff;
}
.contact-bg {
  background-image: linear-gradient(145deg, #152c54 0%, #1e3f77 50%, #3a151a 100%), url("../images/hero-pattern.svg");
  background-size: cover, 360px;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 20% 20%, rgba(188, 32, 38, 0.25), transparent 50%);
}
.contact-wrap {
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info h3 {
  color: #fff;
  font-size: 1.35rem;
}
.contact-info p {
  color: rgba(255, 255, 255, 0.82);
}
.contact-details {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.15rem;
}
.contact-details li {
  display: grid;
  gap: 0.25rem;
}
.detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0a8ab;
}
.contact-details a,
.contact-details span:not(.detail-label) {
  color: #fff;
  font-weight: 500;
}
.contact-form {
  background: rgba(255, 255, 255, 0.97);
  padding: 2rem;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.contact-form .wpforms-container .wpforms-form {
  margin-top: -20px;
  margin-bottom: -15px;
}
.contact-form .wpforms-container .wpforms-form [type="submit"] {
  border-radius: 0;
  min-width: 160px;
  text-align: center;
  background-color: var(--navy) !important;
  color: #fff !important;
  text-transform: uppercase;
}
.contact-form .wpforms-container .wpforms-form [type="submit"]:hover,
.contact-form .wpforms-container .wpforms-form [type="submit"]:focus {
  background-color: var(--red) !important;
  color: #fff !important;
}
.form-row {
  margin-bottom: 1.1rem;
}
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.req {
  color: var(--red);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 63, 119, 0.12);
}
.form-status {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-status.is-success {
  color: #1a6b3c;
}
.form-status.is-error {
  color: var(--red);
}
/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-logo {
  width: 44px;
  height: auto;
}
.footer-title {
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}
.footer-tagline {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: flex-end;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}
/* ---------- Content pages ---------- */
.content-area {
  padding-top: calc(var(--header-h) + 2rem);
  max-width: 760px;
}
.entry-content {
  color: var(--muted);
}
/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .about-panel {
    min-height: auto;
  }
  .t-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}
@media (max-width: 640px) {
  .testimonials-slider {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .testimonials-viewport {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-left: 0;
    padding-right: 0;
  }
  .t-nav-prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }
  .t-nav-next {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }
  .t-dots {
    grid-row: 3;
  }
  .t-card {
    flex: 0 0 100%;
    min-height: 260px;
  }
  .t-card.is-active {
    transform: translateY(-4px) scale(1);
  }
}
@media (max-width: 800px) {
  .nav-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(21, 44, 84, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }
  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-menu a {
    display: block;
    padding: 0.9rem 1.5rem;
  }
  .nav-menu a::after {
    display: none;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-nav {
    justify-content: flex-start;
  }
  .hero-brand-mark {
    width: 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .parallax-bg {
    transform: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
body.logged-in.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.logged-in.admin-bar .site-header {
    top: 44px!important;
  }
}
/*# sourceMappingURL=main.css.map */