:root{
  --bg:#050505;
  --panel:#0a0a0a;
  --text:#f2efe9;
  --muted:#9c9992;
  --line:rgba(224,181,91,.22);
  --gold:#d9a94d;
  --gold-light:#f2cf83;
  --max:1240px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
  background:var(--bg);
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:"DM Sans",sans-serif;
  overflow-x:hidden;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.035;
  background-image:radial-gradient(#fff .6px,transparent .6px);
  background-size:5px 5px;
  z-index:50;
}

a{
  text-decoration:none;
  color:inherit;
}

button{
  font:inherit;
}

/* =========================
   HEADER
========================= */

.site-header{
  height:88px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  background:rgba(5,5,5,.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(217,169,77,.2);
}

.nav-wrap{
  max-width:1340px;
  height:100%;
  margin:auto;
  padding:0 34px;
  display:flex;
  align-items:center;
  gap:42px;
}

.brand{
  display:flex;
  align-items:center;
  gap:18px;
  min-width:300px;
}

.brand-mark{
  font-family:"Playfair Display",serif;
  font-size:39px;
  font-style:italic;
  line-height:1;
  color:var(--gold-light);
  letter-spacing:-5px;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.brand-copy strong{
  font-size:15px;
  letter-spacing:4px;
  font-weight:500;
}

.brand-copy small{
  font-size:9px;
  letter-spacing:5px;
  color:var(--muted);
}

nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:35px;
  flex:1;
}

.nav-link{
  font-size:14px;
  color:#ddd;
  position:relative;
  padding:34px 0;
  transition:.3s;
}

.nav-link:hover,
.nav-link.active{
  color:var(--gold-light);
}

.nav-link.active:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:20px;
  height:1px;
  background:var(--gold);
}

.premium-btn{
  border:1px solid var(--gold);
  border-radius:30px;
  padding:12px 20px 12px 25px;
  display:flex;
  gap:17px;
  align-items:center;
  font-size:13px;
  white-space:nowrap;
  transition:.35s;
}

.premium-btn b,
.cta b,
.text-link b{
  font-size:18px;
  font-weight:400;
}

.mobile-menu{
  display:none;
  background:none;
  border:0;
  color:#fff;
}

/* =========================
   HERO
========================= */

.hero{
  min-height:742px;
  height:100vh;
  max-height:900px;
  position:relative;
  overflow:hidden;
  padding-top:88px;
  border-bottom:1px solid var(--line);
}

.hero-content{
  position:relative;
  z-index:4;
  width:min(610px,46vw);
  margin-left:max(7vw,40px);
  padding-top:92px;
}

.eyebrow{
  font-size:10px;
  letter-spacing:3.3px;
  color:#d5c3a0;
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:24px;
}

.eyebrow span{
  display:block;
  width:66px;
  height:1px;
  background:var(--gold);
}

h1,
h2{
  font-family:"Playfair Display",serif;
  font-weight:500;
}

h1{
  font-size:68px;
  line-height:1.02;
  letter-spacing:-2.5px;
}

h1 em,
h2 em{
  display:block;
  color:var(--gold-light);
  font-style:italic;
}

.hero-description{
  max-width:490px;
  color:#b9b6b0;
  font-size:16px;
  line-height:1.65;
  margin-top:28px;
}

.hero-actions{
  display:flex;
  gap:25px;
  margin-top:34px;
}

.cta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  min-width:215px;
  padding:15px 20px;
  border-radius:30px;
  border:1px solid rgba(217,169,77,.85);
  font-size:13px;
  transition:.35s;
}

