/* ============================================================
   SLASHEASY — Premium Photographer Landing Page
   ============================================================ */

:root {
  --bg:        #050506;
  --bg-panel:  #0C0C0E;
  --bg-elev:   #15151A;
  --line:      rgba(245, 241, 234, 0.07);
  --line-2:    rgba(217, 168, 106, 0.32);
  --text:      #F5F1EA;
  --muted:     #ADA8A0;
  --dim:       #5F5C57;
  --gold:      #D9A86A;   /* warm sandy gold — button fills, primary accent */
  --gold-soft: #E5B97F;   /* hover lift, lighter peach-gold */
  --accent:    #E8C078;   /* readable gold for accent text on dark bg */
  --sepia:     #3D2A12;   /* deep warm brown for gradients */

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --radius:    20px;
  --radius-sm: 12px;

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg); /* fallback if WebGL fails or smoke is hidden */
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--gold); color: var(--text); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* Film-grain overlay (subtle) */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.85'/></svg>");
  mix-blend-mode: overlay;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); letter-spacing: -0.01em; }
em { font-style: italic; color: var(--accent); font-family: var(--font-display); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.92;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(48px, 8vw, 88px);
  text-align: center;
}
.section-head p {
  color: var(--muted);
  margin-top: 18px;
  font-size: 1.05rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--text);
}
.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px -10px rgba(217, 168, 106, 0.7);
}
.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--text);
}
.btn--ghost:hover {
  background: rgba(217, 168, 106, 0.14);
  border-color: var(--gold-soft);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  color: var(--accent);
  font-size: 1.4em;
  line-height: 1;
}
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--muted);
}
.nav__links a {
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 11px 22px; font-size: 13px; }
.nav__links-cta { display: none; } /* shown only inside mobile overlay */

/* Hamburger button — hidden on desktop */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  flex-shrink: 0;
  z-index: 102;
}
.nav__burger span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), top 0.35s var(--ease);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
.nav__burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); background: var(--accent); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); background: var(--accent); }

@media (max-width: 860px) {
  .nav__cta { display: none; }
  .nav__burger { display: block; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 6, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 1.3rem;
    font-family: var(--font-display);
    font-weight: 400;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease), transform 0.35s var(--ease);
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .nav__links a {
    color: var(--text);
    padding: 8px 16px;
    opacity: 0.85;
    transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
  }
  .nav__links a:hover, .nav__links a:focus-visible {
    opacity: 1;
    color: var(--accent);
  }
  .nav__links a::after { display: none; }
  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav__links-cta {
    display: inline-block !important;
    margin-top: 16px;
    padding: 14px 32px !important;
    background: var(--gold);
    color: var(--text) !important;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 1 !important;
  }
}

