/* ============================================================
   LOMO STUDIO — main.css
   Design System · Components · Sections · Animations
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --bg:          #050505;
  --bg-alt:      #0a0a0a;
  --surface:     #111111;
  --surface-2:   #161616;
  --text:        #f3f3f3;
  --muted:       #888;
  --muted-2:     #555;
  --line:        rgba(255,255,255,.09);
  --line-2:      rgba(255,255,255,.05);
  --accent:      #F7B035;
  --accent-dim:  rgba(247,176,53,.13);
  --accent-glow: rgba(247,176,53,.4);
  --white:       #ffffff;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Manrope', sans-serif;

  --container:   1400px;
  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-full: 999px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}

body.lomo-no-scroll { overflow: hidden; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .lomo-cursor, .lomo-cursor-dot { display: none !important; }
}

/* ── FOCUS ────────────────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── CUSTOM CURSOR ────────────────────────────────────────── */
.lomo-cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-out-expo),
              height .35s var(--ease-out-expo),
              border-color .25s ease,
              background .25s ease,
              opacity .25s ease;
  mix-blend-mode: difference;
}

.lomo-cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .08s ease;
  mix-blend-mode: difference;
}

body:has(a:hover) .lomo-cursor,
body:has(button:hover) .lomo-cursor {
  width: 60px;
  height: 60px;
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ── LAYOUT UTILITIES ─────────────────────────────────────── */
.lomo-container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.lomo-main { padding-top: 0; }
.lomo-view { display: none; }
.lomo-view.is-active { display: block; }
.lomo-center { text-align: center; }

/* Section label pill */
.lomo-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .38em;
  color: var(--muted);
  margin-bottom: 28px;
}

.lomo-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out-expo),
              transform .8s var(--ease-out-expo);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}
[data-reveal="left"].is-visible {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(40px);
}
[data-reveal="right"].is-visible {
  transform: translateX(0);
}

[data-reveal="scale"] {
  transform: scale(.94);
}
[data-reveal="scale"].is-visible {
  transform: scale(1);
}

/* Stagger children */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out-expo),
              transform .7s var(--ease-out-expo);
}

[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 90ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 180ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 270ms; }
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.lomo-nav-wrap {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: all .5s var(--ease-out-expo);
  padding: 28px 0;
}

.lomo-nav-wrap.is-scrolled {
  background: rgba(5,5,5,.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.lomo-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.lomo-logo img { display: block; max-width: 100%; }

.lomo-logo {
  border: 0;
  background: transparent;
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  line-height: 1;
  font-family: var(--font-display);
  transition: opacity .2s ease;
}
.lomo-logo:hover { opacity: .75; }

.lomo-logo span {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
}

.lomo-logo small {
  font-size: 9px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .5em;
  opacity: .45;
  font-weight: 600;
}

/* Desktop nav */
.lomo-nav-desktop { display: flex; align-items: center; gap: 8px; }

.lomo-nav-desktop button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.65);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: color .2s ease, background .2s ease;
}

.lomo-nav-desktop button:hover {
  color: var(--white);
  background: rgba(255,255,255,.06);
}

.lomo-nav-cta {
  background: var(--white) !important;
  color: #000 !important;
  padding: 12px 26px !important;
  margin-left: 8px;
  font-weight: 800 !important;
}

.lomo-nav-cta:hover {
  background: var(--accent) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.lomo-menu-btn {
  display: none;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background .2s ease;
}
.lomo-menu-btn:hover { background: rgba(255,255,255,.13); }
.lomo-menu-btn span { width: 18px; height: 1.5px; background: var(--white); display: block; border-radius: 2px; }

/* Mobile menu */
.lomo-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #000;
  transform: translateY(-100%);
  transition: transform .65s var(--ease-out-expo);
}

.lomo-mobile-menu.is-open { transform: translateY(0); }

.lomo-mobile-menu-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 48px;
}

.lomo-mobile-menu-inner button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.55);
  text-align: left;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 10vw, 4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  cursor: pointer;
  transition: color .2s ease;
  line-height: 1.1;
}

.lomo-mobile-menu-inner button:hover { color: var(--white); }