.cta.primary{
  background:linear-gradient(105deg,#f0c96e,#d6a34a);
  color:#090909;
  box-shadow:0 0 0 rgba(238,191,90,0);
}

.cta.secondary{
  border-color:rgba(217,169,77,.6);
}

.hero-stats{
  display:flex;
  margin-top:42px;
  gap:0;
  max-width:520px;
}

.stat{
  padding:0 35px;
  border-right:1px solid rgba(255,255,255,.18);
  display:flex;
  flex-direction:column;
  gap:5px;
}

.stat:first-child{
  padding-left:10px;
}

.stat:last-child{
  border:0;
}

.stat strong{
  font-size:18px;
  color:var(--gold-light);
  font-weight:500;
}

.stat span{
  font-size:11px;
  color:#aaa;
  letter-spacing:.2px;
}

/* =========================
   HERO IMAGE
========================= */

.hero-image{
  position:absolute;
  z-index:1;
  right:0;
  top:88px;
  width:58%;
  height:calc(100% - 88px);
  overflow:hidden;
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  filter:contrast(1.08) saturate(.95);
}

.image-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5,5,5,.72) 13%,
      transparent 42%
    ),
    linear-gradient(
      0deg,
      #050505 0%,
      transparent 32%
    );
}

.hero-orbit{
  position:absolute;
  border:1px solid rgba(217,169,77,.18);
  border-radius:50%;
  z-index:2;
  pointer-events:none;
}

.orbit-a{
  width:500px;
  height:500px;
  right:2%;
  top:150px;
}

.orbit-b{
  width:360px;
  height:360px;
  right:7%;
  top:220px;
}

.scroll-cue{
  position:absolute;
  z-index:5;
  left:42px;
  bottom:40px;
  display:flex;
  flex-direction:column;
  gap:15px;
  align-items:center;
  color:#aaa;
  font-size:9px;
  letter-spacing:3px;
}

.scroll-cue span{
  writing-mode:vertical-rl;
}

.scroll-cue b{
  font-size:24px;
  color:var(--gold);
  font-weight:300;
}

.side-index{
  position:absolute;
  z-index:5;
  right:43px;
  top:43%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:13px;
  color:#8e8b84;
  font-size:12px;
}

.side-index .current{
  color:var(--gold-light);
}

.side-index i{
  width:1px;
  height:35px;
  background:rgba(255,255,255,.35);
  position:relative;
}

.side-index i:after{
  content:"";
  position:absolute;
  width:3px;
  height:3px;
  border-radius:50%;
  background:#eee;
  left:-1px;
  top:50%;
}

/* =========================
   SECTIONS
========================= */

.section-line{
  border-top:1px solid var(--line);
}

.section,
.section-line{
  scroll-margin-top:88px;
}

.section-inner{
  max-width:1240px;
  margin:auto;
  padding:95px 30px;
}

.solutions .section-inner{
  display:grid;
  grid-template-columns:350px 1fr;
  gap:55px;
  align-items:center;
}

.section-intro h2,
.section-heading h2,
.process-heading h2,
.contact-box h2{
  font-size:48px;
  line-height:1.08;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:13px;
}

.service-card{
  min-height:140px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:17px;
  padding:26px 20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:7px;
  transition:.35s;
  background:rgba(255,255,255,.008);
}

.service-icon{
  font-size:28px;
  color:var(--gold-light);
  margin-bottom:auto;
}

.service-card strong{
  font-size:14px;
  font-weight:500;
}

.service-card small{
  font-size:10px;
  color:#8f8c86;
}

/* =========================
   ABOUT
========================= */

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:130px;
}

.about h2{
  font-size:62px;
}

.about-copy{
  max-width:540px;
  padding-top:30px;
}

.about-copy p{
  font-size:17px;
  line-height:1.8;
  color:#aaa69f;
  margin-bottom:22px;
}

.text-link{
  display:inline-flex;
  gap:25px;
  color:var(--gold-light);
  margin-top:15px;
  font-size:13px;
}

/* =========================
   WORK
========================= */

.section-heading{
  display:flex;
  justify-content:space-between;
  gap:50px;
  align-items:end;
  margin-bottom:48px;
}

.section-heading p{
  max-width:330px;
  color:#92908a;
  font-size:13px;
  line-height:1.7;
}

