:root{
    --black:#0a0a0a; --black-soft:#141414; --white:#ffffff; --off-white:#f5f3f0;
    --red:#c8102e; --red-deep:#8f0c20; --stone:#8a8580;
    --line: rgba(255,255,255,0.14); --line-dark: rgba(10,10,10,0.12);
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{background:var(--white); color:var(--black); font-family:'Inter', sans-serif; overflow-x:hidden;}
  ::selection{background:var(--red); color:var(--white);}
  h1,h2,h3,.serif{font-family:'Fraunces', serif;}
  .eyebrow{font-family:'Space Mono', monospace; font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--red);}
  a{color:inherit; text-decoration:none;}
  img{display:block; max-width:100%;}
  @media (prefers-reduced-motion: reduce){ *{animation:none !important; transition:none !important;} html{scroll-behavior:auto;} }

  nav{
    position:fixed; top:0; left:0; right:0; z-index:200;
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 5vw; background:rgba(10,10,10,0.94); backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav-brand{display:flex; align-items:center; gap:12px;}
  .nav-brand img{width:36px; height:36px; border-radius:50%;}
  .nav-mark{font-family:'Fraunces', serif; font-size:19px; color:var(--white); font-weight:500;}
  .nav-links{display:flex; gap:34px; align-items:center;}
  .nav-links a{font-family:'Space Mono', monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--white); opacity:0.75; transition:opacity 0.25s ease;}
  .nav-links a:hover{opacity:1;}
  .nav-links a.cta{opacity:1; padding:9px 18px; border-radius:2px; background:var(--red);}

  /* ---------- HAMBURGER (mobile) ---------- */
  .hamburger{
    display:none; flex-direction:column; justify-content:center; align-items:center;
    gap:5px; width:40px; height:40px; background:transparent; border:1px solid rgba(255,255,255,0.3);
    border-radius:4px; cursor:pointer; z-index:260; position:relative;
  }
  .hamburger span{ width:18px; height:2px; background:var(--white); transition:all 0.3s ease; display:block; }
  .hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .hamburger.open span:nth-child(2){opacity:0;}
  .hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

  .mobile-drawer{
    position:fixed; inset:0; z-index:250; background:rgba(10,10,10,0.98);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
    opacity:0; visibility:hidden; transform:translateY(-8px);
    transition:opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  }
  .mobile-drawer.open{opacity:1; visibility:visible; transform:translateY(0);}
  .mobile-drawer a{
    font-family:'Fraunces', serif; font-size:1.7rem; color:var(--white); padding:14px 0;
    opacity:0.85; transition:opacity 0.25s ease, color 0.25s ease;
  }
  .mobile-drawer a:hover, .mobile-drawer a:active{opacity:1; color:var(--red);}
  .mobile-drawer .drawer-cta{
    margin-top:20px; font-family:'Space Mono', monospace; font-size:12px; letter-spacing:0.1em;
    text-transform:uppercase; padding:14px 30px; background:var(--red); border-radius:2px;
  }

  @media (max-width:820px){
    .nav-links{display:none;}
    .hamburger{display:flex;}
  }

  /* ---------- FLOATING WHATSAPP BUTTON ---------- */
  .whatsapp-float{
    position:fixed; right:22px; bottom:22px; z-index:220;
    width:58px; height:58px; border-radius:50%;
    background:#25D366; display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 24px rgba(0,0,0,0.35);
    transition:transform 0.25s ease, box-shadow 0.25s ease;
  }
  .whatsapp-float:hover{transform:scale(1.08); box-shadow:0 12px 30px rgba(0,0,0,0.45);}
  .whatsapp-float svg{width:30px; height:30px;}
  @media (max-width:600px){
    .whatsapp-float{width:52px; height:52px; right:16px; bottom:16px;}
    .whatsapp-float svg{width:27px; height:27px;}
  }

  /* ---------- LANDSCAPE CAROUSEL (no text overlay) ---------- */
  .carousel-wrap{ background:var(--black); padding:110px 5vw 40px; }
  .carousel-frame{
    position:relative; width:100%; aspect-ratio:21/8; max-height:64vh; min-height:220px;
    overflow:hidden; border:1px solid var(--line);
  }
  @media (max-width:700px){ .carousel-frame{ aspect-ratio:4/3; } }
  .cslide{
    position:absolute; inset:0; opacity:0; transition:opacity 1s ease;
    background-size:cover; background-position:center;
  }
  .cslide.active{opacity:1;}
  .carousel-bar{
    display:flex; align-items:center; justify-content:space-between; margin-top:18px; gap:20px;
  }
  .carousel-idx{font-family:'Space Mono', monospace; font-size:11px; color:rgba(255,255,255,0.55); letter-spacing:0.1em;}
  .car-dots{display:flex; gap:8px;}
  .car-dot{width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.3); cursor:pointer; transition:all 0.3s ease;}
  .car-dot.active{background:var(--red); width:22px; border-radius:4px;}
  .car-controls{display:flex; gap:12px;}
  .car-btn{
    width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.3);
    background:transparent; color:var(--white); cursor:pointer; display:flex; align-items:center; justify-content:center;
    transition:all 0.25s ease;
  }
  .car-btn:hover{background:var(--red); border-color:var(--red);}

  /* ---------- STATEMENT (headline, no image) ---------- */
  .statement{ background:var(--black); color:var(--white); padding:60px 5vw 130px; text-align:left; }
  .statement .rule{width:40px; height:1px; background:var(--red); margin-bottom:22px;}
  .statement h1{
    font-size:clamp(2.2rem, 6vw, 5rem); font-weight:400; line-height:1.04; max-width:1000px;
  }
  .statement h1 em{font-style:italic; color:var(--red);}
  .statement-sub{margin-top:30px; display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; align-items:flex-end;}
  .statement-sub p{max-width:460px; font-size:15px; line-height:1.7; color:rgba(255,255,255,0.72);}
  .statement-loc{font-family:'Space Mono', monospace; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--stone); text-align:right;}

  /* ---------- MARQUEE ---------- */
  .marquee-strip{ background:var(--black); border-top:1px solid var(--line); padding:18px 0; overflow:hidden; white-space:nowrap; }
  .marquee-track{display:inline-flex; animation:marquee 32s linear infinite;}
  .marquee-strip:hover .marquee-track{animation-play-state:paused;}
  @keyframes marquee{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
  .marquee-track span{
    font-family:'Space Mono', monospace; font-size:12px; letter-spacing:0.08em; color:rgba(255,255,255,0.65);
    text-transform:uppercase; display:inline-flex; align-items:center; gap:52px; padding-right:52px;
  }
  .marquee-track span::after{content:'★'; color:var(--red); font-size:10px; margin-left:52px;}

  section{padding:130px 5vw;}
  .section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:40px; margin-bottom:64px; flex-wrap:wrap; border-bottom:1px solid var(--line-dark); padding-bottom:32px; }
  .section-head h2{font-size:clamp(2rem, 4vw, 3.2rem); font-weight:400; line-height:1.05; max-width:640px;}
  .section-head .note{max-width:320px; font-size:14px; line-height:1.6; color:var(--stone);}

  /* ---------- ABOUT: mission / vision / bio ---------- */
  .about{background:var(--white);}
  .mv-grid{display:grid; grid-template-columns:1fr 1fr; gap:50px; margin-bottom:70px;}
  @media (max-width:800px){.mv-grid{grid-template-columns:1fr;}}
  .mv-card{border:1px solid var(--line-dark); padding:40px;}
  .mv-card h3{font-size:1.6rem; font-weight:400; color:var(--red); margin-bottom:18px;}
  .mv-card p{font-size:15px; line-height:1.8; color:#3a3631;}
  .bio-grid{display:grid; grid-template-columns:0.8fr 1.2fr; gap:60px; align-items:center;}
  @media (max-width:800px){.bio-grid{grid-template-columns:1fr;}}
  .bio-grid img{width:100%; aspect-ratio:4/5; object-fit:cover;}
  .bio-copy p{font-size:15px; line-height:1.8; color:#3a3631; margin-bottom:16px;}
  .bio-copy .name{font-family:'Fraunces', serif; font-size:1.7rem; margin-bottom:4px;}
  .bio-copy .role{font-family:'Space Mono', monospace; font-size:11px; letter-spacing:0.1em; color:var(--red); text-transform:uppercase; display:block; margin-bottom:20px;}

  /* ---------- MANIFESTO ---------- */
  .manifesto-section{background:var(--black); color:var(--white);}
  .manifesto-grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; align-items:center;}
  @media (max-width:850px){.manifesto-grid{grid-template-columns:1fr;}}
  .manifesto-grid img{width:100%; aspect-ratio:4/5; object-fit:cover; filter:saturate(1.1);}
  .manifesto-list{display:flex; flex-direction:column; gap:22px;}
  .manifesto-item h4{font-family:'Fraunces', serif; font-weight:500; font-size:1.3rem; color:var(--red); margin-bottom:4px;}
  .manifesto-item p{font-size:14px; line-height:1.6; color:rgba(255,255,255,0.65);}
  .manifesto-close{margin-top:10px; font-family:'Space Mono', monospace; font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color:var(--white);}

  /* ---------- SERVICES ---------- */
  .services{background:var(--white);}
  .service-list{border-top:1px solid var(--line-dark);}
  .service-row{display:grid; grid-template-columns:1fr auto; align-items:center; padding:24px 0; border-bottom:1px solid var(--line-dark); transition:padding-left 0.35s ease;}
  .service-row:hover{padding-left:16px; background:rgba(200,16,46,0.05);}
  .service-row h3{font-size:clamp(1.1rem, 2.2vw, 1.7rem); font-weight:400; display:flex; align-items:baseline; gap:16px;}
  .service-row .tag{font-family:'Space Mono', monospace; font-size:10px; color:var(--red); letter-spacing:0.1em;}
  .service-row .arrow{font-family:'Fraunces', serif; font-style:italic; color:var(--stone); opacity:0; transition:all 0.3s ease; transform:translateX(-8px);}
  .service-row:hover .arrow{opacity:1; transform:translateX(0); color:var(--red);}

  /* ---------- INDUSTRIES ---------- */
  .industries{background:var(--off-white);}
  .industry-chips{display:flex; flex-wrap:wrap; gap:14px;}
  .chip{padding:14px 26px; border:1px solid var(--line-dark); border-radius:40px; font-size:14px; color:var(--black); transition:all 0.3s ease; background:var(--white);}
  .chip.featured{background:var(--black); color:var(--white); border-color:var(--black);}
  .chip:hover{border-color:var(--red); color:var(--red);}
  .chip.featured:hover{color:var(--white); background:var(--red); border-color:var(--red);}

  /* ---------- PORTFOLIO ---------- */
  .portfolio{background:var(--black); color:var(--white);}
  .portfolio .section-head{border-bottom-color:var(--line);}
  .portfolio .note{color:rgba(255,255,255,0.55);}
  .filter-row{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:46px;}
  .filter-btn{font-family:'Space Mono', monospace; font-size:11px; letter-spacing:0.08em; text-transform:uppercase; padding:9px 16px; border:1px solid var(--line); border-radius:2px; color:rgba(255,255,255,0.6); background:transparent; cursor:pointer; transition:all 0.25s ease;}
  .filter-btn.active, .filter-btn:hover{border-color:var(--red); color:var(--white); background:rgba(200,16,46,0.12);}
  .gallery{columns:4 240px; column-gap:18px;}
  @media (max-width:700px){.gallery{columns:1;}}
  .gallery-item{break-inside:avoid; margin-bottom:18px; position:relative; overflow:hidden; border:1px solid var(--line);}
  .gallery-item img{width:100%; display:block; transition:transform 0.6s cubic-bezier(.16,1,.3,1);}
  .gallery-item:hover img{transform:scale(1.045);}
  .gallery-cap{position:absolute; left:0; right:0; bottom:0; padding:14px 16px; background:linear-gradient(180deg, transparent, rgba(10,10,10,0.94)); opacity:0; transform:translateY(8px); transition:all 0.35s ease;}
  .gallery-item:hover .gallery-cap{opacity:1; transform:translateY(0);}
  .gallery-cap .eyebrow{font-size:9px; margin-bottom:3px;}
  .gallery-cap h4{font-family:'Fraunces', serif; font-weight:400; font-size:14.5px; color:var(--white);}

  /* ---------- ECOSYSTEM ---------- */
  .ecosystem{background:var(--white);}
  .eco-feature{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-bottom:60px;}
  @media (max-width:800px){.eco-feature{grid-template-columns:1fr 1fr;}}
  @media (max-width:520px){.eco-feature{grid-template-columns:1fr;}}
  .eco-feature img{width:100%; aspect-ratio:3/4; object-fit:cover; border:1px solid var(--line-dark);}
  .eco-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:1px; background:var(--line-dark); border:1px solid var(--line-dark);}
  .eco-card{background:var(--white); padding:34px 28px; min-height:190px; display:flex; flex-direction:column; justify-content:space-between;}
  .eco-card:hover{background:var(--off-white);}
  .eco-card h3{font-size:1.4rem; font-weight:400; margin-bottom:8px;}
  .eco-card p{font-size:13px; line-height:1.6; color:var(--stone);}
  .eco-card .soon{font-family:'Space Mono', monospace; font-size:10px; letter-spacing:0.1em; text-transform:uppercase; color:var(--red); margin-top:12px;}

  /* ---------- CREDIBILITY ---------- */
  .credibility{background:var(--off-white);}
  .stat-row{display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-bottom:60px;}
  @media (max-width:800px){.stat-row{grid-template-columns:1fr 1fr;}}
  .stat-box{background:var(--white); border:1px solid var(--line-dark); padding:28px 24px;}
  .stat-box h3{font-size:2.2rem; color:var(--red); font-weight:400;}
  .stat-box span{font-family:'Space Mono', monospace; font-size:10px; letter-spacing:0.08em; color:var(--stone); text-transform:uppercase;}
  .cred-top{display:flex; justify-content:space-between; align-items:center; gap:30px; flex-wrap:wrap; margin-bottom:40px;}
  .maps-btn{font-family:'Space Mono', monospace; font-size:11px; letter-spacing:0.08em; text-transform:uppercase; padding:12px 22px; background:var(--red); color:var(--white); border-radius:2px;}
  .review-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  @media (max-width:900px){.review-grid{grid-template-columns:repeat(2,1fr);}}
  @media (max-width:600px){.review-grid{grid-template-columns:1fr;}}
  .review-card{border:1px solid var(--line-dark); overflow:hidden; background:#fff; transition:transform 0.3s ease, box-shadow 0.3s ease;}
  .review-card:hover{transform:translateY(-6px); box-shadow:0 20px 40px rgba(10,10,10,0.12);}
  .review-card img{width:100%;}

  /* ---------- FOUNDER ---------- */
  .founder{background:var(--black); color:var(--white);}
  .founder-grid{display:grid; grid-template-columns:0.8fr 1.2fr; gap:60px; align-items:center;}
  @media (max-width:900px){.founder-grid{grid-template-columns:1fr;}}
  .founder-imgs{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
  .founder-imgs img{width:100%; aspect-ratio:3/4; object-fit:cover;}
  .founder-imgs img:first-child{grid-column:1/3; aspect-ratio:4/3;}
  .founder-copy .role{font-family:'Space Mono', monospace; font-size:12px; letter-spacing:0.1em; color:var(--red); text-transform:uppercase; margin-bottom:26px; display:block;}
  .founder-copy h2{font-size:clamp(2rem,4vw,3.2rem); font-weight:400; line-height:1.05; margin-bottom:6px;}
  .founder-copy p{font-size:15px; line-height:1.85; color:rgba(255,255,255,0.72); margin-bottom:16px; max-width:560px;}

  /* ---------- CONTACT (dedicated) ---------- */
  .contact-section{background:var(--red); color:var(--white);}
  .contact-grid{display:grid; grid-template-columns:1.2fr 1fr; gap:60px;}
  @media (max-width:850px){.contact-grid{grid-template-columns:1fr;}}
  .contact-lede h2{font-size:clamp(2rem,4vw,3.2rem); font-weight:400; line-height:1.1; margin-bottom:20px;}
  .contact-lede p{font-size:15.5px; line-height:1.7; color:rgba(255,255,255,0.85); max-width:460px;}
  .contact-methods{display:flex; flex-direction:column; gap:0;}
  .contact-method{ display:flex; justify-content:space-between; align-items:center; padding:22px 0; border-bottom:1px solid rgba(255,255,255,0.28); }
  .contact-method .label{font-family:'Space Mono', monospace; font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.65);}
  .contact-method .value{font-family:'Fraunces', serif; font-size:1.25rem;}
  .contact-method a.value:hover{text-decoration:underline;}

  footer{background:var(--black); color:rgba(255,255,255,0.55); padding:44px 5vw; display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; align-items:center;}
  footer span{font-family:'Space Mono', monospace; font-size:10.5px; letter-spacing:0.06em;}
  footer .flogo{display:flex; align-items:center; gap:10px;}
  footer .flogo img{width:24px; height:24px; border-radius:50%;}

  .reveal{opacity:0; transform:translateY(24px); transition:opacity 0.8s ease, transform 0.8s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}
  a:focus-visible, button:focus-visible{outline:2px solid var(--red); outline-offset:3px;}

  /* ---------- RESPONSIVE REFINEMENTS ---------- */
  @media (max-width:900px){
    section{padding:90px 6vw;}
    .carousel-wrap{padding:90px 6vw 30px;}
    .statement{padding:44px 6vw 90px;}
    .section-head{margin-bottom:44px; padding-bottom:24px;}
  }
  @media (max-width:600px){
    section{padding:70px 6vw;}
    .nav-mark{font-size:16px;}
    .nav-brand img{width:30px; height:30px;}
    .carousel-idx{display:none;}
    .stat-row{grid-template-columns:1fr 1fr; gap:14px;}
    .review-grid{gap:16px;}
    .founder-imgs{gap:10px;}
    .gallery{column-gap:14px;}
    .gallery-item{margin-bottom:14px;}
    footer{flex-direction:column; text-align:center;}
  }
  @media (min-width:1400px){
    section{padding:150px 6vw;}
  }
