/* ==========================================================================
   Roanlight Dental, shared design system
   Used by index.html, services.html, about.html, contact.html

   One hue only: forest green. Everything else is a neutral.
   Display face: Plus Jakarta Sans (700/800). Text face: Inter (400/600).
   ========================================================================== */

:root{
  /* type */
  --font-display:'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:'Inter', system-ui, -apple-system, sans-serif;

  /* the single theme hue and its shades */
  --forest:#1F4A3C;
  --forest-deep:#143026;
  --forest-mid:#33654F;
  --forest-soft:#5C8574;
  --forest-wash:#EDF3F0;
  --forest-line:#CBDCD4;

  /* neutrals */
  --white:#FFFFFF;
  --paper:#F6F7F6;
  --ink:#161A18;
  --ink-soft:#5C645F;
  --ink-faint:#8A918C;
  --line:#E3E6E4;

  --shadow: 0 18px 40px -22px rgba(20,48,38,0.32);
  --shadow-lift: 0 26px 60px -26px rgba(20,48,38,0.4);
  --radius:3px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--white);
  color:var(--ink);
  font-family:var(--font-body);
  font-weight:400;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

img,svg{ display:block; max-width:100%; }
a{ color:inherit; }

.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}
.wrap-narrow{ max-width:820px; }

h1,h2,h3,h4,.serif{
  font-family:var(--font-display);
  font-weight:700;
  letter-spacing:-0.022em;
  margin:0;
  line-height:1.12;
}

.eyebrow{
  font-family:var(--font-body);
  text-transform:uppercase;
  font-size:0.7rem;
  letter-spacing:0.2em;
  color:var(--forest);
  font-weight:600;
  margin:0;
}

/* ---------- Roanlight flower mark (original, CSS drawn) ---------- */
.roanlight-mark{
  width:26px; height:26px;
  position:relative;
  flex-shrink:0;
}
.roanlight-mark span{
  position:absolute;
  top:50%; left:50%;
  width:10px; height:10px;
  background:var(--forest);
  border-radius:50% 50% 50% 3px;
  transform-origin:center;
  opacity:0.95;
}
.roanlight-mark span:nth-child(1){ transform:translate(-50%,-50%) rotate(0deg) translateY(-7.5px); }
.roanlight-mark span:nth-child(2){ transform:translate(-50%,-50%) rotate(72deg) translateY(-7.5px); background:var(--forest-deep); }
.roanlight-mark span:nth-child(3){ transform:translate(-50%,-50%) rotate(144deg) translateY(-7.5px); }
.roanlight-mark span:nth-child(4){ transform:translate(-50%,-50%) rotate(216deg) translateY(-7.5px); background:var(--forest-deep); }
.roanlight-mark span:nth-child(5){ transform:translate(-50%,-50%) rotate(288deg) translateY(-7.5px); }
.roanlight-mark i{
  position:absolute; top:50%; left:50%;
  width:7px; height:7px; margin:-3.5px 0 0 -3.5px;
  background:var(--forest-soft); border-radius:50%;
}