.lomo-mobile-cta {
  margin-top: 24px !important;
  color: var(--accent) !important;
  font-size: clamp(2.2rem, 10vw, 4rem) !important;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.lomo-btn-primary,
.lomo-btn-ghost,
.lomo-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-full);
  padding: 18px 36px;
  font-family: var(--font-body);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  cursor: pointer;
  transition: background .25s ease,
              color .25s ease,
              transform .25s var(--ease-out-expo),
              box-shadow .25s ease;
  text-decoration: none;
}

.lomo-btn-primary {
  background: var(--accent);
  color: var(--white);
}
.lomo-btn-primary:hover {
  background: var(--white);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(234,88,12,.3);
}

.lomo-btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.lomo-btn-ghost:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.04);
  transform: translateY(-2px);
}

/* Small ghost button variant */
.lomo-btn-sm {
  padding: 12px 22px;
  font-size: .82rem;
  letter-spacing: .1em;
}

/* ── HERO ─────────────────────────────────────────────────── */
.lomo-hero {
  position: relative;
  width: 100%;
  line-height: 0;
}

.lomo-hero--video {
  min-height: 0;
  padding: 0;
  background: #000;
}

/* Hero statement — text section below the video */
.lomo-hero--statement {
  background: #fff;
  padding: clamp(80px, 12vw, 148px) 0;
  line-height: normal;
  overflow-x: hidden;
}

.lomo-hero--statement h1 { color: #111; }
.lomo-hero--statement h1 strong { color: var(--accent); }
.lomo-hero--statement p { color: #555; }
.lomo-hero.lomo-hero--statement p span { color: #111; font-weight: 800; }

/* Badge on white background */
.lomo-hero--statement .lomo-badge {
  border-color: rgba(0,0,0,.15);
  background: rgba(0,0,0,.04);
  color: rgba(0,0,0,.5);
}

/* Ghost button on white background */
.lomo-hero--statement .lomo-btn-ghost {
  color: #111;
  border-color: rgba(0,0,0,.25);
}
.lomo-hero--statement .lomo-btn-ghost:hover {
  border-color: rgba(0,0,0,.5);
  background: rgba(0,0,0,.04);
}

/* Hero — static image background modifier */
.lomo-hero--image {
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  min-height: 100svh;
}

.lomo-hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.lomo-hero--image > * {
  position: relative;
  z-index: 1;
}

.lomo-hero-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: cover;
}

.lomo-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-full);
  padding: 8px 16px 8px 12px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
}

.lomo-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--accent-glow); }
  70%  { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.lomo-hero h1 {
  font-family: var(--font-display);
  margin: 0 0 30px;
  font-size: clamp(3.4rem, 10.5vw, 9rem);
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: -.05em;
  font-weight: 800;
}

.lomo-hero h1 em { font-style: italic; }
.lomo-hero h1 strong { color: var(--accent); font-weight: 800; }

.lomo-hero p {
  margin: 0;
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.55;
}

.lomo-hero p span {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-weight: 600;
}

.lomo-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ── MARQUEE ──────────────────────────────────────────────── */
.lomo-marquee {
  background: var(--accent);
  border-top: 1px solid rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(0,0,0,.2);
  overflow: hidden;
  padding: 22px 0;
}

.lomo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 22px;
  animation: marquee 38s linear infinite;
}

@keyframes marquee { to { transform: translateX(-50%); } }

.lomo-marquee span {
  color: rgba(0,0,0,.85);
  text-transform: uppercase;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -.03em;
  font-weight: 800;
  white-space: nowrap;
}

.lomo-marquee i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  display: inline-block;
  flex-shrink: 0;
}

/* ── PORTFOLIO ────────────────────────────────────────────── */
.lomo-main--archive { padding-top: clamp(90px, 12vw, 130px); }

.lomo-portfolio {
  padding: clamp(80px, 13vw, 160px) 0;
  background: var(--bg);
}

.lomo-portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.lomo-portfolio-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: .88;
  text-transform: uppercase;
  letter-spacing: -.05em;
  margin: 0;
}

.lomo-portfolio-head h2 em { font-style: italic; color: var(--accent); }

.lomo-portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: flex-end;
  flex-shrink: 0;
}

.lomo-filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all .25s ease;
}

.lomo-filter-btn:hover,
.lomo-filter-btn.is-active {
  background: var(--white);
  color: #000;
  border-color: var(--white);
}

/* Asymmetric masonry grid */
.lomo-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 16px;
}

