/* ==========================================================================
   North Indy Roof Co. — Design System
   Display: Cormorant Garamond · Body/UI: Outfit
   ========================================================================== */

:root {
  /* Core palette */
  --bg: #080808;
  --bg-raised: #0e0e0e;
  --surface: #101010;
  --surface-2: #131311;
  --hairline: rgba(242, 240, 235, 0.08);
  --hairline-strong: rgba(242, 240, 235, 0.16);

  --ink: #f2f0eb;
  --ink-muted: #a39c8f;
  --ink-faint: #6b665c;

  --gold: #c8a96e;
  --gold-bright: #ddc48d;
  --gold-dim: rgba(200, 169, 110, 0.14);

  --steel: #7a8b9a;
  --steel-bright: #9db0bf;
  --steel-dim: rgba(122, 139, 154, 0.14);

  --danger: #b3624a;

  /* Type */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "DM Sans", -apple-system, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);

  /* Radii */
  --r-lg: 2rem;
  --r-md: 1.25rem;
  --r-sm: 0.75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* Grain overlay — fixed, pointer-events-none, never on scrolling content */
.grain {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

@media (min-width: 900px) {
  .section {
    padding: 160px 0;
  }
}

.section-tight {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--hairline-strong);
  background: var(--gold-dim);
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}

.eyebrow.steel {
  background: var(--steel-dim);
  color: var(--steel-bright);
  border-color: var(--hairline-strong);
}

/* ==========================================================================
   NAV — floating glass pill
   ========================================================================== */

.nav-wrap {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 1100px;
  padding: 10px 12px 10px 24px;
  border-radius: 999px;
  background: rgba(14, 14, 14, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-muted);
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  transition: color 0.4s var(--ease-soft);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  display: none;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

@media (min-width: 640px) {
  .nav-phone {
    display: block;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 8px 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.5s var(--ease-spring), background 0.4s var(--ease-soft);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--gold);
  color: #14110a;
}

.btn-primary:hover {
  background: var(--gold-bright);
}

.btn-ghost {
  background: rgba(242, 240, 235, 0.06);
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  padding: 12px 22px;
}

.btn-ghost:hover {
  background: rgba(242, 240, 235, 0.1);
}

.btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(20, 17, 10, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-spring);
}

.btn:hover .btn-icon {
  transform: translate(2px, -1px) scale(1.06);
}

.btn-lg {
  padding: 17px 10px 17px 28px;
  font-size: 15px;
}

.btn-lg .btn-icon {
  width: 40px;
  height: 40px;
}

/* ==========================================================================
   DOUBLE-BEZEL CARDS
   ========================================================================== */

.bezel {
  padding: 6px;
  border-radius: var(--r-lg);
  background: rgba(242, 240, 235, 0.03);
  border: 1px solid var(--hairline);
}

.bezel-inner {
  border-radius: calc(var(--r-lg) - 0.375rem);
  background: var(--surface);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04);
  height: 100%;
  padding: 32px;
  border: 1px solid var(--hairline);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 600px at 15% 10%, rgba(200, 169, 110, 0.14), transparent 60%),
    radial-gradient(ellipse 700px 500px at 90% 80%, rgba(122, 139, 154, 0.10), transparent 60%);
}

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

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  max-width: 18ch;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  margin-top: 28px;
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-muted);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-trust {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ==========================================================================
   STORM WATCH MODULE — signature component
   ========================================================================== */

.storm-watch {
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline-strong);
  background: linear-gradient(160deg, rgba(122, 139, 154, 0.08), rgba(8, 8, 8, 0));
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.storm-watch::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(122, 139, 154, 0.12), transparent 70%);
  pointer-events: none;
}

.storm-watch-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
}

.storm-watch-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--steel-bright);
  box-shadow: 0 0 0 0 rgba(157, 176, 191, 0.6);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(157, 176, 191, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(157, 176, 191, 0); }
  100% { box-shadow: 0 0 0 0 rgba(157, 176, 191, 0); }
}

.storm-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  position: relative;
}

.storm-stat {
  padding: 20px;
  border-radius: var(--r-md);
  background: rgba(242, 240, 235, 0.03);
  border: 1px solid var(--hairline);
}

.storm-stat .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--steel-bright);
  line-height: 1;
}

.storm-stat .label {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}

.storm-note {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  position: relative;
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
}

/* ==========================================================================
   BENTO / SERVICE GRID
   ========================================================================== */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: 20px;
}

@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr;
  }
}

.bento .span-2 { grid-column: span 2; }
.bento .span-3 { grid-column: span 3; }
.bento .span-4 { grid-column: span 4; }
.bento .span-6 { grid-column: span 6; }