/* ---------- Header ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
nav.wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:18px; padding-bottom:18px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-display);
  font-size:1.34rem;
  font-weight:800;
  text-decoration:none;
  letter-spacing:-0.024em;
}
.nav-links{
  display:flex; align-items:center; gap:34px;
  list-style:none; margin:0; padding:0;
}
.nav-links a{
  text-decoration:none;
  font-size:0.9rem;
  color:var(--ink-soft);
  position:relative;
  padding-bottom:4px;
}
.nav-links a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background:var(--forest);
  transition:width 0.28s var(--ease);
}
.nav-links a:hover{ color:var(--ink); }
.nav-links a:hover::after{ width:100%; }
.nav-links a.active{ color:var(--forest); }
.nav-links a.active::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-phone{
  font-size:0.86rem; color:var(--ink-soft); text-decoration:none;
  display:none;
}
.nav-phone:hover{ color:var(--forest); }

.nav-toggle{
  display:none;
  width:38px; height:38px;
  border:1px solid var(--line);
  background:var(--white);
  border-radius:var(--radius);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
}
.nav-toggle span{
  display:block;
  width:18px; height:1.5px;
  background:var(--ink);
  transition:transform 0.2s var(--ease), opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-5.5px) rotate(-45deg); }

.mobile-nav{
  display:none;
  flex-direction:column;
  gap:2px;
  padding:6px 32px 22px;
  border-top:1px solid var(--line);
}
.mobile-nav.open{ display:flex; }
.mobile-nav a{
  text-decoration:none;
  color:var(--ink-soft);
  font-size:0.98rem;
  padding:12px 0;
  border-bottom:1px solid var(--line);
}
.mobile-nav a.active{ color:var(--forest); }
.mobile-nav .btn{ margin-top:14px; align-self:flex-start; }

@media(min-width:900px){ .nav-phone{ display:inline; } }
@media(max-width:860px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
}
@media(min-width:861px){ .mobile-nav{ display:none !important; } }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:13px 26px;
  font-family:var(--font-body);
  font-size:0.86rem;
  font-weight:600;
  letter-spacing:0.01em;
  text-decoration:none;
  border-radius:var(--radius);
  border:1px solid transparent;
  cursor:pointer;
  transition:transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space:nowrap;
}
.btn-solid{
  background:var(--forest);
  color:var(--white);
}
.btn-solid:hover{
  background:var(--forest-deep);
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}
.btn-outline{
  background:transparent;
  border-color:var(--forest);
  color:var(--forest);
}
.btn-outline:hover{
  background:var(--forest);
  color:var(--white);
  transform:translateY(-2px);
}
.btn-sm{ padding:10px 20px; font-size:0.8rem; }
.btn[disabled], .btn.is-disabled{ opacity:0.55; cursor:not-allowed; }
.btn[disabled]:hover, .btn.is-disabled:hover{ transform:none; box-shadow:none; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:76px 0 84px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr 0.98fr;
  gap:64px;
  align-items:center;
}
@media(max-width:940px){
  .hero-grid{ grid-template-columns:1fr; gap:44px; }
}
.hero-copy{ max-width:600px; }
.hero h1{
  font-size:clamp(2.7rem, 6vw, 4.5rem);
  font-weight:800;
  letter-spacing:-0.032em;
  line-height:1.06;
  margin-top:20px;
}
.hero h1 em{
  font-style:normal;
  font-weight:800;
  color:var(--forest);
}
.hero p.lede{
  margin-top:22px;
  font-size:1.1rem;
  color:var(--ink-soft);
  max-width:520px;
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap:14px;
  margin-top:32px;
}

/* parallax frame: the image inside is taller than the frame and slides */
.parallax-frame{
  position:relative;
  overflow:hidden;
  border-radius:4px;
  background:var(--forest-wash);
}
.parallax-frame img{
  width:100%;
  height:118%;
  object-fit:cover;
  position:relative;
  top:-9%;
  will-change:transform;
}
.hero-figure{
  position:relative;
}
.hero-figure .parallax-frame{
  aspect-ratio:4/5;
  box-shadow:var(--shadow-lift);
}
.hero-figure figcaption{
  margin-top:14px;
  font-size:0.78rem;
  color:var(--ink-faint);
  letter-spacing:0.02em;
}
.hero-rule{
  height:1px;
  background:var(--forest-line);
  margin-top:64px;
}

/* interior page hero */
.page-hero{ padding:64px 0 56px; }
.page-hero h1{ font-size:clamp(2.2rem, 5vw, 3.5rem); font-weight:800; letter-spacing:-0.03em; margin-top:18px; }
.page-hero p.lede{ margin-top:18px; }
.page-hero .hero-grid{ grid-template-columns:1.05fr 0.95fr; gap:56px; }
.page-hero .parallax-frame{ aspect-ratio:5/4; box-shadow:var(--shadow); }

/* ---------- Trust strip ---------- */
.trust-strip{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(140px, 1fr));
  gap:24px 26px;
  margin-top:40px;
  padding-top:26px;
  border-top:1px solid var(--line);
}
.trust-item{ max-width:220px; }
.trust-item strong{
  display:block;
  font-family:var(--font-display);
  font-size:1.6rem;
  font-weight:800;
  letter-spacing:-0.02em;
  color:var(--forest);
  line-height:1.2;
}
.trust-item span{
  display:block;
  font-size:0.84rem;
  color:var(--ink-soft);
  margin-top:2px;
}

