/* ============================================================
   WeRhino — Homepage (home.css)
   Dark luxury aesthetic. Cormorant Garamond + Inter.
   ============================================================ */

:root {
  --bg:        #0E0E0E;
  --bg-card:   #161616;
  --bg-glass:  rgba(22,22,22,0.75);
  --text:      #F8F8F8;
  --muted:     #A0A0A0;
  --accent:    #C9A86A;
  --accent-dim:rgba(201,168,106,0.15);
  --border:    rgba(248,248,248,0.08);
  --font-d:    'Cormorant Garamond', Georgia, serif;
  --font-b:    'Inter', system-ui, sans-serif;
  --ease:      cubic-bezier(0.22,1,0.36,1);
  --page-pad:  clamp(20px, 5vw, 80px);
  --radius:    6px;
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- skip link ---------- */
.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 200;
  padding: 10px 18px; background: var(--accent); color: var(--bg);
  font-weight: 600; border-radius: 4px; transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ---------- particles canvas ---------- */
#particlesCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; width: 100%; height: 100%;
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 500;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
}
.preloader__logo { width: 120px; opacity: 0.9; }
.preloader__bar {
  width: 160px; height: 1px;
  background: var(--border); overflow: hidden;
}
.preloader__bar-fill {
  display: block; height: 100%;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
}
.preloader__counter {
  font-family: var(--font-d); font-size: 1rem;
  color: var(--muted); letter-spacing: .3em;
}

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem var(--page-pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, backdrop-filter .4s;
}
.header.is-scrolled {
  background: rgba(14,14,14,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__logo img { height: 36px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 2.4rem; }
.header__link {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); transition: color .3s;
}
.header__link:hover { color: var(--text); }
.header__cta {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .75em 1.8em; border: 1px solid rgba(201,168,106,.5);
  border-radius: 100px; color: var(--accent);
  transition: background .3s, color .3s;
}
.header__cta:hover { background: var(--accent); color: var(--bg); }
.header__burger {
  display: none; flex-direction: column;
  gap: 5px; width: 28px; padding: 4px 0;
}
.header__burger span {
  display: block; height: 1px; background: var(--text);
  transition: transform .3s, opacity .3s;
}

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: flex; flex-direction: column;
  justify-content: center; padding: var(--page-pad);
  transform: translateX(100%); transition: transform .5s var(--ease);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu__link {
  font-family: var(--font-d); font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 500; line-height: 1.1;
  color: var(--text); opacity: 0; transform: translateY(20px);
  transition: opacity .4s, transform .4s, color .3s;
}
.mobile-menu.is-open .mobile-menu__link {
  opacity: 1; transform: translateY(0);
}
.mobile-menu__link:hover { color: var(--accent); }
.mobile-menu__link--cta { color: var(--accent); }
.mobile-menu__meta {
  margin-top: 3rem; display: flex; flex-direction: column;
  gap: .6rem; font-size: .8rem; color: var(--muted);
}
.mobile-menu__meta a:hover { color: var(--accent); }

/* ---------- progress nav ---------- */
.progress-nav {
  position: fixed; right: 2rem; top: 50%;
  transform: translateY(-50%);
  z-index: 80; display: flex; flex-direction: column; gap: 14px;
}
.progress-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border); border: 1px solid rgba(201,168,106,.25);
  transition: all .35s var(--ease); position: relative;
}
.progress-dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(201,168,106,.4);
  transform: scale(1.4);
}
.progress-dot::after {
  content: attr(data-label);
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: .6rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.progress-dot:hover::after, .progress-dot.is-active::after { opacity: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.05em 2.6em; font-size: .75rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  border-radius: 100px; transition: all .35s var(--ease);
}
.btn--solid { background: var(--accent); color: var(--bg); }
.btn--solid:hover { background: #d9bc83; transform: translateY(-2px); }
.btn--ghost { border: 1px solid rgba(248,248,248,.25); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---------- section shell ---------- */
.section { position: relative; z-index: 2; }
.container { max-width: 1280px; margin-inline: auto; padding-inline: var(--page-pad); }
.section-label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .44em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.2rem; display: block;
}
.section-title {
  font-family: var(--font-d); font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 500; line-height: 1.02; letter-spacing: -.01em;
  color: var(--text);
}
.section-head { margin-bottom: clamp(3rem, 6vh, 5rem); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; z-index: 2;
  min-height: 100vh;            /* fallback */
  min-height: 100svh;
  min-height: 100dvh;           /* always fills the current viewport */
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg video, .hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,14,.65) 0%,
    rgba(14,14,14,.45) 35%,
    rgba(14,14,14,.72) 65%,
    rgba(14,14,14,.95) 100%
  );
}
/* vignette sides for cinematic feel on video */
.hero__overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(14,14,14,.5) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--page-pad) clamp(5rem, 12vh, 8rem);
  max-width: 900px;
}
.hero__eyebrow {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .46em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero__eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--accent); flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-d);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 500; line-height: .96;
  letter-spacing: -.02em; margin-bottom: 2rem;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(248,248,248,.7); max-width: 52ch;
  line-height: 1.7; margin-bottom: 2.8rem; font-weight: 300;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero__note {
  font-size: .68rem; color: var(--muted);
  letter-spacing: .12em; text-transform: uppercase;
}
.hero__scroll {
  position: absolute; right: var(--page-pad); bottom: clamp(3rem, 8vh, 6rem);
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  font-size: .6rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--muted); writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.5); }
}
.hero__stats {
  position: absolute; right: var(--page-pad); top: 50%;
  transform: translateY(-50%); z-index: 2;
  display: flex; flex-direction: column; gap: 2.5rem;
  text-align: right;
}
.hero__stat strong {
  display: block; font-family: var(--font-d);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500; color: var(--accent); line-height: 1;
}
.hero__stat span {
  display: block; font-size: .65rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-top: .3rem;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--bg-card); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative; z-index: 2;
  padding: 1.1rem 0;
}
.marquee__track {
  display: flex; white-space: nowrap; gap: 0; width: max-content;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--muted);
}
.marquee__track span { padding-right: 2.5rem; }

