/* ========== THEME (clean blue) ========== */
:root {
  --bg: #f6f8fc;
  --bg-soft: #eef2f9;
  --ink: #0b1d3a;
  --ink-soft: #1a2f54;
  --muted: #5b6a85;
  --accent: #2c6df2;
  --accent-deep: #1f55c7;
  --accent-soft: #e7efff;
  --card: #ffffff;
  --line: rgba(11,29,58,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.serif { font-family: 'Fraunces', Georgia, serif; }
img { max-width: 100%; height: auto; display: block; }

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

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.40s; }
.reveal.delay-6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ========== NAV ========== */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(246, 248, 252, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav-shell.scrolled { border-bottom-color: var(--line); }
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 34px; height: 34px;
  display: inline-block;
  flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 15px;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--accent); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 10px 20px; border-radius: 999px; font-weight: 600 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-cta:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(44,109,242,0.3); }

/* ========== HERO ========== */
.hero {
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(44,109,242,0.10), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; margin: 0 auto; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  border: 1px solid rgba(44,109,242,0.15);
}
.badge .pulse {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(44,109,242,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(44,109,242,0); }
  100% { box-shadow: 0 0 0 0 rgba(44,109,242,0); }
}

h1.headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
h1.headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
.lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(44,109,242,0.28); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}
.meta-item .num {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.meta-item .lbl {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ========== LOWEST PRICE BAR ========== */
.price-promise {
  background: var(--ink);
  color: #fff;
  padding: 40px 0;
}
.price-promise-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.price-promise-icon {
  width: 56px; height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.price-promise h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.price-promise p {
  font-size: 14px;
  font-weight: 400;
  max-width: 52ch;
  opacity: 0.7;
  margin-top: 4px;
}

/* ========== SECTIONS ========== */
section { padding: 100px 0; }
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--accent);
}
h2.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 20ch;
}
.section-intro {
  font-size: 17px;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 56px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.center .eyebrow { justify-content: center; }
.center h2.section-title { margin-left: auto; margin-right: auto; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* ========== ABOUT ========== */
.about {
  background: var(--card);
  padding: 110px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 18px;
}
.about-text p strong { color: var(--ink); font-weight: 600; }
.quote-card {
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  padding: 36px;
  border-radius: 0 16px 16px 0;
  position: relative;
}
.quote-card p {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
}
.quote-card .signature {
  margin-top: 22px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sig-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-family: 'Fraunces', serif;
  font-size: 16px;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service {
  background: var(--card);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(11,29,58,0.08);
  border-color: rgba(44,109,242,0.3);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s ease, color 0.3s ease;
}
.service:hover .service-icon { background: var(--accent); color: #fff; }
.service-icon svg { width: 22px; height: 22px; }
.service h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.service p { color: var(--muted); font-size: 15px; }

/* ========== PORTFOLIO ========== */
.portfolio { background: var(--bg-soft); padding: 110px 0; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.work {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.work:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(11,29,58,0.08); }
.work-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work:hover .work-image img { transform: scale(1.04); }
.work-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-soft));
  color: var(--accent);
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
}
.work-body { padding: 22px 24px 26px; }
.work-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 6px;
  font-weight: 700;
}
.work-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.work-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.portfolio-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  background: var(--card);
  border-radius: 18px;
  border: 1px dashed var(--line);
}

/* ========== PRICING ========== */
.pricing { padding: 110px 0; background: var(--bg); }
.pricing-card {
  background: var(--card);
  border-radius: 24px;
  padding: 56px;
  border: 1px solid var(--line);
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(11,29,58,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 36px 70px rgba(11,29,58,0.12); }
.deal-tag {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(44,109,242,0.3);
  white-space: nowrap;
}
.price-header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  justify-content: center;
}
.price-old {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--accent);
}
.price-now {
  font-family: 'Fraunces', serif;
  font-size: clamp(64px, 9vw, 100px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.price-save {
  font-size: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
}
.price-meta { text-align: center; margin-bottom: 28px; }
.price-sub {
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
.price-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  margin-bottom: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.price-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}

/* ========== PROCESS ========== */
.process {
  padding: 110px 0;
  background: var(--card);
  border-top: 1px solid var(--line);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  counter-increment: step;
  padding: 28px;
  background: var(--bg);
  border-radius: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.step:hover { transform: translateY(-4px); background: var(--accent-soft); }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.step h4 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.step p { color: var(--muted); font-size: 14px; }

/* ========== CONTACT ========== */
.contact {
  background: var(--ink);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(44,109,242,0.22), transparent 60%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
.contact h2 { color: #fff; }
.contact .eyebrow { color: #7fa6ff; }
.contact .eyebrow::before { background: #7fa6ff; }
.contact-lede {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  color: #fff;
  transition: padding 0.25s ease;
}
.contact-method:hover { padding-left: 8px; }
.contact-method:hover .arrow { transform: translateX(6px); color: #7fa6ff; }
.contact-method:hover .contact-icon { background: var(--accent); color: #fff; }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.06);
  color: #7fa6ff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-meta { flex: 1; min-width: 0; }
.contact-meta .lbl-c {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-meta .val {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  word-break: break-word;
}
.arrow {
  font-size: 20px;
  color: rgba(255,255,255,0.4);
  transition: transform 0.25s ease, color 0.25s ease;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px;
}
.contact-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border 0.2s ease, background 0.2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,0,0,0.4);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
  font-family: 'Inter', sans-serif;
}
.form-btn:hover { background: #4a85ff; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(44,109,242,0.4); }

/* ========== FOOTER ========== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 14px;
}
footer a { color: #7fa6ff; text-decoration: none; transition: color 0.2s ease; }
footer a:hover { color: #fff; }

/* ========== MOBILE NAV ========== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-card { padding: 40px 32px; }
}

@media (max-width: 720px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 16px; right: 16px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    box-shadow: 0 20px 50px rgba(11,29,58,0.16);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { font-size: 16px; padding: 6px 0; }
  .nav-links .nav-cta { text-align: center; }

  nav { padding: 14px 18px; }
  .wrap { padding: 0 18px; }

  section { padding: 70px 0; }
  .hero { padding: 60px 0 70px; }
  .about, .contact, .process, .pricing, .portfolio { padding: 80px 0; }

  h1.headline { font-size: clamp(34px, 10vw, 50px); }
  .lede { font-size: 16px; }

  .hero-ctas .btn { width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .price-list { grid-template-columns: 1fr; gap: 12px; }

  .pricing-card { padding: 40px 24px; border-radius: 20px; }
  .deal-tag { font-size: 11px; padding: 6px 14px; }

  .contact-form { padding: 28px 22px; }
  .quote-card { padding: 28px 24px; }
  .quote-card p { font-size: 19px; }

  .meta-item .num { font-size: 24px; }

  .price-promise-inner { flex-direction: column; gap: 14px; }
}

@media (hover: none) {
  .service:hover { transform: none; }
  .step:hover { transform: none; }
  .work:hover { transform: none; }
}
