/* GTS Flagship — index.html page styles (v3 light) */

/* =========================================================
   HERO v5 — atmospheric photo + three overlapping animated blobs
   Austin feedback: CONSTANT background motion, not subtle drift.
   Blobs offset so something is ALWAYS visibly moving.
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(140px + env(safe-area-inset-top, 0px)) 0 var(--space-2xl);
  background: var(--color-cream-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
/* v5: atmospheric duotone background photo — warm workspace */
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  /* Duotone treatment: desaturate, warm tone shift, slight blur */
  filter: grayscale(0.85) sepia(0.35) brightness(1.08) contrast(1.02) blur(1.5px);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
/* Three animated blobs with different motion paths + scale pulses */
.hero__blob {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  border-radius: 50%;
}
.hero__blob--orange {
  top: -24%;
  right: -12%;
  width: 72vw;
  max-width: 920px;
  height: 920px;
  background: radial-gradient(ellipse at center,
    oklch(78% 0.11 62 / 0.48) 0%,
    oklch(88% 0.05 70 / 0.22) 35%,
    transparent 65%);
  animation: hero-orange-drift 26s ease-in-out infinite;
}
.hero__blob--blue {
  bottom: -32%;
  left: -16%;
  width: 74vw;
  max-width: 940px;
  height: 940px;
  background: radial-gradient(ellipse at center,
    oklch(70% 0.09 250 / 0.28) 0%,
    oklch(75% 0.06 250 / 0.12) 40%,
    transparent 68%);
  animation: hero-blue-drift 32s ease-in-out infinite;
  animation-delay: -8s; /* offset so motion is continuous */
}
.hero__blob--yellow {
  /* Third layer — soft yellow glow, drifts vertically, longest period */
  top: 38%;
  left: 48%;
  width: 54vw;
  max-width: 680px;
  height: 680px;
  background: radial-gradient(ellipse at center,
    oklch(88% 0.12 88 / 0.22) 0%,
    oklch(90% 0.08 92 / 0.08) 40%,
    transparent 66%);
  animation: hero-yellow-drift 36s ease-in-out infinite;
  animation-delay: -18s;
  mix-blend-mode: multiply;
}
@keyframes hero-orange-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  20%  { transform: translate3d(-80px, 60px, 0) scale(1.08); }
  40%  { transform: translate3d(-180px, 10px, 0) scale(1.14); }
  60%  { transform: translate3d(-140px, -80px, 0) scale(1.1); }
  80%  { transform: translate3d(-40px, -50px, 0) scale(1.04); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes hero-blue-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  20%  { transform: translate3d(90px, -40px, 0) scale(1.06); }
  40%  { transform: translate3d(200px, 30px, 0) scale(1.12); }
  60%  { transform: translate3d(150px, 100px, 0) scale(1.15); }
  80%  { transform: translate3d(60px, 70px, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes hero-yellow-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  25%  { transform: translate3d(-80px, -60px, 0) scale(1.08); }
  50%  { transform: translate3d(60px, -120px, 0) scale(1.15); }
  75%  { transform: translate3d(120px, -30px, 0) scale(1.05); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__blob { animation: none; }
  .hero__photo { opacity: 0.08; filter: grayscale(1); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}

/* Locator: "GRAND RAPIDS, MI" small eyebrow line */
.hero__locator {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: hero-fade-in 650ms var(--ease-out-quart) forwards;
}
.hero__locator::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--color-amber);
}
.hero__locator::after {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-amber);
  animation: pulse 2.6s ease-in-out infinite;
}

.hero__headline {
  font-size: clamp(56px, 9vw, 140px);
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 15ch;
  margin-bottom: var(--space-lg);
}
.hero__headline .line {
  display: block;
  overflow: hidden;
  padding: 0 0 0.12em;
}
.hero__headline .line > span {
  display: block;
  transform: translateY(100%);
  animation: hero-line-up 900ms var(--ease-out-quart) forwards;
}
.hero__headline .line:nth-of-type(1) > span { animation-delay: 200ms; }
.hero__headline .line:nth-of-type(2) > span { animation-delay: 360ms; }
.hero__headline .line:nth-of-type(3) > span { animation-delay: 520ms; }

.hero__headline .amber-word {
  display: inline-block;
  color: var(--color-amber);
  position: relative;
}
.hero__headline .amber-word::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--color-amber);
  transform: scaleX(0);
  transform-origin: left;
  animation: dollar-underline 800ms var(--ease-out-quart) 1500ms forwards;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--color-mid-char);
  max-width: 52ch;
  line-height: 1.55;
  margin: 0 0 var(--space-lg);
  opacity: 0;
  animation: hero-fade-up 750ms var(--ease-out-quart) 1100ms forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: hero-fade-up 750ms var(--ease-out-quart) 1300ms forwards;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mid-char);
  opacity: 0;
  animation: hero-fade-up 750ms var(--ease-out-quart) 1500ms forwards;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero__meta-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-amber);
}

