:root{
  --navy:#1f2d49;
  --ink:#15223a;
  --muted:#667085;
  --sand:#c7ad86;
  --stone:#ded9cf;
  --soft:#f5f3ef;
  --bluegrey:#bfc5d1;
  --white:#ffffff;
  --line:rgba(31,45,73,.12);
  --shadow:0 24px 60px rgba(31,45,73,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Manrope,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--soft);
  color:var(--ink);
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:20;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(24px,7vw,140px);
  background:rgba(245,243,239,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(199,173,134,.55);
}

.brand{
  width:120px;
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transform:translateY(18px);
}

.brand img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.nav{
  display:flex;
  gap:clamp(28px,5vw,72px);
  align-items:center;
}

.nav a{
  color:var(--ink);
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  transition:.25s ease;
}

.nav a:hover,.nav a.active{color:var(--sand);border-bottom:1px solid var(--sand)}
.menu-toggle{display:none}

.section{
  position:relative;
  padding:clamp(80px,9vw,150px) clamp(24px,8vw,160px);
}

.hero{
  min-height:650px;
  padding-top:180px;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,1fr) 420px;
  gap:60px;
  align-items:start;
}

.hero-content{
  max-width:650px;
  position:relative;
  z-index:2;
}

.eyebrow{
  margin:0 0 12px;
  letter-spacing:12px;
  color:var(--sand);
  font-weight:500;
  font-size:18px;
}

h1,h2,h3,p{margin-top:0}
h1{
  margin-bottom:22px;
  font-size:clamp(38px,4.6vw,68px);
  line-height:1.06;
  letter-spacing:-2px;
  text-transform:uppercase;
  color:var(--navy);
  font-weight:800;
}

h1 span{color:var(--sand); font-size: 40px;}
.hero-copy{
  font-size:18px;
  line-height:1.9;
  color:#5f6877;
  max-width:760px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 30px;
  border:1px solid var(--navy);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  color:var(--navy);
  background:transparent;
  cursor:pointer;
  transition:.25s ease;
}

.btn-primary:hover{
  background:var(--navy);
  color:var(--white);
  transform:translateY(-2px);
}

.btn-secondary{
  border-color:rgba(31,45,73,.2);
  color:var(--muted);
}

.btn-secondary:hover{border-color:var(--sand);color:var(--sand)}
.trust-line{
  margin-top:22px;
  font-size:14px;
  color:#7a8390;
}

.portrait-card{
  position:relative;
  z-index:2;
  justify-self:center;
  margin-top:30px;
  width:235px;
  height:235px;
  border-radius:50%;
  background:var(--navy);
  padding:10px;
  box-shadow:var(--shadow);
}

.portrait-inner{
  width:100%;
  height:100%;
  border-radius:50%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.2), rgba(0,0,0,.1)),
    url("./images/sonia_samimi.png");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.75);
  font-size:14px;
}

.shape{
  position:absolute;
  border-radius:50%;
  z-index:0;
  pointer-events:none;
}
.shape-left{
  width:300px;height:300px;
  left:-10%;top:260px;
  background:var(--bluegrey);
  opacity:.5;
}
.shape-navy{
  width:180px;height:180px;
  right:10%;top:100px;
  background:var(--muted);
}
.shape-beige{
  width:230px;height:230px;
  border-radius:120px;
  right:-2%;top:250px;
  background:var(--stone);
}

.section-heading{
  margin:0 auto 48px;
  max-width:900px;
  text-align:left;
}

.section-heading h2{
  font-size:clamp(38px,5vw,72px);
  line-height:1.05;
  letter-spacing:-2px;
  color:var(--ink);
}

.narrow{max-width:780px;text-align:center}
.narrow h2{font-size:clamp(34px,4vw,58px)}

.portfolio-section{
    padding:50px 0;
}

.portfolio-header{
    text-align:center;
    margin-bottom:60px;
}

.portfolio-label{
    display:block;
    letter-spacing:6px;
    font-size:.9rem;
    color:var(--sand);
    margin-bottom:12px;
}

.portfolio-header h2{
    font-size:clamp(2.8rem,6vw,5rem);
    color:var(--navy);
    margin:0;
    line-height:1.05;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    max-width:1120px;
    margin:0 auto;
}

.portfolio-card{
    background:#F5F3EF;
    border:1px solid rgba(0,0,0,.05);
    overflow:hidden;
    transition:.3s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.portfolio-card:hover{
    transform:translateY(-8px);
}

.portfolio-image{
    height:340px;
    overflow:hidden;
}

.portfolio-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    filter:
        saturate(0.92)
        contrast(0.96)
        brightness(1.02);
}

