:root {
  --ink: #20201d;
  --muted: #6c6b64;
  --paper: #f7f5ef;
  --paper-deep: #efebe1;
  --accent: #e35d37;
  --accent-dark: #b64124;
  --accent-soft: #ff8a67;
  --line: rgba(32, 32, 29, 0.14);
  --shadow: 0 24px 70px rgba(56, 48, 36, 0.15);
  --container: 1180px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 12%, rgba(227, 93, 55, 0.12), transparent 28rem),
    linear-gradient(rgba(32, 32, 29, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 32, 29, 0.025) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}
body::after {
  position: fixed;
  inset: 0;
  z-index: 9999;
  content: "";
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
[hidden] { display: none !important; }
::selection { color: #fff; background: var(--accent-dark); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  background: rgba(247, 245, 239, 0.9);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}
.header-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; }
.header-inner { min-height: 78px; }
.brand { font-size: 1.05rem; font-weight: 850; letter-spacing: -0.03em; text-decoration: none; }
.brand span { color: var(--accent-dark); }
.primary-navigation { display: flex; align-items: center; gap: clamp(20px, 3vw, 38px); }
.primary-navigation a, .site-footer a {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 180ms ease;
}
.primary-navigation a { position: relative; }
.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}
.primary-navigation a:focus-visible::after { transform: scaleX(1); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: transform 140ms var(--ease-out);
}
.menu-button:active { transform: scale(0.94); }
.menu-button span[aria-hidden] {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 160ms var(--ease-out);
}
.menu-button[aria-expanded="true"] span[aria-hidden]:first-of-type { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span[aria-hidden]:last-of-type { transform: translateY(-4px) rotate(-45deg); }

.hero { display: grid; min-height: 100svh; padding: 126px 0 72px; place-items: center; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: center;
}
.eyebrow, .section-number {
  margin: 0 0 22px;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 0.98; letter-spacing: -0.055em; }
h1 {
  max-width: 800px;
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  font-weight: 800;
  text-wrap: pretty;
}
h1 em, .contact-cta h2 em {
  color: var(--accent);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 420;
  letter-spacing: -0.02em;
}
h2 { margin-bottom: 32px; font-size: clamp(2.8rem, 5.5vw, 5.5rem); text-wrap: balance; }
.role-line { margin-bottom: 20px; font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 650; }
.role-line span {
  padding: 0 0.1em;
  color: var(--accent-dark);
  background-image: linear-gradient(rgba(227, 93, 55, 0.16), rgba(227, 93, 55, 0.16));
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 0.38em;
}
.hero-intro, .about-copy > p, .section-heading > p { color: var(--muted); }
.hero-intro { max-width: 620px; margin-bottom: 34px; font-size: 1.06rem; }
.hero-socials { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 36px 0 0; }
.hero-socials a {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}
.hero-actions { display: flex; gap: 28px; align-items: center; }
.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 140ms var(--ease-out), background-color 180ms ease, box-shadow 180ms ease;
}
.button-primary { color: #fff; background: var(--ink); box-shadow: 0 12px 30px rgba(32, 32, 29, 0.18); }
.button:active { transform: scale(0.97); }
.text-link { display: inline-flex; align-items: baseline; gap: 0.2em; font-weight: 750; transition: color 160ms ease, transform 140ms var(--ease-out); }
.text-link:active { transform: scale(0.97); }
.text-link span { display: inline-block; transition: transform 160ms var(--ease-out); }
.portrait-wrap { position: relative; width: min(100%, 480px); aspect-ratio: 1; margin-inline: auto; }
.portrait {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 8px solid var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.portrait-accent {
  position: absolute;
  inset: 10% -6% -8% 2%;
  z-index: 1;
  background: radial-gradient(circle at 55% 45%, var(--accent) 0%, rgba(227, 93, 55, 0) 68%);
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.55;
}
.portrait-wrap::before {
  position: absolute;
  inset: -5% 7% 5% -7%;
  z-index: 1;
  content: "";
  border: 2px solid var(--accent);
  border-radius: 50%;
}
.portrait-wrap::after {
  position: absolute;
  right: -4%;
  bottom: 1%;
  z-index: 3;
  width: 28%;
  aspect-ratio: 1;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.section { padding: clamp(96px, 12vw, 160px) 0; }
.about { color: var(--paper); background: var(--ink); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: center;
}
.about-image-wrap { position: relative; margin: 0; }
.about-image-wrap::before {
  position: absolute;
  inset: 20px -20px -20px 20px;
  content: "";
  border: 1px solid rgba(247, 245, 239, 0.4);
}
.about-image-wrap img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
}
.about-image-wrap figcaption {
  position: relative;
  margin-top: 34px;
  color: #8f8d87;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.about-image-wrap figcaption a { color: #d6d3ca; }
.about .section-number, .contact-cta .section-number { color: var(--accent-soft); }
.about-copy > p { max-width: 650px; color: #bcbab2; font-size: 1.08rem; }
.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 48px 0 0;
  border-top: 1px solid rgba(247, 245, 239, 0.18);
}
.facts div { padding: 20px 14px 20px 0; border-bottom: 1px solid rgba(247, 245, 239, 0.18); }
.facts dt { color: #8f8d87; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.facts dd { margin: 5px 0 0; font-weight: 700; }

.selected-work { overflow: hidden; }
.work-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.work-copy { padding: clamp(40px, 6vw, 76px); }
.work-kicker {
  margin-bottom: 22px;
  color: var(--accent-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.work-copy h3 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}
.work-copy > p:not(.work-kicker) { max-width: 620px; margin-bottom: 36px; color: #c8c5bc; font-size: 1.04rem; }
.work-principles { padding: 0; margin: 0 0 42px; list-style: none; border-top: 1px solid rgba(247, 245, 239, 0.18); }
.work-principles li {
  display: flex;
  padding: 14px 0;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(247, 245, 239, 0.18);
  font-weight: 700;
}
.work-principles span { color: var(--accent-soft); font-size: 0.72rem; letter-spacing: 0.1em; }
.work-actions { display: flex; flex-wrap: wrap; gap: 20px 28px; align-items: center; }
.button-secondary { color: var(--ink); background: var(--paper); }
.work-actions .text-link { color: #d6d3ca; }
.work-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.28), transparent 19rem),
    linear-gradient(145deg, #f27650, #bd4325 68%, #91341f);
  isolation: isolate;
}
.work-visual::before,
.work-visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}
.work-visual::before { width: 440px; aspect-ratio: 1; top: -160px; right: -170px; }
.work-visual::after { width: 280px; aspect-ratio: 1; bottom: -120px; left: -90px; }
.app-mark {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 2;
  display: grid;
  width: 76px;
  aspect-ratio: 1;
  padding: 14px;
  align-content: center;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(55, 21, 12, 0.24);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.app-mark strong { font-size: 0.88rem; }
.device-card {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 72px), 340px);
  padding: 18px 22px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(55, 21, 12, 0.3);
  transform: rotate(2deg);
  transition: transform 240ms var(--ease-out);
}
.device-bar { display: flex; margin-bottom: 22px; justify-content: center; gap: 5px; }
.device-bar span { width: 5px; height: 5px; background: #b5b1a8; border-radius: 50%; }
.device-label { margin-bottom: 14px; color: var(--muted); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.photo-preview {
  position: relative;
  height: 154px;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 46%, rgba(255, 255, 255, 0.26) 46% 49%, transparent 49%),
    linear-gradient(145deg, #292927, #78736a);
  border-radius: 18px;
}
.photo-preview::before,
.photo-preview::after { position: absolute; content: ""; border-radius: 50%; }
.photo-preview::before { width: 76px; aspect-ratio: 1; right: 24px; top: 24px; background: var(--accent-soft); }
.photo-preview::after { width: 160px; height: 80px; right: -20px; bottom: -30px; background: var(--paper-deep); border-radius: 50% 50% 0 0; transform: rotate(-8deg); }
.metadata-list { margin: 18px 0; }
.metadata-list div { display: flex; padding: 9px 0; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 0.78rem; }
.metadata-list dt { color: var(--muted); }
.metadata-list dd { margin: 0; font-weight: 750; }
.privacy-status { display: flex; margin: 20px 0 0; align-items: center; gap: 9px; font-size: 0.8rem; font-weight: 750; }
.privacy-status span { display: grid; width: 22px; aspect-ratio: 1; color: #fff; background: var(--accent-dark); border-radius: 50%; place-items: center; }

.testimonials { background: var(--paper-deep); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.5fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 6px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.testimonial-card {
  display: flex;
  min-height: 390px;
  padding: clamp(28px, 3vw, 42px);
  margin: 0;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(32, 32, 29, 0.05), 0 18px 44px -18px rgba(56, 48, 36, 0.14);
}
.testimonial-card:nth-child(2) {
  color: #fff;
  background: linear-gradient(158deg, #c24827 0%, var(--accent-dark) 60%);
  border-color: transparent;
  margin-top: 28px;
}
.testimonial-card blockquote {
  margin: 0 0 42px;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: -0.01em;
}
.testimonial-card blockquote::before {
  display: block;
  height: 0.55em;
  margin-bottom: 18px;
  content: "\201C";
  color: var(--accent);
  font-size: 4.6rem;
  font-weight: 500;
  line-height: 0.62;
}
.testimonial-card:nth-child(2) blockquote::before { color: rgba(255, 255, 255, 0.55); }
.testimonial-card figcaption { display: flex; gap: 14px; align-items: center; font-size: 0.78rem; line-height: 1.45; }
.testimonial-card figcaption img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.testimonial-card figcaption span, .testimonial-card figcaption strong { display: block; }
.testimonial-card figcaption strong { font-size: 0.9rem; }

.contact-cta {
  padding-block: clamp(84px, 9vw, 128px);
  color: var(--paper);
  background: var(--ink);
}
.contact-cta h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}
.contact-cta h2 em { color: var(--accent-soft); }
.cta-note { max-width: 560px; margin-bottom: clamp(40px, 5vw, 64px); color: #bcbab2; font-size: 1.08rem; }
.cta-email {
  position: relative;
  display: inline-flex;
  padding-bottom: 10px;
  align-items: baseline;
  gap: 14px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.cta-email::before, .cta-email::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
}
.cta-email::before { background: rgba(247, 245, 239, 0.3); }
.cta-email::after {
  background: var(--accent-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease-out);
}
.cta-email:focus-visible::after { transform: scaleX(1); }
.cta-email:active { transform: scale(0.97); transform-origin: left; }
.cta-arrow { display: inline-block; transition: transform 180ms var(--ease-out); }

.site-footer { padding: 32px 0; color: #bcbab2; background: var(--ink); border-top: 1px solid rgba(247, 245, 239, 0.14); }
.site-footer p { margin: 0; font-size: 0.82rem; }
.site-footer nav { display: flex; gap: 28px; }
.x-logo { font-size: 1.15rem; line-height: 1; }
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 140ms var(--ease-out), background-color 180ms ease;
}
.back-to-top:active { transform: scale(0.95); }

@media (hover: hover) and (pointer: fine) {
  .primary-navigation a:hover::after { transform: scaleX(1); }
  .primary-navigation a:hover { color: var(--accent-dark); }
  .site-footer a:hover, .facts a:hover { color: var(--accent-soft); }
  .hero-socials a:hover { color: var(--accent-dark); }
  .button-primary:hover { background: var(--accent-dark); box-shadow: 0 18px 38px rgba(182, 65, 36, 0.32); transform: translateY(-2px); }
  .button-secondary:hover { background: #fff; box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2); transform: translateY(-2px); }
  .text-link:hover { color: var(--accent-dark); }
  .work-actions .text-link:hover { color: #fff; }
  .text-link:hover span { transform: translate(3px, -3px); }
  .hero-actions .text-link:hover span { transform: translateY(3px); }
  .cta-email:hover::after { transform: scaleX(1); }
  .cta-email:hover .cta-arrow { transform: translate(5px, -5px); }
  .back-to-top:hover { background: var(--accent-dark); transform: translateY(-3px); }
  .work-card:hover .device-card { transform: rotate(0) translateY(-4px); }
}

@media (max-width: 900px) {
  .menu-button { display: block; }
  .primary-navigation {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .primary-navigation.is-open { display: flex; }
  .primary-navigation a { padding: 12px 8px; }
  .hero { min-height: auto; place-items: stretch; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 70px; }
  .hero-copy { max-width: 760px; }
  .portrait-wrap { width: min(76vw, 430px); }
  .about-image-wrap { width: min(calc(100% - 20px), 560px); }
  .about-image-wrap img { aspect-ratio: 5 / 4; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .work-card { grid-template-columns: 1fr; }
  .work-visual { min-height: 520px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: auto; }
  .testimonial-card:nth-child(2) { margin-top: 0; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero { padding: 112px 0 64px; }
  .eyebrow { margin-bottom: 16px; }
  h1 { margin-bottom: 24px; font-size: clamp(2.8rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .role-line { margin-bottom: 16px; }
  .hero-intro { margin-bottom: 28px; }
  .hero-actions { flex-wrap: wrap; gap: 18px 24px; }
  .hero-socials { margin-top: 20px; }
  .work-card { border-radius: 22px; }
  .work-copy { padding: 38px 28px 44px; }
  .work-copy h3 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .work-visual { min-height: 440px; }
  .app-mark { top: 24px; left: 24px; width: 68px; }
  .device-card { width: min(calc(100% - 48px), 320px); }
  .footer-inner, .site-footer nav { align-items: flex-start; flex-direction: column; }
  .facts { grid-template-columns: 1fr; }
  .footer-inner { gap: 22px; }
  .site-footer nav { gap: 12px; }
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }
  .hero-copy > .eyebrow, .hero-copy > h1, .hero-copy > .role-line, .hero-copy > .hero-intro, .portrait-wrap {
    animation: rise 460ms var(--ease-out) both;
  }
  .hero-copy > h1 { animation-delay: 40ms; }
  .hero-copy > .role-line { animation-delay: 80ms; }
  .hero-copy > .hero-intro { animation-delay: 120ms; }
  .portrait-wrap { animation-delay: 80ms; }

  @keyframes reveal-rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }
  .reveal { opacity: 0; }
  .reveal.is-visible {
    opacity: 1;
    animation: reveal-rise 440ms var(--ease-out) backwards;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy > *, .portrait-wrap, .reveal, .reveal.is-visible { opacity: 1; animation: none; transform: none; }
  .device-card, .button, .text-link, .cta-email, .cta-arrow, .back-to-top { transition-property: color, background-color, border-color, opacity, box-shadow; }
  .device-card, .work-card:hover .device-card, .button:active, .text-link:active, .cta-email:active, .back-to-top:active { transform: none; }
}