/* v11: .hero__ornament removed per Austin's review */

/* Hero-bottom "View Our Work" link */
.hero__work-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-2xl);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-amber);
  position: relative;
  padding-bottom: 3px;
  opacity: 0;
  animation: hero-fade-up 750ms var(--ease-out-quart) 1700ms forwards;
  transition: color 180ms var(--ease-out-quart);
}
.hero__work-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--color-amber);
  transition: width 280ms var(--ease-out-quart);
}
.hero__work-link:hover::after, .hero__work-link:focus-visible::after { width: 100%; }
.hero__work-link svg { width: 14px; height: 14px; transition: transform 220ms var(--ease-out-quart); }
.hero__work-link:hover svg, .hero__work-link:focus-visible svg { transform: translateX(5px); }

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-line-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes dollar-underline {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.25); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__locator, .hero__sub, .hero__actions, .hero__meta, .hero__work-link { opacity: 1; animation: none; }
  .hero__headline .line > span { transform: none; animation: none; }
  .hero__headline .amber-word::after { transform: scaleX(1); animation: none; }
  .hero__locator::after { animation: none; }
}

@media (max-width: 600px) {
  .hero {
    padding-top: calc(96px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(var(--space-xl) + 48px); /* room for ornament below content */
    min-height: auto; /* let content determine height on mobile */
  }
  .hero__headline { font-size: clamp(40px, 11vw, 64px); margin-bottom: var(--space-md); }
  .hero__sub { font-size: 16px; margin-bottom: var(--space-md); }
  .hero__actions { margin-bottom: var(--space-md); }
  .hero__meta { font-size: 11px; gap: 10px 20px; }
  .hero__locator { margin-bottom: var(--space-md); font-size: 11px; }
  .hero__work-link { margin-top: var(--space-xl); }
}

/* =========================================================
   PROCESS TEASER
   v10: now dark by default (.section--dark in HTML) for palette rhythm
   ========================================================= */
.process-teaser {
  background: var(--color-cream-white);
  position: relative;
}
/* v10: dark variant — ink background with topo + radial amber glow */
.process-teaser.section--dark {
  background: var(--color-ink);
  color: var(--color-cream-white);
  overflow: hidden;
  isolation: isolate;
}
.process-teaser.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/topo-texture-light.svg");
  background-size: cover;
  opacity: 0.06;
  pointer-events: none;
}
.process-teaser.section--dark::after {
  content: "";
  position: absolute;
  top: -20%; left: 50%;
  width: 80%; height: 140%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
    oklch(72% 0.15 55 / 0.1) 0%,
    transparent 55%);
  pointer-events: none;
}
.process-teaser.section--dark .container { position: relative; z-index: 2; }
.process-teaser.section--dark .process-teaser__header h2 { color: var(--color-cream-white); }
.process-teaser.section--dark .process-teaser__step { border-top-color: oklch(68% 0.155 55 / 0.4); }
.process-teaser.section--dark .process-teaser__step-title { color: var(--color-cream-white); }
.process-teaser.section--dark .process-teaser__step-body { color: oklch(82% 0.015 85); }
.process-teaser__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}
.process-teaser__header h2 { color: var(--color-ink); }
.process-teaser__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
@media (max-width: 900px) {
  .process-teaser__steps { grid-template-columns: repeat(2, 1fr); }
}
/* v8: keep 2x2 on mobile instead of single-column — dramatically reduces scroll */
@media (max-width: 560px) {
  .process-teaser__steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}
