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

    :root {
      --black:   #080808;
      --white:   #f0ebe2;
      --gold:    #b8956a;
      --gold-lt: #d4b48c;
      --mid:     #141414;
      --dim:     #6e6860;
      --line:    rgba(240,235,226,0.08);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      line-height: 1.6;
      cursor: none;
      overflow-x: hidden;
    }

    #cursor {
      position: fixed; top: 0; left: 0; z-index: 9999;
      width: 10px; height: 10px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%,-50%);
      transition: width .2s, height .2s, opacity .2s;
    }
    #cursor-ring {
      position: fixed; top: 0; left: 0; z-index: 9998;
      width: 36px; height: 36px;
      border: 1px solid rgba(184,149,106,.45);
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%,-50%);
      transition: transform .12s ease, width .2s, height .2s;
    }
    body:has(a:hover) #cursor { width: 6px; height: 6px; }
    body:has(a:hover) #cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }

    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 9997;
      pointer-events: none;
      opacity: .032;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }

    .topo-overlay {
      position: absolute;
      inset: 0; width: 100%; height: 100%;
      pointer-events: none;
      overflow: visible;
      z-index: 0;
    }

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 28px 56px;
      background: rgba(8,8,8,0.97);
      overflow: hidden;
    }
    nav::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 1px;
      background: var(--line);
    }
    .nav-topo {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none; z-index: 0;
    }
    .nav-logo, .nav-links, .nav-contact { position: relative; z-index: 1; }
    .nav-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 18px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links {
      display: flex; gap: 40px; list-style: none;
      position: absolute; left: 50%; transform: translateX(-50%);
    }
    .nav-links a {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(240,235,226,0.65);
      text-decoration: none;
      transition: color .3s;
    }
    .nav-links a:hover { color: var(--white); }

    #hero {
      min-height: auto;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 184px 56px 20px;
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 70% at 70% 40%, rgba(184,149,106,.06) 0%, transparent 70%);
    }
    .hero-title-main {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(38px, 5.5vw, 76px);
      letter-spacing: .14em;
      text-transform: uppercase;
      line-height: .92;
      text-align: center;
      margin-bottom: 0;
      position: relative; z-index: 1;
      background: linear-gradient(
        105deg,
        var(--gold) 0%,
        #c8b99a 18%,
        var(--white) 38%,
        #fffdf9 50%,
        var(--white) 62%,
        #c8b99a 82%,
        var(--gold) 100%
      );
      background-size: 280% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation:
        titleReveal 1.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both,
        shimmer     5s   1.6s ease-in-out infinite;
    }
    .hero-divider {
      width: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 22px auto 20px;
      position: relative; z-index: 1;
      animation: lineExpand 0.9s 1.0s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .hero-subtitle {
      font-size: 10px;
      letter-spacing: .45em;
      text-transform: uppercase;
      color: rgba(240,235,226,0.45);
      text-align: center;
      margin-bottom: 44px;
      position: relative; z-index: 1;
      animation: subtitleReveal 1.0s 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    /* ── MARQUEE ── */
    .marquee-wrap {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      overflow: hidden;
      padding: 20px 0;
      background: var(--mid);
    }
    .marquee-inner {
      display: flex;
      width: max-content;
      animation: marquee-scroll 30s linear infinite;
    }
    .marquee-set {
      display: flex;
      flex-shrink: 0;
    }
    .marquee-item {
      display: flex; align-items: center; gap: 48px;
      padding-right: 48px;
      font-size: 11px; letter-spacing: .22em;
      text-transform: uppercase; color: var(--dim);
      white-space: nowrap;
    }
    .marquee-dot {
      width: 5px; height: 5px;
      background: var(--gold); border-radius: 50%; flex-shrink: 0;
    }
    @keyframes marquee-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-25%); }
    }

    section { padding: 72px 56px; }
    .section-label {
      font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 24px;
      display: flex; align-items: center; gap: 16px;
    }
    .section-label::before {
      content: ''; display: block; width: 32px; height: 1px;
      background: var(--gold);
    }

    #services { background: var(--mid); padding-top: 40px; padding-bottom: 40px; }
    .services-head {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 24px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      border: 1px solid var(--line);
    }
    .service-card {
      padding: 48px 36px;
      border-right: 1px solid var(--line);
      position: relative;
      overflow: hidden;
      transition: background .4s;
    }
    .service-card:last-child { border-right: none; }
    .service-card::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(184,149,106,.04) 0%, transparent 60%);
      opacity: 0; transition: opacity .4s;
    }
    .service-card:hover { background: rgba(240,235,226,.02); }
    .service-card:hover::before { opacity: 1; }
    .service-num {
      font-size: 10px; letter-spacing: .2em;
      color: var(--gold); margin-bottom: 32px; display: block;
    }
    .service-icon {
      width: 48px; height: 48px; margin-bottom: 24px;
      opacity: .6;
    }
    .service-name {
      font-family: 'Syne', sans-serif;
      font-size: 22px; font-weight: 500;
      margin-bottom: 16px; line-height: 1.1;
    }
    .service-desc {
      font-size: 13px; line-height: 1.8;
      color: var(--dim); margin-bottom: 32px;
    }
    .service-link {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 10px; letter-spacing: .2em;
      text-transform: uppercase; color: var(--gold);
      text-decoration: none;
    }
    .service-link::after { content: '→'; font-size: 14px; transition: transform .3s; }
    .service-card:hover .service-link::after { transform: translateX(4px); }

    #work { background: var(--black); padding-top: 36px; }
    .work-head {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 20px;
    }
    .work-all {
      font-size: 11px; letter-spacing: .18em;
      text-transform: uppercase; color: var(--gold);
      text-decoration: none;
      display: flex; align-items: center; gap: 10px;
    }
    .work-all::after { content: '→'; font-size: 14px; }
    .work-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 1px;
    }
    .work-card {
      background: var(--black);
      aspect-ratio: 4/3;
      position: relative;
      overflow: hidden;
      display: flex; align-items: flex-end;
    }
    .work-card:first-child { grid-row: 1 / 3; aspect-ratio: unset; }
    .work-bg {
      position: absolute; inset: 0;
      transition: transform .6s ease;
    }
    .work-card:hover .work-bg { transform: scale(1.04); }
    .work-card:nth-child(1) .work-bg { background: linear-gradient(135deg, #111 0%, #1a1610 100%); }
    .work-card:nth-child(2) .work-bg { background: linear-gradient(135deg, #0e0e0e 0%, #161210 100%); }
    .work-card:nth-child(3) .work-bg { background: linear-gradient(135deg, #101010 0%, #141210 100%); }
    .work-card:nth-child(4) .work-bg { background: linear-gradient(135deg, #0c0c0c 0%, #131110 100%); }
    .work-card:nth-child(5) .work-bg { background: linear-gradient(135deg, #0f0f0f 0%, #181410 100%); }
    .work-card::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 70% at 50% 40%, rgba(184,149,106,.05) 0%, transparent 70%);
      z-index: 2;
    }
    .work-info {
      position: relative; z-index: 3;
      padding: 24px 28px; width: 100%;
      background: linear-gradient(to top, rgba(8,8,8,.85) 0%, transparent 100%);
    }
    .work-tag {
      font-size: 9px; letter-spacing: .2em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
    }
    .work-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 500; }
    .work-placeholder {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 56px; color: rgba(240,235,226,.04);
    }

    #philosophy {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; padding: 96px 56px;
      background: var(--mid);
    }
    .phil-quote {
      font-family: 'Syne', sans-serif;
      font-size: clamp(20px, 2.8vw, 36px);
      font-weight: 400; line-height: 1.35;
      max-width: 860px; letter-spacing: -.01em;
    }
    .phil-quote em { font-style: italic; color: var(--gold-lt); }
    .phil-line {
      width: 1px; height: 64px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      margin: 32px 0;
    }

    #contact { text-align: center; padding: 96px 56px 80px; }
    .contact-sup {
      font-size: 10px; letter-spacing: .3em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 32px;
    }
    .contact-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(36px, 5vw, 72px);
      font-weight: 400; line-height: .92;
      letter-spacing: -.02em; margin-bottom: 56px;
    }
    .contact-title em { font-style: italic; color: var(--gold-lt); }
    .contact-row {
      display: flex; justify-content: center; gap: 24px;
      margin-bottom: 72px;
    }
    .btn-primary {
      background: var(--gold); color: var(--black);
      padding: 18px 44px;
      font-size: 11px; letter-spacing: .18em;
      text-transform: uppercase; text-decoration: none;
      font-weight: 600;
      transition: background .3s, transform .2s;
    }
    .btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
    .btn-ghost {
      border: 1px solid rgba(240,235,226,.2);
      color: var(--white); padding: 18px 44px;
      font-size: 11px; letter-spacing: .18em;
      text-transform: uppercase; text-decoration: none;
      transition: border-color .3s, transform .2s;
    }
    .btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); }
    .contact-mail {
      font-family: 'Syne', sans-serif;
      font-size: 22px; font-weight: 400;
      color: var(--dim); text-decoration: none;
      letter-spacing: .04em; transition: color .3s;
    }
    .contact-mail:hover { color: var(--gold-lt); }

    footer {
      padding: 40px 56px;
      border-top: 1px solid var(--line);
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-logo {
      font-weight: 800; font-size: 14px;
      letter-spacing: .2em; text-transform: uppercase;
    }
    .footer-logo span { color: var(--gold); }
    .footer-links { display: flex; gap: 32px; list-style: none; }
    .footer-links a {
      font-size: 10px; letter-spacing: .15em;
      text-transform: uppercase; color: rgba(240,235,226,0.55);
      color: rgba(240,235,226,0.55); text-decoration: none; transition: color .3s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-copy { font-size: 10px; letter-spacing: .1em; color: var(--dim); opacity: .5; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes titleReveal {
      from { opacity: 0; letter-spacing: .50em; filter: blur(10px); }
      to   { opacity: 1; letter-spacing: .14em; filter: blur(0); }
    }
    @keyframes shimmer {
      0%   { background-position: 200% center; }
      50%  { background-position: -100% center; }
      100% { background-position: 200% center; }
    }
    @keyframes subtitleReveal {
      from { opacity: 0; letter-spacing: .15em; }
      to   { opacity: 1; letter-spacing: .45em; }
    }
    @keyframes lineExpand { to { width: 72px; } }

    .reveal {
      opacity: 0; transform: translateY(32px);
      transition: opacity .8s ease, transform .8s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 900px) {
      nav { padding: 24px; }
      .nav-links { display: none; }
      section { padding: 80px 24px; }
      #hero { padding: 120px 24px 20px; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { border-right: none; border-bottom: 1px solid var(--line); }
      .work-grid { grid-template-columns: 1fr; }
      .work-card:first-child { aspect-ratio: 4/3; grid-row: auto; }
      #contact { padding: 72px 24px 60px; }
      .contact-row { flex-direction: column; align-items: center; }
      footer { flex-direction: column; gap: 24px; text-align: center; }
      .footer-links { justify-content: center; }
    }

/* ── WORK CARD PHOTO ─────────────────────── */
.work-card--clickable { cursor: pointer; }
.work-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .6s ease;
}
.work-card--clickable:hover .work-bg { transform: scale(1.04); }
.work-card--clickable:hover .work-photo { transform: scale(1.04); }
.work-gallery-hint {
  display: block;
  font-size: 9px; letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: 4px;
}

/* ── LIGHTBOX ────────────────────────────── */
#lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(8,8,8,.98);
  flex-direction: column;
  cursor: default;
  overflow-y: auto;
}
#lightbox.active { display: flex; }

.lightbox-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  overflow: hidden;
}
.lightbox-header-right {
  display: flex; align-items: center; gap: 40px;
}
.lightbox-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600; font-size: 10px;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin: 0;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.lightbox-close {
  font-size: 20px; color: var(--dim);
  cursor: pointer; line-height: 1;
  transition: color .2s;
  background: none; border: none;
  letter-spacing: 0;
}
.lightbox-close:hover { color: var(--white); }

.lightbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 3px;
  padding: 3px;
  align-content: start;
  max-width: 1400px;
  margin: 40px auto 0;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}
.lightbox-grid-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--mid);
  border-radius: 2px;
}
.lightbox-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .3s;
  display: block;
}
.lightbox-grid-item:hover img { transform: scale(1.05); }
.lightbox-grid-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,8,8,0);
  transition: background .3s;
}
.lightbox-grid-item:hover::after { background: rgba(8,8,8,.15); }

