/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --primary: #FF4F18;
  --white: #FFFFFF;
  --white-50: rgba(255, 255, 255, 0.5);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-services: 'Montserrat', sans-serif;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* BODY */
body {
  background: #141517;
  color: var(--white);
  font-family: var(--font-body);
}

/* ================= NAVBAR ================= */

/* ======================================
   NAVBAR
====================================== */

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar__container{
    max-width:1600px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 40px;

}

.navbar__logo{
    font-family:var(--font-heading);
    font-size:24px;
    color:#141517;
    text-decoration:none;
}

.navbar__logo .dot{
    width:14px;
    height:14px;
    background:#FF4F18;
    border-radius:50%;
    display:inline-block;
    margin-left:6px;
}

.navbar__nav{
    display:flex;
    gap:32px;
}

.navbar__nav a{
    text-decoration:none;
    color:#141517;
    font-size:18px;
    transition:.3s;
}

.navbar__nav a:hover{
    color:#FF4F18;

}

.navbar__button{
    padding:14px 22px;
    border:1px solid #FF4F18;
    border-radius:14px;
    color:#141517;
    text-decoration:none;
    transition:.3s;
}

.navbar__button:hover{
    background:#FF4F18;
    color:white;
}


/* ================= HERO ================= */
/* ===========================
   HERO
=========================== */

.hero{
    position:relative;
    height:100vh;
    background:#F5F5F5;
    overflow:hidden;
}

/* Center Logo */

.hero__center{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.hero__logo{
    font-family:var(--font-heading);
    font-size:clamp(90px,10vw,180px);
    font-weight:400;
    color:#141517;
    display:flex;
    align-items:center;
    gap:24px;
    white-space:nowrap;
}

.hero__dot{
    width:95px;
    height:95px;
    border-radius:50%;
    background:#FF4F18;
}

/* Bottom Description */

.hero__description{
    position:absolute;
    left:42px;
    bottom:50px;
    max-width:470px;
}

.hero__description p{
    font-size:30px;
    line-height:1.45;
    color:#141517;
}

/* Services */

.hero__services{
    position:absolute;
    right:42px;
    bottom:50px;
    display:flex;
    align-items:center;
    gap:18px;
    font-size:28px;
    color:#141517;
}

.hero__services .dot{
    width:10px;
    height:10px;
    background:#FF4F18;
    border-radius:50%;
}

/* Crosses */

.hero__cross{
    position:absolute;
    font-size:32px;
    font-weight:300;
    color:#141517;
}

.hero__cross--1{
    left:42px;
    top:62%;
}

.hero__cross--2{
    left:36%;
    top:62%;
}

.hero__cross--3{
    left:67%;
    top:62%;
}

.hero__cross--4{
    right:42px;
    top:62%;
}

/* SECTION */
.about {
  background: #FAF3E1;
  padding: 60px 60px;
}

.about__container {
  max-width: none;
}

.about__label {
  font-family: var(--font-body);
  font-size: 18px;
  color: #FF4F18;
  font-weight: 600;
  margin-bottom: 40px;
}

.about__label .dot {
  width: 8px;
  height: 8px;
  background: #141517;
  display: inline-block;
  border-radius: 50%;
  margin-left: 6px;
}

.about__text {
  font-family: var(--font-heading);
  font-size: 48px;          /* or 60px depending on your design */
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -2px;
  margin-left: 80px;
  max-width: 1700px;
}

.about__text span{
    color:#141517;
    transition:color .3s ease;
}

/* ==========================
   SERVICES
========================== */

.services{
    min-height:85vh;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    background:#141517;
    color:#FFFFFF;
    padding:64px 60px 120px;
}


.services__label{
    color:#FF4F18;
    font-size:18px;
    margin-bottom:0;
    font-family:var(--font-body);
}

.services__label .dot{
    display:inline-block;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#FAF3E1;
    margin-left:8px;
}


.services__wrapper{
    display:grid;
    grid-template-columns:35% 65%;
    gap:40px;
    align-items:start;
}

.services__left{
    position:sticky;
    top:120px;
    align-self:start;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:32px;
}

.services__number{
    font-size:320px;
    line-height:.8;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight:700;
    color:transparent;
    -webkit-text-stroke:1px #FFFFFF;
    user-select:none;
}

.services__right{
    display:flex;
    flex-direction:column;
    gap:120px;
    padding-top:54px;
}


.service{
    min-height:auto;
    padding-bottom:120px;
    opacity:.25;
    transition:opacity .5s ease;
}

.service.active{
    opacity:1;
}

.service:last-child{
    padding-bottom:80px;
}

.service__title{
    font-size:64px;
    line-height:1;
    margin-bottom:24px;
    font-family: 'Montserrat', sans-serif;
}

.service__description{
    max-width:700px;
    font-size:20px;
    color:#FFFFFF;
    line-height:1.6;
    margin-bottom:64px;
    font-family: 'Montserrat', sans-serif;
}


.service__list{
    list-style: none;
    padding-right: 80px; 
}

.service__list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 0;
    padding-right:24px;
    border-top:1px solid rgba(255,255,255,.22);
    transition:.35s;
    font-family: 'Montserrat', sans-serif;
    color:#FFFFFF;
}