/* ============================================================
   FEATURED PROJECTS MASONRY
   ============================================================ */
/* ===== SELECTED WORK — click-to-open vertical accordion ===== */
.works-section {
  padding: clamp(5rem, 11vh, 9rem) 0 clamp(4rem, 8vh, 6rem);
  background:
    radial-gradient(ellipse 70% 50% at 50% -8%, rgba(201,168,106,.07), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.works-head { margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.works-intro { max-width: 56ch; margin-top: 1.3rem; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.works-hint {
  display: inline-block; margin-left: .4rem;
  font-size: .6rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
}

.works-accordion {
  position: relative;
  display: flex; gap: 3px;
  width: 100%; height: clamp(520px, 80vh, 900px);
  background: var(--bg);
  --wow: cubic-bezier(.16, 1, .3, 1);
}

.wstrip {
  position: relative; flex: 1 1 0%; min-width: 0;
  overflow: hidden; cursor: pointer;
  border: 0; margin: 0; padding: 0;
  background: var(--bg-card);
  text-align: left; color: inherit; font: inherit;
  -webkit-appearance: none; appearance: none;
  transition: flex-grow .9s var(--wow);
  will-change: flex-grow;
}
/* smoke / fumé film for unfocused strips */
.wstrip::before {
  content: ''; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: rgba(4,4,6,.66);
  opacity: 0; transition: opacity .8s var(--wow);
}
/* gold base accent line on the focused strip */
.wstrip::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 3px; z-index: 6;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .7s var(--wow) .15s;
}
.wstrip__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.66) saturate(.9);
  transform: scale(1.001);
  transition: filter .8s var(--wow), transform 1s var(--wow);
  -webkit-user-drag: none; user-select: none;
}
.wstrip__shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(transparent 40%, rgba(7,7,7,.9) 97%);
  opacity: .28; transition: opacity .6s var(--wow);
}
.wstrip__num {
  position: absolute; top: 1.1rem; left: 0; right: 0; z-index: 2;
  text-align: center; font-family: var(--font-d); font-size: .82rem;
  letter-spacing: .12em; color: rgba(248,248,248,.6);
  transition: opacity .5s var(--wow), letter-spacing .8s var(--wow);
}
.wstrip__vlabel {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 1.6rem; gap: .9rem;
  transition: opacity .4s var(--wow);
}
.wstrip__vlabel b, .wstrip__vlabel i { writing-mode: vertical-rl; transform: rotate(180deg); white-space: nowrap; }
.wstrip__vlabel b { font-family: var(--font-d); font-weight: 500; font-size: 1.06rem; color: var(--text); }
.wstrip__vlabel i { font-style: normal; font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); }

