/* ============================================================
   Nielsen Handyman Co. — shared styles
   Warm + local + professional, with modern motion.
   Mobile-first friendly: big tap targets, sticky call bar.
   ============================================================ */

:root {
  --cream: #faf6ef;
  --cream-dark: #f3ecdf;
  --ink: #3a3128;
  --ink-soft: #6b5f50;
  --green: #3f5d45;
  --green-dark: #324937;
  --terra: #c4652f;
  --terra-dark: #a85425;
  --white: #ffffff;
  --line: #e5dccb;
  --radius: 16px;
  --shadow: 0 6px 24px rgba(58, 49, 40, 0.08);
  --shadow-lg: 0 18px 44px rgba(58, 49, 40, 0.14);
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

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

::selection { background: var(--terra); color: var(--white); }

:focus-visible {
  outline: 3px solid rgba(196, 101, 47, 0.5);
  outline-offset: 2px;
  border-radius: 6px;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

section { padding: 72px 0; }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}

.section-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-intro { color: var(--ink-soft); max-width: 640px; margin-bottom: 40px; }

/* ---------- Scroll-reveal (elements are tagged by script.js) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }
.btn-primary { background: var(--terra); color: var(--white); box-shadow: 0 8px 20px rgba(196, 101, 47, 0.28); }
.btn-primary:hover { background: var(--terra-dark); box-shadow: 0 12px 26px rgba(196, 101, 47, 0.36); }
.btn-secondary { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-secondary:hover { background: var(--green); color: var(--white); }
.btn-light { background: var(--white); color: var(--green-dark); }

/* ---------- Header / Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
header.scrolled {
  background: rgba(250, 246, 239, 0.97);
  box-shadow: 0 8px 24px rgba(58, 49, 40, 0.09);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.logo {
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo svg { width: 30px; height: 30px; }
.logo img { width: 46px; height: 46px; object-fit: contain; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-sub {
  font-family: "Inter", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 3px;
}
.hero-logo {
  max-width: 430px;
  width: 90%;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(58, 49, 40, 0.25));
  animation: float 7s ease-in-out infinite;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 15.5px;
}
.nav-links a:not(.btn) { position: relative; padding: 6px 0; }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--terra); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links .btn { padding: 10px 22px; font-size: 15px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 28px; height: 28px; stroke: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  padding: 84px 0 72px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 420px at 88% 8%, rgba(196, 101, 47, 0.09), transparent 60%),
    radial-gradient(720px 520px at 2% 95%, rgba(63, 93, 69, 0.1), transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(36px, 5.5vw, 56px); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--terra); }
.hero p.lead { font-size: 19px; color: var(--ink-soft); margin-bottom: 32px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 14.5px; color: var(--ink-soft); }
.hero-note strong { color: var(--green-dark); }

/* ---------- Background decorations (parallax tools) ---------- */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-decor .decor {
  position: absolute;
  color: var(--green);
  opacity: 0.045;
  will-change: transform;
}
.bg-decor .decor.terra { color: var(--terra); opacity: 0.04; }
.bg-decor .decor svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(var(--rot, 0deg));
}