.portfolio-content{
    padding:32px;
}

.portfolio-category{
    display:block;
    color:var(--sand);
    font-size:.85rem;
    letter-spacing:1px;
    margin-bottom:14px;
}

.portfolio-content h3{
    color:var(--navy);
    font-size:2rem;
    line-height:1.2;
    margin-bottom:20px;
}

.card-line{
    width:60px;
    height:3px;
    background:var(--sand);
    margin-bottom:24px;
}

.portfolio-content p{
    color:#5f6470;
    line-height:1.8;
    margin-bottom:32px;
}

.portfolio-link{
    display:inline-flex;
    align-items:center;
    gap:14px;
    color:var(--sand);
    text-decoration:none;
    font-weight:600;
}

.portfolio-link span{
    width:36px;
    height:36px;
    border:1px solid var(--sand);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.portfolio-link:hover{
    color:var(--navy);
}

.services-section{
  position:relative;
  overflow:hidden;
}

.services-bg-circle{
    position:absolute;

    width:320px;
    height:320px;

    left:-120px;
    top:420px;

    border-radius:50%;

    background:var(--stone);

     z-index:0;

    pointer-events:none;
}


.services-section .section-heading,
.services-section .services-grid{
    position:relative;
    z-index:2;
}

.services-section > *{
    z-index:2;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:1120px;
  margin:0 auto;
  align-items:stretch;
}

.service-card{
  position:relative;
  padding:42px 36px;
  background:rgba(255,255,255,.45);
  border:1px solid rgba(31,45,73,.10);
  border-top:4px solid var(--sand);
  box-shadow:0 18px 45px rgba(31,45,73,.04);
  transition:transform .25s ease, box-shadow .25s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(31,45,73,.08);
}

.service-number{
  display:block;
  color:var(--sand);
  letter-spacing:5px;
  font-size:14px;
  margin-bottom:32px;
}

.service-card h3{
  color:var(--navy);
  font-size:28px;
  line-height:1.2;
  margin-bottom:18px;
}

.service-card p{
  color:#5f6877;
  line-height:1.8;
  margin-bottom:28px;
}

.service-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.service-card li{
  position:relative;
  padding-left:22px;
  margin-bottom:12px;
  color:var(--ink);
  font-size:15px;
}

.service-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.65em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--sand);
}

@media(max-width:900px){
  .services-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    padding:34px 28px;
  }
}

.about-section{
   width: 100%;
   position: relative;
   overflow: hidden;
}

.about-panel{
   width: 100%;
  margin:0 auto;
  background:var(--navy);
  color:var(--white);
  padding:clamp(48px,7vw,90px);
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
  align-items:center;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.about-panel::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(199,173,134,.18);
  left:-90px;
  bottom:-90px;
}

.about-panel::after{
  content:"";
  position:absolute;
  width:190px;
  height:190px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  right:-60px;
  top:-60px;
}

.about-stat,
.about-content{
  position:relative;
  z-index:2;
}

.about-stat span{
  display:block;
  color:var(--sand);
  font-size:clamp(82px,9vw,140px);
  line-height:.9;
  font-weight:800;
  letter-spacing:-5px;
}

.about-stat p{
  color:rgba(255,255,255,.78);
  font-size:18px;
  line-height:1.7;
  max-width:320px;
  margin-top:22px;
  
}

.about-stat span{
    font-size:clamp(100px,11vw,170px);
}

.about-content .eyebrow{
  color:var(--sand);
}

.about-content h2{
  font-size:clamp(36px,4.5vw,62px);
  line-height:1.08;
  letter-spacing:-2px;
  color:var(--white);
  margin-bottom:30px;
}

.about-content p{
  color:rgba(255,255,255,.78);
  line-height:1.9;
  font-size:17px;
  margin-bottom:18px;
}

