*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:#f4f1ec}
  @import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@300;400;500;600;700;800&display=swap');
  .up-root { --bg:#f4f1ec; --bg-2:#ebe6df; --ink:#0e0e0e; --ink-2:#1a1a1a; --muted:#6b665f; --line:rgba(14,14,14,.12);
    --red:#c8102e; --red-deep:#9a0c23;
    --font-head:'Anton', 'Montserrat', system-ui, sans-serif;
    --font-body:'Montserrat', system-ui, sans-serif;
    background:var(--bg); color:var(--ink); font-family:var(--font-body);
    -webkit-font-smoothing:antialiased; min-height:100vh; overflow-x:hidden;
  }
  .up-root, .up-root input, .up-root textarea, .up-root button, .up-root select { font-family:var(--font-body); }
  .up-root h1, .up-root h2, .up-root h3, .up-root h4, .up-root h5, .up-root h6 { font-family:var(--font-head); font-weight:400; letter-spacing:.01em; }
  .up-root .italic { font-family:'Times New Roman', Georgia, serif; font-style: italic; font-weight:400; }
  .up-footer-slim { padding: 20px 36px; }
  .up-footer-slim .up-footer-bottom { padding-top: 0; }
  .up-footer-slim .up-footer-links { gap: 34px; }
  .up-footer-slim .up-footer-links a { font-size: 17px; gap: 12px; }
  .up-footer-slim .up-footer-copy { font-size: 14px; }
  .up-footer-slim svg { transform: scale(1.18); transform-origin: center; }

  /* Header */
  .up-header { position:fixed; top:0; left:0; right:0; z-index:50; display:flex; align-items:center; justify-content:space-between;
    padding: 20px 36px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    background:rgba(244,241,236,.65); border-bottom:1px solid var(--line); }
  .up-logo { font-size:17px; font-weight:600; letter-spacing:-.02em; color:var(--ink); text-decoration:none; position:relative; display:inline-block; transform:scale(1.18); transform-origin:left center; line-height:1; }
  .up-logo span { font-weight:300; opacity:.6; }
  .up-logo::after { content:""; position:absolute; left:0; bottom:-4px; width:14px; height:2px; background:var(--red); }
  .up-nav { display:flex; align-items:center; gap:26px; }
  .up-nav a { color:var(--ink); text-decoration:none; font-size:13px; letter-spacing:.04em; display:inline-flex; align-items:center; gap:6px;
    transition: color .25s ease, transform .25s ease; transform:scale(1.28); transform-origin:center; }
  .up-nav a:hover { color:var(--red); }
  .up-link { text-transform:uppercase; }

  /* Hero */
  .up-hero { position:relative; min-height:100svh; padding: 120px 40px 90px; display:flex; flex-direction:column; justify-content:flex-end; overflow:hidden; }
  .up-hero-bg { position:absolute; inset:0;
    background-image: url('../../media/gallery/img12.png');
    background-size: cover; background-position: center 30%; filter: grayscale(.25) contrast(1.08) brightness(.92);
    transform: scale(1.05); animation: heroZoom 14s ease-out forwards; }
  @keyframes heroZoom { to { transform: scale(1); } }
  .up-hero-overlay { position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(14,14,14,.2) 0%, rgba(14,14,14,.1) 35%, rgba(14,14,14,.75) 100%); }
  .up-hero-content { position:relative; z-index:2; color:#f4f1ec; max-width:1200px; }
  .up-dot { width:8px; height:8px; background:var(--red); border-radius:50%; display:inline-block; box-shadow:0 0 0 4px rgba(200,16,46,.18); animation: pulse 2s ease-in-out infinite; }
  .up-dot-lg { width:16px; height:16px; vertical-align: middle; margin-right: 14px; box-shadow:0 0 0 6px rgba(200,16,46,.18); transform: translateY(-8px); }
  @keyframes pulse { 50% { box-shadow:0 0 0 12px rgba(200,16,46,0); } }
  .up-hero-title { font-size: clamp(64px, 11vw, 160px); line-height:.92; letter-spacing:.005em; font-weight:400; margin:0 0 28px;
    font-family:var(--font-head); text-shadow: 0 2px 30px rgba(0,0,0,.35); text-transform:uppercase; }
  .up-hero-sub { font-size: clamp(22px, 2.6vw, 34px); margin:0 0 24px; opacity:.95; transition: opacity .35s ease;
    font-family:var(--font-body); font-style: normal; font-weight:500; letter-spacing:.01em; }
  .up-hero-address { display:inline-flex; align-items:center; gap:10px; padding: 10px 18px; margin: 0 0 28px;
    background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.25); color:#f4f1ec; text-decoration:none;
    border-radius:999px; font-size:13px; letter-spacing:.18em; text-transform:uppercase; backdrop-filter: blur(8px);
    transition: background .25s ease, border-color .25s ease, transform .25s ease; cursor:pointer; }
  .up-hero-address:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); transform: translateY(-1px); }
  .up-hero-address svg { opacity:.9; }
  .up-cta { display:inline-flex; align-items:center; gap:14px; padding: 16px 28px; background:var(--red); color:#fff;
    text-decoration:none; font-size:13px; letter-spacing:.18em; text-transform:uppercase; border-radius:999px;
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
    box-shadow: 0 14px 40px -14px rgba(200,16,46,.6); }
  .up-cta:hover { background:var(--red-deep); transform: translateY(-2px); box-shadow: 0 20px 50px -14px rgba(200,16,46,.75); }
  .up-cta svg { transition: transform .3s ease; }
  .up-cta:hover svg { transform: translateX(4px); }
  .up-hero-cta-row { display:flex; flex-wrap:wrap; align-items:center; gap:16px; }
  .up-hero-marquee { position:absolute; bottom:24px; left:0; right:0; width:100%; z-index:2; display:flex; gap:24px; white-space:nowrap;
    color:#f4f1ec; opacity:.65; font-size:11px; letter-spacing:.3em; text-transform:uppercase;
    animation: marq 40s linear infinite; will-change: transform; padding-left:0; }
  @keyframes marq { from { transform: translateX(0);} to { transform: translateX(-50%);} }

  /* Intro */
  .up-intro { padding: 110px 40px; max-width:1200px; margin:0 auto; }
  .up-intro-grid { display:grid; grid-template-columns: 1fr; gap:40px; align-items:start; }
  .up-intro-label { font-size:12px; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); padding-top:18px; display:inline-flex; align-items:center; gap:12px; }
  .up-bar { display:inline-block; width:28px; height:1px; background:var(--ink); }
  .up-bar.red { background:var(--red); }
  .up-intro-title { font-size: clamp(34px, 4.2vw, 60px); line-height:1.04; letter-spacing:-.03em; font-weight:500; margin:0 0 32px; }
  .up-intro-blank { font-family:var(--font-body); font-style:normal; font-size: clamp(22px, 2.6vw, 36px); color:var(--muted);
    margin:0; padding: 60px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); position:relative; letter-spacing:.02em; }
  .up-intro-blank::before { content:""; position:absolute; left:0; top:-1px; width:60px; height:1px; background:var(--red); }
  .up-intro-text { position:relative; padding-top:64px; margin:56px 0 0; max-width:980px; font-size: clamp(18px, 2vw, 28px); line-height:1.55; color:var(--muted); }
  .up-intro-text strong { display:block; margin-bottom:10px; color:var(--ink); font-weight:650; letter-spacing:.02em; }
  .up-intro-text::before { content:""; position:absolute; left:0; top:-1px; width:60px; height:1px; background:var(--red); }

  /* Section heads */
  .up-section-head { padding: 0 40px; max-width:1200px; margin:0 auto 50px; }
  .up-section-title { font-size: clamp(38px, 5vw, 72px); line-height:1; letter-spacing:.01em; font-weight:400; margin:0;
    font-family:var(--font-head); font-style: normal; text-transform:uppercase; }

  /* Popup */
  .up-popup { padding: 110px 0; background: var(--bg-2); }
  .up-popup-head { max-width:1200px; margin:0 auto 64px; padding:0 40px; }
  .up-brands { display:grid; grid-template-columns: 1fr 1fr; gap:0; max-width:1200px; margin: 0 auto 80px; padding: 0 40px; }
  .up-brand { padding: 50px 40px; border-right:1px solid var(--line); position:relative; text-align:center; }
  .up-brand:last-child { border-right:none; padding:50px 40px; }
  .up-brand-name { font-size: clamp(56px, 7vw, 100px); margin:0 0 22px; letter-spacing:-.05em; font-weight:600; line-height:.9;
    transition: color .3s ease; }
  .up-brand:hover .up-brand-name { color: var(--red); }
  .up-brand-line { display:block; width:60px; height:2px; background:var(--ink); margin:0 auto; transition: width .4s ease, background .4s ease; }
  .up-brand:hover .up-brand-line { width:120px; background:var(--red); }

  .up-video-wrap { position:relative; max-width:1100px; margin:0 auto; padding: 0 40px; }
  .up-video-stage { position:relative; width:100%; background:#0e0e0e; border-radius:4px; overflow:hidden;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,.5); aspect-ratio: 16/9; display:flex; align-items:center; justify-content:center; }
  .up-video-stage video { width:100%; height:100%; object-fit: contain; cursor:pointer; display:block; background:#0e0e0e; }
  .up-sound { position:absolute; bottom:20px; right:20px; width:44px; height:44px; border-radius:50%; border:1px solid rgba(255,255,255,.2);
    background: rgba(14,14,14,.7); color:#f4f1ec; backdrop-filter: blur(10px); display:flex; align-items:center; justify-content:center;
    cursor:pointer; transition: background .25s ease, transform .25s ease, border-color .25s ease; z-index:5; }
  .up-sound:hover { background:var(--red); border-color:var(--red); transform: scale(1.08); }
  .up-video-caption { margin-top:14px; font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); display:inline-flex; align-items:center; gap:10px; }
  .up-video-caption::before { content:""; width:16px; height:1px; background:var(--red); }

  /* Gallery */
  .up-gallery { padding: 110px 0; }
  .up-rail { display:flex; gap:26px; overflow-x:auto; overflow-y:hidden; padding: 0 40px 20px; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; overscroll-behavior-y: auto; scrollbar-width: thin; }
  .up-rail::-webkit-scrollbar { height:6px; }
  .up-rail::-webkit-scrollbar-thumb { background: rgba(14,14,14,.2); border-radius:3px; }
  .up-card { margin:0; position:relative; flex: 0 0 auto; width: 360px; scroll-snap-align: start; }
  .up-card-img { overflow:hidden; background:var(--bg-2); aspect-ratio: 3/4; position:relative; }
  .up-card-img::after { content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--red); transition: width .5s ease; }
  .up-card:hover .up-card-img::after { width:100%; }
  .up-card-img img { width:100%; height:100%; object-fit:cover; display:block;
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .6s ease; filter: grayscale(.12); }
  .up-card:hover .up-card-img img { transform: scale(1.05); filter: grayscale(0); }
  .up-card figcaption { display:flex; justify-content:space-between; align-items:center; padding: 18px 4px 0; }
  .up-card-brand { font-size:16px; letter-spacing:.05em; font-weight:600; }
  .up-card-tag { font-size:13px; letter-spacing:.22em; text-transform:uppercase; color:var(--muted); }

  /* Instagram icon */
  .up-ig { position:relative; display:inline-block; width:20px; height:20px; line-height:0; }
  .up-ig .ig-mono { opacity:1; transition: opacity .25s ease; }
  .up-ig .ig-color { position:absolute; inset:0; opacity:0; transition: opacity .25s ease; }
  .up-nav a:hover .up-ig .ig-mono { opacity:0; }
  .up-nav a:hover .up-ig .ig-color { opacity:1; }

  /* Statement */
  .up-stmt { padding: 110px 40px; background:#0e0e0e; color:#f4f1ec; }
  .up-stmt-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:0; max-width:1200px; margin:0 auto;
    border-top:1px solid rgba(244,241,236,.15); border-bottom:1px solid rgba(244,241,236,.15); }
  .up-stmt-card { padding: 60px 36px; border-right:1px solid rgba(244,241,236,.15); }
  .up-stmt-card:last-child { border-right:none; }
  .up-stmt-dash { display:block; width:32px; height:2px; background:var(--red); margin-bottom:28px; }
  .up-stmt-title { font-size: clamp(24px, 2.6vw, 34px); margin:0 0 14px; letter-spacing:-.02em; font-weight:500; }
  .up-stmt-desc { font-size:18px; color:rgba(244,241,236,.72); margin:0; line-height:1.55; }

  /* Contact */
  .up-contact { padding: 110px 40px; background: var(--bg); }
  .up-contact-inner { max-width:1000px; margin:0 auto; display:grid; grid-template-columns: 1fr 1.2fr; gap:60px; align-items:start; }
  .up-contact-head .up-section-title { margin-bottom:20px; }
  .up-contact-kicker { display:inline-flex; align-items:center; gap:12px; font-size:14px; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); margin-bottom:24px; }
  .up-contact-lead { font-size:17px; line-height:1.6; color:var(--ink-2); max-width:420px; margin:0; }
  .up-form { display:grid; grid-template-columns: 1fr 1fr; gap:22px 20px; }
  .up-field { display:flex; flex-direction:column; gap:8px; }
  .up-field-full { grid-column: span 2; }
  .up-field label { font-size:13px; letter-spacing:.25em; text-transform:uppercase; color:var(--muted); }
  .up-field input, .up-field textarea { background:transparent; border:none; border-bottom:1px solid var(--line);
    padding: 12px 0; font-size:18px; color:var(--ink); font-family:inherit; outline:none; resize:none;
    transition: border-color .25s ease; }
  .up-field input::placeholder, .up-field textarea::placeholder { color: rgba(14,14,14,.35); }
  .up-field input:focus, .up-field textarea:focus { border-bottom-color: var(--red); }
  .up-form-actions { grid-column: span 2; display:flex; align-items:center; gap:20px; margin-top:8px; }
  .up-submit { display:inline-flex; align-items:center; gap:12px; padding: 15px 28px; background:var(--ink); color:#f4f1ec;
    border:none; cursor:pointer; font-size:13px; letter-spacing:.22em; text-transform:uppercase; border-radius:999px;
    transition: background .3s ease, transform .3s ease; font-family:inherit; }
  .up-submit:hover { background:var(--red); transform: translateY(-2px); }
  .up-submit svg { transition: transform .3s ease; }
  .up-submit:hover svg { transform: translateX(3px); }
  .up-form-msg { font-size:14px; letter-spacing:.15em; text-transform:uppercase; color:var(--red); }

  /* Generic page */
  .up-page { padding: 160px 40px 100px; max-width: 900px; margin: 0 auto; min-height: 70vh; }
  .up-page-kicker { display:inline-flex; align-items:center; gap:12px; font-size:12px; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); margin-bottom:20px; }
  .up-page-title { font-size: clamp(36px, 4.5vw, 64px); line-height:1; letter-spacing:-.035em; font-weight:500; margin: 0 0 40px; }
  .up-page-body { font-size:15px; line-height:1.7; color:var(--ink-2); border-top:1px solid var(--line); padding-top:36px; min-height: 240px; }
  .up-page-body p { margin: 0 0 18px; }

  /* Footer */
  .up-footer { padding: 70px 40px 36px; background: var(--bg); border-top:1px solid var(--line); }
  .up-footer-top { display:flex; justify-content:space-between; align-items:flex-end; padding-bottom: 50px;
    border-bottom:1px solid var(--line); max-width:1200px; margin:0 auto; }
  .up-footer-brand { font-size: clamp(44px, 6vw, 84px); letter-spacing:-.04em; font-weight:500; line-height:1; }
  .up-footer-brand span { font-weight:300; opacity:.5; }
  .up-footer-tag { font-size:12px; letter-spacing:.3em; text-transform:uppercase; color:var(--muted); margin:0 0 12px; }
  .up-footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:26px;
    max-width:1200px; margin:0 auto; }
  .up-footer-links { display:flex; gap:26px; }
  .up-footer-links a { display:inline-flex; align-items:center; gap:8px; color:var(--ink); text-decoration:none; font-size:13px;
    letter-spacing:.04em; transition: color .25s ease; }
  .up-footer-links a:hover { color: var(--red); }
  .up-footer-copy { font-size:12px; color:var(--muted); letter-spacing:.1em; }

  .up-footer.up-footer-slim { padding: 20px 36px; }
  .up-footer.up-footer-slim .up-footer-bottom { padding-top: 0; min-height: 0; }
  .up-footer.up-footer-slim .up-footer-links { gap: 34px; }
  .up-footer.up-footer-slim .up-footer-links a { font-size: 17px; gap: 12px; }
  .up-footer.up-footer-slim .up-footer-copy { font-size: 14px; }
  .up-footer.up-footer-slim svg { transform: scale(1.18); transform-origin: center; }

  /* Reveal */
  .reveal { opacity:0; transform: translateY(24px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
  .reveal.is-visible { opacity:1; transform: translateY(0); }

  /* Responsive */
  @media (max-width: 880px) {
    .up-header { padding: 16px 20px; }
    .up-logo { transform:none; }
    .up-nav { gap: 16px; }
    .up-nav a { transform:none; }
    .up-footer.up-footer-slim { padding: 50px 20px 30px; }
    .up-footer.up-footer-slim .up-footer-links a { font-size:13px; gap:8px; }
    .up-footer.up-footer-slim .up-footer-copy { font-size:12px; }
    .up-footer.up-footer-slim svg { transform:none; }
    .up-hero { padding: 120px 20px 110px; }
    .up-hero-bg { background-position: 65% center; background-size: cover; }
    .up-hero-address { padding: 9px 16px; font-size:12px; }
    .up-intro { padding: 80px 20px; }
    .up-section-head { padding: 0 20px; margin-bottom: 40px; }
    .up-popup { padding: 80px 0; }
    .up-popup-head { padding: 0 20px; margin-bottom:42px; }
    .up-brands { grid-template-columns: 1fr; padding: 0 20px; gap:0; margin-bottom:60px; }
    .up-brand { padding: 40px 0; border-right:none; border-bottom:1px solid var(--line); text-align:center; }
    .up-brand:last-child { padding:40px 0 0; border-bottom:none; }
    .up-intro-text { padding-top:44px; font-size:18px; }
    .up-video-wrap { padding: 0 20px; }
    .up-video-stage { aspect-ratio: 9/16; max-height:80vh; }
    .up-sound { right: 14px; bottom: 14px; }
    .up-gallery { padding: 80px 0; }
    .up-rail { padding: 0 20px 16px; }
    .up-card { width: 78vw; }
    .up-stmt { padding: 80px 20px; }
    .up-stmt-grid { grid-template-columns: 1fr; }
    .up-stmt-card { padding: 50px 20px; border-right:none; border-bottom:1px solid rgba(244,241,236,.15); }
    .up-stmt-card:last-child { border-bottom:none; }
    .up-stmt-dash { margin-bottom: 24px; }
    .up-contact { padding: 80px 20px; }
    .up-contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .up-form { grid-template-columns: 1fr; }
    .up-field-full, .up-form-actions { grid-column: span 1; }
    .up-page { padding: 130px 20px 80px; }
    .up-footer { padding: 50px 20px 30px; }
    .up-footer-top { flex-direction:column; align-items:flex-start; gap:20px; padding-bottom:30px; }
    .up-footer-bottom { flex-direction:column; gap:20px; align-items:flex-start; }
  }
.up-honeypot{display:none!important;visibility:hidden!important;position:absolute!important;left:-9999px!important;}
