
:root {
  --navy: #08253a;
  --navy-deep: #051a29;
  --navy-soft: #123a54;
  --orange: #ee7d16;
  --sky: #c9e0eb;
  --paper: #f3f1eb;
  --white: #ffffff;
  --ink: #14232d;
  --muted: #66737b;
  --line: rgba(8, 37, 58, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
a,
button {
  cursor: default;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(8, 37, 58, 0.1);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 84px;
  padding: 0 4.5vw;
  position: relative;
  z-index: 10;
}

.brand {
  width: 188px;
}

.brand img {
  height: auto;
  width: 100%;
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a,
.header-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav a {
  color: var(--navy);
  position: relative;
}

.site-header nav a::after {
  background: var(--orange);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-self: end;
}

.header-cta span {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-size: 16px;
  height: 36px;
  justify-content: center;
  transition: transform 180ms ease;
  width: 36px;
}

.header-cta:hover span,
.button:hover span {
  transform: translate(2px, -2px);
}

.hero {
  background: var(--navy-deep);
  color: white;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 690px;
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  padding: 80px 5vw 80px 7vw;
  position: relative;
  z-index: 2;
}

.hero-copy::before {
  background: var(--orange);
  content: "";
  height: 3px;
  left: 7vw;
  position: absolute;
  top: 43px;
  width: 58px;
}

.eyebrow {
  color: var(--navy-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.5;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.64);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(48px, 4.5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}

.hero h1 em {
  color: var(--sky);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
  line-height: 1.7;
  margin: 34px 0;
  max-width: 560px;
}

.hero-actions,
.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 34px;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 54px;
  padding: 0 22px;
  text-transform: uppercase;
}

.button.primary {
  background: var(--orange);
  color: white;
}

.button span {
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-bottom: 8px;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 690px;
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(5, 26, 41, 0) 26%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-visual > img {
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  width: 100%;
}

.hero-caption {
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 38px;
  position: absolute;
  z-index: 2;
}

.hero-caption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-caption strong {
  font-size: 14px;
  letter-spacing: 0.02em;
}

.proof-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.45fr;
  padding: 0 7vw;
}

.proof-strip > * {
  border-right: 1px solid var(--line);
  min-height: 154px;
  padding: 30px 3vw;
}

.proof-strip > div:first-child {
  padding-left: 0;
}

.proof-strip > p:last-child {
  border-right: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.45;
  margin: 0;
}

.proof-strip div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proof-strip strong {
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.proof-strip span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.45;
  max-width: 180px;
  text-transform: uppercase;
}

.section {
  margin: 0 auto;
  max-width: 1480px;
  padding-left: 7vw;
  padding-right: 7vw;
}

.intro {
  display: grid;
  gap: 8vw;
  grid-template-columns: 190px 1fr;
  padding-bottom: 150px;
  padding-top: 150px;
}

.section-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--orange);
  margin-right: 12px;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.55);
}

.intro-content h2,
.projects-head h2,
.method-content h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 52px;
  max-width: 880px;
}

.intro-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.95fr 1fr;
  padding-top: 28px;
}

.intro-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.intro-grid .lead-copy {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.45;
}

.services {
  background: var(--navy);
  color: white;
  padding: 130px 0 0;
}

.services-heading {
  display: grid;
  gap: 8vw;
  grid-template-columns: 190px 1fr;
}

.services-heading h2,
.team-copy h2 {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0 0 80px;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-left: calc(7vw + 190px + 8vw);
  max-width: calc(1480px - 7vw - 190px);
}

.service-list article {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 24px;
  grid-template-columns: 70px minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  padding: 34px 7vw 34px 0;
  transition: background 180ms ease, padding-left 180ms ease;
}

.service-list article:hover {
  background: rgba(255, 255, 255, 0.035);
  padding-left: 14px;
}

.service-list article > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.service-list h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}

.service-list p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 500px;
}

.projects-section {
  padding-bottom: 150px;
  padding-top: 150px;
}

.projects-head {
  align-items: end;
  display: grid;
  gap: 4vw;
  grid-template-columns: 190px 1fr 0.55fr;
  margin-bottom: 70px;
}

.projects-head h2 {
  font-size: clamp(42px, 4.4vw, 68px);
  margin-bottom: 0;
}