.lomo-work-card {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

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

/* Repeating 8-card asymmetric pattern for unlimited projects */
.lomo-work-card:nth-child(8n + 1) { grid-column: span 7; grid-row: span 6; }
.lomo-work-card:nth-child(8n + 2) { grid-column: span 5; grid-row: span 6; }
.lomo-work-card:nth-child(8n + 3) { grid-column: span 4; grid-row: span 5; }
.lomo-work-card:nth-child(8n + 4) { grid-column: span 8; grid-row: span 5; }
.lomo-work-card:nth-child(8n + 5) { grid-column: span 5; grid-row: span 5; }
.lomo-work-card:nth-child(8n + 6) { grid-column: span 7; grid-row: span 5; }
.lomo-work-card:nth-child(8n + 7) { grid-column: span 6; grid-row: span 5; }
.lomo-work-card:nth-child(8n + 8) { grid-column: span 6; grid-row: span 5; }

.lomo-work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.7);
  transition: transform .9s var(--ease-out-expo),
              filter .7s ease;
}

.lomo-work-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.25) 50%, transparent 100%);
  transition: opacity .4s ease;
  z-index: 1;
}

.lomo-work-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.lomo-work-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  z-index: 2;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 4.2rem);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: .82;
  color: rgba(247,176,53,.96);
  text-shadow: 0 4px 18px rgba(0,0,0,.35);
  transform: translateY(4px);
  transition: transform .45s var(--ease-out-expo), color .3s ease;
}

.lomo-work-card:hover .lomo-work-overlay {
  transform: translateY(0);
  color: #ffd071;
}

.lomo-work-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform .4s var(--ease-out-expo);
}

.lomo-work-card:hover .lomo-work-card-info {
  transform: translateY(0);
}

.lomo-work-cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .35em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(234,88,12,.25);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  margin-bottom: 10px;
}

.lomo-work-card-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.lomo-work-card-info p {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  font-weight: 500;
  max-width: 92%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lomo-work-card[data-category].is-hidden {
  display: none;
}

.lomo-portfolio-empty {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--muted);
  text-align: center;
  font-size: .95rem;
}

.lomo-portfolio-cta {
  text-align: center;
  margin-top: 64px;
}

/* ── PROJECT MODAL (Preview) ──────────────────────────────── */
.lomo-project-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.lomo-project-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lomo-project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lomo-project-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 30px));
  max-height: calc(100vh - 30px);
  margin: 15px auto;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #090909;
  padding: 22px;
}

.lomo-project-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .6);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lomo-project-modal-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 4px 0 8px;
}

.lomo-project-modal-chip {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-full);
  border: 1px solid rgba(247,176,53,.35);
  background: rgba(247,176,53,.12);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .66rem;
  font-weight: 800;
  padding: 6px 10px;
}

.lomo-project-modal-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.lomo-project-modal-text {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.lomo-project-modal-video {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.lomo-project-modal-video iframe,
.lomo-project-modal-video video {
  width: 100%;
  display: block;
  border: 0;
  aspect-ratio: 16 / 9;
}

.lomo-project-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lomo-project-modal-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

/* ── ABOUT STUDIO ─────────────────────────────────────────── */
.lomo-about-studio {
  padding: clamp(80px, 12vw, 148px) 0;
  background: #fff;
  color: #111;
}

.lomo-about-studio .lomo-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: 10px;
  font-weight: 800;
  margin: 0 0 20px;
}

.lomo-about-studio-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.lomo-about-studio-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: -.04em;
  margin: 0 0 clamp(24px, 3vw, 36px);
  color: #111;
}

.lomo-about-studio-text h2 em {
  font-style: italic;
  color: var(--accent);
}

.lomo-about-studio-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1rem;
  max-width: 500px;
}

.lomo-about-studio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #ddd;
  border: 2px solid #ddd;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lomo-stat-card {
  background: #111;
  color: #fff;
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lomo-stat-card strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.lomo-stat-card span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

@media (max-width: 768px) {
  .lomo-about-studio-inner {
    grid-template-columns: 1fr;
  }
  .lomo-about-studio-text p {
    max-width: 100%;
  }
}

/* ── EXPERTISE (Categories) ───────────────────────────────── */
.lomo-expertise {
  padding: clamp(80px, 13vw, 160px) 0;
  background: var(--bg-alt);
}

