:root {
  --bg: #061423;
  --bg-alt: #0a1d33;
  --bg-soft: #0d2238;
  --surface: rgba(11, 30, 49, 0.92);
  --surface-strong: rgba(18, 55, 84, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --text: #f3f8ff;
  --muted: #c2d5e6;
  --line: rgba(131, 170, 201, 0.18);
  --line-strong: rgba(131, 170, 201, 0.3);
  --accent: #fd942d;
  --accent-strong: #ffad55;
  --accent-soft: rgba(253, 148, 45, 0.14);
  --blue-soft: #83aac9;
  --heading-blue: #edf7ff;
  --teal: #3abec7;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.22);
  --radius: 12px;
  --radius-sm: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(58, 190, 199, 0.09), transparent 26%),
    radial-gradient(circle at top right, rgba(253, 148, 45, 0.08), transparent 28%),
    linear-gradient(180deg, #031a31 0%, #061423 36%, #08182c 100%);
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

main {
  overflow: clip;
}

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

.topbar {
  border-bottom: 1px solid rgba(131, 170, 201, 0.12);
  background: rgba(4, 16, 29, 0.72);
}

.topbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.topbar p,
.topbar a {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
}

.topbar p {
  letter-spacing: 0.01em;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.topbar-links a {
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(131, 170, 201, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.topbar a:hover {
  color: var(--text);
  border-color: rgba(253, 148, 45, 0.28);
  background: rgba(253, 148, 45, 0.08);
}

.site-masthead {
  position: sticky;
  top: 0;
  z-index: 30;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  contain: paint;
  overflow-anchor: none;
}

.site-masthead .topbar,
.site-masthead .site-header {
  position: static;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(4, 17, 31, 0.88);
  border-bottom: 1px solid rgba(131, 170, 201, 0.12);
}

.header-shell {
  display: grid;
  gap: 0.7rem;
  padding: 0.95rem 0 0.85rem;
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 62px;
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(210px, 24vw, 300px);
  height: auto;
}

.brand-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-left: 1.05rem;
  border-left: 1px solid rgba(253, 148, 45, 0.32);
  color: rgba(232, 239, 246, 0.9);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-shadow: 0 0 18px rgba(7, 14, 24, 0.28);
  white-space: nowrap;
}

.brand-tagline strong {
  color: var(--accent);
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  flex-wrap: wrap;
  padding: 0.42rem;
  border: 1px solid rgba(131, 170, 201, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.022);
}

.main-nav a {
  color: #d2e2ef;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.93rem;
  padding: 0.66rem 0.86rem;
  border-radius: 10px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

@media (min-width: 861px) {
  .site-masthead.is-scrolled .topbar {
    display: none;
  }

  .site-masthead.is-scrolled .site-header,
  .site-header.is-scrolled {
    background: rgba(4, 17, 31, 0.96);
    border-bottom-color: rgba(131, 170, 201, 0.18);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  }

  .site-masthead.is-scrolled .header-shell,
  .site-header.is-scrolled .header-shell {
    gap: 0.15rem;
    padding: 0.35rem 0 0.3rem;
  }

  .site-masthead.is-scrolled .header-top-row,
  .site-header.is-scrolled .header-top-row {
    display: none;
  }

  .site-masthead.is-scrolled .main-nav,
  .site-header.is-scrolled .main-nav {
    justify-content: center;
    gap: 0.22rem;
    padding: 0.28rem;
    border-color: rgba(131, 170, 201, 0.1);
    background: rgba(255, 255, 255, 0.018);
  }

  .site-masthead.is-scrolled .main-nav a,
  .site-header.is-scrolled .main-nav a {
    padding: 0.54rem 0.76rem;
  }
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transform: translateY(-1px);
}

.mobile-nav-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.mobile-nav-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.menu-open .mobile-nav-btn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .mobile-nav-btn span:nth-child(2) {
  opacity: 0;
}

body.menu-open .mobile-nav-btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.mobile-menu.hidden {
  display: none;
}

.hero-section {
  position: relative;
  padding: 5.6rem 0 3.25rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(560px, 60vw);
  height: 560px;
  transform: translateX(-6%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 190, 199, 0.1), transparent 62%);
  pointer-events: none;
  filter: blur(6px);
}

.blog-hero-section {
  padding: 4.2rem 0 2.4rem;
}

.blog-hero-section::before {
  width: min(360px, 36vw);
  height: 360px;
  transform: translateX(18%);
  opacity: 0.42;
}

.blog-hero-section .hero-copy {
  max-width: 56rem;
}

.blog-hero-section h1 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.blog-hero-photo {
  align-self: start;
  justify-self: center;
  width: min(100%, 420px);
  margin-top: 0;
}

.hero-grid,
.split-grid,
.fit-grid,
.cta-shell,
.footer-shell {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
}

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

h1,
h2,
h3 {
  color: var(--heading-blue);
}

h1 {
  margin-bottom: 1rem;
  max-width: 11.5ch;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.95rem, 3vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

p,
li,
span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-copy,
.hero-stack,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero-lede {
  max-width: 62ch;
  font-size: 1.08rem;
  margin-bottom: 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.65rem 0 1.5rem;
}

.cta-shell .cta-actions {
  flex-direction: column;
  align-items: stretch;
  margin: 0;
}

.cta-shell .cta-actions .button {
  width: 100%;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(253, 148, 45, 0.38);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  background-size: 140% 140%;
  background-position: 50% 50%;
  transition: transform 0.08s ease, border-color 0.08s ease, background 0.08s ease, background-position 0.08s ease, color 0.08s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 13px;
  border: 1px solid rgba(216, 235, 248, 0);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition: opacity 0.08s ease, transform 0.08s ease, border-color 0.08s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(157, 194, 223, 0.78);
  background: linear-gradient(135deg, #123754, #0d2238);
  background-position: 100% 50%;
  box-shadow: none;
  filter: none;
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(216, 235, 248, 0.42);
}

.button-primary {
  color: #111a20;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  background-size: 140% 140%;
  background-position: 50% 50%;
  box-shadow: none;
}

.button-secondary {
  color: #111a20;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  background-size: 140% 140%;
  background-position: 50% 50%;
  box-shadow: none;
}

.button-tertiary {
  color: #111a20;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  background-size: 140% 140%;
  background-position: 50% 50%;
  box-shadow: none;
}

.hero-chips,
.owner-bullets,
.check-list {
  margin: 0;
  padding: 0;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
}

.hero-chips li {
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(131, 170, 201, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #d9e8f4;
  font-weight: 600;
  line-height: 1.35;
}

.hero-proof-grid,
.services-grid,
.card-grid,
.benefit-grid,
.trust-band {
  display: grid;
  gap: 1rem;
}

.hero-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.mini-proof-card,
.service-card,
.info-card,
.owner-card,
.hero-side-card,
.benefit-card,
.fit-card,
.story-card,
.location-card,
.trust-item,
.web-tech-panel,
.cta-shell,
.contact-form,
.contact-thanks,
.form-response-card,
.mobile-menu,
.site-footer {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(14, 38, 62, 0.96), rgba(9, 28, 47, 0.94));
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.mini-proof-card {
  padding: 1rem 1rem 1.1rem;
}

.mini-proof-card strong,
.trust-item strong {
  display: block;
  color: var(--heading-blue);
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.hero-stack {
  display: grid;
  gap: 1.15rem;
}

.owner-card {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.owner-photo-wrap {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.14));
}

.owner-photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(6, 20, 35, 0.34));
  pointer-events: none;
}

.owner-photo-wrap picture,
.owner-photo-wrap img {
  display: block;
}

.owner-photo-wrap img {
  width: 100%;
  height: auto;
}

.about-company-photo-wrap img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.owner-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.owner-card-title {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.card-kicker {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.owner-bullets,
.check-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 1.2rem;
}

.owner-bullets li,
.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.owner-bullets li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  box-shadow: 0 0 0 4px rgba(253, 148, 45, 0.1);
}

.hero-side-card {
  padding: 1.2rem 1.25rem 1.3rem;
}

.keyword-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
}

.keyword-list li {
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(131, 170, 201, 0.16);
  border-radius: 12px;
  background: rgba(5, 18, 32, 0.36);
}

.keyword-list strong {
  display: block;
  color: var(--heading-blue);
  font-size: 1.05rem;
  margin-bottom: 0.18rem;
}

.keyword-list span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.signal-row-card {
  grid-column: 1 / -1;
  margin-top: 0.15rem;
}

.signal-kicker {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--heading-blue);
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.signal-list div {
  height: 100%;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(131, 170, 201, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-links {
  gap: 0.55rem 0.85rem;
  padding: 0.7rem 0.85rem 0;
  border-top: 1px solid rgba(131, 170, 201, 0.14);
}

.footer-links a {
  color: var(--blue-soft);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-strong);
}

.footer-contact-link {
  color: var(--accent-strong) !important;
}

.social-links {
  gap: 0.55rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(131, 170, 201, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.social-links img {
  display: block;
  width: 1.08rem;
  height: 1.08rem;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(253, 148, 45, 0.58);
  background: rgba(253, 148, 45, 0.14);
  color: var(--accent-strong);
}

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

.signal-list strong {
  display: block;
  color: var(--heading-blue);
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.section {
  padding: 2rem 0 4.5rem;
}

.section-alt {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03));
  border-top: 1px solid rgba(131, 170, 201, 0.1);
  border-bottom: 1px solid rgba(131, 170, 201, 0.1);
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 1.8rem;
}

.wide-heading {
  max-width: 60rem;
}

.about-work-heading {
  max-width: none;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.services-grid,
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.info-card,
.benefit-card,
.fit-card,
.story-card,
.trust-item {
  padding: 1.3rem 1.3rem 1.35rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.info-card {
  min-height: 100%;
}

.service-card:hover,
.info-card:hover,
.benefit-card:hover,
.fit-card:hover,
.story-card:hover,
.trust-item:hover {
  transform: translateY(-2px);
  border-color: rgba(253, 148, 45, 0.34);
}

.service-card a,
.text-link,
.site-footer a {
  color: inherit;
  text-decoration: none;
}

.service-card a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--accent-strong);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(253, 148, 45, 0.28);
  background: linear-gradient(135deg, rgba(253, 148, 45, 0.18), rgba(58, 190, 199, 0.1));
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 0.8rem;
}

.service-card-featured {
  background:
    radial-gradient(circle at top right, rgba(253, 148, 45, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(18, 55, 84, 0.98), rgba(12, 34, 57, 0.96));
}

.service-card p:last-child,
.benefit-card p:last-child,
.fit-card p:last-child,
.story-card p:last-child,
.trust-item p:last-child,
.hero-side-card p:last-child {
  margin-bottom: 0;
}

.story-stack {
  display: grid;
  gap: 1.15rem;
}

.story-card h3 {
  margin-bottom: 0.75rem;
  color: var(--heading-blue);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.story-photo {
  margin: 1.15rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
}

.story-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.continuing-education-photo {
  margin-top: 1.1rem;
}

.managed-it-hero-photo {
  max-width: min(100%, 320px);
  margin-right: auto;
  margin-left: auto;
}

.webdesign-hero-photo {
  grid-column: 1 / -1;
  margin-top: 0;
}

.phone-internet-hero-photo {
  grid-column: 1 / -1;
  margin-top: 0;
}

.web-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.web-service-card {
  gap: 0.35rem;
}

.web-service-card h3 {
  font-size: 1.2rem;
}

.web-service-card p {
  margin-bottom: 0;
}

.web-tech-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.web-tech-panel-copy {
  display: grid;
  align-content: center;
}

.web-tech-panel-copy p:last-child {
  margin-bottom: 0;
}

.web-tech-panel-details {
  display: grid;
  align-content: center;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(131, 170, 201, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.web-tech-panel-details h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.web-tech-panel-details .check-list {
  margin-bottom: 0;
}

.split-grid {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.sticky-intro {
  position: sticky;
  top: 132px;
}

.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: start;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 400px));
  justify-content: center;
  gap: 1.25rem;
}

.location-card {
  width: min(100%, 400px);
  overflow: hidden;
}

.location-card iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

.location-card-body {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
}

.location-card-body h3,
.location-card-body p {
  margin-bottom: 0;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 260px;
  padding: 1.25rem;
  border: 2px dashed rgba(253, 148, 45, 0.68);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(253, 148, 45, 0.09), rgba(58, 190, 199, 0.07)),
    rgba(255, 255, 255, 0.028);
  color: rgba(232, 239, 246, 0.82);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), var(--shadow-soft);
}

.photo-placeholder span {
  max-width: 24rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.photo-placeholder-wide {
  min-height: clamp(220px, 28vw, 340px);
}

.photo-placeholder-portrait {
  min-height: clamp(340px, 38vw, 460px);
}

.photo-placeholder-compact {
  min-height: 220px;
}

.photo-placeholder-full {
  grid-column: 1 / -1;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 38, 62, 0.96), rgba(9, 28, 47, 0.94));
  box-shadow: var(--shadow-soft);
}

.media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame-wide video {
  min-height: clamp(220px, 28vw, 340px);
}

.hero-stack .photo-placeholder {
  margin-top: 1rem;
}

.fit-card .photo-placeholder,
.contact-form-intro .photo-placeholder,
.story-card .photo-placeholder {
  margin-top: 1.15rem;
}

.about-dave-hero-photo {
  margin-top: 1.25rem;
}

.location-card-body .button {
  width: fit-content;
  margin-top: 0.2rem;
}

.contact-form-section {
  padding-top: 3.2rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-form-intro {
  min-height: 100%;
}

.contact-form-panel {
  min-height: 100%;
  position: relative;
  isolation: isolate;
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  inset: -0.7rem -0.5rem auto auto;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(253, 148, 45, 0.22), transparent 68%);
  filter: blur(2px);
  opacity: 0.72;
  pointer-events: none;
  z-index: -1;
}

.contact-form {
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid rgba(131, 170, 201, 0.26);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(135deg, rgba(253, 148, 45, 0.11), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(58, 190, 199, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(14, 38, 62, 0.98), rgba(9, 28, 47, 0.95));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, transparent 62%);
  transform: translateX(-72%);
  opacity: 0.6;
  pointer-events: none;
  animation: formPanelSheen 7.5s ease-in-out infinite;
}

.contact-form:hover,
.contact-form:focus-within {
  transform: translateY(-2px);
  border-color: rgba(253, 148, 45, 0.34);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(253, 148, 45, 0.08) inset;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--heading-blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.required-badge,
.optional-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.12rem;
  padding: 0.1rem 0.42rem;
  border-radius: 999px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.required-badge {
  color: rgba(255, 220, 181, 0.95);
  background: rgba(253, 148, 45, 0.14);
  border: 1px solid rgba(253, 148, 45, 0.28);
}

.optional-badge {
  color: var(--heading-blue);
  background: rgba(131, 170, 201, 0.15);
  border: 1px solid rgba(131, 170, 201, 0.2);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(131, 170, 201, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  padding: 0.85rem 0.95rem;
  outline: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.form-row textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(253, 148, 45, 0.62);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 4px rgba(253, 148, 45, 0.12);
  transform: translateY(-1px);
}

.form-row input:required:valid,
.form-row textarea:required:valid {
  border-color: rgba(58, 190, 199, 0.4);
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
  box-shadow: 0 13px 28px rgba(253, 148, 45, 0.18);
}

.form-note {
  margin: -0.15rem 0 0;
  font-size: 0.88rem;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form.is-sending {
  pointer-events: none;
  opacity: 0.72;
}

.contact-form.is-sent {
  display: none;
}

.contact-thanks {
  min-height: 100%;
  padding: 1.55rem;
  text-align: center;
  border-color: rgba(58, 190, 199, 0.28);
  background:
    radial-gradient(circle at 50% 22%, rgba(58, 190, 199, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(14, 38, 62, 0.96), rgba(9, 28, 47, 0.94));
}

.contact-thanks[hidden] {
  display: none;
}

.contact-thanks.is-visible {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.95rem;
  animation: thankYouFadeIn 0.32s ease both;
}

.contact-thanks h2,
.contact-thanks p {
  margin-bottom: 0;
}

.contact-thanks .button {
  margin-top: 0.35rem;
}

.success-computer {
  width: min(13rem, 72vw);
  height: auto;
  margin: -0.2rem auto 0.2rem;
  overflow: visible;
}

.contact-thanks.is-visible .success-computer {
  animation: successComputerFloat 3.2s ease-in-out 1.08s infinite;
}

.success-computer-body {
  transform-origin: 110px 92px;
}

.contact-thanks.is-visible .success-computer-body {
  animation: computerPop 0.72s cubic-bezier(0.2, 1.08, 0.34, 1) 0.08s both;
}

.success-monitor,
.success-stand,
.success-base {
  fill: rgba(13, 43, 70, 0.98);
  stroke: rgba(217, 235, 248, 0.92);
  stroke-width: 4;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.32));
}

.success-screen {
  fill: rgba(58, 190, 199, 0.13);
  stroke: rgba(58, 190, 199, 0.42);
  stroke-width: 2;
}

.success-check {
  fill: none;
  stroke: rgb(253, 148, 45);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 92;
  stroke-dashoffset: 92;
}

.contact-thanks.is-visible .success-check {
  animation: successCheckDraw 0.58s ease-out 0.58s both;
}

.success-confetti rect,
.success-confetti circle,
.success-confetti polygon {
  fill: var(--confetti-color, rgb(58, 190, 199));
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 1.6;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.42));
}

.contact-thanks.is-visible .success-confetti rect,
.contact-thanks.is-visible .success-confetti circle,
.contact-thanks.is-visible .success-confetti polygon {
  animation: confettiPaperThrow 5.2s linear var(--confetti-delay, 0.48s) both;
}

.success-confetti > *:nth-child(1) {
  --confetti-color: rgb(253, 148, 45);
  --pop-x: -36px;
  --pop-y: -70px;
  --fall-x: -58px;
  --fall-y: 98px;
  --spin: -420deg;
  --confetti-delay: 0.34s;
}

.success-confetti > *:nth-child(2) {
  --confetti-color: rgb(58, 190, 199);
  --pop-x: -18px;
  --pop-y: -82px;
  --fall-x: -32px;
  --fall-y: 118px;
  --spin: 360deg;
  --confetti-delay: 0.4s;
}

.success-confetti > *:nth-child(3) {
  --confetti-color: rgb(255, 207, 122);
  --pop-x: 4px;
  --pop-y: -88px;
  --fall-x: 10px;
  --fall-y: 124px;
  --spin: -320deg;
  --confetti-delay: 0.44s;
}

.success-confetti > *:nth-child(4) {
  --confetti-color: rgb(237, 247, 255);
  --pop-x: 27px;
  --pop-y: -78px;
  --fall-x: 42px;
  --fall-y: 116px;
  --spin: 410deg;
  --confetti-delay: 0.48s;
}

.success-confetti > *:nth-child(5) {
  --confetti-color: rgb(253, 148, 45);
  --pop-x: 46px;
  --pop-y: -62px;
  --fall-x: 66px;
  --fall-y: 96px;
  --spin: -380deg;
  --confetti-delay: 0.52s;
}

.success-confetti > *:nth-child(6) {
  --confetti-color: rgb(131, 170, 201);
  --pop-x: -48px;
  --pop-y: -52px;
  --fall-x: -72px;
  --fall-y: 88px;
  --spin: 300deg;
  --confetti-delay: 0.57s;
}

.success-confetti > *:nth-child(7) {
  --confetti-color: rgb(255, 207, 122);
  --pop-x: -8px;
  --pop-y: -66px;
  --fall-x: -16px;
  --fall-y: 114px;
  --spin: -450deg;
  --confetti-delay: 0.61s;
}

.success-confetti > *:nth-child(8) {
  --confetti-color: rgb(253, 148, 45);
  --pop-x: 18px;
  --pop-y: -67px;
  --fall-x: 28px;
  --fall-y: 110px;
  --spin: 500deg;
  --confetti-delay: 0.65s;
}

.success-confetti > *:nth-child(9) {
  --confetti-color: rgb(58, 190, 199);
  --pop-x: 38px;
  --pop-y: -50px;
  --fall-x: 54px;
  --fall-y: 92px;
  --spin: -260deg;
  --confetti-delay: 0.7s;
}

.success-confetti > *:nth-child(10) {
  --confetti-color: rgb(237, 247, 255);
  --pop-x: -28px;
  --pop-y: -56px;
  --fall-x: -40px;
  --fall-y: 90px;
  --spin: 240deg;
  --confetti-delay: 0.74s;
}

.success-confetti > *:nth-child(11) {
  --confetti-color: rgb(253, 148, 45);
  --pop-x: 10px;
  --pop-y: -72px;
  --fall-x: 20px;
  --fall-y: 120px;
  --spin: -520deg;
  --confetti-delay: 0.78s;
}

.success-confetti > *:nth-child(12) {
  --confetti-color: rgb(255, 207, 122);
  --pop-x: -2px;
  --pop-y: -60px;
  --fall-x: -6px;
  --fall-y: 110px;
  --spin: 390deg;
  --confetti-delay: 0.84s;
}

.success-confetti > *:nth-child(13) {
  --confetti-color: rgb(58, 190, 199);
  --pop-x: -56px;
  --pop-y: -38px;
  --fall-x: -84px;
  --fall-y: 84px;
  --spin: -340deg;
  --confetti-delay: 0.9s;
}

.success-confetti > *:nth-child(14) {
  --confetti-color: rgb(253, 148, 45);
  --pop-x: 58px;
  --pop-y: -40px;
  --fall-x: 86px;
  --fall-y: 86px;
  --spin: 440deg;
  --confetti-delay: 0.94s;
}

.success-confetti > *:nth-child(15) {
  --confetti-color: rgb(237, 247, 255);
  --pop-x: -16px;
  --pop-y: -44px;
  --fall-x: -24px;
  --fall-y: 92px;
  --spin: 280deg;
  --confetti-delay: 1s;
}

.success-confetti > *:nth-child(16) {
  --confetti-color: rgb(255, 207, 122);
  --pop-x: 32px;
  --pop-y: -48px;
  --fall-x: 46px;
  --fall-y: 88px;
  --spin: -300deg;
  --confetti-delay: 1.05s;
}

@keyframes computerPop {
  0% {
    opacity: 0;
    transform: translateY(1rem) scale(0.82) rotate(-2deg);
  }

  58% {
    opacity: 1;
    transform: translateY(-0.25rem) scale(1.05) rotate(1deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes successComputerFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.42rem);
  }
}

@keyframes successCheckDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes burstPop {
  0% {
    opacity: 0;
    transform: translateY(0.4rem) scale(0.6) rotate(-10deg);
  }

  28% {
    opacity: 1;
    transform: translateY(-0.15rem) scale(1.16) rotate(6deg);
  }

  100% {
    opacity: 0.82;
    transform: translateY(-0.32rem) scale(1) rotate(0deg);
  }
}

@keyframes confettiPaperThrow {
  0% {
    opacity: 0;
    transform: translate(0, 16px) scale(0.22) rotate(0deg);
  }

  9% {
    opacity: 1;
    transform: translate(calc(var(--pop-x, 0px) * 0.2), calc(var(--pop-y, -70px) * 0.52)) scale(1.08) rotate(calc(var(--spin, 360deg) * 0.1));
  }

  22% {
    opacity: 1;
    transform: translate(var(--pop-x, 0px), var(--pop-y, -70px)) scale(1) rotate(calc(var(--spin, 360deg) * 0.3));
  }

  38% {
    opacity: 0.98;
    transform: translate(calc((var(--pop-x, 0px) * 0.86) + (var(--fall-x, 24px) * 0.07)), calc((var(--pop-y, -70px) * 0.76) + (var(--fall-y, 104px) * 0.07))) scale(0.98) rotate(calc(var(--spin, 360deg) * 0.46));
  }

  58% {
    opacity: 0.96;
    transform: translate(calc((var(--pop-x, 0px) * 0.58) + (var(--fall-x, 24px) * 0.28)), calc((var(--pop-y, -70px) * 0.38) + (var(--fall-y, 104px) * 0.28))) scale(0.94) rotate(calc(var(--spin, 360deg) * 0.66));
  }

  80% {
    opacity: 0.92;
    transform: translate(calc((var(--pop-x, 0px) * 0.22) + (var(--fall-x, 24px) * 0.72)), calc((var(--pop-y, -70px) * 0.08) + (var(--fall-y, 104px) * 0.72))) scale(0.9) rotate(calc(var(--spin, 360deg) * 0.88));
  }

  100% {
    opacity: 0.82;
    transform: translate(var(--fall-x, 24px), var(--fall-y, 104px)) scale(0.88) rotate(var(--spin, 360deg));
  }
}

@keyframes thankYouFadeIn {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes formPanelSheen {
  0%,
  42% {
    transform: translateX(-72%);
  }

  58%,
  100% {
    transform: translateX(72%);
  }
}

.form-response-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.form-response-card {
  max-width: 760px;
  padding: 1.7rem;
}

.form-response-card h1 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
}

.form-response-card.success {
  border-color: rgba(58, 190, 199, 0.28);
}

.form-response-card.error {
  border-color: rgba(253, 148, 45, 0.36);
}

.fit-card-primary {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem 1.55rem 1.6rem;
}

.fit-card-primary .check-list {
  margin-bottom: 0;
}

.fit-card-stack {
  display: grid;
  gap: 1rem;
}

.home-fit-stack {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-fit-photo {
  align-self: center;
  width: min(100%, 460px);
  margin-left: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 38, 62, 0.96), rgba(9, 28, 47, 0.94));
  box-shadow: var(--shadow-soft);
}

.home-fit-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 30vw, 400px);
  object-fit: cover;
}

.trust-band-section {
  padding-top: 0;
}

.trust-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  min-height: 100%;
}

.cta-section {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.cta-shell {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  align-items: center;
  padding: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(253, 148, 45, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(18, 55, 84, 0.98), rgba(11, 31, 52, 0.98));
  border-color: rgba(253, 148, 45, 0.18);
  box-shadow: var(--shadow);
}

.site-footer {
  margin: 0 0 1.25rem;
  padding: 1.15rem 0;
  background: rgba(6, 20, 35, 0.78);
  border-top: 1px solid rgba(131, 170, 201, 0.12);
  border-radius: 14px;
}

.footer-shell {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  text-align: center;
  gap: 0.95rem;
}

.footer-brand {
  max-width: 54rem;
}

.footer-brand p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer-logo {
  display: block;
  width: clamp(150px, 18vw, 205px);
  margin: 0 auto 0.65rem;
}

.footer-social-group {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
}

.footer-social-label {
  margin: 0;
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.footer-meta p,
.footer-meta-item {
  margin-bottom: 0;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(131, 170, 201, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.footer-meta p:last-child,
.site-footer p:last-child {
  margin-bottom: 0;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 800;
}

@media (max-width: 1150px) {
  .brand-tagline {
    display: none;
  }

  .services-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof-grid,
  .trust-band,
  .signal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .topbar-shell,
  .hero-grid,
  .split-grid,
  .fit-grid,
  .web-tech-panel,
  .contact-form-grid,
  .cta-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .topbar-shell {
    display: grid;
    justify-content: stretch;
    justify-items: center;
    text-align: center;
  }

  .topbar-links {
    justify-content: center;
  }

  .sticky-intro {
    position: static;
  }

  .hero-section {
    padding-top: 4.8rem;
  }

  .benefit-grid,
  .services-grid,
  .card-grid,
  .home-fit-stack,
  .hero-proof-grid,
  .trust-band,
  .signal-list,
  .location-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .site-masthead {
    background: #04111f;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  }

  .topbar {
    display: none;
  }

  .site-header {
    background: #04111f;
    border-bottom-color: rgba(131, 170, 201, 0.18);
  }

  .header-shell {
    gap: 0;
    padding: 0.65rem 0;
  }

  .header-top-row {
    min-height: 54px;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav-btn {
    display: flex;
  }

  .mobile-menu {
    display: grid;
    gap: 0.25rem;
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(131, 170, 201, 0.18);
    background: #061423;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  }

  .mobile-menu.hidden {
    display: none;
  }

  .mobile-menu a {
    padding: 0.9rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.02);
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-menu .mobile-cta {
    color: var(--text);
    text-align: center;
  }
}

@media (max-width: 700px) {
  .topbar-links {
    gap: 0.55rem 1rem;
  }

  .header-shell {
    padding: 0.8rem 0;
  }

  .brand-logo {
    width: clamp(185px, 54vw, 245px);
  }

  h1 {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.45rem);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-form .button {
    width: 100%;
  }

  .contact-thanks .button {
    width: 100%;
  }

  .section {
    padding: 1.4rem 0 3.4rem;
  }

  .site-footer {
    border-radius: 12px;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  .contact-thanks.is-visible .success-confetti rect,
  .contact-thanks.is-visible .success-confetti circle,
  .contact-thanks.is-visible .success-confetti polygon {
    animation-duration: 5.2s !important;
    animation-timing-function: linear !important;
    opacity: 0.9 !important;
  }
}


.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  min-height: 100%;
  padding: 1.3rem 1.3rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 38, 62, 0.96), rgba(9, 28, 47, 0.94));
  box-shadow: var(--shadow-soft);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(253, 148, 45, 0.34);
}

.blog-card-featured {
  background:
    radial-gradient(circle at top right, rgba(253, 148, 45, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(18, 55, 84, 0.98), rgba(12, 34, 57, 0.96));
}

.blog-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-meta,
.blog-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-meta {
  color: var(--accent-strong);
  background: rgba(253, 148, 45, 0.12);
  border: 1px solid rgba(253, 148, 45, 0.22);
}

.blog-tag {
  color: var(--heading-blue);
  background: rgba(58, 190, 199, 0.1);
  border: 1px solid rgba(58, 190, 199, 0.18);
}

.blog-card h2 {
  font-size: 1.42rem;
  line-height: 1.2;
  margin-bottom: 0;
}

.blog-card h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--accent-strong);
}

.blog-card p {
  margin-bottom: 0;
}

.blog-points {
  margin: 0.1rem 0 0.2rem;
}

.blog-post-checklist-section {
  padding-top: clamp(3.8rem, 7vw, 5.8rem);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: none;
}

.blog-link::after {
  content: "→";
  transition: transform 0.16s ease;
}

.blog-link:hover::after {
  transform: translateX(2px);
}

.contact-signature {
  margin-top: 1.5rem;
}

.contact-signature img {
  width: auto;
  max-width: 200px;
  height: auto;
  opacity: 0.85;
}