.process-teaser__step {
  position: relative;
  padding: var(--space-md) var(--space-md) var(--space-lg);
  border-top: 2px solid var(--color-ink);
}
.process-teaser__step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--color-amber);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}
.process-teaser__step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-ink);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.process-teaser__step-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-mid-char);
  line-height: 1.55;
}
/* v8: tighter step cards on mobile (2x2) */
@media (max-width: 560px) {
  .process-teaser__step {
    padding: 12px 10px var(--space-md);
    border-top-width: 1.5px;
  }
  .process-teaser__step-num { font-size: 40px; margin-bottom: 6px; }
  .process-teaser__step-title { font-size: 16px; margin-bottom: 6px; line-height: 1.1; }
  .process-teaser__step-body { font-size: 13px; line-height: 1.45; }
}
/* v8: tighten the header row on mobile */
@media (max-width: 768px) {
  .process-teaser__header {
    margin-bottom: var(--space-lg);
    gap: var(--space-sm);
  }
}

/* =========================================================
   SERVICES TEASER — v3 with per-service SVG marks + color oscillation
   ========================================================= */
.services-teaser {
  background: var(--color-cream-white);
  position: relative;
  overflow: hidden;
  /* Scroll-driven color oscillation — handled via JS class toggles */
  transition: background-color 1200ms var(--ease-out-quart);
}
.services-teaser.is-oscillate-1 { background-color: var(--color-cream); }
.services-teaser.is-oscillate-2 { background-color: var(--color-cream-white); }

/* v12: Removed decorative L-bracket ornament. Austin flagged it as geometric
   noise next to "A website is just the start." Letting typography carry
   the section on its own now. */
.services-teaser::before {
  content: none;
}
/* Animated dot cluster — staggered amber pulse (v4).
   v15: moved from section-absolute positioning into the CTA row as a
   flow-level element so it sits consistently above "Full services" on
   desktop and mobile. */
.services-teaser__dot-cluster {
  display: flex;
  gap: 20px;
  pointer-events: none;
  margin-bottom: 14px;
}
.services-teaser__cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.services-teaser__dot-cluster span {
  width: 8px; height: 8px;
  background: var(--color-amber);
  border-radius: 50%;
  display: inline-block;
  opacity: 0.3;
  animation: cluster-pulse-home 2.8s ease-in-out infinite;
}
.services-teaser__dot-cluster span:nth-child(1) { animation-delay: 0s; }
.services-teaser__dot-cluster span:nth-child(2) { animation-delay: 0.4s; }
.services-teaser__dot-cluster span:nth-child(3) { animation-delay: 0.8s; }
.services-teaser__dot-cluster span:nth-child(4) { animation-delay: 1.2s; opacity: 0.2; }
@keyframes cluster-pulse-home {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}
@media (prefers-reduced-motion: reduce) {
  .services-teaser__dot-cluster span { animation: none; opacity: 0.8; }
}

.services-teaser__h2 {
  font-size: var(--text-section-h2);
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  max-width: 18ch;
}
.services-teaser__sub {
  font-family: var(--font-body);
  font-size: var(--text-sub);
  color: var(--color-mid-char);
  max-width: 54ch;
  line-height: 1.55;
  margin-bottom: var(--space-2xl);
}
.services-teaser__list {
  display: grid;
  gap: var(--space-2xl);
  position: relative;
  z-index: 2;
}
.services-teaser__item {
  display: grid;
  grid-template-columns: 80px auto 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding-top: var(--space-lg);
  border-top: 1px solid oklch(18% 0.04 264 / 0.1);
  position: relative;
}
.services-teaser__mark {
  flex-shrink: 0;
}
.services-teaser__mark img {
  width: 72px; height: 72px;
  transition: transform 400ms var(--ease-out-quart);
}
.services-teaser__item:hover .services-teaser__mark img {
  transform: rotate(-5deg) scale(1.05);
}
.services-teaser__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.9;
  color: var(--color-amber);
  letter-spacing: -0.02em;
  min-width: 1.5ch;
}
.services-teaser__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--color-ink);
  line-height: 1.02;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}
.services-teaser__body p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-mid-char);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
  max-width: 62ch;
}
.services-teaser__cta-row {
  margin-top: var(--space-xl);
  position: relative;
  z-index: 2;
}