.wstrip__panel {
  position: absolute; left: 0; bottom: 0; z-index: 5;
  width: clamp(300px, 32vw, 460px); max-width: 88vw;
  display: flex; flex-direction: column; gap: .95rem;
  padding: clamp(1.5rem, 2.2vw, 2.4rem);
  pointer-events: none;
}
/* every panel element starts hidden; revealed (staggered) when active */
.wstrip__cat, .wstrip__title, .wstrip__cta, .wstrip__specs span {
  opacity: 0; transform: translateY(26px);
  transition: opacity .6s var(--wow), transform .6s var(--wow);
}
.wstrip__title { transform: translateY(26px); clip-path: inset(0 0 -10% 0); }
.wstrip__cat { font-size: .62rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); }
.wstrip__photos { color: var(--muted); letter-spacing: .12em; }
.wstrip__title { font-family: var(--font-d); font-weight: 500; font-size: clamp(1.6rem, 2.8vw, 2.4rem); line-height: 1.04; color: var(--text); }
.wstrip__specs { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.2rem; margin-top: .2rem; }
.wstrip__specs span { display: flex; flex-direction: column; gap: .18rem; font-size: .8rem; color: var(--text); line-height: 1.25; }
.wstrip__specs b { font-size: .55rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.wstrip__cta { display: inline-flex; align-items: center; gap: .55rem; margin-top: .4rem; font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.wstrip__cta svg { width: 18px; height: 18px; transition: transform .4s var(--wow); }

/* subtle clickable affordance (no expand) before anything is open */
@media (hover: hover) {
  .works-accordion:not(.is-open) .wstrip:hover .wstrip__img { filter: brightness(.82) saturate(.96); }
  .works-accordion:not(.is-open) .wstrip:hover .wstrip__vlabel b { color: #fff; }
}
.wstrip:focus-visible { outline: 2px solid var(--accent); outline-offset: -3px; }

/* ---- OPEN / FOCUS MODE ---- */
.works-accordion.is-open .wstrip:not(.is-active) { flex-grow: .45; }
.works-accordion.is-open .wstrip.is-active { flex-grow: 9; }

/* unfocused strips recede behind the fumé film */
.works-accordion.is-open .wstrip:not(.is-active)::before { opacity: 1; }
.works-accordion.is-open .wstrip:not(.is-active) .wstrip__img { filter: brightness(.4) saturate(.45) blur(2px); transform: scale(1.04); }
.works-accordion.is-open .wstrip:not(.is-active) .wstrip__vlabel { opacity: .45; }

/* the focused strip blooms */
.wstrip.is-active .wstrip__img { filter: brightness(1.02) saturate(1.03); animation: wstripKB 20s ease-in-out .3s infinite alternate; }
.wstrip.is-active .wstrip__shade { opacity: 1; }
.wstrip.is-active .wstrip__num { opacity: 0; letter-spacing: .5em; }
.wstrip.is-active .wstrip__vlabel { opacity: 0; }
.wstrip.is-active::after { transform: scaleX(1); }
.wstrip.is-active .wstrip__panel { pointer-events: auto; }
.wstrip.is-active:hover .wstrip__cta svg { transform: translateX(4px); }

/* staggered "wow" reveal of the details */
.wstrip.is-active .wstrip__cat            { opacity: 1; transform: none; transition-delay: .26s; }
.wstrip.is-active .wstrip__title          { opacity: 1; transform: none; transition-delay: .34s; }
.wstrip.is-active .wstrip__specs span:nth-child(1) { opacity: 1; transform: none; transition-delay: .44s; }
.wstrip.is-active .wstrip__specs span:nth-child(2) { opacity: 1; transform: none; transition-delay: .50s; }
.wstrip.is-active .wstrip__specs span:nth-child(3) { opacity: 1; transform: none; transition-delay: .56s; }
.wstrip.is-active .wstrip__specs span:nth-child(4) { opacity: 1; transform: none; transition-delay: .62s; }
.wstrip.is-active .wstrip__cta            { opacity: 1; transform: none; transition-delay: .72s; }

@keyframes wstripKB { from { transform: scale(1.001); } to { transform: scale(1.08); } }

/* close (×) control for focus mode */
.works-close {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 8;
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(12,12,12,.6); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--border); color: var(--text);
  opacity: 0; pointer-events: none; transform: scale(.8);
  transition: opacity .4s var(--wow), transform .4s var(--wow), background .3s, color .3s;
}
.works-accordion.is-open .works-close { opacity: 1; pointer-events: auto; transform: none; }
.works-close:hover { background: var(--accent); color: var(--bg); transform: rotate(90deg); }
.works-close svg { width: 20px; height: 20px; }

/* ===== Project lightbox ===== */
.wlb { position: fixed; inset: 0; z-index: 200; display: none; --wow: cubic-bezier(.16, 1, .3, 1); }
.wlb.is-open { display: block; }
.wlb__backdrop { position: absolute; inset: 0; background: rgba(6,6,6,.94); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.wlb.is-open .wlb__backdrop { animation: wlbFade .35s var(--wow); }
@keyframes wlbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes wlbZoom { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
@keyframes wlbSlide { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }
.wlb__inner { position: relative; height: 100%; display: grid; grid-template-columns: 1fr minmax(300px, 400px); }
.wlb.is-open .wlb__inner { animation: wlbZoom .5s var(--wow); }
.wlb__stage { position: relative; display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); min-width: 0; }
.wlb__imgwrap { display: flex; align-items: center; justify-content: center; max-width: 100%; max-height: 100%; }
.wlb__img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; box-shadow: 0 30px 90px rgba(0,0,0,.6); animation: wlbZoom .4s var(--wow); }
.wlb__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: clamp(44px, 4vw, 56px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%;
  background: rgba(20,20,20,.6); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--border); color: var(--text);
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--wow);
}
.wlb__arrow:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.wlb__arrow svg { width: 42%; height: 42%; }
.wlb__arrow--prev { left: clamp(.5rem, 2vw, 1.4rem); }
.wlb__arrow--next { right: clamp(.5rem, 2vw, 1.4rem); }
.wlb__thumbs { position: absolute; bottom: clamp(.6rem, 2vw, 1.3rem); left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 3; max-width: 90%; overflow-x: auto; padding: .2rem; }
.wlb__thumb { flex: 0 0 auto; width: 56px; height: 40px; border-radius: 4px; overflow: hidden; opacity: .45; border: 1px solid transparent; cursor: pointer; transition: opacity .3s, border-color .3s; }
.wlb__thumb:hover { opacity: .8; }
.wlb__thumb.is-active { opacity: 1; border-color: var(--accent); }
.wlb__thumb img { width: 100%; height: 100%; object-fit: cover; }
.wlb__info { background: var(--bg-card); border-left: 1px solid var(--border); padding: clamp(2rem, 4vw, 3.4rem) clamp(1.6rem, 2.6vw, 2.6rem); display: flex; flex-direction: column; gap: 1.05rem; overflow-y: auto; }
.wlb.is-open .wlb__info { animation: wlbSlide .55s var(--wow) .08s both; }
.wlb__cat { font-size: .64rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); }
.wlb__title { font-family: var(--font-d); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.04; }
.wlb__blurb { color: var(--muted); font-size: .95rem; line-height: 1.65; }
.wlb__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.4rem; margin: .4rem 0; }
.wlb__specs > div { display: flex; flex-direction: column; gap: .25rem; }
.wlb__specs dt { font-size: .56rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.wlb__specs dd { font-size: .9rem; color: var(--text); }
.wlb__count { font-family: var(--font-d); font-size: .9rem; color: var(--muted); letter-spacing: .06em; }
.wlb__quote { margin-top: auto; align-self: flex-start; }
.wlb__close { position: absolute; top: clamp(1rem, 2vw, 1.6rem); right: clamp(1rem, 2vw, 1.6rem); z-index: 5; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(20,20,20,.6); border: 1px solid var(--border); color: var(--text); transition: background .3s, color .3s, transform .3s var(--wow); }
.wlb__close:hover { background: var(--accent); color: var(--bg); transform: rotate(90deg); }
.wlb__close svg { width: 20px; height: 20px; }

@media (prefers-reduced-motion: reduce) {
  .wstrip.is-active .wstrip__img { animation: none; }
}

@media (max-width: 860px) {
  .works-accordion { flex-direction: column; height: auto; }
  .wstrip { flex: 0 0 auto; height: 66px; transition: height .7s var(--wow); }
  .works-accordion.is-open .wstrip:not(.is-active) { flex-grow: 0; }
  .works-accordion.is-open .wstrip.is-active { flex-grow: 0; }
  .wstrip.is-active { height: min(76vh, 560px); }
  .wstrip__img { filter: brightness(.6) saturate(.9); }
  .wstrip.is-active .wstrip__img { animation: none; transform: none; }
  .wstrip__num { top: 50%; left: auto; right: 1.2rem; transform: translateY(-50%); text-align: right; }
  .wstrip__vlabel { flex-direction: row; align-items: center; justify-content: flex-start; padding: 0 1.3rem; gap: .9rem; }
  .wstrip__vlabel b, .wstrip__vlabel i { writing-mode: horizontal-tb; transform: none; }
  .wstrip__panel { width: auto; right: 0; left: 0; max-width: none; }
  .works-close { top: .7rem; right: .7rem; width: 40px; height: 40px; }

  .wlb__inner { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .wlb__img { max-height: 48vh; }
  .wlb__info { border-left: 0; border-top: 1px solid var(--border); gap: .85rem; }
  .wlb__quote { align-self: stretch; text-align: center; }
}

/* ============================================================
   DESIGN TO REALITY (PROCESS)
   ============================================================ */
.process-section {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--bg-card);
}
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(3rem, 7vh, 5rem);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 90px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-step__num {
  font-family: var(--font-d); font-size: .75rem;
  font-weight: 600; letter-spacing: .3em;
  color: var(--accent); margin-bottom: 1.2rem; display: block;
}
.process-step__img {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; border-radius: var(--radius);
  margin-bottom: 1.4rem;
  border: 1px solid var(--border);
}
.process-step__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.process-step:hover .process-step__img img { transform: scale(1.05); }
.process-step__title {
  font-family: var(--font-d); font-size: 1.5rem;
  font-weight: 500; margin-bottom: .6rem;
}
.process-step__desc { font-size: .85rem; color: var(--muted); line-height: 1.7; }

.process-tagline {
  font-family: var(--font-d);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: .12em;
  margin-top: 1rem;
  margin-bottom: 0;
  opacity: .85;
}

.process-step--reality .process-step__img {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(201,168,106,.18), 0 12px 40px rgba(201,168,106,.1);
}
.process-step--reality .process-step__title {
  color: var(--accent);
}

/* ============================================================
   WHY DESIGNERS CHOOSE WERHINO
   ============================================================ */
.why-section {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--bg);
}
.why-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; margin-top: clamp(3rem, 7vh, 5rem);
}
.why-card {
  padding: 2.4rem 2rem; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color .4s, transform .4s var(--ease);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent-dim);
  opacity: 0; transition: opacity .4s;
}
.why-card:hover { border-color: rgba(201,168,106,.35); transform: translateY(-6px); }
.why-card:hover::before { opacity: 1; }
.why-card__icon {
  width: 42px; height: 42px; margin-bottom: 1.8rem;
  color: var(--accent);
}
.why-card__icon svg { width: 100%; height: 100%; }
.why-card__title {
  font-family: var(--font-d); font-size: 1.5rem;
  font-weight: 500; margin-bottom: .8rem;
}
.why-card__desc { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   BEHIND THE CRAFT SLIDER
   ============================================================ */
.craft-section {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--bg-card);
}
.craft-section .section-head { padding-inline: var(--page-pad); }
.craft-slider { margin-top: clamp(3rem, 6vh, 4rem); overflow: hidden; position: relative; }
.craft-track {
  display: flex; will-change: transform;
}
.craft-slide {
  flex: 0 0 100%;
  aspect-ratio: 16/9; position: relative;
}
.craft-slide img,
.craft-slide video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.craft-slide__label {
  position: absolute; inset: auto var(--page-pad) 2rem;
  font-family: var(--font-d); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500; pointer-events: none;
  text-shadow: 0 2px 24px rgba(0,0,0,.8);
}
.craft-controls {
  display: flex; align-items: center; gap: 2rem;
  padding: 2rem var(--page-pad) 0;
}
.craft-btn {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); position: relative;
  padding-bottom: .4rem;
  transition: color .3s;
}
.craft-btn::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width .4s var(--ease);
}
.craft-btn.is-active { color: var(--accent); }
.craft-btn.is-active::after { width: 100%; }
.craft-btn:hover { color: var(--text); }
.craft-arrows {
  margin-left: auto; display: flex; gap: 1rem;
}
.craft-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .3s;
}
.craft-arrow:hover { border-color: var(--accent); color: var(--accent); }
.craft-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ---- Cinematic framing, reveal line + scroll hint (scroll mode only) ---- */
.craft-vignette,
.craft-reveal-line,
.craft-hint { display: none; }
.craft-vignette {
  position: absolute; top: 0; left: 0; right: 0; height: var(--craft-h, 100%);
  pointer-events: none; z-index: 8;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55), transparent 24%),
    linear-gradient(to top, rgba(0,0,0,.6), transparent 26%),
    radial-gradient(130% 130% at 50% 45%, transparent 50%, rgba(0,0,0,.55) 100%);
}
/* the vertical line that runs across, revealing the next stage */
.craft-reveal-line {
  position: absolute; top: 0; left: 0; width: 2px; height: var(--craft-h, 100%);
  margin-left: -1px; z-index: 9; opacity: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--accent) 14%, #fff 50%, var(--accent) 86%, transparent);
  box-shadow: 0 0 18px 1px rgba(201,168,106,.7), 0 0 52px 7px rgba(201,168,106,.32);
  will-change: left, opacity;
}
.craft-hint {
  position: absolute; left: 50%; bottom: 5.4rem; transform: translateX(-50%);
  z-index: 10; align-items: center; gap: .55rem;
  font-size: .6rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.75);
  pointer-events: none; transition: opacity .5s var(--ease);
}
.craft-hint svg {
  width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6;
  animation: craftHintBob 1.8s var(--ease) infinite;
}
@keyframes craftHintBob { 0%, 100% { transform: translateY(-3px); } 50% { transform: translateY(3px); } }