/* Placeholder "photo" blocks — swap for real <img> tags later */
.ph-img {
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 20px;
  box-shadow: var(--shadow);
}
.ph-img svg { width: 44px; height: 44px; opacity: 0.9; }
.ph-img.tall { min-height: 420px; }
.ph-img.warm { background: linear-gradient(145deg, #d8813f 0%, var(--terra-dark) 100%); }
.ph-img.sand { background: linear-gradient(145deg, #b9a279 0%, #96805a 100%); }
.hero .ph-img.tall { animation: float 7s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--green-dark); color: var(--white); padding: 26px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item { font-size: 15px; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 10px; }
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ---------- Stats band ---------- */
.stats { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 52px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label { margin-top: 8px; color: var(--ink-soft); font-size: 15px; font-weight: 500; }

/* ---------- Cards / grids ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3 { font-size: 20px; margin: 14px 0 8px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--terra); }
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); background: #f6e3d3; }

/* ---------- Steps ---------- */
.steps { background: var(--cream-dark); }
.step-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 40px;
  color: var(--terra);
  font-weight: 700;
  line-height: 1;
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stars { color: #e8a33d; font-size: 18px; letter-spacing: 2px; }
.quote-card blockquote { font-size: 16px; color: var(--ink); font-style: italic; }
.quote-who { font-size: 14.5px; color: var(--ink-soft); font-weight: 600; }

/* Hover lift for all cards (kept after .reveal so hover wins) */
.card, .quote-card, .price-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.card:hover, .quote-card:hover, .price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #d9cdb6;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-grid .ph-img { min-height: 340px; }
.checklist { list-style: none; margin-top: 20px; }
.checklist li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Contact ---------- */
.contact { background: var(--green-dark); color: var(--white); }
.contact .section-title, .contact h3 { color: var(--white); }
.contact .section-label { color: #f0b27a; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
.contact-info p { color: rgba(255, 255, 255, 0.85); margin-bottom: 18px; }
.contact-line { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 16.5px; }
.contact-line svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-line a { color: var(--white); font-weight: 600; text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }

form.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}
.contact-form label { font-weight: 600; font-size: 14.5px; color: var(--ink); display: block; margin-bottom: 6px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px; /* ≥16px prevents iOS zoom-on-focus */
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(196, 101, 47, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }
.contact-form input[type="file"] { padding: 9px; cursor: pointer; }
#photoFields input[type="file"] { margin-bottom: 8px; }
.add-photo {
  display: inline-block;
  background: none;
  border: 1.5px dashed var(--line);
  border-radius: 8px;
  padding: 8px 16px;
  color: var(--green);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.add-photo:hover { border-color: var(--terra); color: var(--terra); }
.review-thanks { color: var(--green); font-weight: 600; }
.review-form button[disabled] { opacity: 0.7; cursor: default; }
.contact-form input[type="file"]::file-selector-button {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  margin-right: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.contact-form input[type="file"]::file-selector-button:hover { background: var(--green-dark); }
#modelField { animation: fieldIn 0.3s var(--ease); }
@keyframes fieldIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Footer ---------- */
footer { background: #2b3d2f; color: rgba(255, 255, 255, 0.75); padding: 40px 0; font-size: 14.5px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
footer a { color: rgba(255, 255, 255, 0.9); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 22px; list-style: none; }
.footer-social { display: flex; align-items: center; gap: 16px; }
.footer-social a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-social a:hover { color: #f0b27a; text-decoration: none; }
.footer-social svg { width: 20px; height: 20px; }
.review-link svg { color: #e8a33d; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { background: var(--cream-dark); padding: 64px 0 56px; }
.page-hero h1 { font-size: clamp(32px, 4.5vw, 46px); margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 620px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* Before/after comparison slider */
.ba-slider {
  --pos: 50%;
  position: relative;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y; /* horizontal drag moves the slider, vertical still scrolls */
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.gallery-item:hover .ba-slider { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ba-layer { position: absolute; inset: 0; }
.ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-fill {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 16px;
}
.ba-fill svg { width: 32px; height: 32px; opacity: 0.9; }
.ba-fill.before { background: linear-gradient(145deg, #9a9083 0%, #756c5f 100%); }
.ba-fill.after-green { background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%); }
.ba-fill.after-warm { background: linear-gradient(145deg, #d8813f 0%, var(--terra-dark) 100%); }
.ba-fill.after-sand { background: linear-gradient(145deg, #b9a279 0%, #96805a 100%); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
.ba-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  color: var(--green-dark);
}
.ba-grip svg { width: 20px; height: 20px; }
.ba-tag {
  position: absolute;
  top: 10px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  pointer-events: none;
}
.ba-tag-before { left: 10px; }
.ba-tag-after { right: 10px; }
.gallery-item figcaption { margin-top: 12px; }
.gallery-item figcaption strong { display: block; font-size: 16px; }
.gallery-item figcaption span { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.price-card.featured { border: 2px solid var(--terra); position: relative; }
.price-tag {
  font-family: "Fraunces", Georgia, serif;
  font-size: 36px;
  color: var(--green-dark);
  margin: 10px 0 4px;
}
.price-tag span { font-size: 16px; font-family: "Inter", sans-serif; color: var(--ink-soft); }
.price-card ul { list-style: none; margin: 18px 0 24px; flex-grow: 1; }
.price-card li { padding: 7px 0; color: var(--ink-soft); font-size: 15px; border-bottom: 1px dashed var(--line); }
.price-card li:last-child { border-bottom: none; }
.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.pricing-note { margin-top: 28px; font-size: 14.5px; color: var(--ink-soft); text-align: center; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--terra); color: var(--white); text-align: center; padding: 56px 0; }
.cta-band h2 { color: var(--white); font-size: clamp(26px, 4vw, 36px); margin-bottom: 12px; }
.cta-band p { margin-bottom: 26px; opacity: 0.92; }

/* ---------- Mobile sticky call bar (phones only) ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 24px rgba(58, 49, 40, 0.12);
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 8px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.mobile-cta a:active { transform: scale(0.97); }
.mobile-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-cta .cta-call { background: var(--green-dark); color: var(--white); }
.mobile-cta .cta-text { background: var(--cream-dark); color: var(--green-dark); }
.mobile-cta .cta-quote { background: var(--terra); color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  section { padding: 56px 0; }
  .hero { padding: 48px 0 56px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .card-grid, .gallery-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .trust-item { justify-content: flex-start; text-align: left; font-size: 14px; }
  .hero-logo { max-width: 320px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 16px 32px rgba(58, 49, 40, 0.12);
  }
  .nav-links.open { display: flex; animation: navIn 0.25s var(--ease); }
  @keyframes navIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: none; }
  }
  .nav-toggle { display: block; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .bg-decor .decor { opacity: 0.035; }
  .bg-decor .decor.lg-only { display: none; }
  .card-grid, .gallery-grid, .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ph-img.tall { min-height: 280px; }
  .hero-logo { display: none; } /* header logo still shows on phones */
  .hero-ctas .btn { width: 100%; text-align: center; }
  .contact-form { padding: 24px 20px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  /* Show sticky call bar on phones; pad page so footer isn't covered */
  .mobile-cta { display: flex; gap: 8px; }
  body { padding-bottom: 72px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero .ph-img.tall, .hero-logo, .nav-links.open { animation: none !important; }
  .bg-decor .decor { transform: none !important; }
  .card, .quote-card, .price-card, .gallery-item .ph-img, .gallery-item img, .btn { transition: none !important; }
}