.service__list li:last-child{
    border-bottom:1px solid rgba(255,255,255,.22);
}

/* Left Text */

.service__list li span:first-child{
    font-size:20px;
    transition:.35s;
    font-family: var(--font-services);
}

/* Right Number */

.service__list li span:last-child{
    font-size:20px;
    color:#FFFFFF;
    font-family: var(--font-services);
}
.services__number{
    transition:color .4s;
    transform-origin:center center;
}

/* SECTION */
.work{
    background:#000;
    padding:70px 60px 80px;
    box-shadow:
        0 30px 80px rgba(0,0,0,.35);
}

.work__label{
    color:#FF4F18;
    font-size:18px;
    margin-bottom:40px;
}

.work__label .dot{
    display:inline-block;
    width:8px;
    height:8px;
    background:#FAF3E1;
    border-radius:50%;
    margin-left:8px;
}

.work__projects{
    position:relative;
}

.project{
    position:sticky;
    top:110px;
    display:grid;
    grid-template-columns:65% 35%;
    height:90vh;
    border:1px solid #FFFFFF;
    border-radius:16px;
    overflow:hidden;
    background:#000;
    margin-bottom: 0vh;
    transform-origin:center top;
}

.project:last-child{
    margin-bottom:0;
}
.project:nth-child(1){
    z-index:1;
}

.project:nth-child(2){
    z-index:2;
}

.project__image{
    overflow:hidden;
}

.project__image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.project__content{
    display:flex;
    flex-direction:column;
    padding:48px;
}
.project__year{

    color:#FFFFFF;
    margin-bottom:30px;

}

.project__title{
    font-size:40px;
    line-height:.95;
    margin-bottom:30px;
}

.project__description{
    font-size:18px;
    line-height:1.7;
    max-width:420px;
    margin-bottom:30px;
}

.project__tags{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.project__tags span{
    border:1px solid #FFFFFF;
    border-radius:100px;
    padding:8px 16px;
    font-size:12px;
}

.project__button{
    margin-top:auto;
    align-self:flex-start;
    background:#FF4F18;
    color:#fff;
    text-decoration:none;
    padding:12px 16px;
    border-radius:12px;
}

/* SECTION */
.process {
  background: #FAF3E1;
  padding: 48px 60px 40px;
}

/* HEADER (separate from grid) */
.process__header {
  margin-bottom: 40px;
}

/* LABEL */
.process__label {
  font-size: 18px;
  color: #000;
}

.process__label .dot {
  width: 8px;
  height: 8px;
  background: #FF4F18;
  display: inline-block;
  border-radius: 50%;
  margin-left: 6px;
}

/* GRID */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  min-height: 600px; /* 👈 cards reach bottom */
}