/* ---- Scroll progress bar ---- */
.craft-progress {
  display: none; position: relative; height: 2px;
  margin: 1.6rem var(--page-pad) 0; background: rgba(255,255,255,.18); overflow: hidden;
}
.craft-progress__fill {
  position: absolute; inset: 0 auto 0 0; width: 0%;
  background: var(--accent);
}

/* ---- Scroll-driven variant — full-bleed wipe reveal (added by JS) ---- */
.craft-section--scroll {
  --craft-h: 100vh;
  height: 100vh; min-height: 560px; padding: 0;
  position: relative; overflow: hidden;
}
/* title overlaid on top, controls overlaid on bottom → media goes full-bleed */
.craft-section--scroll .section-head {
  position: absolute; top: 0; left: 0; right: 0; z-index: 12;
  margin: 0; padding: clamp(4rem, 9vh, 6rem) var(--page-pad) 0;
  pointer-events: none;
}
.craft-section--scroll .craft-slider { margin: 0; height: 100vh; }
.craft-section--scroll .craft-track { display: block; position: relative; height: 100vh; }
.craft-section--scroll .craft-slide {
  position: absolute; inset: 0; width: 100%; height: 100vh; aspect-ratio: auto;
}
.craft-section--scroll .craft-slide:nth-child(1) { z-index: 1; }
.craft-section--scroll .craft-slide:nth-child(2) { z-index: 2; }
.craft-section--scroll .craft-slide:nth-child(3) { z-index: 3; }
.craft-section--scroll .craft-slide__label { display: none; }
.craft-section--scroll .craft-vignette,
.craft-section--scroll .craft-reveal-line,
.craft-section--scroll .craft-hint { display: flex; }
.craft-section--scroll .craft-progress {
  display: block; position: absolute; left: 0; right: 0; bottom: 4.6rem;
  margin: 0 var(--page-pad); z-index: 12;
}
.craft-section--scroll .craft-controls {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 12;
  padding: 1.1rem var(--page-pad) clamp(1.1rem, 3vh, 2rem);
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.before-after-section {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--bg);
}
.before-after-section .container { margin-bottom: clamp(3rem, 6vh, 4rem); }
.before-after {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9; cursor: ew-resize;
  user-select: none; touch-action: pan-y;
  border-radius: 0;
}
.before-after__before,
.before-after__after {
  position: absolute; inset: 0;
}
.before-after__before img,
.before-after__after img {
  width: 100%; height: 100%; object-fit: cover;
}
.before-after__after { clip-path: inset(0 50% 0 0); }
.before-after__label-b,
.before-after__label-a {
  position: absolute; top: 1.5rem; z-index: 5;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  background: rgba(14,14,14,.7); backdrop-filter: blur(6px);
  padding: .4em 1em; border-radius: 100px; border: 1px solid var(--border);
}
.before-after__label-b { left: 1.5rem; }
.before-after__label-a { right: 1.5rem; color: var(--accent); border-color: rgba(201,168,106,.3); }
.before-after__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center;
  justify-content: center; width: 48px;
}
.before-after__line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; background: var(--accent);
}
.before-after__btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  position: relative; z-index: 1;
}
.before-after__btn svg {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none; stroke-width: 2;
}

