@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600&family=Playfair+Display:ital,wght@1,500&display=swap');

:root {
  --bg: #f2efe9;
  --paper: #f8f6f1;
  --ink: #141414;
  --muted: #69665f;
  --line: rgba(20, 20, 20, 0.16);
  --dark: #151513;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-shell { overflow: hidden; }
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 34px;
  background: rgba(242, 239, 233, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .3s ease;
}
.topbar.scrolled { border-color: var(--line); }
.brand {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 600;
  letter-spacing: -.04em;
}
.nav { display: flex; gap: 30px; font-size: 13px; }
.nav a { opacity: .72; transition: opacity .2s ease; }
.nav a:hover { opacity: 1; }
.lang-switch {
  justify-self: end;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.hero {
  min-height: 100svh;
  padding: 150px 6vw 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-kicker {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 1100px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 9.5vw, 142px);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .88;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}
.hero-copy {
  max-width: 600px;
  margin: 40px 0 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 40px 0 0 auto;
  width: min(600px, 100%);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  transition: transform .2s ease, opacity .2s ease;
}
.button:active { transform: scale(.98); }
.button-dark { background: var(--dark); color: white; }
.text-link { border-bottom: 1px solid currentColor; font-size: 14px; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 72px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: flex; flex-direction: column; gap: 8px; }
.hero-meta span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.hero-meta strong { font-size: 14px; font-weight: 500; }

.statement {
  padding: 12vw 6vw;
  background: var(--dark);
  color: white;
}
.statement p {
  max-width: 1200px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 6.2vw, 88px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.section { padding: 120px 6vw; }
.section-heading {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
  margin-bottom: 58px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.section-heading span { color: var(--muted); font-size: 12px; }
.section-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-grid article {
  min-height: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius);
}
.service-number { margin-bottom: 40px; color: var(--muted); font-size: 12px; }
.service-grid h3 {
  margin: 0 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  letter-spacing: -.04em;
}
.service-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.projects-section { padding-top: 40px; }
.project-list { display: grid; gap: 90px; }
.project-card { display: grid; gap: 26px; }
.project-image {
  overflow: hidden;
  background: #ddd;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
}
.project-image img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.project-card:hover img { transform: scale(1.025); }
.project-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.project-type { margin: 0 0 10px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.project-info h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -.055em;
}
.project-info > p { margin: 8px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.concept-note {
  max-width: 820px;
  margin: 72px 0 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.pricing-section { background: var(--paper); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.price-card.featured { background: var(--dark); color: white; border-color: var(--dark); }
.recommended {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: white;
  color: var(--dark);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.price-card > p { margin: 0 0 46px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.featured > p { color: rgba(255,255,255,.58); }
.price-card h3 { margin: 0; font-family: "Manrope", sans-serif; font-size: 28px; letter-spacing: -.04em; }
.price { margin: 16px 0 34px; font-size: 22px; }
.price-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.price-card li { padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.featured li { color: rgba(255,255,255,.72); border-color: rgba(255,255,255,.17); }
.pricing-note { max-width: 720px; margin: 34px 0 0 auto; color: var(--muted); font-size: 13px; line-height: 1.65; }

.process-list { border-top: 1px solid var(--line); }
.process-list > div {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.process-list span { color: var(--muted); font-size: 12px; }
.process-list h3 { margin: 0; font-family: "Manrope", sans-serif; font-size: 26px; letter-spacing: -.03em; }
.process-list p { margin: 0; color: var(--muted); line-height: 1.6; }

.contact-section {
  padding: 130px 6vw 80px;
  background: var(--dark);
  color: white;
}
.contact-section > p { margin: 0 0 24px; color: rgba(255,255,255,.58); }
.contact-section h2 {
  max-width: 1000px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 8vw, 116px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .95;
}
.contact-actions { display: flex; gap: 12px; margin-top: 48px; }
.button-light { background: white; color: var(--dark); }
.button-outline-light { border: 1px solid rgba(255,255,255,.4); color: white; }
.contact-details {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 110px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.62);
  font-size: 13px;
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 22px 6vw;
  background: var(--dark);
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

.reveal,
.reveal.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 820px) {
  .topbar { grid-template-columns: 1fr auto; padding: 14px 18px; }
  .nav { display: none; }
  .hero { padding: 130px 20px 34px; min-height: 96svh; }
  .hero h1 { font-size: clamp(54px, 17vw, 84px); }
  .hero-copy, .hero-actions { margin-left: 0; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-meta { grid-template-columns: 1fr; gap: 20px; }
  .statement, .section, .contact-section { padding-left: 20px; padding-right: 20px; }
  .statement { padding-top: 100px; padding-bottom: 100px; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .section-heading { grid-template-columns: 42px 1fr; }
  .service-grid, .pricing-grid { grid-template-columns: 1fr; }
  .service-grid article {
    min-height: auto;
    padding: 24px;
  }
  .project-list { gap: 64px; }
  .project-image { aspect-ratio: 4 / 5; }
  .project-info { grid-template-columns: 1fr; }
  .process-list > div { grid-template-columns: 38px 1fr; }
  .process-list p { grid-column: 2; }
  .contact-actions { flex-direction: column; }
  .contact-details { flex-direction: column; margin-top: 80px; }
  footer { gap: 18px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   PORTFOLIO V2 â premium polish
   Project cards are intentionally untouched.
   ========================================================= */

:root {
  --ease-premium: cubic-bezier(.22, .72, .18, 1);
  --shadow-soft: 0 18px 60px rgba(20, 20, 20, .07);
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.topbar {
  padding-top: 16px;
  padding-bottom: 16px;
  transition:
    padding .35s var(--ease-premium),
    background .35s ease,
    border-color .35s ease;
}

.topbar.scrolled {
  padding-top: 11px;
  padding-bottom: 11px;
  background: rgba(242, 239, 233, .93);
}

.brand {
  transition:
    background .3s ease,
    color .3s ease,
    transform .3s var(--ease-premium);
}

.brand:hover {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(-7deg);
}

.nav a {
  position: relative;
  padding: 7px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-premium);
}

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

.lang-switch {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease;
}

.lang-switch:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  top: 9%;
  right: -12%;
  border: 1px solid rgba(20, 20, 20, .09);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(30vw, 420px);
  aspect-ratio: 1;
  top: 20%;
  right: -2%;
  border: 1px solid rgba(20, 20, 20, .07);
  border-radius: 50%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 246, 241, .45);
  backdrop-filter: blur(10px);
}

.availability-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(20, 20, 20, .06);
  animation: availabilityPulse 2.4s ease-in-out infinite;
}

@keyframes availabilityPulse {
  50% { box-shadow: 0 0 0 8px rgba(20, 20, 20, 0); }
}

.hero h1 {
  text-wrap: balance;
  animation: heroIn .9s var(--ease-premium) both;
}

.hero h1 em {
  position: relative;
  width: fit-content;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.08em;
  left: .03em;
  height: .055em;
  border-radius: 999px;
  background: currentColor;
  opacity: .22;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineDraw .9s .55s var(--ease-premium) forwards;
}

.hero-copy {
  animation: heroIn .9s .12s var(--ease-premium) both;
}

.hero-actions {
  animation: heroIn .9s .2s var(--ease-premium) both;
}

.hero-meta {
  animation: heroIn .9s .3s var(--ease-premium) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes lineDraw {
  to { transform: scaleX(1); }
}

.button {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition:
    transform .3s var(--ease-premium),
    box-shadow .3s ease,
    background .3s ease,
    color .3s ease;
}

.button::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  left: -120px;
  top: 50%;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  transform: translateY(-50%);
  transition: left .55s var(--ease-premium);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.button:hover::after {
  left: calc(100% + 12px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
}

.text-link::after {
  content: "";
  position: absolute;
}

.text-link span:last-child {
  transition: transform .3s var(--ease-premium);
}

.text-link:hover span:last-child {
  transform: translate(4px, 4px);
}

.statement {
  position: relative;
  overflow: hidden;
}

.statement::after {
  content: "AA";
  position: absolute;
  right: -.04em;
  bottom: -.25em;
  color: rgba(255,255,255,.025);
  font-family: "Manrope", sans-serif;
  font-size: min(48vw, 680px);
  font-weight: 600;
  letter-spacing: -.12em;
  line-height: 1;
  pointer-events: none;
}

.statement p {
  position: relative;
  z-index: 1;
  text-wrap: balance;
}

.section-heading h2 {
  text-wrap: balance;
}

.service-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition:
    transform .4s var(--ease-premium),
    border-color .35s ease,
    box-shadow .4s ease;
}

.service-grid article::after {
  content: "â";
  position: absolute;
  right: 24px;
  bottom: 22px;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition:
    opacity .3s ease,
    transform .35s var(--ease-premium);
}

.service-grid article:hover {
  transform: translateY(-7px);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.service-grid article:hover::after {
  opacity: .55;
  transform: none;
}

.pricing-section {
  position: relative;
}

.price-card {
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  transition:
    transform .4s var(--ease-premium),
    box-shadow .4s ease,
    border-color .35s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  width: 180px;
  aspect-ratio: 1;
  right: -105px;
  top: -105px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .08;
  transition: transform .6s var(--ease-premium);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(20,20,20,.28);
}

.price-card:hover::before {
  transform: scale(1.18);
}

.price-card > p {
  margin-bottom: 38px;
}

.price-card h3 {
  max-width: 90%;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 20px 0 38px;
  color: var(--muted);
  font-size: 13px;
}

.price strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(35px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}

.featured .price {
  color: rgba(255,255,255,.55);
}

.featured .price strong {
  color: white;
}

.price-card ul {
  margin-top: auto;
}

.recommended {
  border: 1px solid rgba(20,20,20,.08);
}

.process-list > div {
  transition:
    padding-left .35s var(--ease-premium),
    background .3s ease;
}

.process-list > div:hover {
  padding-left: 16px;
  background: rgba(248,246,241,.5);
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  right: -18%;
  bottom: -50%;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section h2 {
  position: relative;
  z-index: 1;
  text-wrap: balance;
}

.button-light:hover {
  background: #ece8df;
}

.button-outline-light:hover {
  background: white;
  color: var(--dark);
  border-color: white;
}

.contact-details a {
  position: relative;
}

.contact-details a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease-premium);
}

.contact-details a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

footer a {
  transition: color .25s ease;
}

footer a:hover {
  color: white;
}

/* Safe entrance animation: never hides content or creates blank sections. */
.section-heading,
.service-grid,
.pricing-grid,
.process-list,
.contact-section > p,
.contact-section h2,
.contact-actions,
.contact-details {
  animation: softEnter .8s var(--ease-premium) both;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}

@keyframes softEnter {
  from { opacity: .25; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 820px) {
  .topbar {
    background: rgba(242, 239, 233, .9);
  }

  .lang-switch {
    min-width: 44px;
    min-height: 44px;
  }

  .hero::before {
    width: 92vw;
    right: -58%;
    top: 12%;
  }

  .hero::after {
    width: 62vw;
    right: -40%;
    top: 20%;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 10px;
    line-height: 1.4;
  }

  .hero h1 em::after {
    bottom: -.12em;
  }

  .service-grid article:hover,
  .price-card:hover,
  .button:hover {
    transform: none;
    box-shadow: none;
  }

  .price-card {
    min-height: 0;
  }

  .process-list > div:hover {
    padding-left: 0;
    background: transparent;
  }

  .contact-section::after {
    width: 120vw;
    right: -75%;
    bottom: -28%;
  }
}

@supports not (animation-timeline: view()) {
  .section-heading,
  .service-grid,
  .pricing-grid,
  .process-list,
  .contact-section > p,
  .contact-section h2,
  .contact-actions,
  .contact-details {
    animation: none;
  }
}

/* =========================================================
   SEO / CONVERSION SECTIONS
   Project cards remain untouched.
   ========================================================= */

.trust-section {
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-grid article {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid article > span,
.local-seo-section .eyebrow {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.trust-grid h3 {
  margin: 52px 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -.045em;
}

.trust-grid p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.local-seo-section {
  background: var(--paper);
}

.local-seo-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 140px);
  padding: 10px 0 78px;
}

.local-seo-intro h3 {
  margin: 22px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: 1.02;
}

.local-seo-copy {
  align-self: end;
}

.local-seo-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.local-link {
  margin-top: 14px;
}

.keyword-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.keyword-services span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  background: var(--bg);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 62px 28px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Manrope", sans-serif;
  font-size: clamp(21px, 2.4vw, 31px);
  letter-spacing: -.035em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 30px;
  font-weight: 300;
  transition: transform .3s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
  max-width: 780px;
  margin: -4px 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

@media (max-width: 1080px) {
  .nav-extra { display: none; }
}

@media (max-width: 820px) {
  .trust-grid,
  .local-seo-layout {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    min-height: 0;
    padding: 28px 24px;
  }

  .trust-grid h3 {
    margin-top: 34px;
  }

  .local-seo-layout {
    gap: 38px;
    padding-bottom: 52px;
  }

  .local-seo-intro h3 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .keyword-services {
    gap: 8px;
  }

  .keyword-services span {
    font-size: 10px;
  }

  .faq-list summary {
    padding: 23px 48px 23px 0;
  }
}

/* =========================================================
   WARM EDITORIAL LUXURY â readability redesign
   Replaces the two-colour look with porcelain, cream,
   greige, champagne and deep chocolate.
   Project cards and their image sizing remain untouched.
   ========================================================= */

:root {
  --bg: #f4f0e9;
  --paper: #fbf8f3;
  --ink: #22201e;
  --muted: #746e67;
  --line: rgba(78, 67, 56, 0.17);
  --dark: #1c1a18;
  --radius: 28px;

  --cream: #fffaf2;
  --greige: #e7ded2;
  --greige-soft: #eee7de;
  --champagne: #b59a72;
  --champagne-deep: #8f7452;
  --chocolate: #29231f;
  --chocolate-soft: #3b332d;
  --white-soft: #fffdf9;

  --shadow-soft: 0 24px 70px rgba(55, 43, 32, 0.08);
  --shadow-card: 0 16px 45px rgba(55, 43, 32, 0.07);
}

html {
  background: var(--bg);
}

body {
  background:
    radial-gradient(circle at 85% 4%, rgba(181, 154, 114, 0.12), transparent 27rem),
    var(--bg);
  color: var(--ink);
}

body::before {
  opacity: 0.022;
}

.topbar {
  border-color: rgba(78, 67, 56, 0.14);
  background: rgba(244, 240, 233, 0.88);
  box-shadow: 0 8px 35px rgba(55, 43, 32, 0.035);
}

.topbar.scrolled {
  background: rgba(251, 248, 243, 0.95);
  border-color: rgba(78, 67, 56, 0.18);
}

.brand {
  border-color: var(--champagne-deep);
  color: var(--ink);
  background: rgba(255, 250, 242, 0.55);
}

.brand:hover {
  background: var(--chocolate);
  border-color: var(--chocolate);
  color: var(--cream);
}

.nav a {
  color: #413b36;
}

.nav a::after {
  background: var(--champagne-deep);
}

.lang-switch {
  border-color: rgba(143, 116, 82, 0.36);
  color: var(--ink);
  background: rgba(255, 250, 242, 0.58);
}

.lang-switch:hover {
  background: var(--chocolate);
  border-color: var(--chocolate);
  color: var(--cream);
}

.hero {
  min-height: min(880px, 92vh);
  background:
    linear-gradient(125deg, rgba(255, 250, 242, 0.62), rgba(244, 240, 233, 0.2)),
    var(--bg);
}

.hero::before,
.hero::after {
  border-color: rgba(181, 154, 114, 0.22);
}

.hero-kicker {
  border-color: rgba(143, 116, 82, 0.28);
  background: rgba(255, 250, 242, 0.7);
  color: #62584f;
}

.availability-dot {
  background: var(--champagne-deep);
  box-shadow: 0 0 0 5px rgba(181, 154, 114, 0.12);
}

.hero h1 {
  max-width: 1050px;
  color: var(--ink);
}

.hero h1 em {
  color: var(--champagne-deep);
}

.hero h1 em::after {
  background: var(--champagne);
  opacity: 0.45;
}

.hero-copy {
  max-width: 710px;
  color: #5f5852;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
}

.hero-meta {
  border-color: rgba(78, 67, 56, 0.15);
}

.hero-meta > div {
  border-color: rgba(78, 67, 56, 0.13);
}

.hero-meta span {
  color: #847b73;
}

.hero-meta strong {
  color: #312c28;
}

.button-dark {
  background: var(--chocolate);
  border-color: var(--chocolate);
  color: var(--cream);
}

.button-dark:hover {
  background: var(--chocolate-soft);
}

.text-link {
  color: var(--champagne-deep);
}

.statement {
  background:
    linear-gradient(135deg, #231f1c 0%, #302923 100%);
  color: var(--cream);
}

.statement p {
  max-width: 1080px;
  color: #f7efe5;
}

.statement p::selection {
  background: var(--champagne);
  color: var(--dark);
}

.statement::after {
  color: rgba(181, 154, 114, 0.055);
}

.section {
  border-color: rgba(78, 67, 56, 0.13);
}

.section-heading > span {
  color: var(--champagne-deep);
}

.section-heading h2 {
  color: var(--ink);
}

.services-section {
  background: var(--cream);
}

.service-grid {
  gap: 14px;
  border: 0;
}

.service-grid article {
  background: var(--paper);
  border: 1px solid rgba(78, 67, 56, 0.13);
  border-radius: 22px;
  box-shadow: 0 8px 26px rgba(55, 43, 32, 0.035);
}

.service-grid article:nth-child(2) {
  background: var(--greige-soft);
}

.service-grid article:nth-child(3) {
  background: #f1e9de;
}

.service-grid article > span {
  color: var(--champagne-deep);
}

.service-grid h3 {
  color: var(--ink);
}

.service-grid p {
  max-width: 520px;
  color: #6e665f;
  line-height: 1.75;
}

.service-grid article::after {
  color: var(--champagne-deep);
}

.service-grid article:hover {
  border-color: rgba(143, 116, 82, 0.34);
  box-shadow: var(--shadow-card);
}

.trust-section {
  background: var(--greige);
}

.trust-grid {
  gap: 1px;
  border: 1px solid rgba(78, 67, 56, 0.12);
  background: rgba(78, 67, 56, 0.12);
  border-radius: 24px;
  overflow: hidden;
}

.trust-grid article {
  min-height: 290px;
  background: var(--paper);
  border: 0;
}

.trust-grid article:nth-child(2),
.trust-grid article:nth-child(3) {
  background: #f4eee6;
}

.trust-grid article > span {
  color: var(--champagne-deep);
}

.trust-grid h3 {
  color: #2a2623;
}

.trust-grid p {
  color: #6d655e;
  line-height: 1.78;
}

.projects-section {
  background: var(--white-soft);
}

/* Project cards intentionally receive no layout, image-size or card-style changes. */

.pricing-section {
  background:
    linear-gradient(180deg, #eee6dc 0%, #f5f0e9 100%);
}

.pricing-grid {
  gap: 18px;
}

.price-card {
  border-radius: 26px;
  border: 1px solid rgba(78, 67, 56, 0.14);
  background: var(--paper);
  box-shadow: 0 10px 35px rgba(55, 43, 32, 0.04);
}

.price-card:nth-child(1) {
  background: #fffaf3;
}

.price-card.featured {
  background:
    linear-gradient(145deg, #211d1a 0%, #39312a 100%);
  color: var(--cream);
  border-color: rgba(181, 154, 114, 0.38);
  box-shadow: 0 26px 70px rgba(35, 27, 21, 0.17);
}

.price-card:nth-child(3) {
  background: var(--greige-soft);
}

.price-card::before {
  color: var(--champagne);
  opacity: 0.17;
}

.price-card > span {
  color: var(--champagne-deep);
}

.price-card.featured > span {
  color: #d8c4a4;
}

.price-card h3 {
  color: var(--ink);
}

.price-card.featured h3 {
  color: var(--cream);
}

.price-card > p,
.price-card li {
  color: #6d655e;
  line-height: 1.65;
}

.price-card.featured > p,
.price-card.featured li {
  color: rgba(255, 248, 238, 0.73);
}

.price strong {
  color: var(--champagne-deep);
}

.featured .price strong {
  color: #ead5b5;
}

.recommended {
  background: #f8f1e7;
  color: #4b4037;
  border-color: rgba(181, 154, 114, 0.32);
}

.process-section {
  background: var(--cream);
}

.process-list {
  border-color: rgba(78, 67, 56, 0.15);
}

.process-list > div {
  border-color: rgba(78, 67, 56, 0.13);
}

.process-list > div:nth-child(even) {
  background: rgba(231, 222, 210, 0.28);
}

.process-list span {
  color: var(--champagne-deep);
}

.process-list h3 {
  color: var(--ink);
}

.process-list p {
  color: #706860;
  max-width: 660px;
  line-height: 1.72;
}

.process-list > div:hover {
  background: rgba(231, 222, 210, 0.58);
}

.local-seo-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(181, 154, 114, 0.16), transparent 25rem),
    linear-gradient(145deg, #211d1a 0%, #342d27 100%);
  color: var(--cream);
}

.local-seo-section .section-heading > span {
  color: #d3b98f;
}

.local-seo-section .section-heading h2,
.local-seo-intro h3 {
  color: var(--cream);
}

.local-seo-section .eyebrow {
  color: #d3b98f;
}

.local-seo-copy p {
  color: rgba(255, 248, 238, 0.72);
  line-height: 1.82;
}

.local-seo-section .text-link {
  color: #ead5b5;
}

.keyword-services {
  border-color: rgba(255, 248, 238, 0.16);
}

.keyword-services span {
  color: rgba(255, 248, 238, 0.78);
  border-color: rgba(234, 213, 181, 0.26);
  background: rgba(255, 250, 242, 0.035);
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  border-color: rgba(78, 67, 56, 0.15);
}

.faq-list details {
  border-color: rgba(78, 67, 56, 0.13);
}

.faq-list details[open] {
  background: rgba(231, 222, 210, 0.25);
}

.faq-list summary {
  color: var(--ink);
}

.faq-list summary::after {
  color: var(--champagne-deep);
}

.faq-list p {
  color: #6c645d;
  max-width: 760px;
  line-height: 1.8;
}

.contact-section {
  background:
    radial-gradient(circle at 85% 30%, rgba(181, 154, 114, 0.16), transparent 25rem),
    #181614;
  color: var(--cream);
}

.contact-section > p {
  color: #d4c8bc;
}

.contact-section h2 {
  color: var(--cream);
}

.contact-section::after {
  border-color: rgba(181, 154, 114, 0.17);
}

.button-light {
  background: var(--cream);
  color: var(--dark);
}

.button-light:hover {
  background: #eadfce;
}

.button-outline-light {
  border-color: rgba(234, 213, 181, 0.48);
  color: var(--cream);
}

.contact-details {
  border-color: rgba(255, 248, 238, 0.16);
}

.contact-details span {
  color: #b7aaa0;
}

.contact-details a,
.contact-details strong {
  color: #f8efe4;
}

footer {
  background: #100f0e;
  border-color: rgba(255, 248, 238, 0.11);
  color: #a99f96;
}

footer a {
  color: #d7c7b4;
}

footer a:hover {
  color: var(--cream);
}

/* Reading comfort */
.hero-copy,
.service-grid p,
.trust-grid p,
.price-card > p,
.price-card li,
.process-list p,
.local-seo-copy p,
.faq-list p {
  text-wrap: pretty;
}

.service-grid p,
.trust-grid p,
.process-list p,
.local-seo-copy p,
.faq-list p {
  font-size: clamp(15px, 1.45vw, 18px);
}

@media (max-width: 820px) {
  body {
    background:
      radial-gradient(circle at 100% 2%, rgba(181, 154, 114, 0.11), transparent 18rem),
      var(--bg);
  }

  .topbar {
    background: rgba(251, 248, 243, 0.94);
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 88px);
  }

  .hero-copy {
    font-size: 18px;
    line-height: 1.7;
  }

  .service-grid {
    gap: 12px;
  }

  .service-grid article,
  .trust-grid article,
  .price-card {
    border-radius: 20px;
  }

  .trust-grid {
    border-radius: 20px;
  }

  .local-seo-section {
    background:
      radial-gradient(circle at 105% 8%, rgba(181, 154, 114, 0.15), transparent 18rem),
      linear-gradient(145deg, #211d1a 0%, #342d27 100%);
  }

  .keyword-services span {
    background: rgba(255, 250, 242, 0.04);
  }
}

/* =========================================================
   LUXURY CONTRAST V2
   Stronger hierarchy, richer colour, easier reading.
   ========================================================= */

:root {
  --ivory: #f7f2ea;
  --porcelain: #fffaf4;
  --stone: #ded2c4;
  --stone-deep: #c9baa8;
  --espresso: #1d1a18;
  --aubergine: #3a2428;
  --aubergine-soft: #5a3a40;
  --olive: #7c8061;
  --olive-soft: #a5a889;
  --brass: #b8925d;
  --brass-deep: #8e6b3f;
  --ink-strong: #171513;
  --text-body: #403a35;
  --text-soft: #665e57;
}

body {
  background: var(--ivory);
  color: var(--ink-strong);
}

.topbar {
  background: rgba(255, 250, 244, 0.96);
  border-bottom: 1px solid rgba(29, 26, 24, 0.16);
}

.nav a,
.hero-meta strong,
.section-heading h2,
.service-grid h3,
.trust-grid h3,
.price-card h3,
.process-list h3,
.faq-list summary {
  color: var(--ink-strong);
}

.hero {
  background:
    linear-gradient(120deg, rgba(255,255,255,.48), transparent 42%),
    linear-gradient(180deg, #f6efe6 0%, #efe3d6 100%);
}

.hero-kicker {
  color: #4f473f;
  background: rgba(255,250,244,.8);
  border-color: rgba(142, 107, 63, .35);
}

.hero h1 {
  color: var(--ink-strong);
}

.hero h1 em {
  color: var(--aubergine);
}

.hero-copy {
  color: var(--text-body);
  max-width: 680px;
}

.hero-meta {
  background: rgba(255,250,244,.46);
  border-radius: 22px;
  padding: 18px 20px;
}

.hero-meta span {
  color: var(--brass-deep);
}

.statement {
  background:
    linear-gradient(145deg, var(--aubergine) 0%, #25191c 100%);
}

.statement p {
  color: #fff7ef;
}

.services-section {
  background: var(--porcelain);
}

.service-grid article {
  background: #f4e7dc;
  border-color: rgba(58, 36, 40, .16);
}

.service-grid article:nth-child(2) {
  background: #e9e2d0;
}

.service-grid article:nth-child(3) {
  background: #dfe2d1;
}

.service-grid article > span {
  color: var(--aubergine);
}

.service-grid p {
  color: var(--text-body);
}

.trust-section {
  background: #d6c8b8;
}

.trust-grid article {
  background: #fbf6ef;
}

.trust-grid article:nth-child(2) {
  background: #ece6d8;
}

.trust-grid article:nth-child(3) {
  background: #e2e5d7;
}

.trust-grid article:nth-child(4) {
  background: #f0dfdc;
}

.trust-grid p {
  color: var(--text-body);
}

.projects-section {
  background: #faf6f0;
}

.pricing-section {
  background:
    linear-gradient(180deg, #d9cbbb 0%, #eee6dc 100%);
}

.price-card {
  background: #fffaf4;
}

.price-card:nth-child(1) {
  background: #f2e7dc;
}

.price-card.featured {
  background:
    linear-gradient(145deg, var(--aubergine) 0%, #24181b 100%);
  border-color: rgba(184, 146, 93, .45);
}

.price-card:nth-child(3) {
  background: #e0e4d3;
}

.price-card > p,
.price-card li {
  color: var(--text-body);
}

.price-card.featured > p,
.price-card.featured li {
  color: rgba(255,248,238,.86);
}

.price strong {
  color: var(--aubergine);
}

.featured .price strong {
  color: #f0d8b8;
}

.process-section {
  background: #fffaf4;
}

.process-list > div:nth-child(odd) {
  background: #f8efe6;
}

.process-list > div:nth-child(even) {
  background: #e8eadf;
}

.process-list p {
  color: var(--text-body);
}

.local-seo-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(184,146,93,.18), transparent 28rem),
    linear-gradient(145deg, #20251b 0%, #2f3525 100%);
}

.local-seo-copy p {
  color: rgba(255,250,244,.86);
}

.keyword-services span {
  color: #fffaf4;
  border-color: rgba(255,250,244,.3);
}

.faq-section {
  background: #efe5d9;
}

.faq-list details {
  background: rgba(255,250,244,.58);
  margin-bottom: 10px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(29,26,24,.1);
}

.faq-list details[open] {
  background: #fffaf4;
}

.faq-list p {
  color: var(--text-body);
}

.contact-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(184,146,93,.17), transparent 24rem),
    linear-gradient(145deg, #171513 0%, #2b2320 100%);
}

.contact-section > p {
  color: rgba(255,250,244,.82);
}

footer {
  background: #0f0e0d;
}

/* Improve long-form readability */
.hero-copy,
.service-grid p,
.trust-grid p,
.price-card > p,
.price-card li,
.process-list p,
.local-seo-copy p,
.faq-list p {
  color: var(--text-body);
  line-height: 1.8;
}

.local-seo-copy p,
.price-card.featured > p,
.price-card.featured li,
.contact-section > p {
  color: rgba(255,250,244,.84);
}

.service-grid p,
.trust-grid p,
.process-list p,
.local-seo-copy p,
.faq-list p {
  max-width: 62ch;
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 70px);
}

.section-heading > span {
  color: var(--aubergine);
}

.local-seo-section .section-heading > span,
.local-seo-section .eyebrow {
  color: #d8bc96;
}

.button-dark {
  background: var(--aubergine);
  border-color: var(--aubergine);
}

.button-dark:hover {
  background: var(--aubergine-soft);
}

.text-link {
  color: var(--aubergine);
}

.local-seo-section .text-link {
  color: #e5c9a2;
}

@media (max-width: 820px) {
  .hero-meta {
    padding: 14px 16px;
  }

  .faq-list details {
    padding: 0 14px;
  }
}

/* =========================================================
   LUXURY MOTION V3
   Safe micro-animations: content remains visible if JS fails.
   ========================================================= */

:root {
  --motion-ease: cubic-bezier(.22, .75, .18, 1);
  --motion-fast: 220ms;
  --motion-medium: 520ms;
  --motion-slow: 820ms;
}

.service-grid article,
.trust-grid article,
.price-card,
.faq-list details {
  transition:
    transform var(--motion-medium) var(--motion-ease),
    box-shadow var(--motion-medium) ease,
    border-color var(--motion-medium) ease,
    background var(--motion-medium) ease;
}

.service-grid article:hover,
.trust-grid article:hover,
.price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(35, 27, 21, .12);
}

.project-image {
  position: relative;
  isolation: isolate;
  box-shadow: 0 24px 65px rgba(35, 27, 21, .11);
  border: 1px solid rgba(29, 26, 24, .10);
  transition:
    transform var(--motion-slow) var(--motion-ease),
    box-shadow var(--motion-slow) ease,
    border-color var(--motion-slow) ease;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(0deg, rgba(25,18,15,.09), transparent 24%);
  opacity: .55;
  transition: opacity var(--motion-medium) ease;
}

.project-card:hover .project-image {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(35, 27, 21, .16);
  border-color: rgba(142, 107, 63, .24);
}

.project-card:hover .project-image::after {
  opacity: .2;
}

.project-image img {
  transition:
    transform 1.15s var(--motion-ease),
    filter var(--motion-slow) ease;
}

.project-card:hover .project-image img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.button {
  transition:
    transform var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-medium) ease,
    background var(--motion-fast) ease,
    color var(--motion-fast) ease,
    border-color var(--motion-fast) ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(35, 27, 21, .16);
}

.button:active {
  transform: translateY(-1px) scale(.985);
}

.text-link {
  position: relative;
  width: fit-content;
}

.text-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(.3);
  transform-origin: left;
  opacity: .45;
  transition:
    transform var(--motion-medium) var(--motion-ease),
    opacity var(--motion-fast) ease;
}

.text-link:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.text-link span:last-child {
  transition: transform var(--motion-medium) var(--motion-ease);
}

.text-link:hover span:last-child {
  transform: translate(5px, 5px);
}

.topbar {
  transition:
    padding var(--motion-medium) var(--motion-ease),
    background var(--motion-medium) ease,
    box-shadow var(--motion-medium) ease,
    border-color var(--motion-medium) ease;
}

.topbar.scrolled {
  box-shadow: 0 12px 38px rgba(35, 27, 21, .07);
}

.brand,
.lang-switch {
  transition:
    transform var(--motion-medium) var(--motion-ease),
    background var(--motion-fast) ease,
    color var(--motion-fast) ease,
    border-color var(--motion-fast) ease;
}

.brand:hover {
  transform: rotate(-7deg) scale(1.04);
}

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

.faq-list summary {
  transition:
    color var(--motion-fast) ease,
    padding-left var(--motion-medium) var(--motion-ease);
}

.faq-list details:hover summary {
  padding-left: 8px;
}

.hero::before,
.hero::after,
.contact-section::after {
  animation: luxuryFloat 14s ease-in-out infinite alternate;
}

.hero::after {
  animation-delay: -5s;
  animation-duration: 18s;
}

@keyframes luxuryFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-14px, 18px, 0) scale(1.035); }
}

/* Without JS, all content stays visible. */
.motion-ready .reveal-target {
  opacity: 0;
  transform: translateY(28px);
}

.motion-ready .reveal-target.is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity var(--motion-slow) ease,
    transform var(--motion-slow) var(--motion-ease);
}

.motion-ready .reveal-target[data-delay="1"] { transition-delay: 70ms; }
.motion-ready .reveal-target[data-delay="2"] { transition-delay: 140ms; }
.motion-ready .reveal-target[data-delay="3"] { transition-delay: 210ms; }

.motion-ready .hero-kicker,
.motion-ready .hero h1,
.motion-ready .hero-copy,
.motion-ready .hero-actions,
.motion-ready .hero-meta {
  opacity: 0;
  transform: translateY(22px);
}

.motion-ready.hero-loaded .hero-kicker,
.motion-ready.hero-loaded .hero h1,
.motion-ready.hero-loaded .hero-copy,
.motion-ready.hero-loaded .hero-actions,
.motion-ready.hero-loaded .hero-meta {
  opacity: 1;
  transform: none;
  transition:
    opacity var(--motion-slow) ease,
    transform var(--motion-slow) var(--motion-ease);
}

.motion-ready.hero-loaded .hero h1 { transition-delay: 90ms; }
.motion-ready.hero-loaded .hero-copy { transition-delay: 170ms; }
.motion-ready.hero-loaded .hero-actions { transition-delay: 250ms; }
.motion-ready.hero-loaded .hero-meta { transition-delay: 330ms; }

@media (max-width: 820px) {
  .service-grid article:hover,
  .trust-grid article:hover,
  .price-card:hover,
  .project-card:hover .project-image,
  .button:hover,
  .brand:hover,
  .lang-switch:hover {
    transform: none;
  }

  .project-card:hover .project-image img {
    transform: none;
    filter: none;
  }

  .hero::before,
  .hero::after,
  .contact-section::after {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .motion-ready .reveal-target,
  .motion-ready .hero-kicker,
  .motion-ready .hero h1,
  .motion-ready .hero-copy,
  .motion-ready .hero-actions,
  .motion-ready .hero-meta {
    opacity: 1 !important;
    transform: none !important;
  }
}