/* ============================================================
   HERO — two-column with framed portrait + camera overlay
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--bg);
  overflow: hidden;
}

/* Decorative giant vertical wordmark on left edge */
.hero__deco {
  position: absolute;
  top: 50%;
  left: -22px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(6rem, 14vw, 14rem);
  letter-spacing: 0.04em;
  color: var(--text);
  opacity: 0.04;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Vertical social icon column */
.hero__social {
  position: absolute;
  left: clamp(18px, 3vw, 44px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--muted);
}
.hero__social a {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero__social a:hover {
  color: var(--accent);
  background: rgba(217, 168, 106, 0.10);
  transform: translateY(-2px);
}

/* Two-column layout: text left, framed photo right */
.hero__grid {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 clamp(20px, 4vw, 56px) 0 clamp(76px, 9vw, 112px);
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.hero__text { max-width: 560px; }
.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 300;
  max-width: 14ch;
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero__sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  margin: 0 0 36px;
  max-width: 50ch;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Right column — framed photographer image with camera overlay */
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
}
.hero__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(245, 241, 234, 0.10);
  border-radius: 8px;
  padding: 14px;
  background: rgba(245, 241, 234, 0.02);
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.hero__camera {
  position: absolute;
  bottom: -36px;
  left: -36px;
  width: clamp(140px, 22%, 200px);
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--line);
}
.hero__camera img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero responsive — stack on tablet, hide deco on phones */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; padding-left: clamp(64px, 8vw, 96px); }
  .hero__media { max-width: 420px; margin: 0 auto; }
  .hero__title { max-width: 18ch; }
}
@media (max-width: 720px) {
  .hero__social { gap: 18px; }
  .hero__deco { font-size: clamp(5rem, 18vw, 8rem); opacity: 0.03; }
  .hero__camera { width: 38%; bottom: -24px; left: -20px; }
}
@media (max-width: 480px) {
  .hero__grid { padding-left: 56px; }
  .hero__social { left: 14px; }
  .hero__social a { width: 28px; height: 28px; }
  .hero__media { max-width: 320px; }
  .hero__deco { display: none; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-panel);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.trust__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 40px;
}
.trust__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
  flex-shrink: 0;
}
.trust__marquee {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.trust__track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.trust__track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  opacity: 0.55;
  white-space: nowrap;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 640px) {
  .trust__inner { flex-direction: column; gap: 16px; }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */

section { padding: clamp(80px, 12vw, 140px) 0; }

/* ============================================================
   WORK (Bento gallery)
   ============================================================ */

.grid-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense; /* fill gaps caused by tall/wide span variants */
  gap: 16px;
}
.card-work {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--bg-elev);
  cursor: pointer;
  isolation: isolate;
  /* Button reset */
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  display: block;
}
.card-work:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}
.card-work--tall { grid-row: span 2; }
.card-work--wide { grid-column: span 2; }

/* Image layer — zooms on hover, matches the About section behavior */
.card-work::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  z-index: 0;
}
.card-work:hover::before {
  transform: scale(1.05);
  filter: brightness(0.92);
}

/* Gradient overlay — static, sits above image, below caption */
.card-work::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 10, 11, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.card-work:hover .card-work__overlay { transform: translateY(0); opacity: 1; }

.card-work__overlay {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
  transform: translateY(12px);
  opacity: 0.95;
  transition: all 0.5s var(--ease);
}
.card-work__overlay h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--text);
}
.card-work__cat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.95;
  margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.card-work__cat::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .grid-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .card-work--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .grid-bento { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .card-work--wide, .card-work--tall { grid-column: span 1; grid-row: span 1; }
}

/* ============================================================
   LIGHTBOX — full-screen image viewer
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(5, 5, 6, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__figure {
  position: relative;
  max-width: min(1400px, 90vw);
  max-height: 82vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  transition-delay: 0.1s;
}
.lightbox.is-open .lightbox__figure {
  transform: scale(1);
  opacity: 1;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow:
    0 40px 100px -20px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(245, 241, 234, 0.08);
}

.lightbox__caption {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.lightbox__cat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 11px;
  color: var(--text);
  opacity: 0.92;
}
.lightbox__cat::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent);
}
.lightbox__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 12, 14, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  z-index: 10;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(217, 168, 106, 0.5);
  border-color: var(--gold-soft);
  box-shadow: 0 0 24px -4px rgba(229, 185, 127, 0.5);
}
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:active { transform: translateY(-50%) scale(0.94); }
.lightbox__nav--next:active { transform: translateY(-50%) scale(0.94); }

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* Lightbox responsive */
@media (max-width: 640px) {
  .lightbox { padding: 12px; }
  .lightbox__close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__figure img { max-height: 70vh; }
  .lightbox__title { font-size: 0.95rem; }
  .lightbox__caption { flex-direction: column; gap: 6px; }
  .lightbox__counter { bottom: 14px; }
}

/* ============================================================
   ABOUT — photo-led intro with 3-photo asymmetric collage
   ============================================================ */

.about {
  background: var(--bg-panel);
  position: relative;
}