.lomo-expertise-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}

.lomo-expertise-head > div p {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: 10px;
  font-weight: 800;
  margin: 0 0 16px;
}

.lomo-expertise-head h2 {
  font-family: var(--font-display);
  margin: 0;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -.05em;
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: .88;
  font-weight: 800;
}

.lomo-expertise-head > p {
  max-width: 260px;
  margin: 0;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .2em;
  line-height: 1.8;
  font-size: 10px;
  font-weight: 600;
}

.lomo-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lomo-category-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 500px;
  position: relative;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: var(--accent);
  transition: border-color .3s ease;
}

.lomo-category-card:hover { border-color: rgba(255,255,255,.2); }

.lomo-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform .8s var(--ease-out-expo), filter .7s ease;
}

.lomo-category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 45%, transparent 100%);
}

.lomo-category-card div {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}

.lomo-category-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.25vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-style: italic;
  font-weight: 800;
  line-height: .9;
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 66px);
  overflow-wrap: anywhere;
  word-break: break-word;
  color: var(--accent);
  text-shadow: 0 4px 16px rgba(0,0,0,.35);
}

.lomo-category-card span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: grid;
  place-items: center;
  font-size: 24px;
  background: rgba(255,255,255,.06);
  flex-shrink: 0;
  transition: all .3s ease;
}

.lomo-category-card:hover img { filter: grayscale(0); transform: scale(1.06); }
.lomo-category-card:hover span { background: var(--accent); border-color: var(--accent); }
.lomo-category-card:hover h3 { color: #ffd071; }

.lomo-center { margin-top: 52px; }

/* ── ABOUT US (TEAM) ───────────────────────────────────────── */
.lomo-team {
  padding: clamp(96px, 13vw, 164px) 0;
  background: var(--bg-alt);
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lomo-team-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 68px;
}

.lomo-team-head .lomo-label {
  color: var(--muted);
}

.lomo-team-head .lomo-label::before {
  background: var(--accent);
}

.lomo-team-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: .86;
  margin: 0;
}

.lomo-team-head h2 em {
  font-style: italic;
  color: var(--accent);
}

.lomo-team-head > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.lomo-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.lomo-team-card {
  display: grid;
  grid-template-columns: minmax(180px, 38%) 1fr;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  transition: transform .35s var(--ease-out-expo), border-color .3s ease, box-shadow .35s ease;
}

.lomo-team-photo {
  position: relative;
  min-height: 100%;
  background: #0b0b0e;
  overflow: hidden;
}

.lomo-team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .42), rgba(0, 0, 0, .05) 45%, transparent);
  pointer-events: none;
  z-index: 1;
  transition: opacity .35s ease;
}

.lomo-team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1);
  transition: transform .75s var(--ease-out-expo), filter .45s ease;
}

.lomo-team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 800;
  color: var(--accent);
  background:
    radial-gradient(circle at 30% 20%, rgba(247,176,53,.22), transparent 42%),
    linear-gradient(150deg, #101010, #0a0a0a 60%);
  text-transform: uppercase;
}

.lomo-team-card-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform .35s var(--ease-out-expo);
}

.lomo-team-card-body h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.05;
}

.lomo-team-role {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 800;
}

.lomo-team-bio {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.76;
}

.lomo-team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(247,176,53,.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .34);
}

.lomo-team-card:hover .lomo-team-photo img {
  transform: scale(1.07);
  filter: grayscale(1) contrast(1.18);
}

.lomo-team-card:hover .lomo-team-photo::after {
  opacity: .7;
}

.lomo-team-card:hover .lomo-team-card-body {
  transform: translateY(-2px);
}

/* ── WORKFLOW ─────────────────────────────────────────────── */
.lomo-workflow {
  background: var(--bg);
  color: var(--text);
  padding: clamp(80px, 13vw, 160px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.lomo-workflow::before {
  content: '';
  position: absolute;
  width: clamp(280px, 34vw, 560px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  top: -20%;
  right: -8%;
  background: radial-gradient(circle, rgba(247,176,53,.14) 0%, rgba(247,176,53,0) 68%);
  filter: blur(4px);
  pointer-events: none;
  animation: lomo-workflow-glow 16s ease-in-out infinite;
}

@keyframes lomo-workflow-glow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .42; }
  50% { transform: translate3d(-28px, 22px, 0) scale(1.08); opacity: .75; }
}

.lomo-workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lomo-workflow h2 {
  font-family: var(--font-display);
  margin: 0 0 24px;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -.05em;
  line-height: .86;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 800;
}

.lomo-workflow > .lomo-container > .lomo-workflow-grid > div:first-child > p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 380px;
}