/* ============================================================
   GALLERY (Pinterest masonry)
   ============================================================ */
.gallery-section {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--bg-card);
}
.gallery-section .container { margin-bottom: 3rem; }
.gallery-filter {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-top: 2rem;
}
.gallery-grid {
  columns: 4 220px; column-gap: 10px;
  padding-inline: var(--page-pad);
}
.gallery-item {
  break-inside: avoid; margin-bottom: 10px;
  overflow: hidden; border-radius: var(--radius);
  position: relative;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform .7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(14,14,14,0);
  display: flex; align-items: flex-end;
  padding: 1.2rem 1rem;
  transition: background .4s;
}
.gallery-item:hover .gallery-item__overlay { background: rgba(14,14,14,.6); }
.gallery-item__name {
  font-family: var(--font-d); font-size: 1rem;
  font-weight: 500; opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s;
}
.gallery-item:hover .gallery-item__name {
  opacity: 1; transform: translateY(0);
}

/* ============================================================
   MATERIALS & FINISHES
   ============================================================ */
.materials-section {
  padding: clamp(6rem, 12vh, 10rem) 0 clamp(2.5rem, 4vh, 3.5rem);
  background: var(--bg-card);
}
.materials-section .section-head { margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.materials-intro {
  margin-top: 1.4rem; max-width: 56ch;
  font-size: clamp(.95rem, 1.4vw, 1.08rem); font-weight: 300;
  line-height: 1.7; color: var(--muted);
}
.materials-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  padding-inline: var(--page-pad);
}
.material-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 3 / 4; background: var(--bg);
}
.material-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.material-card:hover img { transform: scale(1.07); }
.material-card__info {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  display: flex; flex-direction: column; gap: .2rem;
  padding: 1.4rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(14,14,14,.9), rgba(14,14,14,.35) 55%, transparent);
}
.material-card__name {
  font-family: var(--font-d); font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 500; color: var(--text); line-height: 1.1;
}
.material-card__type {
  font-size: .58rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--accent);
}