.work-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:22px;
}

.work-card{
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:#090909;
  transition:.45s;
}

.work-card.large{
  grid-row:span 2;
}

.work-visual{
  height:260px;
  padding:25px;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.work-card.large .work-visual{
  height:380px;
}

.work-visual:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(217,169,77,.34),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #1b1208,
      #050505 65%
    );
}

.work-visual>*{
  position:relative;
  z-index:1;
}

.work-visual>span{
  font-size:9px;
  letter-spacing:2px;
  color:#c8b68e;
}

.visual-title{
  font-family:"Playfair Display",serif;
  font-size:62px;
  letter-spacing:3px;
  color:#f3d28b;
}

.work-visual small{
  color:#aaa;
  font-size:11px;
}

.realestate-visual:before{
  background:linear-gradient(
    145deg,
    #181512,
    #6d542d 55%,
    #080706
  );
}

.construction-visual:before{
  background:linear-gradient(
    145deg,
    #171717,
    #29251e 55%,
    #050505
  );
}

.saas-visual:before{
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(217,169,77,.2),
      transparent 45%
    ),
    #080808;
}

.booking-visual:before{
  background:linear-gradient(
    145deg,
    #21180b,
    #080808 65%
  );
}

.work-meta{
  padding:21px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.work-meta small{
  font-size:9px;
  letter-spacing:2px;
  color:#8c8982;
}

.work-meta h3{
  font-size:17px;
  font-weight:500;
  margin-top:7px;
}

.work-meta>span{
  font-size:25px;
  color:var(--gold);
}

/* =========================
   PROCESS
========================= */

.process{
  background:#070707;
}

.process-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:60px;
  margin:25px 0 55px;
}

.process-heading p{
  max-width:400px;
  color:#999;
  font-size:13px;
  line-height:1.8;
}

.process-list{
  border-top:1px solid rgba(255,255,255,.12);
}

.process-list div{
  display:grid;
  grid-template-columns:80px 1fr 1fr;
  padding:25px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
  align-items:center;
}

.process-list b{
  color:var(--gold);
  font-size:12px;
}

.process-list strong{
  font-size:18px;
  font-weight:500;
}

.process-list span{
  color:#8f8c86;
  font-size:12px;
}

/* =========================
   TECHNOLOGY
========================= */

.tech-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(255,255,255,.12);
  border-left:1px solid rgba(255,255,255,.12);
}

.tech-grid span{
  padding:26px;
  border-right:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(255,255,255,.12);
  font-size:13px;
  color:#b8b5ae;
  transition:.3s;
}

/* =========================
   FAQ
========================= */

.faq-list details{
  border-top:1px solid rgba(255,255,255,.13);
  padding:22px 0;
}

.faq-list details:last-child{
  border-bottom:1px solid rgba(255,255,255,.13);
}

summary{
  cursor:pointer;
  list-style:none;
  font-size:15px;
  display:flex;
  justify-content:space-between;
}

summary::-webkit-details-marker{
  display:none;
}

summary:after{
  content:"+";
  color:var(--gold);
}

details[open] summary:after{
  content:"−";
}

details p{
  color:#92908a;
  font-size:13px;
  line-height:1.7;
  padding:16px 30px 0 0;
}

/* =========================
   CONTACT
========================= */

.contact-box{
  text-align:center;
  max-width:850px;
}

.contact-box .eyebrow{
  justify-content:center;
}

.contact-box p{
  max-width:590px;
  margin:25px auto 35px;
  color:#9d9a93;
  line-height:1.7;
  font-size:14px;
}

.contact-box .cta{
  margin:auto;
  width:max-content;
}

/* =========================
   FOOTER
========================= */

footer{
  border-top:1px solid var(--line);
}

