/* Performance optimized: reduced transitions, removed unnecessary effects,
   improved rendering performance, better specificity, will-change hints,
   improved mobile responsiveness, fixed text resizing bugs
*/
:root {
  --color-ink: #17130f;
  --color-ink-soft: #3a332c;
  --color-paper: #fbf7f0;
  --color-cream: #eee4d5;
  --color-line: rgba(23, 19, 15, 0.14);
  --color-green: #183b32;
  --color-green-soft: #dce6df;
  --color-gold: #b98b45;
  --color-rust: #8f4b2f;
  --color-white: #ffffff;
  --shadow-soft: 0 24px 80px rgba(23, 19, 15, 0.14);
  --shadow-tight: 0 14px 38px rgba(23, 19, 15, 0.18);
  --radius-sm: 6px;
  --radius-md: 8px;
  --shell: min(1180px, calc(100vw - 40px));
  --space-section: clamp(72px, 9vw, 136px);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(86px + env(safe-area-inset-top, 0px));
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
}

button {
  touch-action: manipulation;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
  padding-inline: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  transition: background 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
  padding-top: env(safe-area-inset-top, 0px);
  will-change: auto;
}

.site-header.is-scrolled {
  background: rgba(251, 247, 240, 0.9);
  box-shadow: 0 1px 0 rgba(23, 19, 15, 0.08);
  backdrop-filter: blur(12px);
  will-change: background, box-shadow;
}

.site-header:has(.nav-panel.is-open) {
  background: rgba(251, 247, 240, 0.96);
  box-shadow: 0 1px 0 rgba(23, 19, 15, 0.08);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--color-white);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav-panel,
.site-header:has(.nav-panel.is-open) .brand {
  color: var(--color-ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(23, 19, 15, 0.24);
}

.site-header:has(.nav-panel.is-open) .brand-mark {
  border-color: rgba(23, 19, 15, 0.24);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.28rem);
  line-height: 1.05;
  font-weight: 600;
}

.brand small {
  margin-top: 3px;
  font-size: 0.7rem;
  opacity: 0.82;
  font-weight: 400;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
  color: var(--color-white);
  font-size: 0.86rem;
  font-weight: 650;
}

.nav-panel a {
  position: relative;
  padding-block: 6px;
  padding-inline: 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background 200ms ease;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
  will-change: transform;
}

.nav-panel a:hover::after,
.nav-panel a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 56px;
  height: 56px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: all 200ms ease;
}

.section {
  padding-block: var(--space-section);
}

.section-dark {
  color: var(--color-white);
  background: var(--color-ink);
}

.section-muted {
  background:
    linear-gradient(90deg, rgba(24, 59, 50, 0.05), transparent 38%),
    var(--color-cream);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-block: 138px 58px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.86), rgba(23, 19, 15, 0.45) 46%, rgba(23, 19, 15, 0.2)),
    linear-gradient(0deg, rgba(23, 19, 15, 0.84), rgba(23, 19, 15, 0.08) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
}

h3 {
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.3;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  line-height: 1.6;
}

.cta-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.2;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: var(--color-ink);
  background: var(--color-gold);
}

.btn-secondary {
  color: currentColor;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.contact-section .btn-secondary,
.section:not(.section-dark) .btn-secondary {
  border-color: rgba(23, 19, 15, 0.2);
  background: transparent;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: clamp(46px, 9vh, 96px) 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof div {
  padding: 18px;
  background: rgba(23, 19, 15, 0.42);
  backdrop-filter: blur(8px);
}

.hero-proof dt {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.8vw, 2rem);
  line-height: 1.1;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.8rem, 1vw, 0.88rem);
  line-height: 1.4;
}

.split-grid,
.portfolio-grid,
.founder-grid,
.contact-grid,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p,
.contact-section p,
.founder-card p,
.founder-note p {
  max-width: 690px;
  color: var(--color-ink-soft);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
}

.section-dark .founder-card p,
.section-dark .founder-note p {
  color: rgba(255, 255, 255, 0.72);
}

