:root {
  --bg: #f4f7f8;
  --ink: #06111b;
  --muted: #63717b;
  --blue: #0b87c6;
  --blue2: #14a6e5;
  --line: rgba(6, 17, 27, .12);
  --white: #ffffff;
  --dark: #07111a;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(4, 18, 30, .12);
}

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  left: 0; right: 0; top: 0;
  height: 88px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: .35s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(6, 17, 27, .78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 82px;
  height: 58px;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  padding: 4px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

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

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 700;
}

.nav a { transition: .2s ease; }
.nav a:hover { color: white; }

.nav-cta {
  justify-self: end;
  color: white;
  border: 1px solid rgba(255,255,255,.28);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: .2s ease;
}
.nav-cta:hover { background: white; color: var(--ink); }

.menu-toggle { display: none; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-glass-balcony.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,12,18,.90) 0%, rgba(4,12,18,.72) 40%, rgba(4,12,18,.16) 70%, rgba(4,12,18,.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.28));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .55fr;
  gap: 80px;
  align-items: end;
  padding-top: 120px;
  padding-bottom: 90px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .19em;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
}
.eyebrow span { width: 38px; height: 2px; background: var(--blue2); }
.eyebrow.dark { color: #64717a; }

.hero h1,
.section-head h2,
.showcase-copy h2,
.process-head h2,
.cta h2,
.contact-copy h2 {
  font-family: "Outfit", sans-serif;
  margin: 22px 0 0;
  letter-spacing: -.045em;
  line-height: .95;
}

.hero h1 {
  font-size: clamp(56px, 7vw, 106px);
  max-width: 900px;
}
.hero h1 span { color: #52c8fb; }

.hero-copy > p {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.76);
  line-height: 1.75;
  font-size: 17px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #0b9fe8, #057ab8);
  color: white;
  box-shadow: 0 14px 30px rgba(5, 137, 200, .28);
}

.btn-ghost {
  color: white;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
}

.btn-light {
  background: white;
  color: var(--ink);
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stats div { display: grid; gap: 4px; }
.hero-stats strong { color: #61d0ff; font-size: 13px; letter-spacing: .12em; }
.hero-stats span { color: rgba(255,255,255,.78); font-size: 13px; }

.hero-card {
  align-self: end;
  background: rgba(4,16,25,.52);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 25px 80px rgba(0,0,0,.25);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 26px;
  max-width: 340px;
  justify-self: end;
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: .15em;
  color: rgba(255,255,255,.6);
}
.hero-card-top .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #54d0ff;
  box-shadow: 0 0 0 7px rgba(84,208,255,.12);
}
.hero-card-title {
  margin-top: 56px;
  font-family: "Outfit";
  font-size: 31px;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.hero-card p {
  color: rgba(255,255,255,.68);
  line-height: 1.6;
  font-size: 14px;
}
.hero-card-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}
.mini-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #0f9bdc;
  display: grid;
  place-items: center;
  color: white;
}

.scroll-indicator {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.5);
}
.scroll-indicator span {
  width: 26px; height: 1px; background: rgba(255,255,255,.5);
}

.marquee {
  overflow: hidden;
  background: var(--blue);
  color: white;
  padding: 18px 0;
}
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  animation: marquee 28s linear infinite;
  font-family: "Outfit";
  font-weight: 800;
  letter-spacing: .1em;
}
.marquee-track span { font-size: 14px; }
.marquee-track i { opacity: .5; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}

.section-head h2,
.showcase-copy h2,
.process-head h2,
.cta h2,
.contact-copy h2 {
  font-size: clamp(46px, 5vw, 76px);
}