/* ---------- Reveal on enter ---------- */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay:calc(var(--stagger, 0) * 60ms);
}
.reveal.in{ opacity:1; transform:none; }

/* ---------- SIGNATURE MOVE: clip-path unmask ---------- */
/* An image wipes open from the bottom edge as it enters the viewport, with a
   very slight settle on the scale so the reveal reads as expensive rather
   than as a slide. */
.unmask{
  overflow:hidden;
  position:relative;
}
.unmask img{
  clip-path:inset(0 0 100% 0);
  transform:scale(1.06);
  transition:clip-path 1.15s var(--ease), transform 1.4s var(--ease);
  will-change:clip-path, transform;
}
.unmask.in img{
  clip-path:inset(0 0 0 0);
  transform:scale(1);
}
/* a hairline that draws itself alongside the unmask */
.unmask::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background:var(--forest);
  transition:width 1.15s var(--ease);
  z-index:2;
}
.unmask.in::after{ width:100%; }

/* ---------- Section shells ---------- */
section{ padding:92px 0; }
.section-wash{ background:var(--paper); }
.section-forest{
  background:var(--forest);
  color:var(--white);
}
.section-forest .eyebrow{ color:#A9C9BC; }
.section-forest h2, .section-forest h3{ color:var(--white); }
.section-forest p{ color:#D3E1DA; }

.section-head{
  max-width:640px;
  margin:0 auto 54px;
  text-align:center;
}
.section-head.align-left{ margin-left:0; margin-right:0; text-align:left; }
.section-head h2{
  font-size:clamp(2rem, 3.8vw, 2.9rem);
  margin-top:14px;
}
.section-head p{
  margin-top:16px;
  color:var(--ink-soft);
  font-size:1.02rem;
}

/* ---------- Services ---------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
  gap:22px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:4px;
  padding:32px 26px;
  transition:transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:var(--forest-line);
}
.service-icon{
  width:36px; height:36px;
  margin-bottom:20px;
  stroke:var(--forest);
  fill:none;
  stroke-width:1.4;
}
.service-card h3{ font-size:1.32rem; }
.service-card p{
  margin-top:10px;
  font-size:0.93rem;
  color:var(--ink-soft);
}

/* photo-led service cards */
.photo-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:4px;
  overflow:hidden;
  transition:transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.photo-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.photo-card .photo-card-img{ aspect-ratio:4/3; }
.photo-card .photo-card-img img{ width:100%; height:100%; object-fit:cover; }
.photo-card-body{ padding:24px 24px 28px; }
.photo-card-body h3{ font-size:1.3rem; }
.photo-card-body p{ margin-top:10px; font-size:0.93rem; color:var(--ink-soft); }

/* detail rows on services.html */
.service-detail{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:44px;
  align-items:center;
  padding:44px 0;
  border-top:1px solid var(--line);
}
.service-detail:last-of-type{ border-bottom:1px solid var(--line); }
@media(max-width:820px){
  .service-detail{ grid-template-columns:1fr; gap:26px; }
}
.service-detail .detail-img{ aspect-ratio:5/4; border-radius:4px; }
.service-detail .detail-img img{ width:100%; height:100%; object-fit:cover; }
.service-detail.flip .detail-img{ order:2; }
@media(max-width:820px){ .service-detail.flip .detail-img{ order:0; } }
.service-detail h3{ font-size:1.7rem; margin-top:12px; }
.service-detail p{ margin-top:12px; color:var(--ink-soft); }
.service-tags{
  margin-top:18px;
  display:flex; flex-wrap:wrap; gap:8px;
}
.service-tags span{
  font-size:0.75rem;
  color:var(--forest);
  border:1px solid var(--forest-line);
  border-radius:999px;
  padding:5px 12px;
  background:var(--forest-wash);
}

/* ---------- Editorial split ---------- */
.editorial .wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
@media(max-width:820px){ .editorial .wrap{ grid-template-columns:1fr; gap:40px; } }
.editorial-figure{ margin:0; }
.editorial-figure .unmask{ aspect-ratio:4/5; border-radius:4px; }
.editorial-figure .unmask img{ width:100%; height:100%; object-fit:cover; }
.editorial-figure figcaption{
  margin-top:12px;
  font-size:0.78rem;
  color:var(--ink-faint);
}
.editorial.flip .editorial-figure{ order:2; }
@media(max-width:820px){ .editorial.flip .editorial-figure{ order:0; } }

blockquote{
  font-family:var(--font-display);
  font-style:normal;
  font-weight:700;
  letter-spacing:-0.022em;
  font-size:1.7rem;
  line-height:1.34;
  margin:0 0 22px;
  color:var(--ink);
}
.section-forest blockquote{ color:var(--white); }
.editorial-body p{ color:var(--ink-soft); }
.editorial-body .eyebrow{ margin-bottom:16px; display:block; }

/* ---------- Gallery band ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}
@media(max-width:820px){ .gallery-grid{ grid-template-columns:1fr; } }
.gallery-item{ margin:0; }
.gallery-item .unmask{ border-radius:4px; }
.gallery-item .unmask img{ width:100%; height:100%; object-fit:cover; }
.gallery-item.tall .unmask{ aspect-ratio:3/4; }
.gallery-item .unmask{ aspect-ratio:3/4; }
.gallery-item figcaption{
  margin-top:14px;
  font-size:0.9rem;
  color:var(--ink-soft);
}
.gallery-item figcaption strong{
  display:block;
  font-family:var(--font-display);
  font-size:1.2rem;
  color:var(--ink);
  font-weight:700;
  letter-spacing:-0.018em;
  margin-bottom:4px;
}
.section-forest .gallery-item figcaption strong{ color:var(--white); }

/* ---------- Values ---------- */
.values-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
  gap:32px;
}
.value-card{ padding-top:18px; border-top:2px solid var(--forest); }
.value-card .eyebrow{ display:block; margin-bottom:10px; }
.value-card h3{ font-size:1.3rem; }
.value-card p{ margin-top:10px; color:var(--ink-soft); font-size:0.93rem; }

/* ---------- Team ---------- */
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
  gap:26px;
}
.team-card{
  border-top:1px solid var(--line);
  padding:22px 0 0;
}
.team-card h3{ font-size:1.32rem; }
.team-card .role{
  display:block;
  margin-top:8px;
  font-size:0.74rem;
  color:var(--forest);
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-weight:600;
}
.team-card p.bio{
  margin-top:14px;
  font-size:0.92rem;
  color:var(--ink-soft);
}