.lomo-workflow u {
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  color: var(--text);
}

.lomo-steps article {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
  align-items: flex-start;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  background: linear-gradient(120deg, rgba(255,255,255,.015), rgba(255,255,255,.005));
  transition: transform .35s var(--ease-out-expo), border-color .35s ease, background .35s ease;
}

.lomo-steps article:last-child { margin-bottom: 0; }

.lomo-steps {
  position: relative;
}

.lomo-steps::before,
.lomo-steps::after {
  display: none;
}

.lomo-workflow.is-live .lomo-steps::after {
  transform: none;
}

.lomo-steps b {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0f0f0f;
  border: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: color .3s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease, transform .35s var(--ease-out-expo);
}

.lomo-steps b::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(247,176,53,.26);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .3s ease, transform .4s var(--ease-out-expo);
}

.lomo-steps h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  text-transform: uppercase;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -.03em;
  font-weight: 700;
  padding-top: 10px;
  transition: color .25s ease, transform .35s var(--ease-out-expo);
}

.lomo-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  transition: color .25s ease;
}

.lomo-steps article:hover,
.lomo-steps article.is-active {
  border-color: rgba(247,176,53,.35);
  background: linear-gradient(120deg, rgba(247,176,53,.1), rgba(247,176,53,.02));
  transform: translateX(8px);
}

.lomo-steps article:hover b,
.lomo-steps article.is-active b {
  color: var(--accent);
  border-color: rgba(247,176,53,.56);
  background: rgba(247,176,53,.14);
  box-shadow: 0 0 0 4px rgba(247,176,53,.08);
  transform: scale(1.03);
}

.lomo-steps article:hover b::after,
.lomo-steps article.is-active b::after {
  opacity: 1;
  transform: scale(1);
}

.lomo-steps article:hover h3,
.lomo-steps article.is-active h3 {
  color: var(--accent);
  transform: translateX(4px);
}

.lomo-steps article:hover p,
.lomo-steps article.is-active p {
  color: rgba(255,255,255,.8);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.lomo-testimonials {
  padding: clamp(80px, 13vw, 160px) 0;
  background: var(--bg-alt);
  overflow: hidden;
}

.lomo-testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.lomo-testimonials-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: .88;
  margin: 0;
}

.lomo-testimonials-head h2 em { font-style: italic; color: var(--accent); }

.lomo-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lomo-testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: border-color .3s ease, transform .4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.lomo-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out-expo);
}

.lomo-testimonial-card:hover {
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}

.lomo-testimonial-card:hover::before { transform: scaleX(1); }

.lomo-testimonial-stars {
  display: flex;
  gap: 4px;
}

.lomo-testimonial-stars span {
  color: var(--accent);
  font-size: 14px;
}

.lomo-testimonial-quote {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255,255,255,.82);
  flex: 1;
}

.lomo-testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: .5;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
  font-weight: 800;
}

.lomo-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.lomo-testimonial-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.lomo-testimonial-role {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.lomo-faq {
  padding: clamp(80px, 13vw, 160px) 0;
  background: var(--bg);
}

.lomo-faq-wrap { max-width: 960px; }

.lomo-faq-head { text-align: center; margin-bottom: 60px; }

.lomo-faq-head h2 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -.04em;
  font-weight: 800;
}

.lomo-faq-head p {
  margin: 12px 0 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
  font-weight: 600;
}

.lomo-faq-item {
  border-bottom: 1px solid var(--line);
}

.lomo-faq-item:first-child { border-top: 1px solid var(--line); }

.lomo-faq-item > button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  cursor: pointer;
  transition: color .2s ease;
}

.lomo-faq-item > button:hover { color: var(--accent); }

.lomo-faq-item > button .lomo-faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: all .35s var(--ease-out-expo);
  flex-shrink: 0;
  color: var(--muted);
  font-style: normal;
}