/* Fullscreen single image view */
#lightbox-zoom {
  display: none;
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(8,8,8,.98);
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
#lightbox-zoom.active { display: flex; }
#lightbox-zoom img {
  max-width: 92vw; max-height: 92vh;
  object-fit: contain;
}
.zoom-close {
  position: absolute; top: 24px; right: 36px;
  font-size: 22px; color: var(--dim);
  cursor: pointer; background: none; border: none;
  transition: color .2s; z-index: 1;
}
.zoom-close:hover { color: var(--white); }
.zoom-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: var(--dim); font-size: 40px;
  cursor: pointer; padding: 16px;
  transition: color .2s;
}
.zoom-nav:hover { color: var(--white); }
.zoom-prev { left: 16px; }
.zoom-next { right: 16px; }

/* ── LIGHTBOX CTA ────────────────────────── */
.lightbox-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 64px 24px 72px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.lightbox-cta-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.lightbox-cta-text {
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--dim);
}
.lightbox-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  padding: 18px 48px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, transform .2s, gap .3s;
}
.lightbox-cta-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  gap: 18px;
}

/* ── CONTACT FORM ────────────────────────── */
.contact-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form-field label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
}
.contact-form-field input,
.contact-form-field textarea {
  background: rgba(240,235,226,0.04);
  border: 1px solid rgba(240,235,226,0.35);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  padding: 14px 18px;
  outline: none;
  resize: none;
  transition: border-color .3s;
}
.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: var(--dim);
}
.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--gold);
}
.contact-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 18px 48px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, transform .2s, gap .3s;
  align-self: center;
  margin-top: 8px;
}
.contact-form-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  gap: 18px;
}

@media (max-width: 900px) {
  .contact-form-row { grid-template-columns: 1fr; }
}