 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream:    #fdf6ec;
      --cream2:   #fff9f2;
      --cream3:   #faebd7;
      --orange:   #e8600a;
      --orange2:  #ff6f20;
      --orangelt: #fde8d8;
      --orangedk: #c44f00;
      --text:     #1e1a16;
      --gray:     #6b6257;
      --border:   #f0dfc8;
      --card:     #fffcf7;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Barlow', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 68px;
      background: rgba(253,246,236,.97);
      border-bottom: 3px solid var(--orange);
      box-shadow: 0 2px 20px rgba(232,96,10,.1);
    }

    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo .emblem {
      width: 42px; height: 42px; flex-shrink: 0;
      background: var(--orange);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 1px; color: #fff;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    }
    .nav-logo .logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; letter-spacing: 2px; color: var(--text); line-height: 1.1; }
    .nav-logo .logo-text span { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: 4px; color: var(--orange); text-transform: uppercase; }

    .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .9rem; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; text-decoration: none;
      color: var(--gray); transition: color .25s;
    }
    .nav-links a:hover { color: var(--orange); }
    .nav-cta {
      background: var(--orange) !important; color: #fff !important;
      padding: 8px 22px;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      font-weight: 700 !important;
    }
    .nav-cta:hover { background: var(--orange2) !important; }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 26px; height: 2px; background: var(--text); transition: .3s; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    /* ── HERO ── */
    #home {
      position: relative; min-height: 100vh;
      display: flex; align-items: center;
      padding: 90px 5% 60px; overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #fdf6ec 0%, #faebd7 45%, #fde8d4 100%);
    }

    /* geometric ACP panel grid overlay */
    .hero-panels {
      position: absolute; top: 0; right: 0;
      width: 52%; height: 100%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(6, 1fr);
      gap: 4px; padding: 4px;
      opacity: .55;
      pointer-events: none;
    }
    .hero-panels .panel {
      background: var(--orangelt);
      transition: background .3s;
    }
    .hero-panels .panel.p-orange  { background: rgba(232,96,10,.18); }
    .hero-panels .panel.p-deep    { background: rgba(196,79,0,.12); }
    .hero-panels .panel.p-light   { background: rgba(253,232,216,.6); }
    .hero-panels .panel.p-cream   { background: rgba(250,235,215,.8); }
    .hero-panels .panel.p-white   { background: rgba(255,252,247,.9); }
    .hero-panels .panel.tall      { grid-row: span 2; }
    .hero-panels .panel.wide      { grid-column: span 2; }

    /* diagonal stripe left section */
    .hero-stripes {
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -52deg, transparent, transparent 34px,
        rgba(232,96,10,.04) 34px, rgba(232,96,10,.04) 36px
      );
      pointer-events: none;
    }

    .hero-content { position: relative; z-index: 2; max-width: 620px; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--orangelt);
      border: 1.5px solid rgba(232,96,10,.3);
      color: var(--orange);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .76rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
      padding: 6px 16px; margin-bottom: 24px;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }
    .hero-eyebrow::before { content: '◆'; font-size: .55rem; }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.6rem, 8vw, 7.5rem);
      line-height: .88; letter-spacing: 2px; text-transform: uppercase;
      color: var(--text); margin-bottom: 24px;
    }
    .hero-title .stroke { -webkit-text-stroke: 1.5px var(--orange); color: transparent; display: block; }
    .hero-title .fill   { color: var(--text); display: block; }
    .hero-title .accent { color: var(--orange); display: block; }

    .hero-sub {
      font-size: 1.08rem; font-weight: 400; line-height: 1.8;
      color: var(--gray); max-width: 500px; margin-bottom: 40px;
    }

    .hero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--orange); color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      padding: 14px 36px; text-decoration: none;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: background .25s, transform .2s;
    }
    .btn-primary:hover { background: var(--orange2); transform: translateY(-2px); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 10px;
      border: 2px solid var(--orange); color: var(--orange);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      padding: 12px 36px; text-decoration: none;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: background .25s, color .25s;
    }
    .btn-secondary:hover { background: var(--orange); color: #fff; }

    .hero-stats {
      display: flex; gap: 40px; flex-wrap: wrap;
      padding-top: 28px; border-top: 2px solid var(--border);
    }
    .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--orange); line-height: 1; }
    .stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

    /* ── SECTION BASE ── */
    section { position: relative; padding: 90px 5%; }
    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
      color: var(--orange); margin-bottom: 12px;
      display: flex; align-items: center; gap: 10px;
    }
    .section-label::before { content: ''; width: 28px; height: 3px; background: var(--orange); border-radius: 2px; }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: .92; letter-spacing: 1px; color: var(--text); margin-bottom: 16px;
    }
    .section-sub { font-size: 1rem; color: var(--gray); max-width: 560px; line-height: 1.75; }

    /* ── SERVICES ── */
    #services { background: var(--cream2); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px; margin-top: 56px;
    }
    .service-card {
      background: var(--card);
      border: 1.5px solid var(--border);
      padding: 40px 32px; position: relative; overflow: hidden;
      transition: transform .3s, box-shadow .3s;
      box-shadow: 0 2px 12px rgba(232,96,10,.06);
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(232,96,10,.14); }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--orange), var(--orangelt));
    }
    .service-card::after {
      content: attr(data-num);
      position: absolute; bottom: -10px; right: 16px;
      font-family: 'Bebas Neue', sans-serif; font-size: 5.5rem;
      color: rgba(232,96,10,.08); line-height: 1; pointer-events: none;
    }
    .service-icon {
      width: 54px; height: 54px; margin-bottom: 22px;
      background: var(--orangelt);
      display: flex; align-items: center; justify-content: center; font-size: 22px;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    }
    .service-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem; letter-spacing: 1px; color: var(--text); margin-bottom: 12px; }
    .service-desc { font-size: .93rem; color: var(--gray); line-height: 1.8; }

    /* ── ABOUT ── */
    #about {
      background: var(--cream3);
      border-top: 3px solid var(--border);
      border-bottom: 3px solid var(--border);
    }

    .about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }

    .about-visual { position: relative; display: flex; align-items: center; justify-content: center; }

    /* ACP panel art for about visual */
    .acp-art {
      width: 100%; max-width: 360px; aspect-ratio: 1;
      display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(5, 1fr); gap: 5px;
    }
    .acp-art .ap { border-radius: 2px; transition: opacity .3s; }
    .acp-art .ap:hover { opacity: .7; }
    .acp-art .c1 { background: var(--orange); }
    .acp-art .c2 { background: var(--orangelt); }
    .acp-art .c3 { background: var(--cream2); border: 1px solid var(--border); }
    .acp-art .c4 { background: var(--orangedk); }
    .acp-art .c5 { background: var(--orange2); opacity: .6; }

    .about-badge {
      position: absolute; bottom: 0; right: 0;
      background: var(--orange); color: #fff;
      padding: 14px 22px;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      text-align: center;
    }
    .about-badge .num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; line-height: 1; }
    .about-badge .txt { font-family: 'Barlow Condensed', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.8); }

    .about-text { font-size: 1.04rem; color: #4a4035; line-height: 1.85; margin-bottom: 18px; }

    .about-list { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
    .about-list-item {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 16px 20px;
      background: var(--cream2);
      border-left: 4px solid var(--orange);
      box-shadow: 0 2px 8px rgba(232,96,10,.07);
    }
    .about-list-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
    .about-list-title { font-weight: 700; font-size: .97rem; color: var(--text); margin-bottom: 3px; }
    .about-list-desc { font-size: .87rem; color: var(--gray); line-height: 1.6; }

    /* ── CONTACT ── */
    #contact { background: var(--cream2); }

    .contact-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px; margin-top: 56px;
    }
    .contact-item {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 26px 22px;
      background: var(--card);
      border: 1.5px solid var(--border);
      border-bottom: 3px solid var(--orange);
      transition: transform .25s, box-shadow .25s;
      box-shadow: 0 2px 10px rgba(232,96,10,.05);
    }
    .contact-item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(232,96,10,.12); }
    .contact-item-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--orangelt);
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    }
    .contact-item-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .68rem; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--orange); margin-bottom: 6px;
    }
    .contact-item-val { font-size: .95rem; color: var(--text); line-height: 1.7; }
    .contact-item-val a { color: var(--text); text-decoration: none; font-weight: 700; }
    .contact-item-val a:hover { color: var(--orange); }

    /* ── FOOTER ── */
    footer {
      background: var(--text);
      border-top: 4px solid var(--orange);
      padding: 26px 5%; text-align: center;
    }
    .footer-copy { font-family: 'Barlow Condensed', sans-serif; font-size: .82rem; letter-spacing: 1px; color: rgba(255,255,255,.4); line-height: 1.9; }
    .footer-copy a { color: var(--orange2); text-decoration: none; font-weight: 600; }
    .footer-copy a:hover { color: #ff8c44; }

    /* ── ANIMATIONS ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-visual { display: none; }
    }
    @media (max-width: 700px) {
      .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--cream); border-bottom: 3px solid var(--orange); padding: 24px 5%; gap: 20px; }
      .nav-links.open { display: flex; }
      .hamburger { display: flex; }
      .hero-panels { display: none; }
    }