@media (max-width: 820px) {
  .services-teaser__item { grid-template-columns: 56px auto 1fr; gap: var(--space-md); }
  .services-teaser__mark img { width: 56px; height: 56px; }
}
/* v8: mobile — compact single-column cards, tighter list gap */
@media (max-width: 768px) {
  .services-teaser__list { gap: var(--space-lg); }
  .services-teaser__h2 { margin-bottom: 10px; }
  .services-teaser__sub { font-size: 15px; margin-bottom: var(--space-lg); max-width: 42ch; }
  .services-teaser__cta-row { margin-top: var(--space-lg); }
}
@media (max-width: 560px) {
  .services-teaser__item {
    grid-template-columns: 40px 40px 1fr;
    gap: 10px;
    padding-top: var(--space-md);
    align-items: center;
  }
  .services-teaser__mark img { width: 40px; height: 40px; }
  .services-teaser__num { font-size: 32px; min-width: 1.2ch; }
  .services-teaser__body { grid-column: 1 / -1; }
  .services-teaser__body h3 { font-size: 22px; margin-bottom: 8px; line-height: 1.1; }
  .services-teaser__body p {
    font-size: 14px;
    line-height: 1.55;
    /* Trim visible copy on mobile — 3-line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* =========================================================
   PRICING TEASER — light, editorial
   ========================================================= */
.pricing-teaser {
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}
/* Decorative corner frame top-right */
.pricing-teaser::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 4%;
  width: 80px; height: 80px;
  border: 1px solid oklch(56% 0.135 250 / 0.3);
  border-left: none;
  border-bottom: none;
  pointer-events: none;
}
.pricing-teaser__h2 {
  font-size: var(--text-section-h2);
  color: var(--color-ink);
  margin-bottom: var(--space-xl);
}
.pricing-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  position: relative;
  z-index: 2;
}
@media (max-width: 800px) {
  .pricing-teaser__grid { grid-template-columns: 1fr; gap: 10px; }
}
.pricing-teaser__tier {
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-cream-white);
  border-top: 3px solid var(--color-ink);
  transition: border-top-color 280ms var(--ease-out-quart),
              transform 280ms var(--ease-out-quart),
              box-shadow 280ms var(--ease-out-quart);
  position: relative;
}
.pricing-teaser__tier:hover {
  border-top-color: var(--color-amber);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px oklch(18% 0.04 264 / 0.08);
}
.pricing-teaser__tier--highlight {
  background: var(--color-ink);
  color: var(--color-cream-white);
  border-top-color: var(--color-amber);
}
.pricing-teaser__tier--highlight .pricing-teaser__tier-name { color: var(--color-amber); }
.pricing-teaser__tier--highlight .pricing-teaser__tier-price { color: var(--color-cream-white); }
.pricing-teaser__tier--highlight .pricing-teaser__tier-best { color: oklch(82% 0.015 85); }

.pricing-teaser__tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-ink);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.pricing-teaser__tier-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4.5vw, 54px);
  color: var(--color-ink);
  line-height: 1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.pricing-teaser__tier-best {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--color-mid-char);
  line-height: 1.55;
}
.pricing-teaser__cta-row {
  margin-top: var(--space-xl);
  text-align: center;
}

/* v14: pricing-teaser domain benefits — structural 3-cell grid.
   Replaces the old italic paragraph that iOS Safari kept fragmenting
   into stacked columns via text-wrap:pretty inheritance. Block-level
   children in a grid cannot be fragmented by text-wrap rules. */
.pricing-teaser__benefits {
  margin-top: var(--space-lg);
  padding: 20px var(--space-lg);
  background: oklch(82% 0.12 78 / 0.10);
  border-top: 2px solid var(--color-amber);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
}
.pricing-teaser__benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.pricing-teaser__benefit svg {
  width: 22px;
  height: 22px;
  color: var(--color-amber);
  flex-shrink: 0;
}
.pricing-teaser__benefit-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--color-ink);
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.pricing-teaser__benefit-desc {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-mid-char);
  line-height: 1.35;
}
@media (max-width: 768px) {
  .pricing-teaser__benefits {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding: 16px var(--gutter, 20px);
    margin-top: var(--space-md);
    max-width: 360px;
  }
  .pricing-teaser__benefit svg {
    width: 20px;
    height: 20px;
  }
  .pricing-teaser__benefit-label {
    font-size: 15px;
  }
  .pricing-teaser__benefit-desc {
    font-size: 12px;
  }
}
/* v8: compact tier rows on mobile */
@media (max-width: 768px) {
  .pricing-teaser__h2 { margin-bottom: var(--space-md); }
  .pricing-teaser__tier { padding: var(--space-md) var(--space-md); }
  .pricing-teaser__tier-name { font-size: 20px; margin-bottom: 6px; }
  .pricing-teaser__tier-price { font-size: 32px; margin-bottom: 8px; }
  .pricing-teaser__tier-best { font-size: 13px; line-height: 1.45; }
  .pricing-teaser__cta-row { margin-top: var(--space-lg); }
}