.lomo-faq-item.is-active > button .lomo-faq-icon {
  transform: rotate(180deg);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.lomo-faq-item > div {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s var(--ease-out-expo),
              opacity .4s ease,
              padding .35s ease;
}

.lomo-faq-item.is-active > div {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 28px;
}

.lomo-faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.lomo-contact {
  padding: clamp(80px, 13vw, 160px) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.lomo-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lomo-contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: .86;
  margin: 0 0 28px;
}

.lomo-contact-left h2 em {
  font-style: italic;
  color: var(--accent);
}

.lomo-contact-left > p {
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 420px;
}

.lomo-contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lomo-contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lomo-contact-detail-item span {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .35em;
  color: var(--muted-2);
}

.lomo-contact-detail-item a,
.lomo-contact-detail-item p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  margin: 0;
  transition: color .2s ease;
}

.lomo-contact-detail-item a:hover { color: var(--accent); }

.lomo-contact-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted-2);
  margin-top: 40px;
}

.lomo-contact-note::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(34,197,94,.4);
}

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  70%  { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* Form */
.lomo-form-wrap { width: 100%; }

.lomo-booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lomo-form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.lomo-form-field label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--muted);
}

.lomo-form-field input,
.lomo-form-field textarea,
.lomo-form-field select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 18px;
  transition: border-color .25s ease, background .25s ease;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.lomo-form-field input:focus,
.lomo-form-field textarea:focus,
.lomo-form-field select:focus {
  border-color: var(--accent);
  background: var(--surface-2);
  outline: none;
}

.lomo-form-field input::placeholder,
.lomo-form-field textarea::placeholder {
  color: var(--muted-2);
}

.lomo-form-field textarea { min-height: 130px; }

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

.lomo-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-full);
  padding: 20px 40px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  margin-top: 8px;
  transition: background .25s ease,
              transform .3s var(--ease-out-expo),
              box-shadow .3s ease;
  width: 100%;
}

.lomo-form-submit:hover {
  background: var(--white);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(234,88,12,.3);
}

.lomo-form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.lomo-form-message {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.lomo-form-message.success {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  color: #4ade80;
}

.lomo-form-message.error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  color: #f87171;
}

.lomo-form-privacy {
  font-size: .78rem;
  color: var(--muted-2);
  text-align: center;
  line-height: 1.5;
  margin-top: 4px;
}

/* ── SERVICES PAGE ────────────────────────────────────────── */
.lomo-services-page {
  min-height: calc(100vh - 160px);
  padding: 56px 0 80px;
}

.lomo-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 36px;
  transition: color .2s ease;
  padding: 0;
}

.lomo-back:hover { color: var(--white); }

.lomo-services-page h1 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.5rem);
  text-transform: uppercase;
  letter-spacing: -.05em;
  font-style: italic;
  line-height: .86;
  font-weight: 800;
}

.lomo-services-page h1 span { color: var(--accent); }

.lomo-services-page > .lomo-container > p {
  margin: 24px 0 52px;
  color: var(--muted);
  max-width: 700px;
  font-size: clamp(.95rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.lomo-service-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lomo-service-columns > article {
  padding: 28px;
  border-right: 1px solid var(--line);
  background: var(--bg);
}

.lomo-service-columns > article:last-child { border-right: 0; }

.lomo-service-cat {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  margin-bottom: 24px;
}

.lomo-service-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: .6s var(--ease-out-expo);
}

.lomo-service-cat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  transition: .4s ease;
}

.lomo-service-cat h2 {
  position: absolute;
  left: 18px;
  bottom: 14px;
  margin: 0;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.9rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -.03em;
  font-weight: 800;
}

.lomo-service-columns > article:hover .lomo-service-cat img { filter: grayscale(0); transform: scale(1.06); }
.lomo-service-columns > article:hover .lomo-service-cat::after { background: rgba(0,0,0,.1); }

.lomo-service-item {
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.lomo-service-item:last-of-type { border: 0; padding-bottom: 0; }

.lomo-service-item h3 {
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: -.01em;
  font-weight: 700;
}

.lomo-service-item h3 span {
  color: var(--white);
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1;
  white-space: nowrap;
}

.lomo-service-item p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: .9rem;
}

.lomo-service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.lomo-service-item small {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 9px;
  font-weight: 800;
}

.lomo-request-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}