/* CARD */
.process__card {
  position: relative;
  background: #1E1E1E;
  padding: 40px;
  overflow: hidden;
  cursor: pointer;

  height: 500px;

 display: flex;
  flex-direction: column;
  gap: 24px; 

  transition: 0.4s ease;
}

/* ORANGE DROP */
.process__bg {
  position: absolute;
  inset: 0;
  background: #FF4F18;

  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.2, 1);
  z-index: 0;
}

/* HOVER */
.process__card:hover .process__bg {
  transform: translateY(0);
}

/* TITLE */
.process__card h3 {
  font-size: 32px;
  font-weight: bold;
  color: #FF4F18;

  position: relative;
  z-index: 2;

  transition: 0.3s;
}

/* TEXT */
.process__card p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);

  position: relative;
  z-index: 2;

  transition: 0.3s;
}

/* ICON */
.process__icon {
  width: 120px;
  height: 120px;

  stroke: rgba(255,255,255,0.5);
  fill: none;
  stroke-width: 2;

  position: relative;
  z-index: 2;

  transition: 0.3s;
}

/* HOVER EFFECTS */
.process__card:hover h3,
.process__card:hover p {
  color: #FFFFFF;
}

.process__card:hover .process__icon {
  stroke: #FFFFFF;
}
.process__card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.process__card img {
  transition: transform 0.3s ease;
}

.process__card:hover img {
  transform: scale(1.1);
}

/* SECTION */
.contact {
  background: #141517;
  padding: 60px 60px;
  color: white;
}

/* HEADER */
.contact__label {
  font-size: 18px;
  color: #FF4F18;
}

.contact__label .dot {
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  display: inline-block;
  border-radius: 50%;
  margin-left: 6px;
}

.contact__title {
  text-align: center;
  font-size: 48px;
  margin: 40px 0 56px;
}

/* GRID */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* LEFT */
.contact__intro {
  font-size: 24px;
  margin-bottom: 40px;
}

.contact__info {
  font-size: 20px;
  margin-bottom: 32px;
}

.contact__brand {
  font-size: 96px;
  font-family: 'Space Grotesk', sans-serif;

  color: transparent; /* 👈 removes fill */
  -webkit-text-stroke: 1px rgb(255, 255, 255); /* outline */
}

/* FORM */
.form__group {
  margin-bottom: 32px;
}

.form__group label {
  font-size: 20px;
}

.form__group label span {
  color: #FF4F18;
}

.form__group input,
.form__group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #555;
  padding: 10px 0;
  color: white;
  font-size: 16px;
}

.form__group textarea {
  height: 80px;
  resize: none;
}