/* =========================================================
   INFRASTRUCTURE SECTION — dark ink accent (one per page)
   ========================================================= */
.infra-section {
  background: var(--color-ink);
  color: var(--color-cream-white);
  position: relative;
  overflow: hidden;
}
.infra-section::before {
  /* Topographic pattern (light variant) */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/topo-texture-light.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}
.infra-section::after {
  /* Soft parallax-style radial glow */
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 140%;
  background: radial-gradient(ellipse at center,
    oklch(72% 0.15 55 / 0.14) 0%,
    transparent 55%);
  pointer-events: none;
  animation: infra-glow-drift 20s ease-in-out infinite;
}
@keyframes infra-glow-drift {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-48%) translateY(-2%) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .infra-section::after { animation: none; }
}

.infra-section__inner {
  position: relative;
  z-index: 2;
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
}
.infra-section__h2 {
  font-size: var(--text-section-h2);
  color: var(--color-cream-white);
  margin-bottom: var(--space-lg);
}
.infra-section__body p {
  font-family: var(--font-body);
  font-size: 17px;
  color: oklch(82% 0.015 85);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  text-align: left;
}
/* v8: tighter infra section on mobile (was text-heavy, wall of text) */
@media (max-width: 768px) {
  .infra-section__h2 { margin-bottom: var(--space-md); }
  .infra-section__body p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
}

/* =========================================================
   ABOUT + CONTACT (home page) — light theme
   ========================================================= */
.about-contact {
  background: var(--color-cream);
  position: relative;
}
.about-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
@media (max-width: 900px) {
  .about-contact__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

.about-contact__h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--color-ink);
  margin-bottom: var(--space-md);
}
.about-contact__body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-mid-char);
  line-height: 1.65;
  margin-bottom: var(--space-md);
  max-width: 48ch;
}

.about-contact__signatures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid oklch(18% 0.04 264 / 0.12);
}
.about-contact__sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-contact__sig-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--color-ink);
}
.about-contact__sig-role {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-mid-char-lo);
}

/* =========================================================
   CONTACT FORM — light theme
   ========================================================= */
.contact-form {
  background: var(--color-cream-white);
  padding: var(--space-xl);
  border: 1px solid oklch(18% 0.04 264 / 0.08);
  position: relative;
  box-shadow: 0 4px 20px oklch(18% 0.04 264 / 0.04);
}
.contact-form__eyebrow {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-md);
}
.contact-form__h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.contact-form__intro {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-mid-char);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-md);
}
.contact-form__row label {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-mid-char);
}
.contact-form__row label small {
  opacity: 0.7;
  font-weight: 400;
  margin-left: 4px;
}
.contact-form__row input,
.contact-form__row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid oklch(18% 0.04 264 / 0.18);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 8px 0;
  transition: border-color 180ms var(--ease-out-quart);
}
.contact-form__row input:focus,
.contact-form__row textarea:focus {
  outline: none;
  border-bottom-color: var(--color-amber);
}
.contact-form__row textarea {
  resize: vertical;
  min-height: 80px;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-md);
  background: var(--color-ink);
  color: var(--color-cream-white);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 20px;
  transition: background-color 180ms var(--ease-out-quart), color 180ms var(--ease-out-quart);
  width: auto;
}
.contact-form__submit:hover, .contact-form__submit:focus-visible {
  background: var(--color-amber);
  color: var(--color-ink);
}
.contact-form__submit svg { width: 14px; height: 14px; transition: transform 220ms var(--ease-out-quart); }
.contact-form__submit:hover svg { transform: translateX(3px); }

.contact-form__cta-note {
  margin-top: 10px;
}

.contact-form__footnote {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid oklch(18% 0.04 264 / 0.08);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-mid-char);
  line-height: 1.6;
}
.contact-form__footnote a {
  color: var(--color-amber);
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms var(--ease-out-quart);
}
.contact-form__footnote a:hover, .contact-form__footnote a:focus-visible {
  border-bottom-color: var(--color-amber);
}

.contact-form__success {
  padding: var(--space-lg);
  background: oklch(68% 0.155 55 / 0.14);
  border-top: 2px solid var(--color-amber);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  margin-top: var(--space-sm);
}
.contact-form__success::before {
  content: "—";
  display: block;
  font-family: var(--font-display);
  color: var(--color-amber);
  font-size: 32px;
  line-height: 0.4;
  margin-bottom: 10px;
}
.contact-form__error {
  padding: var(--space-md);
  background: oklch(62% 0.15 35 / 0.12);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  margin-top: var(--space-sm);
}
.contact-form__error a {
  color: var(--color-amber);
  border-bottom: 1px solid currentColor;
}

