@font-face {
  font-family: "Milan Display";
  src: url("milan-display-black.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --navy: #28265c;
  --navy-deep: #1e1d49;
  --navy-soft: #34316c;
  --amber: #c89443;
  --amber-light: #ddb066;
  --ivory: #f1eee8;
  --ivory-deep: #e7e2da;
  --ink: #17162c;
  --muted: #6f6c78;
  --white: #ffffff;
  --line: rgba(40, 38, 92, 0.15);
  --display: "Milan Display", Tahoma, Arial, sans-serif;
  --body: Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

svg {
  display: block;
}

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

.section {
  padding-block: 140px;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 68%, rgba(255, 255, 255, 0.025) 68% 68.1%, transparent 68.1%),
    var(--navy);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  content: "";
  pointer-events: none;
  opacity: 0.25;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  width: 118px;
  height: 84px;
  overflow: hidden;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.desktop-nav a,
.header-cta,
.phone-link {
  transition: color 180ms ease, opacity 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.phone-link:hover,
.phone-link:focus-visible {
  color: var(--amber-light);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding-inline: 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--ink);
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transform: scaleX(-1);
}

.mobile-menu {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 74px;
  align-items: center;
  min-height: 650px;
  padding-block: 64px 54px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: var(--amber);
}

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

.hero h1,
.section h2 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(58px, 5.7vw, 88px);
}

.hero h1 em,
.section h2 em {
  color: var(--amber-light);
  font-style: normal;
}

.hero h1 em {
  white-space: nowrap;
}

.hero-content > p {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.95;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding-inline: 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--amber);
  color: var(--ink);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--amber-light);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  height: 570px;
  margin-left: -12vw;
  overflow: hidden;
  border-radius: 2px 2px 90px 2px;
  background: var(--navy-deep);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.24);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 74%;
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.012);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(40, 38, 92, 0.76) 0, rgba(40, 38, 92, 0.16) 47%, transparent 78%),
    linear-gradient(0deg, rgba(21, 20, 49, 0.7), transparent 50%);
  content: "";
}

.hero-diagonals {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 150px;
  height: 170px;
  background: repeating-linear-gradient(135deg, var(--amber) 0 8px, transparent 8px 18px);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.95;
}

.hero-proof {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  width: 210px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(30, 29, 73, 0.84);
  backdrop-filter: blur(14px);
}

.hero-proof span {
  color: var(--amber-light);
  font-size: 11px;
}

.hero-proof strong {
  margin-top: 6px;
  font-family: var(--display);
  font-size: 23px;
}

.hero-proof small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.hero-footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 34px;
  align-items: center;
  min-height: 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero-stat > span {
  color: var(--amber-light);
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
}

.hero-stat p {
  max-width: 130px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-tags span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.about {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.section h2 {
  color: var(--navy);
  font-size: clamp(48px, 5vw, 76px);
}

.section h2 em {
  color: var(--amber);
}

.about-copy {
  max-width: 610px;
  padding-top: 28px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.about-copy .lead {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.8;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 45px;
}

.credentials div {
  padding: 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.credentials span,
.contact-details span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
}

.credentials strong {
  color: var(--navy);
  font-size: 15px;
}

.services,
.process {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.services::before,
.process::before {
  position: absolute;
  top: -70px;
  left: -40px;
  width: 220px;
  height: 260px;
  background: repeating-linear-gradient(135deg, rgba(200, 148, 67, 0.78) 0 7px, transparent 7px 18px);
  content: "";
  opacity: 0.26;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.services .section-heading h2,
.process .section-heading h2,
.contact h2 {
  color: var(--white);
}

.services .section-heading p,
.process .section-heading p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.9;
}

.services-list {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-card {
  display: grid;
  grid-template-columns: 90px 1fr 150px;
  gap: 34px;
  align-items: center;
  min-height: 150px;
  padding: 26px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 220ms ease, color 220ms ease, padding 220ms ease;
}

.service-card:hover {
  padding-inline: 34px;
  background: var(--ivory);
  color: var(--ink);
}

.service-number {
  color: var(--amber-light);
  font-family: var(--display);
  font-size: 36px;
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 900;
}

.service-card p {
  max-width: 670px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.8;
  transition: color 220ms ease;
}

.service-card:hover p {
  color: var(--muted);
}

.service-card small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  text-align: left;
}

.service-card:hover small {
  color: var(--muted);
}

.service-card b {
  display: block;
  margin-top: 5px;
  color: var(--amber-light);
  font-size: 14px;
}

.projects {
  background: var(--ivory);
}

.projects-heading p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.9fr;
  grid-template-rows: 310px 230px;
  gap: 18px;
}

.project {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy-deep);
}

.project-1 {
  grid-row: 1 / 3;
}

.project-2 {
  grid-column: 2 / 4;
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.03);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 350ms ease;
}

.project:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.03);
}

.project::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25, 24, 55, 0.75), transparent 48%);
  content: "";
  pointer-events: none;
}

