@font-face{
  font-family:"Falcon";
  src:
    url("../fonts/Falcon.woff2") format("woff2"),
    url("../fonts/Falcon.woff") format("woff");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
/* Self-hosted Cinzel */
@font-face{
  font-family:"Cinzel";
  src:url("../fonts/Cinzel-VariableFont_wght.ttf") format("truetype");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}

:root{
      --bg:#ffffff;
      --fg:#0a0a0a;
      --muted:#4a4a4a;
      --line:#e6e6e6;
      --soft:#f6f6f6;
      --radius:18px;
      --shadow: 0 10px 30px rgba(0,0,0,.06);
      --max:1120px;
      --pad:20px;
    }
    *{ box-sizing:border-box; }
    html,body{ margin:0; padding:0; background:var(--bg); color:var(--fg); }
    body{ font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; line-height:1.5; }
    a{ color:inherit; text-decoration:none; }
    button{ font:inherit; cursor:pointer; }
    img{ max-width:100%; display:block; }

    /* Type */
    .brand-font{
      font-family:"Falcon", Cinzel, serif;
      text-transform:uppercase;
      letter-spacing:.08em;
    }
    .h-font{
      font-family:"Falcon", Cinzel, serif;
      text-transform:uppercase;
      letter-spacing:.06em;
    }
    h1,h2,h3{ margin:0 0 10px 0; }
    h1{ font-size:48px; letter-spacing:.14em; }
    h2{ font-size:22px; }
    .small{ font-size:12px; color:var(--muted); }
    .muted{ color:var(--muted); }

    /* Layout helpers */
    .wrap{ max-width:var(--max); margin:0 auto; padding:0 var(--pad); }
    .row{ display:flex; gap:16px; align-items:center; }
    .between{ justify-content:space-between; }
    .grid{ display:grid; gap:16px; }
    .card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }

    /* Announcement */
    .announce{
      border-bottom:1px solid var(--line);
      background:#fff;
      padding:10px 0;
      font-size:12px;
    }

    /* Header */
    header{
      position:sticky; top:0; z-index:20;
      background:rgba(255,255,255,.90);
      backdrop-filter: blur(10px);
      border-bottom:1px solid var(--line);
    }
    .nav{
      height:72px;
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      padding:8px 10px; border-radius:999px;
    }
    .brand-mark{
      width:16px; height:36px;
      border-left:1px solid var(--fg);
      opacity:.9;
    }
    .brand-logo{
      width:34px; height:34px; border-radius:10px;
      border:1px solid var(--line);
      background:#fff;
      display:grid; place-items:center;
      overflow:hidden;
    }
    .brand-logo img{ width:100%; height:100%; object-fit:contain; }
    .brand-name{ font-size:13px; letter-spacing:.22em; }

    .menu{
      display:flex; gap:18px; align-items:center;
      font-size:12px;
    }
    .menu a{
      padding:10px 10px;
      border-radius:999px;
      border:1px solid transparent;
    }
    .menu a:hover{
      border-color:var(--line);
      background:var(--soft);
    }

    .actions{ display:flex; gap:10px; align-items:center; }
    .pill{
      border:1px solid var(--line);
      background:#fff;
      border-radius:999px;
      padding:10px 12px;
      display:flex; gap:8px; align-items:center;
    }
    .pill:hover{ background:var(--soft); }
    .badge{
      min-width:18px; height:18px; padding:0 6px;
      border-radius:999px; background:var(--fg); color:#fff;
      display:inline-flex; align-items:center; justify-content:center;
      font-size:11px;
    }

    /* Hero */
    .hero{
      padding:56px 0 20px;
      position:relative;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute; left:50%; top:-60px; bottom:-60px;
      width:1px; background:var(--line);
      transform:translateX(-50%);
      opacity:.9;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:24px;
      align-items:stretch;
      position:relative;
    }
    .hero-left, .hero-right{
      padding:28px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:#fff;
      box-shadow:var(--shadow);
    }
    .hero-right{ background:linear-gradient(180deg,#fff 0%, #fbfbfb 100%); }
    .hero-sub{ max-width:52ch; color:var(--muted); margin:10px 0 18px; }
    .cta{ display:flex; gap:10px; flex-wrap:wrap; }
    .btn{
      border-radius:999px;
      padding:12px 16px;
      border:1px solid var(--line);
      background:#fff;
      font-size:12px;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .btn.primary{
      border-color:var(--fg);
      background:var(--fg);
      color:#fff;
    }
    .btn.primary:hover{ filter:brightness(.95); }
    .btn:hover{ background:var(--soft); }

    .divider{
      width:1px; height:56px; background:var(--fg);
      margin:24px auto; opacity:.9;
    }

    /* Section */
    section{ padding:44px 0; }
    .section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:14px; }

    /* Product grid */
    .products{ grid-template-columns: repeat(4, 1fr); }
    .p{ overflow:hidden; display:flex; flex-direction:column; }
    .p-media{
      aspect-ratio: 1 / 1.1;
      background:
        radial-gradient(circle at 20% 30%, rgba(0,0,0,.06), transparent 40%),
        linear-gradient(180deg,#fff 0%, #f7f7f7 100%);
      border-bottom:1px solid var(--line);
      display:flex; align-items:center; justify-content:center;
      position:relative;
    }
    .p-media::after{
      content:"";
      position:absolute; left:50%; top:10%; bottom:10%;
      width:1px; background:var(--line);
      transform:translateX(-50%);
    }
    .p-media span{
      font-family:"Falcon", Cinzel, serif;
      letter-spacing:.14em;
      text-transform:uppercase;
      font-size:12px;
      color:rgba(10,10,10,.6);
      padding:10px 12px;
      border:1px solid rgba(0,0,0,.08);
      border-radius:999px;
      background:rgba(255,255,255,.7);
      backdrop-filter: blur(6px);
    }
    .p-body{ padding:14px; display:grid; gap:10px; }
    .p-title{ font-size:12px; letter-spacing:.12em; text-transform:uppercase; }
    .p-meta{ display:flex; justify-content:space-between; gap:10px; align-items:center; }
    .price{ font-weight:600; }
    .tag{
      font-size:11px; color:var(--muted);
      border:1px solid var(--line);
      padding:6px 10px; border-radius:999px;
      background:#fff;
    }
    .p-actions{ display:flex; gap:10px; }
    .p-actions .btn{ flex:1; padding:10px 12px; }

    /* Info blocks */
    .cols{ grid-template-columns: 1fr 1fr; gap:16px; }
    .block{ padding:18px; }
    .block p{ margin:8px 0 0; color:var(--muted); }

    /* Footer */
    footer{ border-top:1px solid var(--line); padding:30px 0 50px; }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr .8fr .8fr;
      gap:14px;
      align-items:start;
    }
    .footer-grid a{ display:block; padding:6px 0; color:var(--muted); font-size:13px; }
    .footer-grid a:hover{ color:var(--fg); }
    .legal{ margin-top:16px; color:var(--muted); font-size:12px; }

    /* Cart drawer */
    .overlay{ position:fixed; inset:0; background:rgba(0,0,0,.35); display:none; z-index:100; }
    .drawer{
      position:fixed; right:0; top:0; bottom:0;
      width:min(420px, 92vw);
      background:#fff;
      border-left:1px solid var(--line);
      box-shadow: -20px 0 60px rgba(0,0,0,.18);
      transform:translateX(100%);
      transition: transform .22s ease;
      z-index:101;
      display:flex; flex-direction:column;
    }
    .drawer.open{ transform:translateX(0); }
    .overlay.open{ display:block; }
    .drawer-head{
      padding:14px;
      border-bottom:1px solid var(--line);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .drawer-body{ padding:14px; overflow:auto; display:grid; gap:12px; }
    .line{ height:1px; background:var(--line); }
    .item{
      border:1px solid var(--line);
      border-radius:14px;
      padding:12px;
      display:grid; gap:8px;
    }
    .item-top{ display:flex; justify-content:space-between; gap:10px; align-items:flex-start; }
    .item-name{ font-size:12px; letter-spacing:.10em; text-transform:uppercase; }
    .item-sub{ font-size:12px; color:var(--muted); }
    .qty{ display:flex; gap:8px; align-items:center; }
    .qty button{
      width:32px; height:32px; border-radius:10px;
      border:1px solid var(--line); background:#fff;
    }
    .qty button:hover{ background:var(--soft); }
    .drawer-foot{
      margin-top:auto;
      border-top:1px solid var(--line);
      padding:14px;
      display:grid; gap:10px;
    }
    .sumrow{ display:flex; justify-content:space-between; font-size:13px; color:var(--muted); }
    .sumrow b{ color:var(--fg); }
    .paybox{
      border:1px solid var(--line);
      border-radius:14px;
      padding:12px;
      display:grid; gap:10px;
      background:linear-gradient(180deg,#fff 0%, #fafafa 100%);
    }
    .radios{ display:grid; gap:8px; font-size:13px; color:var(--muted); }
    .radios label{ display:flex; gap:10px; align-items:center; }
    .radios input{ accent-color: var(--fg); }
    .note{
      font-size:12px; color:var(--muted);
      border-left:2px solid var(--line);
      padding-left:10px;
    }

    /* ===== Product Modal ===== */
    .m-overlay{ position:fixed; inset:0; background:rgba(0,0,0,.35); display:none; z-index:140; }
    .m{
      position:fixed;
      left:50%; top:50%;
      transform:translate(-50%,-50%) scale(.98);
      width:min(860px, 94vw);
      max-height:min(760px, 90vh);
      overflow:auto;
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow: 0 30px 90px rgba(0,0,0,.22);
      z-index:141;
      display:none;
    }
    .m.open{ display:block; }
    .m-overlay.open{ display:block; }
    .m-head{
      padding:14px;
      border-bottom:1px solid var(--line);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      background:rgba(255,255,255,.9);
      backdrop-filter: blur(10px);
      position:sticky; top:0;
    }
    .m-body{
      padding:14px;
      display:grid;
      grid-template-columns: 1fr 1.2fr;
      gap:14px;
    }
    .m-media{
      aspect-ratio: 1 / 1.1;
      border:1px solid var(--line);
      border-radius:16px;
      background:
        radial-gradient(circle at 20% 30%, rgba(0,0,0,.06), transparent 40%),
        linear-gradient(180deg,#fff 0%, #f7f7f7 100%);
      display:flex; align-items:center; justify-content:center;
      position:relative;
      overflow:hidden;
    }
    .m-media::after{
      content:"";
      position:absolute; left:50%; top:10%; bottom:10%;
      width:1px; background:var(--line);
      transform:translateX(-50%);
    }
    .m-media span{
      font-family:"Falcon", Cinzel, serif;
      letter-spacing:.14em;
      text-transform:uppercase;
      font-size:12px;
      color:rgba(10,10,10,.6);
      padding:10px 12px;
      border:1px solid rgba(0,0,0,.08);
      border-radius:999px;
      background:rgba(255,255,255,.7);
      backdrop-filter: blur(6px);
    }
    .m-info{ border:1px solid var(--line); border-radius:16px; padding:14px; }
    .m-price{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .m-row{ margin-top:14px; display:grid; gap:8px; }
    .m-options{ display:flex; gap:8px; flex-wrap:wrap; }
    .opt{
      border:1px solid var(--line);
      background:#fff;
      border-radius:999px;
      padding:10px 12px;
      font-size:12px;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .opt:hover{ background:var(--soft); }
    .opt.active{ border-color:var(--fg); background:var(--fg); color:#fff; }
    .m-qty{ display:flex; gap:8px; align-items:center; }
    .m-qty button{
      width:36px; height:36px;
      border-radius:12px;
      border:1px solid var(--line);
      background:#fff;
    }
    .m-qty button:hover{ background:var(--soft); }
    .m-actions{ margin-top:14px; display:flex; gap:10px; }
    .m-actions .btn{ flex:1; }

    /* Responsive */
    @media (max-width: 980px){
      .hero-inner{ grid-template-columns: 1fr; }
      .products{ grid-template-columns: repeat(2, 1fr); }
      .footer-grid{ grid-template-columns: 1fr 1fr; }
      h1{ font-size:40px; }
    }
    @media (max-width: 520px){
      .menu{ display:none; }
      .products{ grid-template-columns: 1fr; }
      h1{ font-size:34px; }
    }
    @media (max-width: 900px){
      .m-body{ grid-template-columns: 1fr; }
    }

/* Brand wordmark image */
.brand-wordmark{
  height:26px;
  width:auto;
  display:block;
}
@media (max-width: 980px){
  .brand-wordmark{height:22px;}
}

/* Accessibility */
.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* Hero wordmark */
.hero-title{margin:12px 0 10px}
.hero-wordmark{display:block; height:64px; width:auto}
@media (max-width: 980px){ .hero-wordmark{height:54px} }
@media (max-width: 560px){ .hero-wordmark{height:46px} }

/* Modal tee preview */
.m-media{position:relative; overflow:hidden}
.tee-img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:contain;
  opacity:0;
  transform:scale(.98);
  transition:opacity .18s ease, transform .18s ease;
}
/* Default: show label, hide image. On hover: show image, hide label */
@media (hover:hover){
  .m:hover .tee-img{opacity:1; transform:scale(1)}
  .m:hover #mMediaLabel{opacity:0}
}
/* Touch devices: always show + subtle rotate */
@media (hover:none){
  .tee-img{opacity:1; transform:scale(1)}
  #mMediaLabel{opacity:0}
  .m-media{perspective:800px}
  .tee-img{animation:falconSpin 4.2s linear infinite; transform-origin:center}
  @keyframes falconSpin{
    0%{transform:rotateY(0deg) scale(1)}
    50%{transform:rotateY(18deg) scale(1)}
    100%{transform:rotateY(0deg) scale(1)}
  }
}

/* Contact icon links */
.contact-links{display:grid; gap:10px}
.clink{display:flex; align-items:center; gap:10px; text-decoration:none; color:inherit}
.clink:hover{text-decoration:underline}
.cicon{width:18px; height:18px; display:inline-flex; align-items:center; justify-content:center; color:#111; opacity:.9}
.cicon svg{width:18px; height:18px; display:block}

/* Product card tee hover preview */
.p-media{position:relative; overflow:hidden}
.p-tee{
  position:absolute; inset:10px;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  object-fit:contain;
  opacity:0;
  transform:scale(.98);
  transition:opacity .18s ease, transform .18s ease;
  pointer-events:none;
}
/* On hover devices: show tee on card hover */
@media (hover:hover){
  .p:hover .p-tee{opacity:1; transform:scale(1)}
  .p:hover .p-media span{opacity:.0}
}
/* On touch devices: show tee automatically + subtle motion */
@media (hover:none){
  .p-tee{opacity:1; transform:scale(1)}
  .p-media span{opacity:0}
  .p-tee{animation:falconCardSpin 4.6s ease-in-out infinite}
  @keyframes falconCardSpin{
    0%{transform:rotateY(0deg) scale(1)}
    50%{transform:rotateY(14deg) scale(1)}
    100%{transform:rotateY(0deg) scale(1)}
  }
}

/* Hero right emblem (Standard) */
.hero-emblem{margin-top:10px; display:flex; justify-content:flex-end}
.hero-emblem-img{width:min(520px, 100%); height:auto; display:block}
@media (max-width: 980px){
  .hero-emblem{justify-content:center}
  .hero-emblem-img{width:min(520px, 92vw)}
}

/* Hero motto */
.hero-motto{
  margin-top:14px;
  text-align:center;
  font-size:12px;
  letter-spacing:.18em;
  opacity:.92;
}
@media (max-width:980px){
  .hero-motto{font-size:11px}
}

/* Info modal */
.im{position:fixed; inset:0; display:none; z-index:70}
.im.open{display:block}
.im-backdrop{position:absolute; inset:0; background:rgba(0,0,0,.55)}
.im-panel{
  position:relative;
  width:min(860px, 92vw);
  max-height:86vh;
  margin:6vh auto 0;
  background:#fff;
  border:1px solid #111;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}
.im-title{padding:16px 18px; border-bottom:1px solid #111; letter-spacing:.12em; font-size:12px}
.im-body{padding:18px; overflow:auto; max-height:calc(86vh - 56px)}
.im-x{
  position:absolute; top:10px; right:12px;
  width:36px; height:36px;
  border:1px solid #111;
  background:#fff;
  border-radius:10px;
  cursor:pointer;
  font-size:18px;
  line-height:34px;
}
.im-section{display:grid; gap:10px}
.im-h{font-family:var(--font); letter-spacing:.16em; font-size:12px; margin-bottom:6px}
.im-q{font-family:var(--font); letter-spacing:.10em; font-size:11px; text-transform:uppercase}
.im-a{font-size:14px; line-height:1.55; opacity:.92}
.info-link{opacity:.85}
.info-link:hover{opacity:1; text-decoration:underline}
body.no-scroll{overflow:hidden}

/* Footer heading */
.footer-h{font-size:11px; letter-spacing:.16em; margin-bottom:10px; opacity:.85}