/* suppliers strip (swap wordmarks for real logo <img> when available) */
.materials-suppliers {
  margin-top: clamp(3.5rem, 7vh, 5.5rem);
  padding-top: clamp(2.5rem, 5vh, 3.5rem);
  border-top: 1px solid var(--border);
  text-align: center;
}
.materials-suppliers__label {
  display: block; margin-bottom: clamp(1.4rem, 3vh, 2.2rem);
  font-size: .62rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted);
}
.materials-suppliers__row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(1.8rem, 5vw, 4rem);
}
.supplier-logo {
  font-family: var(--font-d); font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 600; letter-spacing: .01em; color: var(--muted);
  opacity: .72; transition: opacity .3s var(--ease), color .3s var(--ease);
}
.supplier-logo:hover { opacity: 1; color: var(--text); }
.supplier-logo--more {
  font-style: italic; color: var(--accent); opacity: .9;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: clamp(6rem, 14vh, 11rem) 0;
  background: var(--bg); text-align: center;
}
.testimonials-section .section-label { display: block; text-align: center; }
.testimonials-track {
  position: relative; margin-top: clamp(3rem, 7vh, 5rem);
  min-height: 260px;
}
.testimonial {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; opacity: 0;
  transition: opacity .6s; pointer-events: none;
}
.testimonial.is-active { opacity: 1; pointer-events: auto; position: relative; }
.testimonial__stars {
  color: var(--accent); font-size: 1.1rem;
  letter-spacing: .2em; margin-bottom: 2rem;
}
.testimonial__text {
  font-family: var(--font-d); font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400; font-style: italic;
  max-width: 820px; line-height: 1.45;
  color: var(--text); margin-bottom: 2.4rem;
}
.testimonial__footer { display: flex; flex-direction: column; gap: .3rem; }
.testimonial__name {
  font-size: .88rem; font-weight: 600;
  font-style: normal; color: var(--text);
}
.testimonial__role { font-size: .72rem; color: var(--muted); letter-spacing: .1em; }
.testimonials-nav {
  display: flex; justify-content: center;
  gap: .8rem; margin-top: 3rem;
}
.testimonials-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border); transition: all .3s;
}
.testimonials-dot.is-active {
  background: var(--accent); transform: scale(1.6);
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: clamp(3.5rem, 6vh, 5rem) 0 clamp(7rem, 13vh, 11rem);
  background: radial-gradient(ellipse 70% 55% at 50% 110%, rgba(201,168,106,.1) 0%, transparent 70%), var(--bg-card);
  text-align: center; position: relative; z-index: 2;
}
.cta__title {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 500; line-height: 1; max-width: 16ch;
  margin-inline: auto; letter-spacing: -.01em;
  margin-bottom: 1.6rem;
}
.cta__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--muted); max-width: 52ch;
  margin-inline: auto; margin-bottom: 3rem;
  line-height: 1.7; font-weight: 300;
}
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section {
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--bg);
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 8rem); align-items: start;
}
.contact-text .section-title { margin-bottom: 1.4rem; }
.contact-desc { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.4rem; }
.contact-channels { display: flex; flex-direction: column; gap: .8rem; }
.contact-channel {
  display: flex; align-items: center; gap: 1rem;
  font-size: .9rem; transition: color .3s;
}
.contact-channel:hover { color: var(--accent); }
.contact-channel span {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); min-width: 44px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field { margin-bottom: 1.2rem; }
.form__field label {
  display: block; font-size: .7rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .5rem;
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%; padding: .9em 1.1em;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font: inherit; font-size: .9rem;
  transition: border-color .3s;
  appearance: none; -webkit-appearance: none;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none; border-color: var(--accent);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__field.has-error input,
.form__field.has-error select,
.form__field.has-error textarea { border-color: #e05a5a; }
.form__error { display: block; font-size: .72rem; color: #e05a5a; margin-top: .3rem; }
.form__submit { width: 100%; margin-top: .6rem; }
.form__success { font-size: .9rem; color: var(--accent); margin-top: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; z-index: 2;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem var(--page-pad) 2rem;
}
.footer__inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 2rem; margin-bottom: 2.4rem;
}
.footer__logo img { height: 32px; width: auto; }
.footer__tag { font-size: .72rem; color: var(--muted); margin-top: .4rem; letter-spacing: .06em; }
.footer__nav { display: flex; gap: 2rem; }
.footer__nav a {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); transition: color .3s;
}
.footer__nav a:hover { color: var(--accent); }
.footer__meta { display: flex; flex-direction: column; gap: .4rem; text-align: right; }
.footer__meta a { font-size: .8rem; color: var(--muted); transition: color .3s; }
.footer__meta a:hover { color: var(--accent); }
.footer__legal {
  border-top: 1px solid var(--border); padding-top: 1.6rem;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: .8rem; font-size: .7rem; color: var(--muted);
}

/* ============================================================
   SCROLL REVEAL STATES
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(32px); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal-left] { opacity: 0; transform: translateX(-32px); }
[data-reveal-left].is-visible { opacity: 1; transform: translateX(0); transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .materials-grid { grid-template-columns: repeat(3,1fr); }
  .hero__stats { display: none; }
}
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .progress-nav { display: none; }
  .projects-grid { columns: 2 180px; }
  .gallery-grid { columns: 2 160px; }
  .materials-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .craft-slide { aspect-ratio: 4/3; }
  .before-after { aspect-ratio: 4/3; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: left; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 3.2rem; }
  .projects-grid { columns: 1; }
  .gallery-grid { columns: 1; }
  .hero__actions { flex-direction: column; }
  .cta__actions { flex-direction: column; align-items: center; }
}

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