/* ---------- Reviews ---------- */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:22px;
}
.review-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:4px;
  padding:30px;
  display:flex;
  flex-direction:column;
}
.review-card .stars{ margin-bottom:16px; }
.review-card p{ font-size:0.98rem; color:var(--ink-soft); }
.stars{ display:flex; gap:3px; }
.stars svg{ width:15px; height:15px; }
.stars path{ fill:var(--forest); }
.review-meta{
  margin-top:auto;
  padding-top:20px;
}
.review-meta strong{ font-size:0.9rem; font-weight:600; display:block; }
.review-meta span{ display:block; font-size:0.78rem; color:var(--ink-faint); }

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--forest);
  color:var(--white);
  border-radius:6px;
  margin:0 32px;
  padding:68px 48px;
  text-align:center;
}
.cta-band h2{
  color:var(--white);
  font-size:clamp(1.9rem, 3.8vw, 2.7rem);
}
.cta-band h2 em{ font-style:normal; font-weight:800; color:#B7D6C8; }
.cta-band p{ margin-top:14px; color:#CFE0D8; }
.cta-band .hero-actions{ justify-content:center; margin-top:30px; }
.cta-band .btn-solid{ background:var(--white); color:var(--forest); }
.cta-band .btn-solid:hover{ background:#E6EFEA; color:var(--forest-deep); }
.cta-band .btn-outline{ border-color:rgba(255,255,255,0.5); color:var(--white); }
.cta-band .btn-outline:hover{ background:var(--white); color:var(--forest); }

/* ---------- Contact page ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1.15fr;
  gap:24px;
  align-items:start;
}
@media(max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }

.hours-card, .contact-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:4px;
  padding:30px;
}
.hours-card h3, .contact-card h3{ font-size:1.3rem; margin-bottom:18px; }
.hours-list{ list-style:none; margin:0; padding:0; }
.hours-list li{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  font-size:0.92rem;
}
.hours-list li:last-child{ border-bottom:none; }
.hours-list span:first-child{ color:var(--ink-soft); }
.hours-list span:last-child{ font-weight:500; }
.hours-list li.closed span:last-child{ color:var(--forest); }
.contact-card ul{ list-style:none; margin:0; padding:0; }
.contact-card li{
  padding:9px 0;
  font-size:0.92rem;
  color:var(--ink-soft);
  display:flex;
  gap:10px;
}
.contact-card li strong{ color:var(--ink); font-weight:600; min-width:76px; }

/* honest replacement for the old fake map: a photo of the front desk plus
   written directions, no pretend cartography */
.find-us{ margin:0; }
.find-us .unmask{ aspect-ratio:4/3; border-radius:4px; }
.find-us .unmask img{ width:100%; height:100%; object-fit:cover; }
.find-us .find-us-body{
  border:1px solid var(--line);
  border-top:none;
  border-radius:0 0 4px 4px;
  padding:22px 24px 26px;
}
.find-us h3{ font-size:1.25rem; }
.find-us p{ margin:10px 0 0; font-size:0.9rem; color:var(--ink-soft); }

/* ---------- Form ---------- */
.form-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:6px;
  padding:40px;
}
.form-card .form-note{
  font-size:0.82rem;
  color:var(--forest-deep);
  background:var(--forest-wash);
  border:1px solid var(--forest-line);
  border-radius:4px;
  padding:12px 16px;
  margin:0 0 28px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
@media(max-width:600px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:20px; }
.field label{
  display:block;
  font-size:0.8rem;
  font-weight:600;
  color:var(--ink);
  margin-bottom:8px;
}
.field input,
.field select,
.field textarea{
  width:100%;
  font-family:var(--font-body);
  font-size:0.93rem;
  color:var(--ink);
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:12px 14px;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:2px solid var(--forest);
  outline-offset:1px;
}
.field textarea{ resize:vertical; min-height:100px; }
.form-actions{
  margin-top:8px;
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
}
.form-hint{ font-size:0.8rem; color:var(--ink-faint); }

/* ---------- Footer ---------- */
footer{
  border-top:1px solid var(--line);
  padding:64px 0 32px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
}
@media(max-width:760px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
.footer-grid h4{
  font-family:var(--font-body);
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.16em;
  color:var(--ink-faint);
  margin:0 0 16px;
  font-weight:600;
}
.footer-grid ul{ list-style:none; margin:0; padding:0; }
.footer-grid li{ margin-bottom:10px; }
.footer-grid a{ text-decoration:none; color:var(--ink-soft); font-size:0.9rem; }
.footer-grid a:hover{ color:var(--forest); }
.footer-brand p{ color:var(--ink-soft); font-size:0.9rem; max-width:290px; margin-top:12px; }
.footer-bottom{
  margin-top:56px;
  padding-top:24px;
  border-top:1px solid var(--line);
  display:flex; flex-wrap:wrap; gap:16px;
  align-items:center; justify-content:space-between;
  font-size:0.78rem;
  color:var(--ink-faint);
}
.footer-note{ max-width:640px; margin:0; }
.footer-bottom p{ margin:0; }

/* room for the fixed Roanlight badge */
footer{ padding-bottom:74px; }

::selection{ background:var(--forest); color:#fff; }

:focus-visible{
  outline:2px solid var(--forest);
  outline-offset:3px;
}

/* ---------- Reduced motion: everything arrives already finished ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ transition:none; opacity:1; transform:none; }
  .unmask img{
    clip-path:none;
    transform:none;
    transition:none;
  }
  .unmask::after{ width:100%; transition:none; }
  .parallax-frame img{ transform:none !important; }
  .btn, .service-card, .photo-card{ transition:none; }
  .btn:hover, .service-card:hover, .photo-card:hover{ transform:none; }
}
