@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Caslon+Display&display=swap');

:root {
  --green: #153f2a;
  --green-2: #245a3d;
  --yellow: #ffcf45;
  --ink: #172019;
  --muted: #6c746d;
  --cream: #f7f3eb;
  --paper: #fffdf9;
  --line: rgba(21, 63, 42, .14);
  --shadow: 0 30px 80px rgba(31, 45, 35, .10);
  --radius: 34px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.skip-link { position: fixed; left: 10px; top: -60px; z-index: 999; background: #fff; padding: 12px 16px; }
.skip-link:focus { top: 10px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,253,249,.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(21,63,42,.06); }
.header-inner { min-height: 86px; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 32px; }
.brand img { width: 148px; }
.nav { display: flex; justify-content: center; gap: 30px; font-size: 14px; }
.nav a { color: #3b443d; }
.nav a:hover { color: var(--green); }
.header-cta { background: var(--green); color: #fff; padding: 12px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; }

.hero { padding: 28px 0 0; position: relative; overflow: hidden; }
.hero-shell {
  height: 650px;
  border: 1px solid rgba(21,63,42,.12);
  border-radius: 42px;
  background: linear-gradient(150deg, #f4f4f1 0%, #fff 56%, #f1eee8 100%);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: .82fr 1.2fr 1.55fr;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}
.hero-orbit { position: absolute; width: 760px; height: 760px; border-radius: 50%; border: 74px solid rgba(255,255,255,.75); left: 155px; top: -80px; box-shadow: inset 0 0 80px rgba(255,255,255,.8); }
.hero-side { position: absolute; width: 190px; height: 380px; background: rgba(255,255,255,.72); bottom: 55px; border-radius: 50%; filter: blur(.2px); }
.hero-side-left { left: -98px; }
.hero-side-right { right: -102px; }
.hero-profile { align-self: start; padding: 102px 16px 0 54px; z-index: 3; }
.hero-name { font-weight: 700; font-size: 18px; line-height: 1.25; margin: 0 0 8px; }
.hero-role { color: var(--muted); font-size: 13px; line-height: 1.45; margin: 0 0 40px; }
.hero-credentials { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.hero-credentials li { padding: 18px 0; border-bottom: 1px solid var(--line); color: #8a908b; font-size: 13px; line-height: 1.4; }
.hero-credentials span { color: var(--green); font-weight: 700; }
.hero-photo { margin: 0; align-self: end; justify-self: center; height: 610px; width: 100%; z-index: 4; position: relative; }
.hero-photo img { position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); height: 100%; max-width: none; filter: drop-shadow(0 30px 35px rgba(21,63,42,.12)); }
.hero-copy { z-index: 5; align-self: center; padding: 62px 54px 70px 8px; }
.eyebrow, .section-kicker { color: var(--green-2); text-transform: uppercase; letter-spacing: .13em; font-size: 12px; font-weight: 700; }
.hero-copy h1, h2 { font-family: "Libre Caslon Display", Georgia, serif; font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.hero-copy h1 { font-size: clamp(62px, 5.3vw, 92px); margin: 16px 0 20px; max-width: 610px; color: var(--green); }
.hero-note { max-width: 330px; font-size: 15px; color: #4f5751; margin: 0 0 30px; }
.hero-action-row { display: flex; align-items: center; gap: 22px; transform: translateX(-86px); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 26px; min-height: 58px; padding: 0 28px; border-radius: 999px; font-weight: 700; transition: .25s ease; }
.button-primary { background: linear-gradient(135deg,var(--green),var(--green-2)); color: #fff; border: 10px solid rgba(255,255,255,.72); box-shadow: 0 14px 30px rgba(21,63,42,.2); }
.button-primary span { color: var(--yellow); font-size: 22px; }
.button:hover { transform: translateY(-2px); }
.button-secondary { border: 1px solid var(--green); color: var(--green); }
.hero-place { font-size: 12px; line-height: 1.35; color: #6e756f; min-width: 130px; }
.hero-place strong { color: var(--green); }
.hero-base { height: 92px; margin-top: -58px; background: linear-gradient(180deg, rgba(255,253,249,0), var(--paper) 62%); position: relative; z-index: 8; }

.intro { padding-top: 72px; }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: start; }
h2 { font-size: clamp(42px, 4.6vw, 68px); margin: 10px 0 0; color: var(--green); }
.intro-copy { font-size: 18px; color: #4d554f; padding-top: 34px; }

.services { background: var(--cream); }
.section-heading { max-width: 720px; margin-bottom: 52px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p:last-child { color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card { background: #fff; border: 1px solid rgba(21,63,42,.1); border-radius: 24px; padding: 30px; min-height: 330px; display: flex; flex-direction: column; box-shadow: 0 16px 40px rgba(33,46,36,.05); }
.service-index { color: var(--yellow); font-weight: 700; margin-bottom: 48px; }
.service-card h3 { font-family: "Libre Caslon Display", serif; font-size: 30px; line-height: 1.05; color: var(--green); margin: 0 0 18px; }
.service-card p { color: var(--muted); font-size: 14px; }
.service-card a { margin-top: auto; color: var(--green); font-weight: 700; font-size: 13px; }

.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: center; }
.about-image { border-radius: 34px; overflow: hidden; background: var(--cream); }
.about-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-copy p { color: #505851; }
blockquote { border-left: 3px solid var(--yellow); margin: 32px 0; padding: 8px 0 8px 22px; font-family: "Libre Caslon Display", serif; color: var(--green); font-size: 27px; line-height: 1.2; }
.about-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 34px; }
.about-facts div { border-top: 1px solid var(--line); padding-top: 18px; }
.about-facts strong { display: block; color: var(--green); font-family: "Libre Caslon Display", serif; font-size: 30px; }
.about-facts span { font-size: 12px; color: var(--muted); }

.method { background: var(--green); color: #fff; }
.method .section-kicker, .method h2 { color: #fff; }
.method-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5,1fr); gap: 24px; }
.method-list li { border-top: 1px solid rgba(255,255,255,.25); padding-top: 20px; }
.method-list span { color: var(--yellow); font-size: 12px; }
.method-list h3 { font-family: "Libre Caslon Display", serif; font-size: 30px; margin: 34px 0 10px; font-weight: 400; }
.method-list p { color: rgba(255,255,255,.72); font-size: 13px; }

.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.audience-grid article { background: #fff; padding: 40px 28px; }
.audience-grid h3 { color: var(--green); font-family: "Libre Caslon Display", serif; font-size: 34px; font-weight: 400; }
.audience-grid p { color: var(--muted); font-size: 14px; }

.materials { background: #eee7da; }
.materials-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.materials-grid > div:first-child > p { color: #505851; font-size: 17px; }
.material-card { background: #fff; border-radius: 26px; padding: 42px; box-shadow: var(--shadow); }
.material-label { text-transform: uppercase; letter-spacing: .12em; color: var(--green-2); font-size: 11px; font-weight: 700; }
.material-card h3 { color: var(--green); font-family: "Libre Caslon Display", serif; font-size: 40px; line-height: 1.05; font-weight: 400; }
.material-card li { margin-bottom: 8px; color: var(--muted); }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-list details { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; color: var(--green); font-weight: 700; }
.faq-list p { color: var(--muted); max-width: 720px; }

.contact { padding-top: 30px; }
.contact-box { background: var(--green); color: #fff; border-radius: 32px; padding: 62px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.contact-box .section-kicker, .contact-box h2 { color: #fff; }
.contact-box h2 { font-size: clamp(42px,4vw,64px); }
.contact-box p { color: rgba(255,255,255,.75); max-width: 700px; }
.contact-actions { text-align: center; display: flex; flex-direction: column; gap: 12px; }
.contact-actions span { font-size: 12px; color: rgba(255,255,255,.7); }
.contact-actions .button-primary { background: var(--yellow); color: var(--green); border-color: rgba(255,255,255,.16); }

.site-footer { padding: 80px 0 28px; background: #0f281c; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 50px; }
.footer-grid img { width: 150px; filter: invert(1) grayscale(1) brightness(4); margin-bottom: 20px; }
.footer-grid strong { display: block; margin-bottom: 14px; }
.footer-grid a, .footer-grid p { display: block; color: rgba(255,255,255,.65); font-size: 13px; margin: 0 0 8px; }
.footer-bottom { margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; color: rgba(255,255,255,.45); font-size: 12px; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 150px 1fr; }
  .nav { display: none; }
  .header-cta { justify-self: end; }
  .hero-shell { height: auto; min-height: 820px; grid-template-columns: 1fr; padding: 42px 28px 0; }
  .hero-orbit { width: 600px; height: 600px; left: 50%; transform: translateX(-50%); top: 245px; }
  .hero-profile { display: none; }
  .hero-copy { padding: 0; text-align: center; order: 1; }
  .hero-copy h1 { font-size: clamp(48px,11vw,74px); margin-inline: auto; }
  .hero-note { margin-inline: auto; }
  .hero-action-row { transform: none; justify-content: center; flex-wrap: wrap; }
  .hero-photo { order: 2; height: 470px; margin-top: 18px; }
  .intro-grid, .about-grid, .materials-grid, .faq-grid, .contact-box { grid-template-columns: 1fr; gap: 40px; }
  .service-grid, .audience-grid { grid-template-columns: repeat(2,1fr); }
  .method-list { grid-template-columns: repeat(2,1fr); }
  .contact-actions { align-items: flex-start; text-align: left; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 24px, 1180px); }
  .section { padding: 74px 0; }
  .header-inner { min-height: 72px; grid-template-columns: 125px 1fr; }
  .brand img { width: 118px; }
  .header-cta { padding: 10px 13px; font-size: 11px; }
  .hero { padding-top: 12px; }
  .hero-shell { min-height: 780px; border-radius: 28px; padding: 30px 18px 0; }
  .hero-copy h1 { font-size: 50px; }
  .hero-action-row { gap: 4px; }
  .button { width: 100%; min-height: 54px; font-size: 13px; }
  .button-primary { border-width: 7px; }
  .hero-place { margin-top: 8px; }
  .hero-photo { height: 390px; }
  .service-grid, .audience-grid, .method-list, .about-facts { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .audience-grid { gap: 0; }
  .contact-box { padding: 38px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* =========================================================
   PRODUCT MOTION SYSTEM — V6
   Motion communicates hierarchy, progression and affordance.
   ========================================================= */

:root {
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-standard: cubic-bezier(.2, .8, .2, 1);
  --shadow-soft: 0 18px 45px rgba(22, 49, 34, .08);
  --shadow-lift: 0 28px 70px rgba(22, 49, 34, .14);
}

/* Floating centered glass navigation */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: max-content;
  max-width: calc(100vw - 32px);
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(255, 253, 249, .68);
  border: 1px solid rgba(255,255,255,.62);
  border-bottom-color: rgba(21,63,42,.09);
  border-radius: 999px;
  box-shadow: 0 14px 42px rgba(21, 63, 42, .11), inset 0 1px 0 rgba(255,255,255,.82);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  transition: top .45s var(--ease-out), background .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
}

.site-header .header-inner {
  width: auto;
  min-height: 66px;
  padding: 0 14px 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: min-height .45s var(--ease-out), padding .45s var(--ease-out), gap .45s var(--ease-out);
}

.site-header .brand,
.site-header .nav,
.site-header .header-cta { flex: 0 0 auto; }

.site-header .brand img {
  width: 116px;
  transition: width .45s var(--ease-out), transform .45s var(--ease-out);
}

.site-header .nav { gap: 24px; }
.site-header .nav a { position: relative; font-size: 13px; transition: color .25s ease; }
.site-header .nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--green);
  transition: right .35s var(--ease-out);
}
.site-header .nav a:hover::after,
.site-header .nav a:focus-visible::after { right: 0; }

.site-header .header-cta {
  padding: 10px 16px;
  font-size: 12px;
  box-shadow: 0 8px 18px rgba(21,63,42,.16);
  transition: padding .45s var(--ease-out), font-size .45s var(--ease-out), transform .25s ease, box-shadow .25s ease;
}
.site-header .header-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(21,63,42,.22); }

.site-header.is-compact {
  top: 8px;
  background: rgba(255,253,249,.82);
  border-color: rgba(255,255,255,.76);
  box-shadow: 0 12px 34px rgba(21,63,42,.13), inset 0 1px 0 rgba(255,255,255,.9);
}
.site-header.is-compact .header-inner { min-height: 50px; padding: 0 9px 0 14px; gap: 24px; }
.site-header.is-compact .brand img { width: 88px; }
.site-header.is-compact .nav { gap: 18px; }
.site-header.is-compact .nav a { font-size: 11.5px; }
.site-header.is-compact .header-cta { padding: 8px 12px; font-size: 10.5px; }

/* Full viewport hero — no boxed container */
.hero {
  min-height: 100svh;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #f2f2ef;
}
.hero > .container { width: 100%; max-width: none; margin: 0; }
.hero-shell {
  width: 100%;
  height: 100svh;
  min-height: 720px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: minmax(190px,.72fr) minmax(420px,1.15fr) minmax(520px,1.55fr);
  padding-top: 72px;
}
.hero-photo { height: calc(100svh - 72px); min-height: 648px; }
.hero-photo img { height: 108%; bottom: -8%; filter: drop-shadow(0 36px 42px rgba(21,63,42,.14)); }
.hero-copy { padding-right: clamp(40px, 5vw, 92px); }
.hero-base { display: none; }

/* Subtle atmospheric movement supports depth */
.hero-orbit { animation: orbitBreath 12s ease-in-out infinite alternate; }
.hero-side { animation: sideFloat 10s ease-in-out infinite alternate; }
@keyframes orbitBreath { from { transform: scale(1); opacity: .84; } to { transform: scale(1.035); opacity: 1; } }
@keyframes sideFloat { from { transform: translateY(0); } to { transform: translateY(-14px); } }

/* Reveal system: calm, staged and semantically grouped */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .78s var(--ease-out), transform .78s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-left.is-visible,
.reveal-right.is-visible { transform: translateX(0); }

/* Section rhythm and light editorial separation */
.section { position: relative; isolation: isolate; }
.section:not(.method):not(.services):not(.materials)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 12% 20%, rgba(255,207,69,.08), transparent 24%);
  opacity: .65;
}
.section-heading h2,
.intro-grid h2,
.about-copy h2,
.materials-grid h2,
.faq-grid h2 { text-wrap: balance; }

/* Cards: interaction confirms clickability and hierarchy */
.service-card,
.audience-grid article,
.material-card,
.about-image,
.contact-box {
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s ease, background .45s ease;
}
.service-card { position: relative; overflow: hidden; }
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--green-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .48s var(--ease-out);
}
.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(21,63,42,.2);
  box-shadow: var(--shadow-lift);
}
.service-card:hover::before,
.service-card:focus-within::before { transform: scaleX(1); }
.service-card a { display: inline-flex; align-items: center; gap: 9px; }
.service-card a::after { content: "→"; transition: transform .3s var(--ease-out); }
.service-card:hover a::after { transform: translateX(5px); }

.about-image { box-shadow: var(--shadow-soft); }
.about-image:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.about-image img { transition: transform 1s var(--ease-out); }
.about-image:hover img { transform: scale(1.025); }

.about-facts div { transition: transform .35s var(--ease-out), border-color .35s ease; }
.about-facts div:hover { transform: translateY(-4px); border-color: var(--yellow); }

/* Method progression behaves as a connected sequence */
.method { overflow: hidden; }
.method::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -260px;
  top: -220px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018);
  pointer-events: none;
}
.method-list li {
  position: relative;
  transition: transform .4s var(--ease-out), border-color .4s ease;
}
.method-list li:hover { transform: translateY(-7px); border-color: var(--yellow); }
.method-list li::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--yellow);
  transition: width .55s var(--ease-out);
}
.method-list li:hover::after { width: 100%; }

.audience-grid article { position: relative; }
.audience-grid article:hover { background: #fbfaf6; transform: translateY(-6px); box-shadow: var(--shadow-soft); z-index: 2; }

.material-card { position: relative; overflow: hidden; }
.material-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -80px;
  bottom: -100px;
  background: rgba(255,207,69,.16);
  transition: transform .6s var(--ease-out);
}
.material-card:hover { transform: translateY(-7px) rotate(-.25deg); box-shadow: var(--shadow-lift); }
.material-card:hover::after { transform: scale(1.35); }

/* FAQ gives a clear state change without theatrical motion */
.faq-list details { transition: background .35s ease, padding .35s var(--ease-out); }
.faq-list details[open] { background: rgba(247,243,235,.72); padding-inline: 18px; }
.faq-list summary { list-style: none; display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .35s var(--ease-out), background .35s ease, color .35s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); background: var(--green); color: #fff; }

.contact-box { position: relative; overflow: hidden; }
.contact-box::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -120px;
  top: -190px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 0 0 58px rgba(255,255,255,.035), 0 0 0 116px rgba(255,255,255,.02);
}
.contact-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.button { position: relative; overflow: hidden; }
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.26) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform .75s var(--ease-out);
}
.button:hover::before { transform: translateX(130%); }
.button:focus-visible,
.nav a:focus-visible,
.header-cta:focus-visible,
summary:focus-visible { outline: 3px solid rgba(255,207,69,.85); outline-offset: 4px; }

@media (max-width: 1180px) {
  .hero-shell { grid-template-columns: minmax(150px,.62fr) minmax(360px,1.05fr) minmax(440px,1.35fr); }
  .hero-profile { padding-left: 34px; }
  .hero-copy h1 { font-size: clamp(58px, 6.2vw, 78px); }
}

@media (max-width: 980px) {
  .site-header { width: calc(100vw - 24px); }
  .site-header .header-inner { width: 100%; justify-content: space-between; }
  .site-header .nav { display: none; }
  .hero { min-height: auto; }
  .hero-shell { height: auto; min-height: 100svh; padding-top: 105px; }
  .hero-photo { height: 500px; min-height: 0; }
  .hero-photo img { height: 108%; bottom: -8%; }
  .reveal-left, .reveal-right { transform: translateY(24px); }
  .reveal-left.is-visible, .reveal-right.is-visible { transform: translateY(0); }
}

@media (max-width: 620px) {
  .site-header { top: 10px; }
  .site-header .header-inner { min-height: 54px; padding: 0 8px 0 13px; gap: 16px; }
  .site-header .brand img { width: 92px; }
  .site-header .header-cta { font-size: 10px; padding: 8px 11px; }
  .site-header.is-compact { top: 6px; }
  .hero-shell { padding-top: 90px; }
  .hero-photo { height: 420px; }
  .service-card:hover,
  .audience-grid article:hover,
  .material-card:hover,
  .about-image:hover,
  .contact-box:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}