.lomo-request-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.lomo-footer {
  border-top: 1px solid var(--line);
  padding: clamp(80px, 12vw, 160px) 0 44px;
  background: var(--bg);
}

.lomo-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 50px;
  margin-bottom: 100px;
}

.lomo-footer-grid > * {
  min-width: 0;
}

.lomo-footer h2 {
  font-family: var(--font-display);
  margin: 0 0 36px;
  text-transform: uppercase;
  font-style: italic;
  line-height: .82;
  letter-spacing: -.05em;
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-weight: 800;
}

.lomo-footer h2 span { color: var(--accent); }

.lomo-footer-cta {
  background: var(--white);
  color: #000;
  border: 0;
}

.lomo-footer-cta:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.lomo-footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.lomo-footer-label {
  margin: 0 0 10px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 9px;
  font-weight: 800;
}

.lomo-email {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color .2s ease;
}

.lomo-email:hover { color: var(--accent); }

.lomo-location {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 8px;
}

.lomo-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 40px;
}

.lomo-footer-cols a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color .2s ease;
}

.lomo-footer-cols a:hover { color: var(--accent); }

.lomo-philosophy {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.5;
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.lomo-copyright {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.lomo-logo-small span { font-size: 26px; }
.lomo-logo-small small { font-size: 7px; }

.lomo-copyright p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: 9px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ── SINGLE PROJECT ────────────────────────────────────────── */
.lomo-single-project-main {
  padding: clamp(120px, 14vw, 180px) 0 clamp(72px, 10vw, 120px);
  background: var(--bg);
}

.lomo-single-project-wrap {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
}

.lomo-single-project-image {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
}

.lomo-single-project-image img {
  display: block;
  width: 100%;
  height: auto;
}

.lomo-single-project-terms {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 800;
}

.lomo-single-project-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .92;
  font-size: clamp(2rem, 7vw, 4.2rem);
}

.lomo-single-project-excerpt {
  margin: 0 0 22px;
  color: var(--text);
  opacity: .9;
  font-size: 1.15rem;
  line-height: 1.7;
}

.lomo-project-showcase {
  margin: 0 0 26px;
  display: grid;
  gap: 16px;
}

.lomo-project-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lomo-project-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid rgba(247, 176, 53, .45);
  background: rgba(247, 176, 53, .14);
  color: #f7b035;
  padding: 8px 14px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 800;
}

.lomo-project-video {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.lomo-project-video iframe,
.lomo-project-video video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  border: 0;
}

.lomo-project-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lomo-project-media-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}

.lomo-project-media-item img,
.lomo-project-media-item video,
.lomo-project-media-item iframe {
  width: 100%;
  display: block;
  border: 0;
}

