/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Tokens — light (default) ── */
:root {
  --bg:       #FAFAFA;
  --surface:  #F1F1F1;
  --surface2: #E8E8E8;
  --accent:   #2E9E92;
  --accent-d: #248078;
  --accent-glow: rgba(46, 158, 146, 0.18);
  --border:   rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.16);
  --text:     #161616;
  --muted:    #6E6E6E;
  --muted2:   #C9C9C9;
  --radius:   12px;
  --max-w:    1200px;
}

/* ── Tokens — dark (toggle) ── */
[data-theme="dark"] {
  --bg:       #141414;
  --surface:  #1C1C1C;
  --surface2: #222222;
  --border:   rgba(255, 255, 255, 0.09);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text:     #F2F2F2;
  --muted:    #909090;
  --muted2:   #505050;
}

html, body { height: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  height: 100dvh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s ease, color 0.4s ease;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-d); transform: translateY(-1px); }
.btn--full { width: 100%; justify-content: center; font-size: 15px; padding: 15px; }

/* ── Intro ── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  transition: opacity 0.5s ease;
}
.intro__text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 9vw, 64px);
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #161616 0%, #161616 35%, #ffffff 50%, #161616 65%, #161616 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 1.1s ease-in-out forwards;
}
@keyframes shine {
  from { background-position: 200% center; }
  to   { background-position: -200% center; }
}
.intro--done {
  opacity: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .intro__text {
    animation: none;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: #161616;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 clamp(24px, 6vw, 72px);
  padding-bottom: 110px;
}
.hero__shader {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__shader canvas { display: block; width: 100%; height: 100%; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(250, 250, 250, 0.5) 100%
  );
  pointer-events: none;
  z-index: 1;
  transition: background 0.4s ease;
}
[data-theme="dark"] .hero::before {
  background: linear-gradient(180deg,
    rgba(6, 26, 24, 0.35) 0%,
    rgba(6, 26, 24, 0.55) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero--visible .hero__inner { opacity: 1; transform: translateY(0); }
body.views-open .hero__inner { opacity: 0; pointer-events: none; }

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-d);
  margin-bottom: 18px;
  transition: color 0.4s ease;
}
[data-theme="dark"] .hero__eyebrow { color: #8FEDDD; }

.hero__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--text);
  transition: color 0.4s ease;
}
[data-theme="dark"] .hero__title { color: #FFFFFF; }

.hero__tagline {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(22, 22, 22, 0.6);
  margin-bottom: 28px;
  transition: color 0.4s ease;
}
[data-theme="dark"] .hero__tagline { color: rgba(255, 255, 255, 0.78); }

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}
.hero__cta:hover { color: var(--accent-d); border-color: var(--accent-d); gap: 12px; }
[data-theme="dark"] .hero__cta { color: #FFFFFF; border-bottom-color: rgba(255, 255, 255, 0.3); }
[data-theme="dark"] .hero__cta:hover { color: #8FEDDD; border-color: #8FEDDD; }

/* ── Dock ── */
.dock {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: background 0.4s ease, border-color 0.4s ease;
}
[data-theme="dark"] .dock {
  background: rgba(28, 28, 28, 0.65);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.dock__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.dock__btn svg { width: 20px; height: 20px; }
.dock__btn:hover { background: var(--surface2); color: var(--text); transform: translateY(-3px); }
.dock__btn--active { color: var(--accent); background: var(--accent-glow); }
.dock__btn--logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
}
.dock__btn--dollar {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 19px;
}

.dock__btn[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--text);
  color: var(--bg);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.dock__btn:hover[data-tooltip]::after { opacity: 1; transform: translateX(-50%) translateY(0); }

.dock__divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 0 4px;
}

#theme-toggle .icon-sun { display: none; }
[data-theme="dark"] #theme-toggle .icon-sun { display: block; }
[data-theme="dark"] #theme-toggle .icon-moon { display: none; }

/* ── Backdrop + Views (bottom sheet) ── */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 40;
}
.backdrop--active { opacity: 1; pointer-events: auto; }

.views {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: min(92vw, 1160px);
  height: min(82dvh, 760px);
  background: rgba(241, 241, 241, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -16px 60px rgba(0, 0, 0, 0.10);
  transform: translate(-50%, 100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease, border-color 0.4s ease;
  z-index: 60;
  overflow: hidden;
}
[data-theme="dark"] .views {
  background: rgba(28, 28, 28, 0.4);
}
.views--active { transform: translate(-50%, 0); }

.view {
  display: none;
  height: 100%;
  overflow-y: auto;
  padding: 56px clamp(24px, 5vw, 64px) 120px;
}
.view--active { display: block; }

.view__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  text-align: center;
}
.view__heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 auto 36px;
  max-width: 640px;
  text-align: center;
}