/* OPTIONS */
.form__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.form__options button {
  background: transparent;
  border: 1px solid #555;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* ACTIVE STATE */
.form__options button.active {
  background: #FF4F18;
  border-color: #FF4F18;
}

/* BUTTON */
.contact__btn {
  background: #FF4F18;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}

input:focus,
textarea:focus {
  outline: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #141517 inset;
  -webkit-text-fill-color: #FFFFFF;
}

/* FOOTER */
.footer{
    background:#FAF3E1;
    padding:48px 60px 48px;
    color:#141517;
}

.footer__top{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    align-items:start;
    margin-bottom:90px;
}

.footer__description{
    max-width:420px;
    font-size:20px;
    line-height:1.35;
}

.footer__email,
.footer__location{
    font-size:20px;
    color:#141517;
    text-decoration:none;
    justify-self:center;
}

.footer__location{
    justify-self:end;
}

.footer__middle{
    display:flex;
    justify-content:center;
    margin-bottom:90px;
}

.footer__logo{
    font-size:160px;
    font-family:var(--font-heading);
    font-weight:500;
    letter-spacing:-6px;
    line-height:1;
}

.footer__logo .dot{
    width:72px;
    height:72px;
    border-radius:50%;
    background:#FF4F18;
    display:inline-block;
    margin-left:16px;
}

.footer__bottom{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
}

.footer__bottom p{
    font-size:18px;
}

.footer__links{
    display:flex;
    align-items:center;
    gap:18px;
}

.footer__links a{
    color:#141517;
    text-decoration:none;
    transition:.3s;
}

.footer__links .dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#FF4F18;
}

.footer__cta{
    justify-self:end;
    font-size:22px;
    color:#141517;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
    transition:.3s;
}

.footer__cta span{
    color:#FF4F18;
}

/* ===========================
   LEGAL PAGES
=========================== */

.legal{
    background:#F5F5F5;
    color:#000000;
    font-family:'Montserrat',sans-serif;
    padding:180px 60px 120px;
}

/* ===========================
   HERO
=========================== */

.legal__hero{
    text-align:center;
    margin-bottom:90px;
}

.legal__title{
    font-size:48px;
    font-weight:700;
    margin-bottom:18px;
    line-height:1;
}

.legal__updated{
    font-size:18px;
    color:#000000;
}

/* ===========================
   LAYOUT
=========================== */

.legal__wrapper{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:100px;
    align-items:start;
}

/* ===========================
   SIDEBAR
=========================== */

.legal__sidebar{
    position:sticky;
    top:140px;
    align-self:start;
}

.legal__nav{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.legal__nav a{
    color:#000000;
    text-decoration:none;
    font-size:12px;
    transition:.3s ease;
}

.legal__nav a:hover{
    color:#FF4F18;
    transform:translateX(6px);
}

/* ===========================
   CONTENT
=========================== */

.legal__content{
    max-width:850px;
}

.legal__content section{
    margin-bottom:48px;
    scroll-margin-top:140px;
}

/* ===========================
   HEADINGS
=========================== */

.legal__content h2{
    font-size:20px;
    font-weight:700;
    margin-bottom:28px;
    line-height:1.2;
}

/* ===========================
   PARAGRAPHS
=========================== */

.legal__content p{
    font-size:14px;
    line-height:1.9;
    color:#000000;
    margin-bottom:26px;
}

/* ===========================
   LISTS
=========================== */

.legal__content ul{
    margin:24px 0 24px;
    padding-left:24px;
}

.legal__content li{
    font-size:14px;
    line-height:1.8;
    color:#000000;
    margin-bottom:12px;
}

/* ===========================
   LINKS
=========================== */

.legal__content a{
    color:#FF4F18;
    text-decoration:none;
}

.legal__content a:hover{
    text-decoration:underline;
}

/* ===========================
   STRONG
=========================== */

.legal__content strong{
    color:#000000;
    font-weight:600;
}

/* ===========================
   TEXT SELECTION
=========================== */

.legal::selection{
    background:#FF4F18;
    color:#000000;
}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#2A2A2A;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#FF4F18;
}

/* =============================================================
   CONTACT FORM — validation, focus, and status-state additions
   (Additive only — nothing above this block was modified.)
============================================================= */
 
/* Restore a visible, on-brand focus state (the base
   `input:focus,textarea:focus{outline:none}` rule above removes
   the default outline with nothing in its place). */
.form__group input:focus,
.form__group textarea:focus {
  border-bottom-color: #FF4F18;
}
 
.form__options button:focus-visible,
.contact__btn:focus-visible {
  outline: 2px solid #FF4F18;
  outline-offset: 2px;
}
 
/* Inline field errors */
.form__error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  font-size: 13px;
  color: #FF6B6B;
}
 
.form__group input.has-error,
.form__group textarea.has-error {
  border-bottom-color: #FF6B6B;
}
 
.form__options.has-error button {
  border-color: #FF6B6B;
}
 
/* Submit button loading state */
.contact__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
 
/* Form-level status message (success / error) */
.form__status {
  font-size: 15px;
  margin: -8px 0 20px;
  min-height: 0;
}
 
.form__status:empty {
  margin: 0;
}
 
.form__status--success {
  color: #4CD97B;
  margin-bottom: 20px;
}
 
.form__status--error {
  color: #FF6B6B;
  margin-bottom: 20px;
}