.about__head { max-width: 640px; }
.about__head h2 { font-weight: 500; }

/* Asymmetric collage: one large left photo + two stacked right photos */
.about__collage {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  grid-template-areas:
    "big top"
    "big bottom";
  margin-bottom: clamp(56px, 8vw, 88px);
  aspect-ratio: 16 / 9;
  max-height: 620px;
}
.about__photo {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-elev);
  transition: transform 0.6s var(--ease);
}
.about__photo--big    { grid-area: big; }
.about__photo--top    { grid-area: top; }
.about__photo--bottom { grid-area: bottom; }
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}
.about__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}
.about__photo:hover img {
  transform: scale(1.04);
  filter: brightness(0.95);
}
.about__cap {
  position: absolute;
  bottom: clamp(14px, 2vw, 22px);
  left:   clamp(14px, 2vw, 22px);
  z-index: 2;
  color: var(--text);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__cap strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  letter-spacing: -0.01em;
}
.about__cap span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.92;
}

/* Three services row */
.about__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.about__services article { max-width: 36ch; }
.about__services h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.about__services p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
}
.learn-more {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.learn-more:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* About — responsive */
@media (max-width: 900px) {
  .about__collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "big"
      "top"
      "bottom";
    aspect-ratio: auto;
    max-height: none;
  }
  .about__photo--big    { aspect-ratio: 16 / 11; }
  .about__photo--top,
  .about__photo--bottom { aspect-ratio: 5 / 3; }

  .about__services { grid-template-columns: 1fr; gap: 36px; }
  .about__services article { max-width: none; }
}

/* ============================================================
   PROCESS (Timeline)
   ============================================================ */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.timeline li {
  position: relative;
  padding-top: 70px;
}
.timeline__num {
  position: absolute;
  top: 0; left: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--line-2);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.timeline h3 { margin-bottom: 10px; }
.timeline p { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; gap: 28px; }
  .timeline::before { display: none; }
  .timeline li { padding-top: 0; padding-left: 76px; min-height: 56px; }
  .timeline__num { top: 0; }
}

/* ============================================================
   SHOWCASE — Coverflow lookbook carousel
   ============================================================ */

.showcase {
  background: var(--bg-panel);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(217, 168, 106, 0.10), transparent 65%);
  pointer-events: none;
}

.showcase__stage {
  position: relative;
  height: clamp(340px, 50vw, 520px);
  perspective: 1400px;
  margin-top: 24px;
}

.showcase__track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.showcase__card {
  position: absolute;
  width: clamp(200px, 22vw, 320px);
  height: clamp(300px, 33vw, 480px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.10);
  box-shadow: 0 30px 60px -16px rgba(0, 0, 0, 0.7);
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease), filter 0.7s var(--ease), box-shadow 0.7s var(--ease);
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}
.showcase__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.showcase__card.is-center {
  box-shadow:
    0 36px 80px -20px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(229, 185, 127, 0.35);
  border-color: rgba(229, 185, 127, 0.4);
}

.showcase__nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  color: var(--text);
  display: grid;
  place-items: center;
  z-index: 20;
  transform: translateY(-50%);
  transition: all 0.35s var(--ease);
}
.showcase__nav:hover {
  background: rgba(217, 168, 106, 0.4);
  border-color: var(--gold-soft);
  box-shadow: 0 0 24px -4px rgba(229, 185, 127, 0.5);
}
.showcase__nav:active { transform: translateY(-50%) scale(0.94); }
.showcase__nav:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}
.showcase__nav--prev { left: clamp(8px, 2vw, 32px); }
.showcase__nav--next { right: clamp(8px, 2vw, 32px); }

.showcase__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.showcase__dots button {
  width: 24px;
  height: 2px;
  background: var(--line-2);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  padding: 0;
}
.showcase__dots button[data-active="true"] {
  background: var(--gold-soft);
  width: 44px;
}
.showcase__dots button:hover { background: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  .showcase__card {
    transition: opacity 0.2s linear;
    filter: none !important;
  }
}