.lomo-project-media-item img,
.lomo-project-media-item video {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lomo-project-media-item iframe {
  aspect-ratio: 16 / 9;
}

.lomo-project-media-item a {
  display: block;
  padding: 16px 18px;
  color: var(--accent);
  text-decoration: none;
  font-size: .84rem;
  letter-spacing: .04em;
  word-break: break-word;
}

.lomo-single-project-content {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.lomo-single-project-content > * {
  margin: 0 0 18px;
}

.lomo-single-project-content h2,
.lomo-single-project-content h3,
.lomo-single-project-content h4 {
  color: var(--text);
  margin-top: 26px;
  margin-bottom: 12px;
}

.lomo-single-project-back {
  margin: 30px 0 0;
}

.lomo-single-project-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 12px 22px;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  font-size: .8rem;
  transition: all .2s ease;
}

.lomo-single-project-back a:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .06);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .lomo-hero-bg { width: 55%; }
  .lomo-service-columns { grid-template-columns: 1fr; }
  .lomo-service-columns > article { border-right: 0; border-bottom: 1px solid var(--line); }
  .lomo-service-columns > article:last-child { border-bottom: 0; }
  .lomo-testimonials-grid { grid-template-columns: 1fr 1fr; }

  .lomo-portfolio-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 70px;
  }
  .lomo-work-card:nth-child(8n + 1) { grid-column: span 6; grid-row: span 5; }
  .lomo-work-card:nth-child(8n + 2) { grid-column: span 3; grid-row: span 5; }
  .lomo-work-card:nth-child(8n + 3) { grid-column: span 3; grid-row: span 5; }
  .lomo-work-card:nth-child(8n + 4) { grid-column: span 4; grid-row: span 5; }
  .lomo-work-card:nth-child(8n + 5) { grid-column: span 2; grid-row: span 5; }
  .lomo-work-card:nth-child(8n + 6) { grid-column: span 6; grid-row: span 4; }
  .lomo-work-card:nth-child(8n + 7) { grid-column: span 3; grid-row: span 4; }
  .lomo-work-card:nth-child(8n + 8) { grid-column: span 3; grid-row: span 4; }
  .lomo-footer-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 980px) {
  .lomo-nav-desktop { display: none; }
  .lomo-menu-btn { display: inline-flex; }
  .lomo-hero-bg { width: 100%; opacity: .28; }
  .lomo-category-grid { grid-template-columns: 1fr; }
  .lomo-category-card { min-height: 380px; }
  .lomo-team-head { flex-direction: column; align-items: flex-start; }
  .lomo-team-grid { grid-template-columns: 1fr; }
  .lomo-team-card { grid-template-columns: minmax(180px, 34%) 1fr; }
  .lomo-workflow-grid { grid-template-columns: 1fr; gap: 48px; }
  .lomo-steps::before,
  .lomo-steps::after { left: 23px; }
  .lomo-steps article { transform: none; }
  .lomo-contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .lomo-footer-grid { grid-template-columns: 1fr; }
  .lomo-footer-cols { grid-template-columns: 1fr 1fr; }
  .lomo-portfolio-head { flex-direction: column; align-items: flex-start; }
  .lomo-testimonials-head { flex-direction: column; align-items: flex-start; }
  .lomo-testimonials-grid { grid-template-columns: 1fr; }
  .lomo-main { padding-top: 0; }
  .lomo-cursor, .lomo-cursor-dot { display: none; }
}

@media (max-width: 768px) {
  .lomo-container { width: min(var(--container), calc(100% - 28px)); }
  .lomo-nav-wrap { padding: 14px 0; }
  .lomo-nav-wrap.is-scrolled { padding: 10px 0; }
  .lomo-logo span { font-size: 32px; }
  .lomo-hero { min-height: 85vh; padding: 40px 0; }
  .lomo-hero--video { min-height: 0; padding: 0; }
  .lomo-hero--video { margin-top: 68px; }
  .lomo-hero--statement { min-height: 0; padding: 60px 0; }
  .lomo-hero--statement h1 { font-size: clamp(2rem, 8.5vw, 3.4rem); }
  .lomo-expertise-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .lomo-expertise-head > p { max-width: 100%; }
  .lomo-team-photo img { object-position: top; }
  .lomo-marquee-track { animation-duration: 22s; }
  .lomo-workflow::before { opacity: .45; right: -14%; }
  .lomo-steps::before,
  .lomo-steps::after { display: none; }
  .lomo-steps article { padding: 14px 12px; border-color: var(--line); background: var(--surface); }
  .lomo-steps article:hover,
  .lomo-steps article.is-active { transform: none; border-color: rgba(247,176,53,.4); background: linear-gradient(120deg, rgba(247,176,53,.14), rgba(247,176,53,.04)); }
  .lomo-team-card { grid-template-columns: 1fr; min-height: 0; }
  .lomo-team-photo { aspect-ratio: 16 / 12; min-height: 0; }
  .lomo-team-card-body { padding: 20px; }
  .lomo-portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .lomo-work-card { grid-column: span 1 !important; grid-row: span 1 !important; height: 280px; }
  .lomo-work-overlay {
    left: 14px;
    right: 14px;
    bottom: 10px;
    font-size: clamp(1.4rem, 10vw, 2.6rem);
  }
  .lomo-single-project-wrap { width: min(940px, calc(100% - 28px)); }
  .lomo-project-media-grid { grid-template-columns: 1fr; }
  .lomo-single-project-content { font-size: 1rem; line-height: 1.75; }
  .lomo-project-modal-dialog { width: calc(100% - 20px); max-height: calc(100vh - 20px); margin: 10px auto; padding: 16px; }
  .lomo-project-modal-gallery { grid-template-columns: 1fr; }
  .lomo-form-row { grid-template-columns: 1fr; }
  .lomo-copyright { flex-direction: column; }
  .lomo-portfolio-filters { gap: 6px; }
}