/* ── About view ── */
.about__bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.about__bio p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Work view ── */
.work__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.work-card {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.work-card:hover { transform: translateY(-6px); }
.work-card__inner {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  height: 100%;
}
.work-card:hover .work-card__inner { border-color: var(--border-hover); }

.work-card__img {
  aspect-ratio: 16/10;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
}

/* Medical mini-layout */
.work-card__img--medical {
  background-color: #EDF2F8;
  background-image:
    linear-gradient(#2A72C3, #2A72C3),
    linear-gradient(#FFFFFF, #F8FAFC),
    linear-gradient(#C5D8ED, #C5D8ED),
    linear-gradient(#C5D8ED, #C5D8ED),
    linear-gradient(#C5D8ED, #C5D8ED),
    linear-gradient(#2A72C3, #2A72C3);
  background-size:
    100% 13%,
    100% 40%,
    26% 7%,
    40% 7%,
    20% 7%,
    16% 5%;
  background-position:
    0 0,
    0 13%,
    6% 60%,
    36% 60%,
    6% 72%,
    6% 85%;
}

/* Fashion mini-layout */
.work-card__img--fashion {
  background-color: #111111;
  background-image:
    linear-gradient(#0D0D0D, #0D0D0D),
    linear-gradient(#E8DDD0, #D4C4B0),
    linear-gradient(#E8DDD0, #E8DDD0),
    linear-gradient(rgba(232,221,208,0.12), rgba(232,221,208,0.12)),
    linear-gradient(rgba(232,221,208,0.06), rgba(232,221,208,0.06));
  background-size:
    100% 11%,
    32% 30%,
    46% 3%,
    70% 1px,
    55% 1px;
  background-position:
    0 0,
    34% 28%,
    27% 64%,
    15% 74%,
    15% 82%;
}

/* Home Services mini-layout */
.work-card__img--services {
  background-color: #EDF0F5;
  background-image:
    linear-gradient(#1A2744, #1A2744),
    linear-gradient(#1E2E52, #253566),
    linear-gradient(#E07A2F, #E07A2F),
    linear-gradient(#BDC6D6, #BDC6D6),
    linear-gradient(#BDC6D6, #BDC6D6);
  background-size:
    100% 12%,
    100% 36%,
    20% 14%,
    26% 6%,
    38% 6%;
  background-position:
    0 0,
    0 12%,
    6% 22%,
    6% 56%,
    36% 56%;
}

/* Live site previews */
.work-card__img--ivan,
.work-card__img--pree,
.work-card__img--anchor,
.work-card__img--kelly {
  background-size: cover;
  background-position: top center;
}
.work-card__img--ivan { background-image: url('assets/work/ivan.jpg'); }
.work-card__img--pree { background-image: url('assets/work/pree.jpg'); }
.work-card__img--anchor { background-image: url('assets/work/anchor.jpg'); }
.work-card__img--kelly { background-image: url('assets/work/kelly.jpg'); }

.work-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
}
.work-card__client { font-size: 13px; color: var(--muted); }
.work-card__badge {
  font-size: 11px;
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}
.work-card--soon { pointer-events: none; opacity: 0.5; }
.work-card--soon:hover { transform: none; }
.work-card--soon:hover .work-card__inner { border-color: var(--border); }

.work__more {
  max-width: var(--max-w);
  margin: 28px auto 0;
  text-align: center;
}
.work__more-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.work__more-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.work__more-pills span {
  font-size: 13px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
}

/* Clickable preview affordance */
.work-card[data-sites] { cursor: pointer; }
.work-card[data-sites] .work-card__img::after {
  content: 'Click to preview';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
  pointer-events: none;
}
.work-card[data-sites]:hover .work-card__img::after {
  opacity: 1;
  background: rgba(0, 0, 0, 0.35);
}

.work-card:nth-child(1) { transition-delay: 0.04s; }
.work-card:nth-child(2) { transition-delay: 0.09s; }
.work-card:nth-child(3) { transition-delay: 0.14s; }
.work-card:nth-child(4) { transition-delay: 0.19s; }
.work-card:nth-child(5) { transition-delay: 0.24s; }
.work-card:nth-child(6) { transition-delay: 0.29s; }

/* ── Services view ── */
.services__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.service-col--featured {
  background: var(--accent-glow);
  border-color: var(--accent);
}
.service-col__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-col__badge {
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
}
.service-col__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-col--featured .service-col__title { color: var(--accent-d); }
.service-col__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-col__price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--accent-d);
  margin-bottom: 16px;
}
.service-col__price span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  margin-left: 2px;
}
.service-col__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-col__list li {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-col__list li::before {
  content: '';
  flex-shrink: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}
.service-col:nth-child(1) { transition-delay: 0.04s; }
.service-col:nth-child(2) { transition-delay: 0.09s; }
.service-col:nth-child(3) { transition-delay: 0.14s; }

.services__inquiry {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}
.services__inquiry a { color: var(--accent); text-decoration: none; }
.services__inquiry a:hover { text-decoration: underline; }
.services__cta { display: flex; justify-content: center; margin-top: 24px; }

/* ── Contact view ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact__form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 14px; }
.form-row--2 > .form-group { flex: 1; }
.form-group { width: 100%; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 18px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted2); }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 4px; }

.contact__info { display: flex; flex-direction: column; gap: 32px; }
.contact__info-block { display: flex; flex-direction: column; gap: 7px; }
.contact__info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__info-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
a.contact__info-value:hover { color: var(--accent); }
.contact__promise {
  padding: 22px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact__promise p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.contact__copy { font-size: 12px; color: var(--muted2); margin-top: 8px; }

/* ── Preview Lightbox ── */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1100;
}
.lightbox-backdrop--active { opacity: 1; pointer-events: auto; }

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1101;
}
.lightbox--active { opacity: 1; pointer-events: auto; }

.lightbox__panel {
  display: flex;
  flex-direction: column;
  width: min(900px, 100%);
  max-height: min(85dvh, 800px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: scale(0.96) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox--active .lightbox__panel { transform: scale(1) translateY(0); }

.lightbox__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.lightbox__dots { display: flex; gap: 6px; }
.lightbox__dots span { display: block; width: 10px; height: 10px; border-radius: 50%; }
.lightbox__dots span:nth-child(1) { background: #FF5F57; }
.lightbox__dots span:nth-child(2) { background: #FEBC2E; }
.lightbox__dots span:nth-child(3) { background: #28C840; }
.lightbox__url {
  flex: 1;
  background: var(--bg);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--muted2);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lightbox__close {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lightbox__close:hover { background: var(--border); color: var(--text); }

.lightbox__scroll {
  flex: 1;
  overflow-y: auto;
  background: var(--bg);
}
.lightbox__img { display: block; width: 100%; height: auto; }

.lightbox__thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  overflow-x: auto;
  flex-shrink: 0;
}
.lightbox__thumb {
  flex-shrink: 0;
  width: 64px;
  height: 40px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background-size: cover;
  background-position: top center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.lightbox__thumb:hover,
.lightbox__thumb--active { border-color: var(--accent); }

.lightbox__footer {
  display: flex;
  justify-content: center;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.lightbox__visit {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-d);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lightbox__visit:hover { border-color: var(--accent); color: var(--accent); }

/* ── Reveal (replays per view-activation) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile ── */
@media (max-width: 760px) {
  .hero { padding: 0 24px; padding-bottom: 96px; }
  .hero__title { font-size: clamp(36px, 12vw, 56px); }

  .dock { bottom: max(14px, env(safe-area-inset-bottom)); padding: 6px; gap: 2px; }
  .dock__btn { width: 40px; height: 40px; border-radius: 12px; }
  .dock__btn svg { width: 18px; height: 18px; }
  .dock__btn--dollar { font-size: 17px; }
  .dock__btn[data-tooltip]::after { display: none; }

  .views { width: calc(100% - 24px); height: min(90dvh, 100%); border-radius: 22px 22px 0 0; }
  .view { padding: 40px 20px 100px; }
  .view__heading { margin: 0 auto 24px; }

  .work__cards { grid-template-columns: 1fr; }
  .work__more { margin-top: 20px; }
  .work__more-pills { gap: 6px; }
  .work__more-pills span { font-size: 12px; padding: 4px 12px; }
  .services__cols { grid-template-columns: 1fr; gap: 16px; }
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { flex-direction: column; }

  .lightbox { padding: 12px; }
  .lightbox__panel { max-height: 90dvh; border-radius: 14px; }
}
