:root{
    --bg: #FBF1E2;
    --paper: #FFFCF6;
    --ink: #241B12;
    --ink-soft: #5A4C3C;
    --orange: #E2600B;
    --orange-deep: #9C3B0C;
    --orange-tint: #FBE0C6;
    --gold: #EFA324;
    --green: #4B5D3A;
    --line: rgba(36,27,18,0.14);
    --line-soft: rgba(36,27,18,0.08);
    --radius: 4px;
    --shadow: 0 18px 40px -20px rgba(36,20,8,0.35);
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--bg);
    color:var(--ink);
    font-family:'Work Sans', -apple-system, sans-serif;
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%; display:block;}
  a{color:inherit;}
  h1,h2,h3,h4{
    font-family:'Space Grotesk', 'Work Sans', sans-serif;
    font-weight:700;
    line-height:1.08;
    margin:0;
    letter-spacing:-0.01em;
  }
  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:12.5px;
    font-weight:600;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--orange-deep);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width:22px;
    height:2px;
    background:var(--orange);
    display:inline-block;
  }
  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }
  :focus-visible{
    outline:3px solid var(--orange-deep);
    outline-offset:3px;
  }
  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
  }

  /* ---------- NAV ---------- */
  header.site{
    position:sticky; top:0; z-index:100;
    background:rgba(251,241,226,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    max-width:1180px; margin:0 auto; padding:16px 32px;
    display:flex; align-items:center; justify-content:space-between;
    gap:20px;
  }
  .brand{
    display:flex; align-items:center; gap:12px;
    text-decoration:none; color:var(--ink);
  }
  .brand svg{width:42px; height:42px; flex:none;}
  .brand-word{
    font-family:'Space Grotesk', sans-serif;
    font-weight:700;
    font-size:17px;
    line-height:1.15;
    letter-spacing:0.01em;
  }
  .brand-word span{
    display:block;
    font-family:'IBM Plex Mono', monospace;
    font-weight:500;
    font-size:10.5px;
    letter-spacing:0.16em;
    color:var(--ink-soft);
    text-transform:uppercase;
    margin-top:2px;
  }
  nav.links{
    display:flex; gap:30px; align-items:center;
    font-size:14.5px; font-weight:500;
  }
  nav.links a{
    text-decoration:none;
    color:var(--ink-soft);
    position:relative;
    padding:4px 0;
  }
  nav.links a:hover{color:var(--ink);}
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--orange);
    color:#fff;
    font-weight:600;
    font-size:14.5px;
    padding:11px 20px;
    border-radius:var(--radius);
    text-decoration:none;
    border:1px solid var(--orange);
    transition:background .15s ease, transform .15s ease;
    white-space:nowrap;
  }
  .btn:hover{background:var(--orange-deep); border-color:var(--orange-deep);}
  .btn:active{transform:translateY(1px);}
  .btn.ghost{
    background:transparent; color:var(--ink); border:1px solid var(--line);
  }
  .btn.ghost:hover{border-color:var(--ink); background:transparent;}
  .mobile-toggle{display:none;}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    align-items:stretch;
    min-height:640px;
    background:var(--paper);
    border-bottom:1px solid var(--line);
  }
  .hero-copy{
    padding:88px 5vw 72px 32px;
    max-width:640px;
    margin-left:auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:22px;
  }
  .hero h1{
    font-size:clamp(38px, 4.6vw, 60px);
    color:var(--ink);
  }
  .hero h1 em{
    font-style:normal;
    color:var(--orange);
  }
  .hero p.lede{
    font-size:18px;
    color:var(--ink-soft);
    max-width:480px;
  }
  .hero-cta{
    display:flex; gap:14px; flex-wrap:wrap; margin-top:6px;
  }
  .hero-facts{
    display:flex; gap:28px; margin-top:30px; flex-wrap:wrap;
    border-top:1px solid var(--line); padding-top:24px;
  }
  .hero-fact b{
    display:block; font-family:'Space Grotesk',sans-serif; font-size:22px; color:var(--orange-deep);
  }
  .hero-fact span{
    font-size:12.5px; color:var(--ink-soft); font-family:'IBM Plex Mono',monospace; letter-spacing:0.04em;
  }
  .hero-media{
    position:relative;
    overflow:hidden;
    background:var(--ink);
  }
  .hero-media img{
    width:100%; height:100%; object-fit:cover; object-position:center 25%;
    min-height:420px;
  }
  .hero-media::after{
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(105deg, var(--paper) 0%, rgba(251,241,226,0) 14%, rgba(36,20,8,0.08) 100%);
    pointer-events:none;
  }
  .hero-tag{
    position:absolute; left:24px; bottom:24px;
    background:rgba(36,27,18,0.82);
    color:#fff;
    font-family:'IBM Plex Mono',monospace;
    font-size:11.5px;
    letter-spacing:0.06em;
    padding:8px 12px;
    border-radius:3px;
  }

  /* ---------- CORRUGATED DIVIDER (signature) ---------- */
  .corrugated{
    height:26px;
    width:100%;
    background:
      repeating-linear-gradient(
        90deg,
        var(--orange) 0px, var(--orange) 3px,
        var(--orange-deep) 3px, var(--orange-deep) 4px,
        var(--orange) 4px, var(--orange) 15px
      );
    position:relative;
  }
  .corrugated::before, .corrugated::after{
    content:"";
    position:absolute; left:0; right:0; height:1px;
  }
  .corrugated::before{top:0; background:rgba(255,255,255,0.35);}
  .corrugated::after{bottom:0; background:rgba(0,0,0,0.28);}

  /* ---------- SECTION SHARED ---------- */
  section{padding:88px 0;}
  .section-head{
    max-width:640px;
    margin-bottom:48px;
  }
  .section-head h2{
    font-size:clamp(28px,3vw,38px);
    margin-top:14px;
  }
  .section-head p{
    color:var(--ink-soft);
    font-size:16.5px;
    margin-top:14px;
    max-width:520px;
  }

  /* ---------- ABOUT ---------- */
  .about{
    background:var(--paper);
    border-bottom:1px solid var(--line);
  }
  .about .wrap{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:64px;
    align-items:center;
  }
  .about-media{
    position:relative;
  }
  .about-media img{
    border-radius:var(--radius);
    box-shadow:var(--shadow);
  }
  .about-stamp{
    position:absolute; bottom:-22px; right:-22px;
    width:104px; height:104px;
    border-radius:50%;
    background:var(--orange);
    color:#fff;
    display:flex; align-items:center; justify-content:center;
    text-align:center;
    font-family:'IBM Plex Mono',monospace;
    font-size:10.5px;
    font-weight:600;
    letter-spacing:0.05em;
    line-height:1.4;
    border:3px dashed rgba(255,255,255,0.55);
    box-shadow:var(--shadow);
    padding:8px;
  }
  .about-body p{
    color:var(--ink-soft);
    font-size:16.5px;
    margin:16px 0 0;
  }
  .about-body h2{
    font-size:clamp(26px,3vw,34px);
    margin-top:14px;
  }
  .value-row{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
    margin-top:34px;
  }
  .value{
    border-top:2px solid var(--orange);
    padding-top:12px;
  }
  .value b{
    display:block; font-family:'Space Grotesk',sans-serif; font-size:15.5px; margin-bottom:4px;
  }
  .value span{color:var(--ink-soft); font-size:13.8px;}

  /* ---------- PRODUCTS ---------- */
  .products{background:var(--bg);}
  .card-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
  }
  .card{
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:28px 22px;
    display:flex; flex-direction:column; gap:14px;
    transition:border-color .15s ease, transform .15s ease;
  }
  .card:hover{border-color:var(--orange); transform:translateY(-3px);}
  .card .icon{
    width:44px; height:44px;
    display:flex; align-items:center; justify-content:center;
    background:var(--orange-tint);
    border-radius:50%;
  }
  .card .icon svg{width:22px; height:22px; stroke:var(--orange-deep);}
  .card h3{font-size:18px;}
  .card p{color:var(--ink-soft); font-size:14.5px; margin:0;}
  .card .tag{
    font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.06em;
    color:var(--green); text-transform:uppercase; margin-top:auto; padding-top:6px;
  }

  /* ---------- GALLERY ---------- */
  .gallery{background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .gal-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    grid-auto-rows:130px;
    gap:10px;
  }
  .gal-grid figure{
    margin:0; position:relative; overflow:hidden; border-radius:3px;
    grid-column:span 2; grid-row:span 2;
  }
  .gal-grid figure.wide{grid-column:span 3;}
  .gal-grid figure.tall{grid-row:span 3;}
  .gal-grid img{
    width:100%; height:100%; object-fit:cover;
    transition:transform .5s ease;
  }
  .gal-grid figure:hover img{transform:scale(1.06);}
  .gal-grid figcaption{
    position:absolute; left:0; right:0; bottom:0;
    padding:10px 12px 8px;
    background:linear-gradient(0deg, rgba(20,13,6,0.78), rgba(20,13,6,0));
    color:#fff;
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    letter-spacing:0.03em;
    opacity:0;
    transition:opacity .2s ease;
  }
  .gal-grid figure:hover figcaption{opacity:1;}

  /* ---------- WHY / STATS ---------- */
  .why{background:var(--ink); color:#F4E9D9;}
  .why .section-head h2, .why .eyebrow{color:#F4E9D9;}
  .why .eyebrow::before{background:var(--gold);}
  .why .eyebrow{color:var(--gold);}
  .why .section-head p{color:rgba(244,233,217,0.72);}
  .why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:rgba(244,233,217,0.14);
    border:1px solid rgba(244,233,217,0.14);
  }
  .why-item{
    background:var(--ink);
    padding:32px 26px;
  }
  .why-item .num{
    font-family:'Space Grotesk',sans-serif;
    font-size:15px;
    color:var(--orange);
    margin-bottom:14px;
  }
  .why-item h3{color:#F4E9D9; font-size:17px; margin-bottom:8px;}
  .why-item p{color:rgba(244,233,217,0.68); font-size:14px; margin:0;}

  /* ---------- LOCATION / CONTACT ---------- */
  .contact{background:var(--bg);}
  .contact .wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:56px;
    align-items:start;
  }
  .contact-card{
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:36px;
  }
  .contact-line{
    display:flex; gap:16px; padding:16px 0;
    border-top:1px solid var(--line-soft);
  }
  .contact-line:first-of-type{border-top:none; padding-top:0;}
  .contact-line .ic{
    width:36px; height:36px; flex:none;
    display:flex; align-items:center; justify-content:center;
    background:var(--orange-tint); border-radius:50%;
  }
  .contact-line .ic svg{width:17px; height:17px; stroke:var(--orange-deep);}
  .contact-line b{display:block; font-size:15px; margin-bottom:2px;}
  .contact-line span, .contact-line a{color:var(--ink-soft); font-size:14.5px; text-decoration:none;}
  .contact-line a:hover{color:var(--orange-deep);}
  .contact-cta{
    margin-top:26px; display:flex; gap:12px; flex-wrap:wrap;
  }
  .map-frame{
    border-radius:var(--radius);
    overflow:hidden;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    height:100%;
    min-height:420px;
  }
  .map-frame iframe{width:100%; height:100%; min-height:420px; border:0; display:block;}

  /* ---------- FOOTER ---------- */
  footer{
    background:var(--ink);
    color:rgba(244,233,217,0.65);
    padding:44px 0 30px;
  }
  footer .wrap{
    display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap;
  }
  footer .brand{color:#F4E9D9;}
  footer .brand-word span{color:rgba(244,233,217,0.55);}
  .foot-links{display:flex; gap:22px; font-size:13.5px;}
  .foot-links a{text-decoration:none; color:rgba(244,233,217,0.65);}
  .foot-links a:hover{color:#fff;}
  .foot-bottom{
    max-width:1180px; margin:26px auto 0; padding:20px 32px 0;
    border-top:1px solid rgba(244,233,217,0.14);
    font-size:12.5px; display:flex; justify-content:center; text-align:center; flex-wrap:wrap; gap:10px;
  }
  .foot-bottom a{
    color:rgba(244,233,217,0.75); 
    text-decoration:none; 
    border-bottom:1px dotted rgba(244,233,217,0.4); 
    padding-bottom:1px;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .foot-bottom a:hover{
    color:#fff; 
    border-bottom-style:solid;
    border-bottom-color:#fff;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px){
    .hero{grid-template-columns:1fr; min-height:auto;}
    .hero-copy{margin:0; padding:52px 24px 40px; max-width:none;}
    .hero-media img{min-height:320px;}
    .about .wrap{grid-template-columns:1fr; gap:40px;}
    .value-row{grid-template-columns:repeat(3,1fr);}
    .card-grid{grid-template-columns:repeat(2,1fr);}
    .why-grid{grid-template-columns:repeat(2,1fr);}
    .contact .wrap{grid-template-columns:1fr;}
    .gal-grid{grid-template-columns:repeat(4,1fr); grid-auto-rows:110px;}
    .gal-grid figure.wide{grid-column:span 2;}
    nav.links{display:none;}
  }
  @media (max-width: 600px){
    .wrap{padding:0 20px;}
    .nav{padding:14px 20px;}
    section{padding:60px 0;}
    .value-row{grid-template-columns:1fr 1fr;}
    .card-grid{grid-template-columns:1fr;}
    .why-grid{grid-template-columns:1fr;}
    .gal-grid{grid-template-columns:repeat(2,1fr); grid-auto-rows:150px;}
    .gal-grid figure.wide{grid-column:span 2;}
    .gal-grid figure.tall{grid-row:span 2;}
    .hero-facts{gap:20px;}
  }