.project figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.project figcaption span {
  color: var(--amber-light);
  font-family: var(--display);
  font-size: 14px;
}

.project figcaption strong {
  font-size: 14px;
}

.process::before {
  top: auto;
  right: -20px;
  bottom: -80px;
  left: auto;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid::before {
  position: absolute;
  top: 37px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.process-step {
  position: relative;
  padding: 0 0 0 35px;
}

.process-step + .process-step {
  padding-right: 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber-light);
  font-family: var(--display);
  font-size: 19px;
}

.process-step h3 {
  margin: 28px 0 0;
  font-family: var(--display);
  font-size: 25px;
}

.process-step p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.85;
}

.contact {
  background: var(--ivory);
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  overflow: hidden;
  padding: 88px;
  background: var(--navy-deep);
  color: var(--white);
}

.contact-shell::after {
  position: absolute;
  top: -34px;
  left: -20px;
  width: 175px;
  height: 220px;
  background: repeating-linear-gradient(135deg, var(--amber) 0 8px, transparent 8px 20px);
  content: "";
  opacity: 0.34;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact h2 {
  font-size: clamp(48px, 5vw, 72px);
}

.contact-content > p {
  max-width: 540px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.9;
}

.contact .button svg {
  fill: none;
  stroke: currentColor;
  transform: none;
}

.contact .button svg path:first-child {
  fill: none;
}

.contact-details {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  font-style: normal;
}

.contact-details div {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-details span {
  color: rgba(255, 255, 255, 0.42);
}

.contact-details a,
.contact-details strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--amber-light);
}

footer {
  padding-block: 38px;
  background: #151428;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 34px;
  align-items: center;
}

.footer-grid img {
  width: 82px;
  height: 70px;
  object-fit: contain;
}

.footer-grid p {
  margin: 0;
  color: var(--amber-light);
  font-family: var(--display);
  font-size: 16px;
}

.footer-grid small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #1f9d55;
  box-shadow: 0 14px 32px rgba(12, 79, 43, 0.3);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #178646;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}

.wa-glyph {
  fill: currentColor;
  stroke: none;
}

.contact .button .wa-glyph {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
  transform: none;
}

.contact .button .wa-glyph path {
  fill: currentColor;
}

:focus-visible {
  outline: 2px solid var(--amber-light);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .container {
    width: min(100% - 48px, 1020px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-visual {
    margin-left: -24px;
  }

  .hero-tags span:nth-child(n + 4) {
    display: none;
  }

  .contact-shell {
    gap: 60px;
    padding: 64px;
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: 100px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 18px;
    height: 1px;
    background: var(--white);
  }

  .mobile-menu nav {
    position: absolute;
    top: 60px;
    left: 0;
    display: flex;
    flex-direction: column;
    width: min(260px, calc(100vw - 48px));
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--navy-deep);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  }

  .mobile-menu nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero-visual {
    height: 500px;
    margin-left: 0;
  }

  .hero-footer {
    grid-template-columns: 1fr auto;
  }

  .hero-tags {
    display: none;
  }

  .about-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 42px;
  }

  .about-copy {
    padding-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }

  .service-card {
    grid-template-columns: 65px 1fr;
  }

  .service-card small {
    display: none;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 350px 250px 250px;
  }

  .project-1 {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .project-2 {
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 0;
  }

  .process-grid::before {
    display: none;
  }

  .contact-shell {
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: 90px 1fr;
  }

  .footer-grid small {
    grid-column: 1 / 3;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 36px);
  }

  .section {
    padding-block: 78px;
  }

  .site-header {
    min-height: 88px;
  }

  .brand {
    width: 92px;
    height: 66px;
  }

  .hero-grid {
    gap: 44px;
    min-height: auto;
    padding-block: 48px 34px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-content > p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    height: 410px;
    border-radius: 2px 2px 60px 2px;
  }

  .hero-proof {
    right: 16px;
    bottom: 16px;
    width: 190px;
    padding: 18px;
  }

  .hero-diagonals {
    width: 100px;
    height: 120px;
  }

  .hero-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 24px;
  }

  .phone-link {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
  }

  .section h2,
  .contact h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .about-copy .lead {
    font-size: 19px;
  }

  .credentials {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 46px;
  }

  .service-card,
  .service-card:hover {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    min-height: 0;
    padding: 26px 4px;
  }

  .service-number {
    font-size: 26px;
  }

  .service-card h3 {
    font-size: 23px;
  }

  .projects-grid {
    display: flex;
    flex-direction: column;
  }

  .project {
    height: 280px;
  }

  .project:first-child {
    height: 390px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-step,
  .process-step + .process-step {
    padding: 0;
    border-right: 0;
  }

  .process-step > span {
    width: 62px;
    height: 62px;
  }

  .contact {
    padding-inline: 0;
  }

  .contact-shell {
    width: 100%;
    padding: 72px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid img {
    margin-inline: auto;
  }

  .footer-grid small {
    grid-column: auto;
    line-height: 1.8;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