@media (max-width: 900px) {
  .bento [class*="span-"] {
    grid-column: span 1;
  }
}

.service-card {
  padding: 32px;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  background: var(--surface);
  transition: transform 0.6s var(--ease-out), border-color 0.4s var(--ease-soft), background 0.4s var(--ease-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--hairline-strong);
  background: var(--surface-2);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .link-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gold-bright);
  transition: gap 0.4s var(--ease-soft);
}

.service-card:hover .link-row {
  gap: 12px;
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */

.process-list {
  display: flex;
  flex-direction: column;
}

.process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
}

.process-item:last-child {
  border-bottom: 1px solid var(--hairline);
}

.process-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}

.process-item h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.process-item p {
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 60ch;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-item {
  border-top: 1px solid var(--hairline);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--hairline);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 4px;
  text-align: left;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
}

.faq-q .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s var(--ease-spring);
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
}

.faq-q .plus::before { width: 10px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 10px; transition: transform 0.4s var(--ease-soft); }

.faq-item.open .plus::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.open .plus {
  transform: rotate(90deg);
  border-color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.faq-a-inner {
  padding: 0 4px 26px;
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 68ch;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner {
  border-radius: var(--r-lg);
  padding: 64px 40px;
  background: linear-gradient(155deg, var(--surface-2), var(--bg));
  border: 1px solid var(--hairline-strong);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 0%, rgba(200, 169, 110, 0.14), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  max-width: 22ch;
  margin: 0 auto;
  position: relative;
}

.cta-banner .hero-actions {
  justify-content: center;
  margin-top: 36px;
  position: relative;
}

/* ==========================================================================
   LEAD FORM
   ========================================================================== */

.lead-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 560px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(242, 240, 235, 0.04);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.4s var(--ease-soft), background 0.4s var(--ease-soft);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(242, 240, 235, 0.06);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23a39c8f'%3E%3Cpath d='M5.5 7.5l4.5 5 4.5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-note {
  font-size: 12.5px;
  color: var(--ink-faint);
  line-height: 1.5;
}

.form-status {
  font-size: 13.5px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  display: none;
}

.form-status.show { display: block; }
.form-status.ok { background: rgba(122, 139, 154, 0.14); color: var(--steel-bright); border: 1px solid var(--hairline-strong); }
.form-status.err { background: rgba(179, 98, 74, 0.14); color: #d99a86; border: 1px solid var(--hairline-strong); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  border-top: 1px solid var(--hairline);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

.footer a {
  font-size: 14px;
  color: var(--ink-muted);
  transition: color 0.4s var(--ease-soft);
}

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

.footer-bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-faint);
}

/* ==========================================================================
   BREADCRUMB / PAGE HERO (interior pages)
   ========================================================================== */

.page-hero {
  padding-top: 150px;
  padding-bottom: 64px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  max-width: 22ch;
}

.page-hero .lede {
  margin-top: 20px;
  max-width: 62ch;
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ==========================================================================
   PROSE / CONTENT BLOCKS
   ========================================================================== */

.prose h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  margin-bottom: 20px;
}

.prose p {
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 70ch;
}

.prose p + p {
  margin-top: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.check-list .mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ==========================================================================
   SUBURB / HUB GRID
   ========================================================================== */

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.hub-card {
  padding: 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  background: var(--surface);
  transition: transform 0.6s var(--ease-out), border-color 0.4s var(--ease-soft);
}

.hub-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.hub-card .county {
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hub-card h3 {
  font-size: 1.5rem;
}

/* ==========================================================================
   IMAGERY — hero photo, service card images, page media
   ========================================================================== */

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.72) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.3) 45%, rgba(8,8,8,0.55) 100%);
}

.service-card-img {
  margin: -32px -32px 24px;
  height: 168px;
  overflow: hidden;
  border-radius: calc(var(--r-md) - 1px) calc(var(--r-md) - 1px) 0 0;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0) 40%, var(--surface) 100%);
}

.service-card .service-icon {
  margin-top: -50px;
  position: relative;
  z-index: 1;
  background: var(--bg-raised);
  border: 1px solid var(--hairline-strong);
}

.page-hero-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 340px;
  position: relative;
  margin-top: 48px;
  border: 1px solid var(--hairline-strong);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0) 55%, rgba(8,8,8,0.65) 100%);
}

.about-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--hairline-strong);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 700px) {
  .page-hero-media { height: 220px; }
  .service-card-img { height: 140px; }
}


.reveal {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(6px);
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
