  :root{
    --ink:#181818;
    --paper:#fff8f1;
    --flame-1:#d49829;
    --flame-2:#ffe200;
    --flame-3:#fac70d;
    --dark:#0a0a0a;
    --line:#e6e6e6;
    --muted:#6e6e6e;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  body{
    font-family:'Trebuchet MS','Segoe UI',sans-serif;
    color:var(--ink);
    background:#000 url("../images/background.jpg") center top / cover no-repeat fixed;
  }
  a{text-decoration:none;color:inherit;}
  img{display:block;max-width:100%;}

  /* ---------- NAV BAR ---------- */
  nav{
    position:absolute;
    top:0;left:0;right:0;
    z-index:5;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:26px 6%;
  }
  .navlinks{
    display:flex;
    gap:34px;
    list-style:none;
    color:rgba(255,255,255,.85);
    font-size:18px;
    font-weight:600;
  }
  .navlinks a:hover{color:var(--flame-3);}
  .navlinks .active{color:var(--flame-3);}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    min-height:460px;
    display:grid;
    grid-template-columns:1.15fr 1fr;
    align-items:center;
    color:#fff;
    overflow:hidden;
    clip-path:polygon(0 0,100% 0,100% 88%,0 100%);
  }
  @media (max-width:780px){
    .hero{grid-template-columns:1fr; min-height:auto; padding-bottom:40px;}
  }

  .hero-text{
    padding:90px 6% 100px 7%;
    position:relative;
    z-index:2;
  }
  @media (max-width:780px){
    .hero-text{padding:110px 8% 20px; text-align:center;}
  }
  .hero .eyebrow{
    text-transform:uppercase;
    letter-spacing:.3em;
    font-size:12px;
    color:var(--flame-3);
    font-weight:700;
    margin-bottom:16px;
  }
  .hero h1{
    font-family:'Impact','Arial Black',sans-serif;
    font-weight:400;
    font-size:clamp(38px,6vw,58px);
    background:linear-gradient(180deg,#fff 20%, var(--flame-3) 70%, var(--flame-2) 100%);
    -webkit-background-clip:text;background-clip:text;color:transparent;
    margin-bottom:18px;
  }
  .hero p{
    max-width:480px;
    color:rgba(255,255,255,.72);
    font-size:16px;
    line-height:1.6;
  }
  @media (max-width:780px){ .hero p{margin:0 auto;} }

  .hero-illustration{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:center;
    height:100%;
    padding:40px 6%;
  }
  .hero-illustration::before{
    content:'';
    position:absolute;
    width:380px;height:380px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,226,0,.18), transparent 70%);
  }
  .hero-illustration img{
    position:relative;
    width:100%;
    max-width:500px;
    filter:drop-shadow(0 18px 30px rgba(0,0,0,.45));
  }
  @media (max-width:780px){
    .hero-illustration{padding:0 6% 30px;}
    .hero-illustration img{max-width:500px;}
  }
  .hero-illustration.icon img{max-width:300px;}

  /* ---------- BRANDS ROW ---------- */
  .brands-row{
    max-width:1080px;
    margin:0 auto;
    padding:40px 5%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:56px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
  }
  .brands-row img{
    height:50px;
    width:auto;
  }
  @media (max-width:600px){
    .brands-row{gap:28px;}
    .brands-row img{height:28px;}
  }

  /* ---------- PROFILE DOWNLOAD ---------- */
  .profile-wrap{
    max-width:1080px;
    margin:0 auto;
    padding:40px 5%;
    position:relative;
    z-index:2;
  }
  .profile-card{
    background:#fff;
    border-radius:20px;
    box-shadow:0 30px 60px -20px rgba(0,0,0,.35);
    display:grid;
    grid-template-columns:220px 1fr;
    overflow:hidden;
    align-items:stretch;
  }
  @media (max-width:600px){ .profile-card{grid-template-columns:1fr;} }
  .profile-thumb{
    background:repeating-linear-gradient(45deg, #f2f0eb 0 10px, #ebe8e1 10px 20px);
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:180px;
    color:var(--muted);
    font-size:12px;
    text-align:center;
    padding:16px;
  }
  .profile-info{
    padding:32px 36px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:10px;
  }
  .profile-info h2{
    font-family:'Impact','Arial Black',sans-serif;
    font-weight:400;
    font-size:26px;
    color:var(--ink);
  }
  .profile-info p{
    color:var(--muted);
    font-size:14.5px;
    line-height:1.6;
    max-width:420px;
  }
  .download-btn{
    margin-top:10px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    width:fit-content;
    border:none;
    border-radius:10px;
    padding:13px 26px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:var(--ink);
    background:linear-gradient(120deg,var(--flame-1),var(--flame-2));
    box-shadow:0 14px 26px -10px rgba(212,152,41,.55);
    transition:transform .25s, box-shadow .25s;
  }
  .download-btn:hover{transform:translateY(-2px); box-shadow:0 18px 32px -10px rgba(212,152,41,.65);}

  /* ---------- GET IN TOUCH SECTION ---------- */
  .panel-wrap{
    max-width:1080px;
    margin:0 auto;
    padding:0 5% 60px;
    position:relative;
    z-index:3;
  }
  .panel{
    background:#fff;
    border-radius:20px;
    box-shadow:0 30px 60px -20px rgba(36,18,8,.18);
    display:grid;
    grid-template-columns:1fr 1fr;
    overflow:hidden;
  }
  @media (max-width:780px){ .panel{grid-template-columns:1fr;} }

  .touch{
    padding:50px 44px;
    border-right:1px solid var(--line);
  }
  @media (max-width:780px){ .touch{border-right:none;border-bottom:1px solid var(--line);} }
  @media (max-width:600px){
    .touch{padding:36px 22px;}
    .form{padding:36px 22px;}
    .fgrid{grid-template-columns:1fr;}
  }

  .touch h2, .form h2{
    font-family:'Impact','Arial Black',sans-serif;
    font-weight:400;
    font-size:30px;
    margin-bottom:10px;
    color:var(--ink);
  }
  .touch > p{
    color:var(--muted);
    font-size:14.5px;
    line-height:1.6;
    margin-bottom:30px;
    max-width:340px;
  }

  .row{
    display:flex;
    gap:16px;
    margin-bottom:24px;
  }
  .row .ic{
    flex:0 0 auto;
    width:44px;height:44px;border-radius:12px;
    background:linear-gradient(145deg,var(--flame-2),var(--flame-1));
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 8px 16px -6px rgba(212,152,41,.55);
  }
  .row .ic svg{width:20px;height:20px;stroke:var(--ink);fill:none;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round;}
  .row .meta{min-width:0;}
  .row .meta h4{
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:var(--ink);
    margin-bottom:5px;
    display:flex;align-items:center;gap:6px;
  }
  .row .meta .flag{font-size:13px;}
  .row .meta div.line, .row .meta a.line{
    font-size:15px;
    color:#4a3a2c;
    font-weight:600;
    overflow-wrap:break-word;
    word-break:break-word;
    display:inline-block;
    max-width:100%;
  }
  .row .meta a.line:hover{color:var(--flame-1);}
  @media (max-width:600px){
    .row{flex-direction:column; gap:10px;}
    .row .ic{margin-bottom:2px;}
  }

  .social-label{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.1em;
    color:var(--muted);
    margin:18px 0 14px;
    border-top:1px solid var(--line);
    padding-top:22px;
  }
  .social{
    display:flex;
    gap:10px;
  }
  .social a{
    width:36px;height:36px;border-radius:50%;
    background:var(--ink);
    display:flex;align-items:center;justify-content:center;
    transition:background .25s, transform .25s;
  }
  .social a:hover{background:var(--flame-1); transform:translateY(-3px);}
  .social svg{width:16px;height:16px;fill:#fff;}

  /* form side */
  .form{
    padding:50px 44px;
    background:#fffaf4;
  }
  .form p{
    color:var(--muted);
    font-size:14.5px;
    line-height:1.6;
    margin-bottom:26px;
    max-width:340px;
  }
  .fgrid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:14px;
  }
  .field{min-width:0;}
  .field label{
    display:block;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.07em;
    color:var(--muted);
    margin-bottom:6px;
  }
  .field input, .field textarea{
    width:100%;
    border:1px solid var(--line);
    background:#fff;
    border-radius:10px;
    padding:11px 13px;
    font-size:14px;
    color:var(--ink);
    font-family:inherit;
    outline:none;
    transition:border-color .2s, box-shadow .2s;
  }
  .field input:focus, .field textarea:focus{
    border-color:var(--flame-2);
    box-shadow:0 0 0 3px rgba(255,122,26,.15);
  }
  .field.full{grid-column:1/-1; margin-bottom:14px;}
  .field textarea{resize:vertical; min-height:90px;}

  .send-btn{
    margin-top:6px;
    width:100%;
    border:none;
    border-radius:10px;
    padding:14px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
    color:var(--ink);
    background:linear-gradient(120deg,var(--flame-1),var(--flame-2));
    cursor:pointer;
    box-shadow:0 14px 26px -10px rgba(212,152,41,.55);
    transition:transform .25s, box-shadow .25s;
  }
  .send-btn:hover{transform:translateY(-2px); box-shadow:0 18px 32px -10px rgba(212,152,41,.65);}

  /* ---------- MAP STRIP ---------- */
  .map-strip{
    max-width:1080px;
    margin:0 auto 60px;
    padding:0 5%;
  }
  .map-strip iframe{
    width:100%;
    height:260px;
    border:0;
    border-radius:16px;
    display:block;
    box-shadow:0 20px 40px -20px rgba(36,18,8,.18);
  }