.image-frame {
  position: relative;
  margin: 0;
  box-shadow: var(--shadow-soft);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(185, 139, 69, 0.55);
}

.image-frame img,
.portfolio-mosaic img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.map-frame {
  min-height: 400px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.service-grid,
.reason-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.reason-grid article,
.testimonial-grid figure,
.contact-card,
.founder-card,
.founder-note,
.portfolio-mosaic article,
.faq-list details {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
}

.founder-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card {
  min-height: 230px;
  padding: clamp(20px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
  will-change: transform;
}

.service-card:active {
  transform: scale(0.98);
}

.service-card span {
  color: var(--color-rust);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1;
}

.service-card h3 {
  margin-top: auto;
  margin-bottom: 8px;
}

.service-card p,
.reason-grid p,
.testimonial-grid blockquote,
.testimonial-grid figcaption {
  color: var(--color-ink-soft);
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.portfolio-section {
  overflow: hidden;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--color-green);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
  min-height: 44px;
  align-items: center;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.portfolio-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mosaic-large {
  grid-column: 1 / -1;
  margin: 0;
}

.portfolio-mosaic article {
  min-height: 132px;
  padding: 22px;
}

.portfolio-mosaic strong,
.portfolio-mosaic span {
  display: block;
}

.portfolio-mosaic strong {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
}

.portfolio-mosaic span {
  margin-top: 10px;
  color: var(--color-ink-soft);
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
}

.founder-section {
  background:
    radial-gradient(circle at 78% 30%, rgba(185, 139, 69, 0.16), transparent 32%),
    var(--color-ink);
}

.founder-card,
.founder-note {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  padding: clamp(26px, 4vw, 46px);
}

.founder-note {
  align-self: stretch;
  display: grid;
  align-content: end;
}

.founder-note span {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 3.5rem);
  line-height: 1.1;
}

.reason-grid article {
  padding: clamp(22px, 3vw, 34px);
}

.testimonial-grid figure {
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
}

.testimonial-grid blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.35;
  font-weight: 500;
}

.testimonial-grid figcaption {
  margin-top: 24px;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  font-weight: 700;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  cursor: pointer;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
  padding: 8px;
  margin: -8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background 200ms ease;
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  user-select: none;
}

.faq-list summary:hover {
  background: rgba(24, 59, 50, 0.05);
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--color-ink-soft);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

.contact-section {
  background:
    linear-gradient(115deg, rgba(24, 59, 50, 0.08), transparent 46%),
    var(--color-paper);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow-tight);
  font-style: normal;
}

.contact-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.contact-card a {
  color: var(--color-green);
  font-weight: 800;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 52px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--color-white);
  background: #1f7a4d;
  box-shadow: 0 14px 34px rgba(31, 122, 77, 0.34);
  font-weight: 850;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(31, 122, 77, 0.38);
}

.floating-whatsapp:active {
  transform: translateY(0);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-ink);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
}

.footer-grid p {
  margin: 0;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
}

.footer-grid a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px;
  font-size: clamp(0.9rem, 1vw, 0.95rem);
}

/* Tablet & Medium Devices */
@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-header .nav-toggle {
    color: var(--color-white);
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header:has(.nav-panel.is-open) .nav-toggle {
    color: var(--color-ink);
    border-color: rgba(23, 19, 15, 0.18);
  }

  .nav-panel {
    position: fixed;
    inset: 78px 16px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    color: var(--color-ink);
    background: rgba(251, 247, 240, 0.97);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-tight);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms var(--ease), opacity 220ms ease;
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel a {
    padding: 14px 14px;
    border-radius: var(--radius-sm);
    margin: 4px 0;
    min-height: 44px;
  }

  .nav-panel a:hover,
  .nav-panel a.is-active {
    background: rgba(24, 59, 50, 0.1);
  }

  .split-grid,
  .portfolio-grid,
  .founder-grid,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .brand {
    min-width: 0;
    flex: 1;
  }

  .image-frame::before {
    inset: 12px -12px -12px 12px;
  }
}