.projects-head > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.project-grid {
  display: grid;
  gap: 70px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card.project-featured {
  grid-column: 1 / -1;
}

.project-image {
  aspect-ratio: 16 / 10;
  background: #d8dee0;
  overflow: hidden;
}

.project-featured .project-image {
  aspect-ratio: 16 / 7;
}

.project-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.project-card:hover .project-image img {
  transform: scale(1.025);
}

.project-meta {
  align-items: start;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 17px;
}

.project-meta span,
.project-meta time {
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-meta h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 9px 0 6px;
}

.project-meta p {
  color: var(--muted);
  font-size: 13px;
}

.team-section {
  background: var(--navy-deep);
  color: white;
  padding: 140px 0;
  position: relative;
}

.team-section::before {
  background: linear-gradient(135deg, rgba(238, 125, 22, 0.15), transparent 45%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.team-grid {
  display: grid;
  gap: 8vw;
  grid-template-columns: 190px 0.85fr 1fr;
  position: relative;
}

.team-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 400;
  margin-bottom: 32px;
}

.team-copy > p:last-child {
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.75;
}

.team-members {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.team-members article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px 0 32px;
}

.team-members span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-members h3 {
  font-size: 23px;
  font-weight: 500;
  margin: 13px 0 12px;
}

.team-email {
  color: rgba(255, 255, 255, 0.58);
  display: inline-block;
  font-size: 13px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-email:hover,
.team-email:focus-visible {
  color: var(--orange);
}

.team-members p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.team-linkedin {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 0.04em;
  margin-top: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-linkedin svg {
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.team-linkedin:hover,
.team-linkedin:focus-visible {
  color: var(--orange);
}

.team-whatsapp {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 0.04em;
  margin-top: 16px;
  margin-left: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-whatsapp svg {
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.team-whatsapp:hover,
.team-whatsapp:focus-visible {
  color: var(--orange);
}

.method-section {
  display: grid;
  gap: 8vw;
  grid-template-columns: 190px 1fr;
  padding-bottom: 150px;
  padding-top: 150px;
}

.method-content ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.method-content li {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 80px 1fr;
  padding: 25px 0;
}

.method-content li > span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.method-content li div {
  display: grid;
  gap: 4vw;
  grid-template-columns: 0.7fr 1fr;
}

.method-content strong {
  color: var(--navy);
  font-size: 21px;
  font-weight: 500;
}

.method-content li p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.contact {
  background: var(--orange);
  color: white;
  padding: 120px 7vw;
}

.contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 110px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0 0 22px;
}

.contact > p:not(.eyebrow) {
  font-size: 18px;
  margin-bottom: 38px;
}

.contact .button.primary {
  background: var(--navy-deep);
}

.phone-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.02em;
  min-height: 52px;
  padding: 0 24px;
  transition: background 180ms ease, transform 180ms ease;
}

.phone-link svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.phone-link:hover,
.phone-link:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

footer {
  background: #03131e;
  color: white;
  display: grid;
  gap: 7vw;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding: 70px 7vw 34px;
}

.footer-brand img {
  background: white;
  max-width: 210px;
  padding: 5px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  margin-top: 22px;
}

footer > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

footer span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

footer a,
footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  margin-bottom: 0;
}

.footer-envelope {
  align-items: center;
  display: inline-flex;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-envelope:hover,
.footer-envelope:focus-visible {
  opacity: 1;
}

.footer-envelope svg {
  height: 72px;
  width: 72px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 24px;
}

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

  .hero-copy {
    padding-bottom: 64px;
    padding-top: 90px;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .proof-strip > p:last-child {
    border-top: 1px solid var(--line);
    grid-column: 1 / -1;
    min-height: 0;
  }

  .projects-head,
  .team-grid {
    grid-template-columns: 160px 1fr;
  }

  .projects-head > p,
  .team-members {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 0 22px;
  }

  .brand {
    width: 154px;
  }

  .site-header nav {
    display: none;
  }

  .header-cta {
    font-size: 0;
  }

  .header-cta span {
    font-size: 16px;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 92px 24px 58px;
  }

  .hero-copy::before {
    left: 24px;
    top: 48px;
  }

  .hero h1 {
    font-size: clamp(43px, 12vw, 62px);
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-visual::after {
    background: linear-gradient(0deg, rgba(5, 26, 41, 0.75), transparent 50%);
  }

  .hero-caption {
    bottom: 22px;
    left: 24px;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
  }

  .proof-strip > * {
    min-height: 130px;
    padding: 25px 18px;
  }

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(3) {
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .proof-strip > p:last-child {
    grid-column: auto;
    padding-right: 0;
  }

  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .intro,
  .services-heading,
  .projects-head,
  .team-grid,
  .method-section {
    display: block;
    padding-bottom: 95px;
    padding-top: 95px;
  }

  .section-label {
    margin-bottom: 55px;
  }

  .intro-content h2,
  .projects-head h2,
  .method-content h2 {
    font-size: 47px;
    margin-bottom: 38px;
  }

  .intro-grid {
    display: block;
  }

  .intro-grid .lead-copy {
    font-size: 21px;
  }

  .services {
    padding-top: 0;
  }

  .services-heading h2 {
    font-size: 54px;
    margin-bottom: 0;
  }

  .service-list {
    margin-left: 24px;
  }

  .service-list article {
    display: grid;
    grid-template-columns: 45px 1fr;
    padding: 28px 24px 28px 0;
  }

  .service-list article p {
    grid-column: 2;
  }

  .projects-head > p {
    margin-top: 26px;
  }

  .project-grid {
    display: block;
  }

  .project-card {
    margin-bottom: 56px;
  }

  .project-featured .project-image,
  .project-image {
    aspect-ratio: 4 / 3;
  }

  .team-copy h2 {
    font-size: 46px;
  }

  .team-members {
    margin-top: 50px;
  }

  .method-content li div {
    display: block;
  }

  .method-content li p {
    margin-top: 8px;
  }

  .contact {
    padding: 90px 24px;
  }

  .contact h2 {
    font-size: 58px;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    display: block;
    padding: 60px 24px 30px;
  }

  footer > div {
    margin-bottom: 42px;
  }

  .copyright {
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
