

  :root{
    --canvas:        #EAE2CE;
    --canvas-light:  #F5F0E2;
    --charcoal:      #211E19;  
    --barn-red:      #8C3A24;  
    --olive:         #565843;   
    --gunmetal:      #33362F;   
    --steel:         #767b70;   
    --brass:         #A9813F;   

    --font-display: 'Rye', serif;
    --font-stamp:   'Special Elite', 'Courier New', monospace;
    --font-body:    'Vollkorn', Georgia, serif;

    --edge: 1px solid rgba(33,30,25,0.16);
    --header-h: 92px;
    --header-h-shrunk: 60px;
  }

  *,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *,*::before,*::after{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
  }

  body{
    margin:0;
    background:var(--canvas);
    color:var(--charcoal);
    font-family:var(--font-body);
    font-size:17px;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
    position:relative;
  }

  /* subtle canvas grain, no image asset needed */
  body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:0;
    opacity:.5;
    background-image:
      radial-gradient(rgba(33,30,25,0.05) 1px, transparent 1px);
    background-size:3px 3px;
    mix-blend-mode:multiply;
  }

  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  h1,h2,h3{ margin:0; font-family:var(--font-display); font-weight:400; letter-spacing:.5px; }
  p{ margin:0 0 1em; }
  .icon{ width:19px; height:19px; stroke:currentColor; fill:none; stroke-width:1.6; }

  :focus-visible{ outline:2px solid var(--barn-red); outline-offset:3px; }

  .eyebrow{
    font-family:var(--font-stamp);
    font-size:.72rem;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:var(--barn-red);
    margin:0 0 .75rem;
  }

  .wrap{ max-width:1120px; margin:0 auto; padding-left:32px; padding-right:32px; }

  .btn{
    display:inline-block;
    font-family:var(--font-stamp);
    font-size:.85rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--canvas-light);
    background:var(--charcoal);
    padding:.95em 1.9em;
    border:1px solid var(--charcoal);
    position:relative;
    transition:transform .15s ease, background .2s ease;
  }
  .btn:hover{ background:var(--barn-red); border-color:var(--barn-red); }
  .btn:active{ transform:translateY(2px); }
  .btn::before,.btn::after{
    content:"";
    position:absolute; top:5px; width:4px; height:4px;
    border-radius:50%; background:var(--brass); opacity:.85;
  }
  .btn::before{ left:6px; }
  .btn::after{ right:6px; }

  /* header */
  .site-header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    height:var(--header-h);
    background:
      repeating-linear-gradient(100deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 5px),
      linear-gradient(180deg,#484c43 0%, var(--gunmetal) 55%, #2a2c26 100%);
    border-bottom:2px solid #1c1e19;
    box-shadow:0 3px 10px rgba(0,0,0,.25);
    transition:height .28s ease, box-shadow .28s ease;
  }
  .site-header.is-scrolled{
    height:var(--header-h-shrunk);
    box-shadow:0 2px 14px rgba(0,0,0,.4);
  }

  .header-inner{
    max-width:1120px; margin:0 auto; height:100%;
    padding:0 60px;
    display:flex; align-items:center; gap:28px;
  }

  .brand{ display:flex; align-items:center; gap:18px; margin-right:auto; }
  .brand-mark{
    height:56px; width:auto;
    filter:invert(1) brightness(1.7);
    transition:height .28s ease;
  }
  .site-header.is-scrolled .brand-mark{ height:38px; }
  .brand-word{
    font-family:var(--font-display);
    color:var(--canvas-light);
    font-size:1.5rem;
    letter-spacing:.5px;
    white-space:nowrap;
    transition:font-size .28s ease;
  }
  .site-header.is-scrolled .brand-word{ font-size:1.15rem; }

  .social-row{ display:flex; gap:14px; align-items:center; }
  .social-row a{
    display:flex; align-items:center; justify-content:center;
    width:50px; height:50px;
    color:var(--canvas-light);
    border:1px solid rgba(245,240,226,.35);
    border-radius:50%;
    transition:background .2s ease, border-color .2s ease, transform .15s ease, width .28s ease, height .28s ease;
  }
  .social-row a:hover{ background:var(--barn-red); border-color:var(--barn-red); transform:translateY(-2px); }

  .social-row img {
    scale: 0.8;
  }

  .site-header.is-scrolled .social-row a { width:42px; height:42px; }

  @media (max-width:560px){
    .header-inner{ padding:0 18px; gap:14px; }
    .brand-word{ font-size:1.1rem; }
    .site-header.is-scrolled .brand-word{ display:none; }
  }

  @media (max-width:620px){
    .brand-word{ display: none; }
  }

  /* hero / main */
  .hero{
    position:relative;
    padding:calc(var(--header-h) + 60px) 32px 32px;
    text-align:center;
    overflow:hidden;
    z-index:1;
  }

  .sr-only{
    position:absolute; width:1px; height:1px; padding:0; margin:-1px;
    overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
  }
  .hero-eyebrow{
    font-family:var(--font-stamp); font-size:.78rem; letter-spacing:.3em;
    text-transform:uppercase; color:var(--olive); margin-bottom:.4rem;
  }
  .hero-mark-wrap{
    position:relative; width:fit-content; margin:.6rem auto 1.6rem; padding:1.4rem 3rem;
  }
  .hero-mark-wrap::before{
    content:""; position:absolute; inset:0;
    background:radial-gradient(ellipse at center, rgba(140,58,36,.10), transparent 72%);
  }
  .hero-mark{
    position:relative; z-index:1;
    width:clamp(170px,22vw,240px);
    filter:drop-shadow(0 10px 16px rgba(33,30,25,.20));
  }
  .hero-sub{
    max-width:590px; margin:0 auto 2.2rem;
    font-size:1.1rem; color:rgba(33,30,25,.82);
    font-style:italic;
  }

  /* mission */
  .barrel{
    position:relative;
    background-color: #7c5d3a;
    background:repeating-linear-gradient(180deg,#8a6a45 0 3px, #7c5d3a 3px 20px);
  }
  .barrel-hoop{
    height:10px;
    background-color: #2c2e27;
    background:repeating-linear-gradient(90deg,#40433a 0 4px,#2c2e27 4px 9px);
    position:relative;
  }
  .barrel-hoop .rivet{
    position:absolute; top:50%; width:5px; height:5px; border-radius:50%;
    background:radial-gradient(circle at 35% 30%,#d9d3bd,var(--brass) 60%,#6b511f 100%);
    transform:translateY(-50%);
  }
  .mission{
    padding:1.0rem 32px;
    text-align:center;
  }
  .mission p{
    max-width:640px; margin:0 auto;
    font-family:var(--font-display);
    font-size:clamp(1.3rem,2.6vw,1.9rem);
    color:var(--canvas-light);
    line-height:1.4;
    text-shadow:1px 1px 0 rgba(0,0,0,.35);
  }

  /* sections - shared */
  section{ position:relative; z-index:1; }
  .section-head{ text-align:center; max-width:640px; margin:0 auto 3rem; }
  .section-head h2{ font-size:clamp(2rem,4vw,2.7rem); }

  .keeper, .flock{ padding:6.5rem 32px; }
  .flock{ border-top:var(--edge); border-bottom:var(--edge); }
  .keeper { padding-top: 30px; }

  /* cards */
  .tag-card{
    position:relative;
    background:var(--canvas-light);
    border:1px solid rgba(33,30,25,.18);
    box-shadow:0 10px 26px rgba(33,30,25,.10);
  }
  .tag-grommet{
    position:absolute; left:50%; top:-11px; transform:translateX(-50%);
    width:22px; height:22px; border-radius:50%;
    background:radial-gradient(circle at 35% 30%,#f2ede0,var(--steel) 60%,#4d5148 100%);
    border:1px solid rgba(0,0,0,.3);
  }
  .tag-grommet::after{
    content:""; position:absolute; inset:6px; border-radius:50%;
    background:var(--canvas); box-shadow:inset 0 1px 3px rgba(0,0,0,.4);
  }

  .keeper-wrap{
    max-width:920px; margin:0 auto;
    display:grid; grid-template-columns:340px 1fr;
    gap:0;
    box-shadow:0 10px 26px rgba(33,30,25,.10);
  }
  .keeper-photo{
    position:relative;
    padding:14px;
    background:var(--canvas-light);
    border:1px solid rgba(33,30,25,.18);
    border-right:none;
  }
  .keeper-photo img{
    width:100%; height:100%; object-fit:cover;
    filter:sepia(.28) saturate(.75) contrast(1.03);
    border:1px solid rgba(33,30,25,.25);
  }
  .keeper-photo .corner{
    position:absolute; width:9px; height:9px;
    border-color:var(--brass); border-style:solid; opacity:.9;
  }
  .keeper-photo .corner.tl{ top:6px; left:6px; border-width:2px 0 0 2px; }
  .keeper-photo .corner.br{ bottom:6px; right:6px; border-width:0 2px 2px 0; }

  .keeper-body{
    padding:2.6rem 2.8rem;
    border:1px solid rgba(33,30,25,.18);
  }
  .keeper-body h2{ font-size:2rem; margin-bottom:.15rem; }
  .keeper-role{
    font-family:var(--font-stamp); font-size:.78rem; letter-spacing:.12em;
    text-transform:uppercase; color:var(--olive); margin-bottom:1.1rem;
    margin-top: 0.4rem;
  }
  .keeper-body p{ color:rgba(33,30,25,.85); }
  .keeper-note{
    margin-top:1.2rem; padding-top:1.1rem; border-top:1px dashed rgba(33,30,25,.3);
    font-family:var(--font-stamp); font-size:.78rem; color:var(--steel);
  }

  .keeper-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  /* three tags */
  .flock-line{
    max-width:920px; margin:0 auto 3.6rem;
    border-top:1px solid rgba(33,30,25,.25);
    position:relative;
  }
  .flock-row{
    max-width:920px; margin:0 auto;
    display:grid; grid-template-columns:repeat(1,1fr); gap:44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .flock-card{ padding:2.2rem 1.6rem 1.8rem; text-align:center; }
  .flock-card .icon-badge{
    width:52px; height:52px; margin:0 auto 1.1rem;
    border-radius:50%;
    background:var(--gunmetal);
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 3px 8px rgba(0,0,0,.25);
  }
  .flock-card .icon-badge .icon{ width:24px; height:24px; color:var(--canvas-light); stroke-width:1.4; }
  .flock-card h3{ font-size:1.25rem; margin-bottom:.6rem; font-family:var(--font-stamp); letter-spacing:.02em; text-transform:uppercase; font-size:1rem; }
  .flock-card p{ font-size:.95rem; color:rgba(33,30,25,.78); margin:0; }

  .flock .keeper-wrap {
    grid-template-columns: 1fr 340px;
  }
  .flock .keeper-photo {
    border-right: 1px;
    border:1px solid rgba(33,30,25,.18);
    border-left: none;
  }

  .keeper-body h2 { line-height: 1.4; }

  @media (max-width:760px){
    .keeper-wrap{ grid-template-columns:1fr; }
    .flock .keeper-wrap{ grid-template-columns:1fr; }
    .flock .keeper-photo {
      border:1px solid rgba(33,30,25,.18);
      border-top: none;
    }
    .keeper-photo{ border-right:1px solid rgba(33,30,25,.18); border-bottom:none; aspect-ratio:4/3; }
    .keeper-photo img{ aspect-ratio:4/3; }
  }

  /* contact / footer */
  .contact{
    padding:5.5rem 32px 5.5rem;
    text-align:center;
    background:var(--gunmetal);
    color:var(--canvas-light);
  }
  .contact .eyebrow{ color:var(--brass); }
  .contact h2{ color:var(--canvas-light); font-size:clamp(2rem,4vw,2.7rem); margin-bottom:1rem; line-height: 1.4; }
  .contact p{ max-width:520px; margin:0 auto 2.4rem; color:rgba(245,240,226,.78); }

  .contact-socials{ display:flex; justify-content:center; gap:20px; flex-wrap:wrap; }
  .contact-socials a{
    display:flex; justify-content:center; align-items: center; gap:.5em;
    height: 4em;
    width: 160px;
    padding: 0px 20px;
    border:1px solid rgba(245,240,226,.3);
    font-family:var(--font-stamp); font-size:.82rem; letter-spacing:.1em; text-transform:uppercase;
    transition:background .2s ease, border-color .2s ease, transform .15s ease;
  }
  .contact-socials a:hover{ background:var(--barn-red); border-color:var(--barn-red); transform:translateY(-2px); }
  .contact-social-icon { width: 40px; }

  .site-footer{
    padding:2.4rem 32px; text-align:center;
    background:#26281f;
    color:rgba(245,240,226,.55);
    font-family:var(--font-stamp); font-size:.72rem; letter-spacing:.08em;
  }
  .site-footer img{ height:80px; margin:0 auto 1.4rem; filter:invert(1) brightness(1.6); opacity:.8; }
  .site-footer .fine{ margin-top:.3rem; opacity:.7; }
  .site-footer p{ margin-bottom: 0; }

