:root {
  --navy: #101b2d;
  --navy-2: #17263d;
  --orange: #f28c28;
  --orange-dark: #d87412;
  --sand: #f4f0e8;
  --white: #ffffff;
  --text: #263246;
  --muted: #6f7886;
  --line: #dde1e7;
  --shadow: 0 18px 50px rgba(15, 27, 45, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: auto; }
.section { padding: 105px 0; }

.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 30;
  background: rgba(16, 27, 45, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; color: white; }
.brand-mark {
  width: 48px; height: 48px; border: 2px solid var(--orange);
  display: grid; place-items: center; font-weight: 800; font-size: 15px;
  clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: "Manrope"; font-size: 22px; letter-spacing: 4px; }
.brand-text small { font-size: 8px; letter-spacing: 2px; margin-top: 6px; color: #c8ced8; }

.nav { display: flex; align-items: center; gap: 30px; color: #e6e9ee; font-size: 14px; }
.nav a:hover { color: var(--orange); }
.nav-cta { border: 1px solid var(--orange); padding: 11px 17px; color: white !important; }
.nav-cta:hover { background: var(--orange); }
.nav-toggle { display: none; background: none; border: 0; }
.nav-toggle span { display:block; width:25px; height:2px; margin:5px; background:#fff; }

.hero {
  min-height: 760px;
  padding-top: 78px;
  display: grid;
  align-items: center;
  position: relative;
  color: white;
  background:
    linear-gradient(90deg, rgba(9,18,32,.95) 0%, rgba(9,18,32,.82) 52%, rgba(9,18,32,.35) 100%),
    url("assets/portfolio-page-11.jpg") center/cover;
}
.hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg,transparent 70%,rgba(16,27,45,.75)); }
.hero-grid { position:relative; display:grid; grid-template-columns:1.35fr .65fr; align-items:center; gap:80px; }
.eyebrow { display:inline-block; color:var(--orange); text-transform:uppercase; letter-spacing:2.5px; font-size:12px; font-weight:700; }
.eyebrow.dark { color:var(--orange-dark); }
.hero h1, h2, h3 { font-family:"Manrope", sans-serif; }
.hero h1 { max-width:750px; font-size:clamp(48px,6vw,80px); line-height:1.03; letter-spacing:-3px; margin:20px 0 24px; }
.hero-content > p { max-width:650px; font-size:18px; line-height:1.75; color:#d5dae2; }
.hero-actions { display:flex; gap:14px; margin:34px 0 30px; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:52px; padding:0 24px; border:1px solid transparent; font-weight:700; cursor:pointer; transition:.25s; }
.btn-primary { background:var(--orange); color:#111b29; }
.btn-primary:hover { background:#ff9f3e; transform:translateY(-2px); }
.btn-outline { border-color:rgba(255,255,255,.4); color:white; }
.btn-outline:hover { background:white; color:var(--navy); }
.btn-light { background:white; color:var(--navy); }
.btn-light:hover { transform:translateY(-2px); }
.hero-points { display:flex; flex-wrap:wrap; gap:24px; font-size:13px; color:#dbe0e7; }

.hero-card { background:rgba(15,28,47,.84); border:1px solid rgba(255,255,255,.14); padding:36px; box-shadow:var(--shadow); backdrop-filter:blur(12px); }
.card-kicker { color:var(--orange); text-transform:uppercase; font-size:11px; letter-spacing:2px; }
.hero-card h2 { font-size:30px; line-height:1.2; margin:10px 0 26px; }
.hero-card-list div { display:grid; grid-template-columns:42px 1fr; align-items:center; padding:17px 0; border-top:1px solid rgba(255,255,255,.12); }
.hero-card-list b { color:var(--orange); font-size:12px; }
.hero-card a { display:inline-block; margin-top:20px; color:var(--orange); font-weight:700; }

.stats { background:var(--navy); color:white; border-top:1px solid rgba(255,255,255,.07); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stats-grid > div { padding:30px 24px; border-right:1px solid rgba(255,255,255,.1); }
.stats-grid > div:first-child { border-left:1px solid rgba(255,255,255,.1); }
.stats strong, .stats span { display:block; }
.stats strong { font-family:"Manrope"; font-size:20px; }
.stats span { color:#aeb7c3; font-size:13px; margin-top:5px; }

.two-col { display:grid; grid-template-columns:1fr 1fr; gap:90px; align-items:center; }
.section-copy h2, .section-heading h2, .process-intro h2, .contact h2, .cta-band h2 {
  font-size:clamp(36px,4vw,54px); line-height:1.12; letter-spacing:-2px; margin:14px 0 24px; color:var(--navy);
}
.section-copy p { color:var(--muted); font-size:17px; line-height:1.8; }
.text-link { color:var(--orange-dark); font-weight:700; display:inline-block; margin-top:12px; }
.about-visual { position:relative; min-height:520px; }
.image-main {
  height:500px;
  background:url("assets/portfolio-page-9.jpg") center/cover;
}
.experience-card { position:absolute; left:-45px; bottom:-25px; max-width:260px; padding:26px; background:var(--orange); color:var(--navy); box-shadow:var(--shadow); }
.experience-card strong { font-size:14px; text-transform:uppercase; letter-spacing:1.5px; }
.experience-card span { display:block; margin-top:8px; font-family:"Manrope"; font-weight:800; font-size:21px; line-height:1.25; }

.services { background:var(--sand); }
.section-heading { display:flex; justify-content:space-between; align-items:end; gap:50px; margin-bottom:50px; }
.section-heading p { max-width:470px; color:var(--muted); line-height:1.7; }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-card { background:white; padding:34px; min-height:255px; border:1px solid #ebe8e1; transition:.25s; }
.service-card:hover { transform:translateY(-7px); box-shadow:var(--shadow); border-color:transparent; }
.service-card .icon { width:48px; height:48px; display:grid; place-items:center; background:var(--orange); color:var(--navy); font-size:22px; }
.service-card h3 { color:var(--navy); font-size:21px; margin:24px 0 12px; }
.service-card p { color:var(--muted); line-height:1.7; margin:0; }

.projects { background:var(--navy); }
.section-heading.light h2 { color:white; }
.section-heading.light p { color:#b8c0cb; }
.project-grid { display:grid; grid-template-columns:1.4fr .8fr .8fr; gap:16px; }
.project { min-height:430px; position:relative; overflow:hidden; background-size:cover; background-position:center; }
.project::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 35%,rgba(9,17,29,.92)); transition:.25s; }
.project:hover::after { background:linear-gradient(180deg,rgba(242,140,40,.06),rgba(9,17,29,.94)); }
.project-one { background-image:url("assets/portfolio-page-2.jpg"); }
.project-two { background-image:url("assets/portfolio-page-4.jpg"); }
.project-three { background-image:url("assets/portfolio-page-5.jpg"); }
.project-info { position:absolute; z-index:2; left:28px; bottom:28px; right:28px; color:white; }
.project-info span { color:var(--orange); text-transform:uppercase; font-size:11px; letter-spacing:2px; }
.project-info h3 { font-size:23px; margin:8px 0 0; }

.process-intro { max-width:760px; margin-bottom:55px; }
.timeline { display:grid; grid-template-columns:repeat(4,1fr); border-top:2px solid var(--line); }
.step { padding:32px 28px 0 0; position:relative; }
.step::before { content:""; position:absolute; width:14px; height:14px; border-radius:50%; background:var(--orange); top:-8px; left:0; box-shadow:0 0 0 6px white; }
.step b { color:var(--orange-dark); font-size:13px; }
.step h3 { color:var(--navy); margin:10px 0 10px; }
.step p { color:var(--muted); line-height:1.65; font-size:14px; }

.cta-band { background:var(--orange); padding:70px 0; }
.cta-inner { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.cta-band .eyebrow { color:#75400c; }
.cta-band h2 { margin-bottom:0; max-width:760px; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:85px; }
.contact-copy p { color:var(--muted); line-height:1.7; }
.contact-details { margin-top:40px; display:grid; gap:22px; }
.contact-details div { border-left:3px solid var(--orange); padding-left:18px; }
.contact-details span, .contact-details strong { display:block; }
.contact-details span { color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:1.4px; }
.contact-details strong { margin-top:6px; color:var(--navy); }

.contact-form { background:var(--sand); padding:38px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
label { display:block; font-size:13px; font-weight:700; color:var(--navy); margin-bottom:18px; }
input, select, textarea {
  width:100%; margin-top:8px; border:1px solid #d7d3cb; background:white;
  padding:14px; font:inherit; color:var(--text); outline:none;
}
input:focus, select:focus, textarea:focus { border-color:var(--orange); }
textarea { resize:vertical; }
.full { width:100%; border:0; }
.form-note { font-size:11px; color:var(--muted); text-align:center; margin:12px 0 0; }

.footer { background:#0b1422; color:#c3cad4; padding:65px 0 24px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:60px; }
.footer-brand { margin-bottom:18px; }
.footer p { max-width:380px; line-height:1.7; }
.footer h4 { color:white; margin-top:0; }
.footer-grid a { display:block; margin:11px 0; font-size:14px; }
.footer-grid a:hover { color:var(--orange); }
.footer-bottom { margin-top:45px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; font-size:12px; }

.reveal { opacity:0; transform:translateY(20px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 900px) {
  .nav-toggle { display:block; }
  .nav {
    display:none; position:absolute; top:78px; left:0; width:100%;
    background:var(--navy); padding:25px; flex-direction:column; align-items:flex-start;
  }
  .nav.open { display:flex; }
  .hero { min-height:auto; padding:150px 0 90px; }
  .hero-grid, .two-col, .contact-grid { grid-template-columns:1fr; gap:55px; }
  .hero-card { max-width:580px; }
  .stats-grid, .timeline { grid-template-columns:repeat(2,1fr); }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .project-grid { grid-template-columns:1fr 1fr; }
  .project-one { grid-column:1 / -1; }
  .section-heading, .cta-inner { align-items:flex-start; flex-direction:column; }
  .about-visual { min-height:auto; }
  .experience-card { left:20px; }
}

@media (max-width: 600px) {
  .container { width:min(100% - 26px, 1160px); }
  .section { padding:75px 0; }
  .brand-text { display:none; }
  .hero h1 { font-size:46px; letter-spacing:-2px; }
  .hero-actions, .hero-points { flex-direction:column; align-items:flex-start; }
  .stats-grid, .service-grid, .project-grid, .timeline, .field-row, .footer-grid { grid-template-columns:1fr; }
  .stats-grid > div, .stats-grid > div:first-child { border-left:0; border-right:0; border-bottom:1px solid rgba(255,255,255,.1); }
  .project { min-height:360px; }
  .contact-form { padding:24px; }
  .footer-bottom { flex-direction:column; gap:12px; }
}