/* ============================================================
   STATS
   ============================================================ */

.stats {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 50%, var(--bg) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 90px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--text);
  line-height: 1;
}
.stats__item p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 700px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials { text-align: center; }
.testi-track {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 280px;
}
.testi {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s var(--ease);
  pointer-events: none;
}
.testi[data-active="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.testi__stars { color: var(--accent); letter-spacing: 4px; margin-bottom: 24px; }
.testi blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 300;
  line-height: 1.35;
  font-style: italic;
  margin-bottom: 32px;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.testi__by {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.testi__by img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-2);
}
.testi__by strong { display: block; font-weight: 500; }
.testi__by span { color: var(--muted); font-size: 13px; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}
.testi-dots button {
  width: 28px; height: 2px;
  background: var(--line-2);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
}
.testi-dots button[data-active="true"] { background: var(--gold); width: 48px; }

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
  background: var(--bg-panel);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease);
}
.price:hover { transform: translateY(-4px); border-color: var(--line-2); }
.price h3 { margin-bottom: 16px; }
.price__amt {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  margin-bottom: 24px;
}
.price__amt span { color: var(--accent); font-size: 0.6em; vertical-align: super; }
.price ul { margin-bottom: 32px; flex: 1; }
.price li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}
.price li:last-child { border: 0; }
.price--featured {
  background: linear-gradient(180deg, rgba(217, 168, 106,0.22), var(--bg-elev) 60%);
  border-color: var(--line-2);
  transform: translateY(-12px);
}
.price--featured:hover { transform: translateY(-16px); }
.price__tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--text);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-4px); }
}

/* ============================================================
   CTA / FORM
   ============================================================ */