/* Mobile Devices */
@media (max-width: 680px) {
  :root {
    --shell: min(100vw - 24px, 1180px);
    --space-section: 56px;
  }

  html {
    scroll-padding-top: calc(70px + env(safe-area-inset-top, 0px));
  }

  .nav {
    min-height: 70px;
    padding: 0 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100vw - 120px);
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }

  .nav-panel {
    inset: 70px 12px auto;
  }

  .nav-panel a {
    min-height: 44px;
    padding: 12px 12px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    padding: 8px;
  }

  .hero {
    min-height: 90svh;
    padding-block: 100px 24px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(23, 19, 15, 0.92), rgba(23, 19, 15, 0.35) 60%),
      linear-gradient(90deg, rgba(23, 19, 15, 0.6), rgba(23, 19, 15, 0.1));
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3.5rem);
    line-height: 1.15;
    max-width: 100%;
  }

  h2 {
    font-size: clamp(1.4rem, 8vw, 2.5rem);
    line-height: 1.2;
  }

  h3 {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  }

  .hero-copy {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    max-width: 100%;
    line-height: 1.5;
  }

  .eyebrow {
    font-size: clamp(0.7rem, 0.9vw, 0.78rem);
  }

  .cta-row,
  .contact-actions {
    gap: 8px;
  }

  .btn {
    min-height: 44px;
    padding: 10px 16px;
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    flex: 1;
    min-width: auto;
  }

  .hero-proof {
    gap: 1px;
    margin-top: clamp(30px, 5vh, 50px);
  }

  .hero-proof div {
    padding: 12px;
  }

  .hero-proof dt {
    font-size: clamp(0.95rem, 2vw, 1.4rem);
  }

  .hero-proof dd {
    font-size: clamp(0.75rem, 0.9vw, 0.8rem);
  }

  .service-grid,
  .reason-grid,
  .testimonial-grid,
  .portfolio-mosaic {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    min-height: auto;
    padding: clamp(16px, 2.5vw, 20px);
  }

  .service-card span {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  }

  .service-card h3 {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
  }

  .image-frame::before {
    display: none;
  }

  .map-frame {
    min-height: 300px;
  }

  .mosaic-large {
    grid-column: 1;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    min-width: 48px;
    padding: 10px 14px;
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  }

  .contact-card {
    margin-bottom: 40px;
  }

  .contact-card strong {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  }

  .founder-note span {
    font-size: clamp(1.3rem, 3vw, 2.2rem);
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 16px;
  }

  .footer-grid a {
    width: 100%;
  }

  .text-link {
    font-size: clamp(0.9rem, 1vw, 1rem);
  }

  .faq-list summary {
    font-size: clamp(0.9rem, 1vw, 1rem);
  }
}

/* Small Phones */
@media (max-width: 400px) {
  :root {
    --shell: 100%;
  }

  .shell {
    padding-inline: 12px;
  }

  .nav {
    padding: 0 12px;
  }

  .footer-grid {
    padding: 0 12px;
  }

  h1 {
    font-size: clamp(1.6rem, 9vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.2rem, 6.5vw, 2rem);
  }

  .cta-row,
  .contact-actions {
    gap: 6px;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    padding: 8px 12px;
    min-height: 44px;
    min-width: 44px;
  }
}

/* Extra Small Phones */
@media (max-width: 320px) {
  .brand strong {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
  }

  .hero {
    padding-block: 90px 20px;
  }

  h1 {
    font-size: clamp(1.4rem, 8vw, 2.2rem);
  }

  .hero-copy {
    font-size: clamp(0.85rem, 1vw, 0.9rem);
  }

  .btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  .section-copy p:not(.eyebrow),
  .section-heading p,
  .contact-section p {
    color: var(--color-ink);
  }

  .service-card p,
  .testimonial-grid blockquote,
  .portfolio-mosaic span {
    color: var(--color-ink);
  }
}