.section-head p,
.showcase-copy > p,
.contact-copy > p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-card {
  min-height: 370px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.service-card-accent {
  background: #071824;
  color: white;
  border-color: transparent;
}
.service-no {
  font-size: 11px;
  letter-spacing: .14em;
  color: #7a8790;
}
.service-icon {
  margin-top: 54px;
  font-size: 44px;
  color: var(--blue);
}
.service-card h3 {
  font-family: "Outfit";
  font-size: 25px;
  letter-spacing: -.02em;
  margin: 24px 0 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.service-card-accent p { color: rgba(255,255,255,.62); }
.service-card a {
  margin-top: auto;
  padding-top: 28px;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-card-accent a { color: #57caff; }

.showcase {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: #07111a;
  color: white;
  min-height: 760px;
}
.showcase-image { min-height: 760px; overflow: hidden; }
.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-copy {
  padding: 100px max(40px, calc((100vw - 1180px)/2)) 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showcase-copy > p { color: rgba(255,255,255,.62); margin-top: 28px; }

.feature-list { margin-top: 46px; }
.feature {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.feature-num { color: #5acbfb; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.feature h3 { margin: 0; font-family: "Outfit"; font-size: 21px; }
.feature p { margin: 6px 0 0; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.6; }

.projects { background: white; }
.project-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  grid-template-rows: 360px 360px;
  gap: 14px;
}
.project {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #0a1923;
}
.project-large { grid-row: 1 / span 2; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project:hover img { transform: scale(1.035); }
.project figcaption {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(4,14,22,.64);
  color: white;
  backdrop-filter: blur(16px);
  display: grid;
  gap: 7px;
}
.project figcaption span { font-size: 10px; letter-spacing: .13em; color: rgba(255,255,255,.6); }
.project figcaption strong { font-family: "Outfit"; font-size: 21px; }

.project-text {
  background:
    radial-gradient(circle at 100% 0%, rgba(42,187,247,.22), transparent 35%),
    #07141e;
  color: white;
}
.project-text-inner {
  position: absolute; inset: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project-text-inner > span { color: #56c8f8; font-size: 10px; letter-spacing: .15em; font-weight: 800; }
.project-text h3 { font-family: "Outfit"; font-size: 34px; line-height: 1; margin: 12px 0; }
.project-text p { color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.6; margin-bottom: 22px; }

.process {
  background: #07111a;
  color: white;
}
.process-head { max-width: 740px; }
.process-steps {
  margin-top: 70px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.step > span {
  color: #55c8f8;
  font-size: 12px;
  letter-spacing: .13em;
  font-weight: 800;
}
.step h3 { font-family: "Outfit"; font-size: 25px; margin: 0 0 6px; }
.step p { margin: 0; color: rgba(255,255,255,.5); }

.cta-section {
  background: linear-gradient(135deg, #0a9bdf, #0676b0);
  color: white;
}
.cta {
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr .6fr;
  gap: 80px;
  align-items: center;
}
.cta-right p {
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin: 0 0 26px;
}

.contact { background: #eef3f5; }
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}
.contact-copy > p { margin-top: 28px; }

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}
.contact-details > * {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.contact-details span { color: #7a878f; font-size: 10px; letter-spacing: .13em; font-weight: 800; }
.contact-details strong { font-size: 14px; }

.contact-form {
  background: white;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 12px; font-weight: 800; color: #53616b; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #dce3e7;
  border-radius: 14px;
  background: #f8fafb;
  padding: 15px 16px;
  outline: none;
  color: var(--ink);
  transition: border .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #0c96d7;
  box-shadow: 0 0 0 4px rgba(12,150,215,.10);
}
.submit-btn { width: 100%; }
.form-note { margin-top: 12px; color: #53616b; font-size: 12px; min-height: 18px; }

.footer {
  background: #030b10;
  color: white;
  padding: 54px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: end;
}
.footer-brand img {
  width: 78px;
  height: 58px;
  object-fit: contain;
  background: white;
  border-radius: 14px;
  padding: 4px;
}
.footer-brand p { margin: 12px 0 0; color: rgba(255,255,255,.48); font-size: 13px; }
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}
.footer-copy {
  text-align: right;
  display: grid;
  gap: 5px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 980px) {
  .nav-wrap { grid-template-columns: auto 1fr auto; }
  .nav { 
    position: fixed;
    left: 18px; right: 18px; top: 82px;
    display: grid;
    gap: 0;
    background: rgba(6,17,27,.96);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 12px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav a:last-child { border-bottom: 0; }
  .menu-toggle {
    display: grid;
    justify-self: end;
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: transparent;
    place-content: center;
    gap: 5px;
  }
  .menu-toggle span { display: block; width: 18px; height: 1px; background: white; }
  .nav-cta { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-card { justify-self: start; max-width: 420px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: 1fr; }
  .showcase-image { min-height: 560px; }
  .showcase-copy { padding: 70px 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-copy { text-align: left; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { height: 76px; }
  .brand { width: 72px; height: 52px; }
  .hero { min-height: 920px; }
  .hero-grid { padding-top: 130px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(49px, 15vw, 72px); }
  .hero-copy > p { font-size: 15px; }
  .hero-card { width: 100%; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .section { padding: 82px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head h2,
  .showcase-copy h2,
  .process-head h2,
  .cta h2,
  .contact-copy h2 { font-size: 48px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-icon { margin-top: 35px; }
  .showcase-image { min-height: 430px; }
  .showcase-copy { padding: 62px 24px; }
  .project-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .project, .project-large { height: 420px; grid-row: auto; }
  .project-text { height: 360px; }
  .cta { grid-template-columns: 1fr; gap: 32px; padding: 76px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; border-radius: 22px; }
  .scroll-indicator { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