.cta {
  background: var(--bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217, 168, 106,0.28), transparent 60%);
  pointer-events: none;
}
.cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta__inner h2 { margin-bottom: 16px; }
.cta__inner > p { color: var(--muted); margin-bottom: 48px; }

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}
.cta__form .full { grid-column: span 2; }
.cta__form label {
  position: relative;
  display: block;
}
.cta__form input,
.cta__form select,
.cta__form textarea {
  width: 100%;
  padding: 22px 18px 12px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border 0.3s var(--ease);
}
.cta__form select { appearance: none; padding-right: 40px; }
.cta__form textarea { resize: vertical; min-height: 120px; padding-top: 24px; }
.cta__form input:focus,
.cta__form select:focus,
.cta__form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.cta__form label span {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--dim);
  font-size: 13px;
  pointer-events: none;
  transition: all 0.3s var(--ease);
}
.cta__form input:focus + span,
.cta__form input:not(:placeholder-shown) + span,
.cta__form input:valid + span,
.cta__form select:focus + span,
.cta__form select:valid + span,
.cta__form textarea:focus + span,
.cta__form textarea:valid + span {
  top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.cta__form button {
  grid-column: span 2;
  margin-top: 12px;
  padding: 18px;
}

@media (max-width: 640px) {
  .cta__form { grid-template-columns: 1fr; }
  .cta__form .full, .cta__form button { grid-column: span 1; }
}

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

.footer {
  background: var(--bg-panel);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.footer__tag {
  margin-top: 16px;
  max-width: 32ch;
}
.footer h4 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.92;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer h4::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.footer a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.footer a:hover { color: var(--text); }
.footer__news {
  display: flex;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.footer__news input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: 0;
  color: var(--text);
  font: inherit;
  font-size: 14px;
}
.footer__news input:focus { outline: none; }
.footer__news button {
  padding: 0 22px;
  background: var(--gold);
  color: var(--text);
  font-weight: 600;
}
.footer__base {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

/* Reveal animations — only hide content when JS is enabled and will animate it in.
   Without `.js` class on <html>, content stays fully visible. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js [data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

[data-split] .word {
  display: inline-block;
  white-space: nowrap;
}
.js [data-split] .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.js [data-split].is-in .char { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE POLISH — small-screen overrides
   ============================================================ */

/* iPhone notch / Android gesture-bar safe areas */
.nav__inner {
  padding-top: max(0px, env(safe-area-inset-top));
  padding-left: max(clamp(20px, 4vw, 56px), env(safe-area-inset-left));
  padding-right: max(clamp(20px, 4vw, 56px), env(safe-area-inset-right));
}
.footer { padding-bottom: max(32px, env(safe-area-inset-bottom)); }

/* Prevent iOS Safari auto-zoom on input focus (requires font-size >= 16px) */
@media (max-width: 640px) {
  .cta__form input,
  .cta__form select,
  .cta__form textarea,
  .footer__news input {
    font-size: 16px;
  }
}

/* Tablet (768-1024px) — tighten hero, give breathing room */
@media (max-width: 1024px) {
  section { padding: clamp(64px, 10vw, 110px) 0; }
  .hero__title { max-width: 16ch; }
}

/* Mobile-large (≤640px) */
@media (max-width: 640px) {
  .hero { padding: 100px 0 60px; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 3.6rem); }
  .hero__sub { font-size: 1rem; max-width: 92%; }
  .hero__scroll { display: none; } /* save vertical space on mobile */

  .section-head { margin-bottom: 48px; }
  .section-head p { font-size: 0.95rem; }

  .testi blockquote { font-size: 1.2rem; line-height: 1.4; }
  .testi__by { gap: 12px; }

  .price { padding: 32px 24px; }
  .price__amt { font-size: 2.2rem; }

  .cta__inner > p { margin-bottom: 32px; }

  .footer { padding-top: 60px; }
}

/* Mobile-small (≤480px) — extra tightening */
@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }

  .nav__inner { padding: 12px 18px; }
  .nav.is-scrolled .nav__inner { padding: 10px 18px; }
  .nav__logo { font-size: 1.1rem; }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }
  .hero__cta .btn { width: 100%; padding: 16px 24px; }

  .eyebrow { font-size: 11px; letter-spacing: 0.2em; }
  .eyebrow::before { width: 20px; }

  .trust__track { gap: 36px; }
  .trust__track span { font-size: 0.95rem; }

  .card-work__overlay { bottom: 16px; left: 16px; right: 16px; }
  .card-work__overlay h3 { font-size: 1.2rem; }

  .glass-card { padding: 28px 22px; }
  .glass-card__num { font-size: 1.8rem; margin-bottom: 18px; }

  .timeline li { padding-left: 64px; }
  .timeline__num { width: 48px; height: 48px; font-size: 1rem; }

  .stats__grid { gap: 32px 16px; }
  .stats__num { font-size: 2.6rem; }
  .stats__item p { font-size: 0.82rem; }

  .showcase__stage { height: clamp(300px, 80vw, 400px); }
  .showcase__card { width: clamp(170px, 50vw, 240px); height: clamp(255px, 75vw, 360px); }
  .showcase__nav { width: 40px; height: 40px; }

  .price-grid { gap: 16px; }
  .price__amt { font-size: 2rem; }

  .footer__grid { gap: 32px; margin-bottom: 48px; }
  .footer__base { font-size: 11px; }
}

/* Mobile-tiny (≤360px) — last-resort */
@media (max-width: 360px) {
  .hero__title { font-size: clamp(1.9rem, 10vw, 2.6rem); }
  h2 { font-size: 1.8rem; }
  .nav__logo { font-size: 1rem; }
  .nav__logo span:last-child { display: none; } /* hide wordmark, keep mark */
}

/* Touch devices — disable hover-only effects */
@media (hover: none) {
  .card-work:hover { transform: none; }
  .card-work__overlay { transform: translateY(0); opacity: 1; }
  .glass-card:hover, .price:hover { transform: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], [data-split] .char { opacity: 1; transform: none; }
  .hero__slide.is-active { transform: none; }
}