/* =========================================================
   CONTACT v4 — editorial asymmetric (55/45 split)
   ========================================================= */
.contact-v4 {
  background: var(--color-cream);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.contact-v4__grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (max-width: 900px) {
  .contact-v4__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.contact-v4__illustration {
  position: relative;
  aspect-ratio: 520 / 560;
  max-width: 580px;
  width: 100%;
  justify-self: start;
}
.contact-v4__illustration-svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 900px) {
  .contact-v4__illustration {
    max-width: 100%;
    max-height: 360px;
    aspect-ratio: 520 / 280;
    justify-self: center;
  }
}

/* Animated dots: slow opacity pulse + stagger */
.contact-v4__illustration-svg .cv4-dots circle {
  animation: cv4-dot-trail 5s ease-in-out infinite;
  transform-origin: center;
}
.contact-v4__illustration-svg .cv4-dots circle:nth-child(1) { animation-delay: 0s; }
.contact-v4__illustration-svg .cv4-dots circle:nth-child(2) { animation-delay: 0.25s; }
.contact-v4__illustration-svg .cv4-dots circle:nth-child(3) { animation-delay: 0.5s; }
.contact-v4__illustration-svg .cv4-dots circle:nth-child(4) { animation-delay: 0.75s; }
.contact-v4__illustration-svg .cv4-dots circle:nth-child(5) { animation-delay: 1s; }
.contact-v4__illustration-svg .cv4-dots circle:nth-child(6) { animation-delay: 1.25s; }
.contact-v4__illustration-svg .cv4-dots circle:nth-child(7) { animation-delay: 1.5s; }
.contact-v4__illustration-svg .cv4-dots circle:nth-child(8) { animation-delay: 1.75s; }
@keyframes cv4-dot-trail {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}
/* Topo lines gentle opacity pulse */
.contact-v4__illustration-svg .cv4-topo path {
  animation: cv4-topo-pulse 9s ease-in-out infinite;
}
.contact-v4__illustration-svg .cv4-topo path:nth-child(1) { animation-delay: 0s; }
.contact-v4__illustration-svg .cv4-topo path:nth-child(2) { animation-delay: 0.8s; }
.contact-v4__illustration-svg .cv4-topo path:nth-child(3) { animation-delay: 1.6s; }
.contact-v4__illustration-svg .cv4-topo path:nth-child(4) { animation-delay: 2.4s; }
.contact-v4__illustration-svg .cv4-topo path:nth-child(5) { animation-delay: 3.2s; }
@keyframes cv4-topo-pulse {
  0%, 100% { opacity: 0.15; }
  50%      { opacity: 0.35; }
}
/* Pin pulse on send */
.contact-v4__illustration-svg .cv4-pin-pulse.is-active {
  animation: cv4-pin-pulse 1.2s ease-out forwards;
}
@keyframes cv4-pin-pulse {
  0%   { opacity: 0.7; transform: scale(0.3); }
  70%  { opacity: 0.2; transform: scale(2.4); }
  100% { opacity: 0;   transform: scale(3); }
}
.contact-v4__illustration-svg .cv4-pin-pulse {
  transform-origin: 400px 440px;
  transform-box: fill-box;
}
/* Send path draw-on (activated by JS) */
.contact-v4__illustration-svg .cv4-send-path.is-drawing {
  opacity: 1;
  animation: cv4-send-draw 2000ms ease-out forwards;
}
@keyframes cv4-send-draw {
  0%   { stroke-dashoffset: 400; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0.4; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-v4__illustration-svg .cv4-dots circle,
  .contact-v4__illustration-svg .cv4-topo path { animation: none; }
  .contact-v4__illustration-svg .cv4-send-path.is-drawing { animation: none; opacity: 0; }
  .contact-v4__illustration-svg .cv4-pin-pulse.is-active { animation: none; opacity: 0; }
}

.contact-v4__body { min-width: 0; }
.contact-v4__h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  line-height: 1.02;
  max-width: 15ch;
}
.contact-v4__intro {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-mid-char);
  line-height: 1.6;
  max-width: 42ch;
  margin-bottom: var(--space-lg);
}