.footer-inner{
  max-width:1240px;
  margin:auto;
  padding:35px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.footer-brand{
  min-width:0;
}

.footer-inner p,
.footer-inner>a{
  font-size:10px;
  color:#777;
  letter-spacing:.3px;
}

/* =========================
   GOLD HOVER
========================= */

.gold-hover{
  position:relative;
  overflow:hidden;
}

.gold-hover:before{
  content:"";
  position:absolute;
  inset:-80%;
  background:
    radial-gradient(
      circle at var(--mx,50%) var(--my,50%),
      rgba(255,220,135,.34),
      transparent 22%
    );
  opacity:0;
  transition:opacity .25s;
  pointer-events:none;
}

.gold-hover:hover:before,
.gold-hover:focus-visible:before{
  opacity:1;
}

.gold-hover:hover{
  border-color:rgba(245,205,121,.9);
  box-shadow:0 0 35px rgba(217,169,77,.13);
}

.gold-hover>*{
  position:relative;
  z-index:2;
}

/* =========================
   CURSOR GLOW
========================= */

.cursor-glow{
  position:fixed;
  width:180px;
  height:180px;
  border-radius:50%;
  pointer-events:none;
  z-index:60;
  background:
    radial-gradient(
      circle,
      rgba(217,169,77,.09),
      transparent 65%
    );
  transform:translate(-50%,-50%);
  display:none;
}

@media (pointer:fine){
  .cursor-glow{
    display:block;
  }
}

/* =========================
   TABLET
========================= */

@media(max-width:1050px){

  nav{
    gap:20px;
  }

  .nav-wrap{
    gap:20px;
  }

  .brand{
    min-width:250px;
  }

  .hero-content{
    width:55vw;
  }

  .hero-image{
    width:53%;
  }

  h1{
    font-size:57px;
  }

  .solutions .section-inner{
    grid-template-columns:1fr;
  }

  .service-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:820px){

  .site-header{
    height:76px;
  }

  .nav-wrap{
    padding:0 20px;
    justify-content:space-between;
  }

  .brand{
    min-width:auto;
  }

  .brand-copy{
    display:none;
  }

  .brand-mark{
    font-size:35px;
  }

  nav{
    position:fixed;
    top:76px;
    left:15px;
    right:15px;
    background:#0a0a0a;
    border:1px solid rgba(217,169,77,.2);
    border-radius:16px;
    padding:10px;
    display:none;
    flex-direction:column;
    gap:0;
  }

  nav.open{
    display:flex;
  }

  .nav-link{
    width:100%;
    padding:15px 18px;
  }

  .nav-link.active:after{
    display:none;
  }

  .premium-btn{
    display:flex;
    flex:0 0 auto;
    padding:9px 11px 9px 14px;
    gap:8px;
    font-size:10px;
    border-radius:24px;
  }

  .premium-btn b{
    font-size:15px;
  }

  .mobile-menu{
    display:flex;
    width:45px;
    height:42px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:12px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
  }

  .mobile-menu span{
    width:20px;
    height:1px;
    background:#ddd;
  }

  /* =========================
     FIX MOBILE HERO
     ========================= */

  .hero{
    height:auto;
    min-height:0;
    max-height:none;
    padding-top:76px;

    /*
      مهم جدًا:
      السماح للـHero أن يأخذ ارتفاع
      المحتوى بالكامل حتى لا يختفي
      Start a Project
    */
    overflow:visible;
  }

  .hero-image{
    top:76px;
    width:100%;
    height:430px;
    opacity:.78;
  }

  .image-shade{
    background:
      linear-gradient(
        180deg,
        rgba(5,5,5,.05),
        #050505 92%
      ),
      linear-gradient(
        90deg,
        #050505 0%,
        transparent 65%
      );
  }

  .hero-content{
    width:auto;
    margin:0;
    padding:390px 25px 80px;
  }

  .hero-orbit{
    display:none;
  }

  h1{
    font-size:48px;
    letter-spacing:-1.5px;
  }

  .hero-description{
    font-size:14px;
  }

  /*
    الزرين يظهروا كاملين تحت بعض
  */
  .hero-actions{
    display:flex;
    flex-direction:column;
    flex-wrap:nowrap;
    gap:12px;
    width:100%;
  }

  .cta{
    width:100%;
    min-width:0;
  }

  .hero-stats{
    margin-top:35px;
  }

  .stat{
    padding:0 17px;
  }

  .stat:first-child{
    padding-left:0;
  }

  .scroll-cue{
    display:none;
  }

  .side-index{
    display:none;
  }

  /* =========================
     SECTIONS
  ========================= */

  .section-inner{
    padding:75px 22px;
  }

  .section-intro h2,
  .section-heading h2,
  .process-heading h2,
  .contact-box h2{
    font-size:42px;
  }

  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .split{
    grid-template-columns:1fr;
    gap:35px;
  }

  .about h2{
    font-size:50px;
  }

  .work-grid{
    grid-template-columns:1fr;
  }

  .work-card.large{
    grid-row:auto;
  }

  .work-card.large .work-visual{
    height:300px;
  }

  .process-heading{
    display:block;
  }

  .process-heading p{
    margin-top:20px;
  }

  .process-list div{
    grid-template-columns:50px 1fr;
    gap:12px;
  }

  .process-list span{
    grid-column:2;
  }

  .tech-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-inner{
    padding:30px 22px;
    gap:15px;
    flex-wrap:wrap;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:520px){

  .premium-btn{
    padding:8px 9px 8px 11px;
    gap:6px;
    font-size:9px;
  }

  .premium-btn b{
    font-size:14px;
  }

  .nav-wrap{
    padding:0 14px;
    gap:8px;
  }

  h1{
    font-size:42px;
  }

  /*
    مهم:
    لا نستخدم min-height ثابت
    حتى لا يتم قص الزر الثاني
  */
  .hero{
    min-height:0;
    height:auto;
    max-height:none;
    overflow:visible;
  }

  .hero-content{
    padding-top:350px;

    /*
      مساحة كافية أسفل آخر زر
    */
    padding-bottom:80px;
  }

  .hero-actions{
    flex-direction:column;
    gap:12px;
    width:100%;
  }

  .cta{
    width:100%;
    min-width:0;
    min-height:58px;
  }

  .hero-stats{
    justify-content:space-between;
  }

  .stat{
    padding:0 9px;
  }

  .stat strong{
    font-size:14px;
  }

  .stat span{
    font-size:9px;
  }

  .service-grid{
    grid-template-columns:1fr 1fr;
  }

  .service-card{
    min-height:125px;
    padding:20px 15px;
  }

  .service-card strong{
    font-size:12px;
  }

  .service-icon{
    font-size:22px;
  }

  .section-intro h2,
  .section-heading h2,
  .process-heading h2,
  .contact-box h2{
    font-size:36px;
  }

  .about h2{
    font-size:43px;
  }

  .section-heading{
    display:block;
  }

  .section-heading>p{
    margin-top:20px;
  }

  .visual-title{
    font-size:45px;
  }

  .work-visual{
    height:230px;
  }

  .work-card.large .work-visual{
    height:270px;
  }
}
/* =========================================
   PREMIUM RESTAURANT PROJECT
   ========================================= */

.booking-project{
  position:relative;
}

.booking-project:hover{
  transform:translateY(-6px);
  border-color:rgba(217,169,77,.5);
  box-shadow:0 25px 70px rgba(0,0,0,.45);
}

.booking-visual{
  min-height:380px;
  background:#080706;
}

.booking-visual:before{
  background:
    radial-gradient(
      circle at 72% 32%,
      rgba(217,169,77,.32),
      transparent 30%
    ),
    radial-gradient(
      circle at 30% 75%,
      rgba(120,78,20,.15),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #21170b 0%,
      #0c0a07 48%,
      #030303 100%
    );
  transition:transform .8s ease;
}

.booking-project:hover .booking-visual:before{
  transform:scale(1.06);
}

.restaurant-content{
  position:relative;
  z-index:3;
  margin:auto 0;
  padding:35px 0;
}

.restaurant-kicker{
  font-size:9px;
  letter-spacing:4px;
  color:#b9a47a;
  margin-bottom:18px;
}

.booking-visual .visual-title{
  font-family:"Playfair Display",serif;
  font-size:70px;
  line-height:.82;
  letter-spacing:3px;
  color:#f2cf83;
  text-shadow:
    0 0 35px rgba(217,169,77,.12);
}

.booking-visual .visual-title em{
  display:block;
  font-size:.58em;
  margin-left:38px;
  margin-top:10px;
  color:#e7d09a;
  font-weight:400;
}

.restaurant-divider{
  width:90px;
  height:1px;
  background:linear-gradient(
    90deg,
    var(--gold),
    transparent
  );
  margin:27px 0 17px;
}

.booking-visual small{
  font-size:10px;
  letter-spacing:1.5px;
  color:#aaa39a;
}

.restaurant-badge{
  position:absolute;
  right:25px;
  bottom:25px;
  z-index:4;

  display:flex;
  align-items:center;
  gap:10px;

  padding:8px 12px;

  border:1px solid rgba(217,169,77,.25);
  border-radius:30px;

  background:rgba(5,5,5,.45);
  backdrop-filter:blur(10px);

  font-size:8px;
  letter-spacing:2px;
  color:#9d968a;
}

.restaurant-badge span:first-child{
  color:var(--gold-light);
  font-size:11px;
}

.project-arrow{
  transition:
    transform .35s ease,
    color .35s ease;
}

.booking-project:hover .project-arrow{
  transform:translate(5px,-5px);
  color:var(--gold-light);
}

@media(max-width:520px){

  .booking-visual{
    min-height:270px;
  }

  .booking-visual .visual-title{
    font-size:48px;
  }

  .restaurant-content{
    padding:20px 0;
  }

  .restaurant-kicker{
    font-size:8px;
    letter-spacing:3px;
  }

  .booking-visual small{
    font-size:8px;
  }

  .restaurant-badge{
    right:15px;
    bottom:15px;
    font-size:7px;
  }
}
/* =========================
   WHY WORK WITH ME
========================= */
.why-heading{margin-bottom:42px}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:13px}
.why-card{min-height:230px;border:1px solid rgba(255,255,255,.12);border-radius:17px;padding:25px 21px;display:flex;flex-direction:column;background:rgba(255,255,255,.008);transition:.35s}
.why-card b{font-size:11px;color:var(--gold);letter-spacing:2px;margin-bottom:auto}
.why-card h3{font-size:17px;font-weight:500;margin-bottom:10px}
.why-card p{font-size:12px;line-height:1.75;color:#92908a}

/* =========================
   PROJECT INQUIRY
========================= */
.project-form{max-width:900px;margin:35px auto 0;text-align:left}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.project-form label{display:flex;flex-direction:column;gap:8px}
.project-form label span{font-size:10px;letter-spacing:1.5px;color:#aaa69f;text-transform:uppercase}
.project-form input,.project-form select,.project-form textarea{width:100%;border:1px solid rgba(217,169,77,.22);background:#090909;color:#f2efe9;border-radius:12px;padding:14px 15px;outline:none;font:inherit;font-size:13px;transition:.3s}
.project-form select{appearance:none}
.project-form textarea{resize:vertical;min-height:130px}
.project-form input:focus,.project-form select:focus,.project-form textarea:focus{border-color:rgba(242,207,131,.75);box-shadow:0 0 0 3px rgba(217,169,77,.07)}
.form-full{margin-top:14px}
.form-submit{margin:20px auto 0;width:100%;cursor:pointer}
.form-note{text-align:center;font-size:10px;color:#777;margin-top:13px}
@media(max-width:820px){
  .why-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  .why-grid,.form-grid{grid-template-columns:1fr}
  .why-card{min-height:190px}
}