@media(max-width:900px){
  .about-panel{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-stat span{
    font-size:88px;
  }

  .about-stat p{
    max-width:100%;
  }
}

@media(max-width:560px){
  .about-section{
    padding:80px 24px;
  }

  .about-panel{
    padding:42px 28px;
  }

  .about-content h2{
    font-size:34px;
  }

  .about-content p,
  .about-stat p{
    font-size:16px;
    line-height:1.8;
  }
}

.contact-section{
    padding:120px clamp(24px,8vw,160px);
    position:relative;
    overflow:hidden;
}
.contact-section::before{
    content:"";
    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(199,173,134,.10);

    left:-120px;
    top:120px;

    z-index:0;
}

.contact-section::after{
    content:"";
    position:absolute;

    width:160px;
    height:160px;

    border-radius:50%;

    background:rgba(107,120,145,.10);

    right:-60px;
    bottom:80px;

    z-index:0;
}

.contact-wrapper{
    position:relative;
    z-index:2;
    max-width:1120px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;
}

.contact-intro h2{
    font-size:clamp(42px,5vw,72px);
    line-height:1.05;
    color:var(--navy);
    margin-bottom:24px;
}

.contact-intro p{
    color:#5f6877;
    line-height:1.9;
    font-size:17px;
}

.contact-details{
    margin-top:50px;
    display:flex;
    flex-direction:column;
    gap:28px;
}

.contact-details span{
    display:block;
    color:var(--sand);
    letter-spacing:2px;
    font-size:12px;
    text-transform:uppercase;
    margin-bottom:6px;
}

.contact-details a,
.contact-details p{
    color:var(--navy);
    text-decoration:none;
    font-size:18px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px 20px;
    border:1px solid rgba(31,45,73,.12);
    background:#fff;
    font-family:inherit;
    font-size:16px;
    color:var(--navy);
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:var(--sand);
}

.contact-form button{
    padding:18px 24px;
    border:none;
    background:var(--navy);
    color:white;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

.contact-form button:hover{
    background:#2c3d62;
}

.response-time{
    font-size:14px;
    color:#7f8796;
    margin-top:8px;
}

.site-footer{
    margin-top:120px;
    background:var(--navy);
    color:white;
    padding:60px 0 30px;
    position:relative;
    overflow:hidden;
}

.site-footer::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(199,173,134,.12);
    left:-60px;
    bottom:-60px;
}

.site-footer::after{
    content:"";
    position:absolute;
    width:140px;
    height:140px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-40px;
    top:-40px;
}

.footer-container{
    max-width:1120px;
    margin:0 auto;
    padding:0 40px;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    gap:40px;

    position:relative;
    z-index:2;
}

.footer-logo{
    width:90px;
    margin-bottom:18px;
}

.footer-tagline{
    color:rgba(255,255,255,.75);
    margin-bottom:10px;
    font-size:16px;
}

.footer-location{
    color:rgba(255,255,255,.55);
    font-size:15px;
}

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-contact a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.footer-contact a:hover{
    color:var(--sand);
}

.footer-bottom{
    margin-top:50px;
    padding-top:24px;
    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    position:relative;
    z-index:2;
}

.footer-bottom p{
    color:rgba(255,255,255,.5);
    font-size:14px;
}

@media(max-width:900px){
  .site-header{height:72px;padding:0 22px}
  .brand{width:82px;height:82px;transform:translateY(16px)}
  .brand-mark{font-size:19px}
  .brand-sub{font-size:11px;letter-spacing:3px}
  .menu-toggle{
    display:block;
    background:none;
    border:0;
    font-size:26px;
    color:var(--navy);
  }
  .nav{
    position:absolute;
    top:72px;
    left:0;
    right:0;
    background:rgba(245,243,239,.98);
    padding:24px;
    display:none;
    flex-direction:column;
    gap:22px;
    border-bottom:1px solid var(--line);
  }
  .nav.open{display:flex}
  .hero{
    grid-template-columns:1fr;
    min-height:auto;
    padding-top:150px;
  }
 .portrait-card{
      order:2;
      align-self:flex-start;
      margin:20px 0;
  }
  .shape-left{width:150px;height:150px;left:auto;right:-60px;top:190px;opacity:.55}
  .shape-navy,.shape-beige{display:none}
  .project-grid,.services-grid,.about-panel,.form-row{grid-template-columns:1fr}
  .section{padding-left:24px;padding-right:24px}
  .footer{flex-direction:column;gap:8px}
  .portfolio-grid{
        grid-template-columns:1fr;
    }

    .portfolio-image{
        height:300px;
    }

    .portfolio-content{
        padding:24px;
    }

    .portfolio-content h3{
        font-size:1.7rem;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .contact-intro h2{
        font-size:42px;
    }


}

@media(max-width:560px){
  h1{font-size:34px;letter-spacing:-1px}
  h1 span{ font-size: 23px;}
  .eyebrow{font-size:13px;letter-spacing:7px}
  .hero-copy{font-size:16px;line-height:1.75}
  .btn{width:100%}
  .section-heading h2{font-size:38px}
}

@media(max-width:900px){

  .hero{
      display:flex;
      flex-direction:column;
  }

  .portrait-card{
    display:none !important;
  }
  
  .hero-content{
      order:1;
  }
}

@media(max-width:768px){

    .footer-container{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .footer-contact{
        align-items:center;
    }

}