/* v4 form — bottom-border-only inputs with amber draw-on focus */
.contact-form--v4 {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
.contact-form__row--v4 {
  position: relative;
  padding-bottom: 2px;
  margin-bottom: var(--space-lg);
}
.contact-form__row--v4 label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-mid-char);
  margin-bottom: 6px;
  transition: color 220ms var(--ease-out-quart), transform 220ms var(--ease-out-quart);
  transform-origin: left bottom;
}
.contact-form__row--v4:focus-within label {
  color: var(--color-amber);
  transform: scale(0.92);
}
.contact-form__row--v4 input,
.contact-form__row--v4 textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid oklch(18% 0.04 264 / 0.22);
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-ink);
  transition: border-color 180ms var(--ease-out-quart);
}
.contact-form__row--v4 input:focus,
.contact-form__row--v4 textarea:focus {
  outline: none;
  border-bottom-color: transparent;
}
.contact-form__row--v4 textarea { resize: vertical; min-height: 80px; }
/* Draw-on amber underline span — replaces browser focus ring */
.contact-form__underline {
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 0%;
  background: var(--color-amber);
  transition: width 400ms var(--ease-out-quart);
  pointer-events: none;
}
.contact-form__row--v4:focus-within .contact-form__underline { width: 100%; }
/* Focus-visible outline: still visible via the amber underline, no default outline */
.contact-form__row--v4 input:focus-visible,
.contact-form__row--v4 textarea:focus-visible {
  outline: none;
}

.contact-form__submit--v4 {
  background: var(--color-amber);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 16px 26px;
  text-transform: uppercase;
  transition: background-color 180ms var(--ease-out-quart),
              transform 180ms var(--ease-out-quart),
              box-shadow 220ms var(--ease-out-quart);
  margin-top: var(--space-md);
}
.contact-form__submit--v4:hover,
.contact-form__submit--v4:focus-visible {
  background: var(--color-amber-hi);
  color: var(--color-ink);
}
/* Send-animation state — pulse on submit, mute labels */
.contact-form--v4.is-sending .contact-form__submit--v4 {
  animation: cv4-submit-pulse 500ms ease-in-out 1;
}
.contact-form--v4.is-sending label { color: var(--color-mid-char-lo); }
@keyframes cv4-submit-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); box-shadow: 0 0 0 6px oklch(68% 0.155 55 / 0.18); }
}

.contact-v4__signatures {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid oklch(18% 0.04 264 / 0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--color-mid-char);
}
@media (prefers-reduced-motion: reduce) {
  .contact-form--v4.is-sending .contact-form__submit--v4 { animation: none; }
}

/* =========================================================
   PHOTO BAND v5 — atmospheric photo between About/Contact
   ========================================================= */
.photo-band {
  position: relative;
  padding: 0;
  overflow: hidden;
  height: clamp(280px, 45vh, 420px);
  isolation: isolate;
}
.photo-band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  /* Editorial duotone treatment: desaturate + warm tone shift + ink shadow tint */
  filter: grayscale(0.4) sepia(0.2) brightness(0.88) contrast(1.05);
  transition: transform 1200ms var(--ease-out-quart);
}
.photo-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(18% 0.04 264 / 0.3) 0%,
    oklch(18% 0.04 264 / 0.1) 40%,
    oklch(18% 0.04 264 / 0.38) 100%
  );
  pointer-events: none;
}
.photo-band__corner {
  /* Amber right-angle ornament, top-right */
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-top: 2px solid var(--color-amber);
  border-right: 2px solid var(--color-amber);
  pointer-events: none;
  opacity: 0.85;
}
.photo-band__caption-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-lg);
  z-index: 2;
}
.photo-band__caption {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-cream-white);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px oklch(0% 0 0 / 0.5);
}
@supports not (color: oklch(0% 0 0)) {
  .photo-band__overlay {
    background: linear-gradient(
      180deg,
      rgba(13, 17, 23, 0.3) 0%,
      rgba(13, 17, 23, 0.1) 40%,
      rgba(13, 17, 23, 0.38) 100%
    );
  }
  .photo-band__caption { text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5); }
}

/* =========================================================
   CONTACT v5 — progressive disclosure (Austin's choice Y)
   Centered single column, fields slide in as user completes each one.
   ========================================================= */
.contact-v5 {
  background: var(--color-cream);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.contact-v5::before {
  /* Paper-grain texture overlay — subtle tactile depth */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/paper-grain.svg");
  background-size: 360px 360px;
  opacity: 0.045;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.contact-v5__inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.contact-v5__inner > .section-label { justify-content: center; }
.contact-v5__h2 {
  font-size: clamp(36px, 4.8vw, 56px);
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  line-height: 1.05;
}
.contact-v5__intro {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-mid-char);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

/* Progressive-disclosure form — fields slide in as user fills */
.contact-form--v5 {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  text-align: left;
  margin-top: var(--space-md);
}
.contact-form__row--v5 {
  position: relative;
  padding-bottom: 2px;
  margin-bottom: 0;
  /* Initially hidden — max-height 0, opacity 0 */
  max-height: 0;
  opacity: 0;
  transform: translateY(8px);
  overflow: hidden;
  transition:
    max-height 420ms var(--ease-out-quart),
    opacity 380ms var(--ease-out-quart),
    transform 380ms var(--ease-out-quart),
    margin 380ms var(--ease-out-quart);
}
.contact-form__row--v5.is-visible {
  max-height: 90px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: var(--space-md);
}
.contact-form__row--v5 label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-mid-char);
  margin-bottom: 6px;
  transition: color 220ms var(--ease-out-quart);
}
.contact-form__row--v5:focus-within label { color: var(--color-amber); }
.contact-form__row--v5 input,
.contact-form__row--v5 textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid oklch(18% 0.04 264 / 0.22);
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-ink);
}
.contact-form__row--v5 input::placeholder,
.contact-form__row--v5 textarea::placeholder {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--color-mid-char-lo);
}
.contact-form__row--v5 input:focus,
.contact-form__row--v5 textarea:focus {
  outline: none;
  border-bottom-color: transparent;
}
.contact-form__row--v5 textarea { resize: vertical; min-height: 80px; }
/* Amber draw-on underline on focus */
.contact-form__row--v5 .contact-form__underline {
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 0%;
  background: var(--color-amber);
  transition: width 400ms var(--ease-out-quart);
  pointer-events: none;
}
.contact-form__row--v5:focus-within .contact-form__underline { width: 100%; }

/* Submit wrap — also hidden until all fields visible */
.contact-form__submit-wrap {
  max-height: 0;
  opacity: 0;
  transform: translateY(8px);
  overflow: hidden;
  transition:
    max-height 420ms var(--ease-out-quart),
    opacity 380ms var(--ease-out-quart),
    transform 380ms var(--ease-out-quart),
    margin 380ms var(--ease-out-quart);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.contact-form__submit-wrap.is-visible {
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
  margin-top: var(--space-sm);
}
.contact-form__submit--v5 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-amber);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 16px 26px;
  text-transform: uppercase;
  transition:
    background-color 180ms var(--ease-out-quart),
    transform 180ms var(--ease-out-quart);
}
.contact-form__submit--v5:hover,
.contact-form__submit--v5:focus-visible {
  background: var(--color-amber-hi);
}
.contact-form__submit--v5 svg { width: 14px; height: 14px; transition: transform 220ms var(--ease-out-quart); }
.contact-form__submit--v5:hover svg { transform: translateX(3px); }
/* Sending state on submit */
.contact-form--v5.is-sending .contact-form__submit--v5 {
  animation: contact-v5-submit-pulse 500ms ease-in-out 1;
}
@keyframes contact-v5-submit-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); box-shadow: 0 0 0 6px oklch(68% 0.155 55 / 0.18); }
}
@media (prefers-reduced-motion: reduce) {
  .contact-form--v5.is-sending .contact-form__submit--v5 { animation: none; }
}

/* Progress dots — 4 horizontal */
.contact-form__progress {
  margin-top: var(--space-lg);
  display: flex;
  gap: 10px;
  align-items: center;
}
.contact-form__progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid oklch(18% 0.04 264 / 0.3);
  transition:
    background-color 220ms var(--ease-out-quart),
    border-color 220ms var(--ease-out-quart),
    transform 220ms var(--ease-out-quart);
}
.contact-form__progress-dot.is-active {
  background: var(--color-amber);
  border-color: var(--color-amber);
  transform: scale(1.25);
}
.contact-form__progress-dot.is-complete {
  background: var(--color-ink);
  border-color: var(--color-ink);
}

.contact-v5__signatures {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid oklch(18% 0.04 264 / 0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--color-mid-char);
}
@media (max-width: 600px) {
  .contact-v5__signatures {
    flex-direction: column;
    align-items: flex-start;
  }
}
