:root {
      --navy: #17232f;
      --navy-soft: #223343;
      --ink: #17202a;
      --muted: #5f6b76;
      --paper: #ffffff;
      --off-white: #f5f7f8;
      --line: #dfe5e8;
      --accent: #5CB130;
      --accent-dark: #438B20;
      --success: #5CB130;
      --radius: 18px;
      --shadow: 0 18px 50px rgba(23, 35, 47, 0.10);
      --max-width: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

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

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

    a {
      color: inherit;
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
    }

    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      color: var(--navy);
      text-decoration: none;
    }

    .brand img {
      display: block;
      width: min(285px, 36vw);
      height: auto;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 26px;
    }

    .nav a {
      color: var(--navy-soft);
      text-decoration: none;
      font-size: 0.94rem;
      font-weight: 700;
    }

    .nav a:hover {
      color: var(--accent-dark);
    }

    .nav .nav-cta {
      padding: 11px 17px;
      border-radius: 999px;
      color: var(--navy);
      background: var(--accent);
    }

    .hero {
      overflow: hidden;
      color: #fff;
      background:
        radial-gradient(circle at 80% 18%, rgba(230,164,58,0.20), transparent 30%),
        linear-gradient(135deg, var(--navy), #20384a);
    }

    .hero-inner {
      min-height: 680px;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      align-items: center;
      gap: 68px;
      padding-block: 96px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 20px;
      color: var(--accent);
      font-size: 0.83rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: currentColor;
    }

    h1, h2, h3 {
      margin-top: 0;
      line-height: 1.12;
      letter-spacing: -0.035em;
    }

    h1 {
      max-width: 780px;
      margin-bottom: 24px;
      font-size: clamp(2.8rem, 5.8vw, 5.5rem);
    }

    .hero-copy {
      max-width: 690px;
      margin: 0 0 32px;
      color: rgba(255,255,255,0.78);
      font-size: clamp(1.05rem, 1.5vw, 1.24rem);
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 13px 21px;
      border: 1px solid transparent;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 800;
      transition: 0.2s ease;
    }

    .button-primary {
      color: var(--navy);
      background: var(--accent);
    }

    .button-primary:hover {
      background: #6bc340;
      transform: translateY(-2px);
    }

    .button-secondary {
      color: #fff;
      border-color: rgba(255,255,255,0.30);
      background: rgba(255,255,255,0.04);
    }

    .button-secondary:hover {
      border-color: #fff;
      background: rgba(255,255,255,0.08);
    }

    .hero-note {
      margin: 26px 0 0;
      color: rgba(255,255,255,0.55);
      font-size: 0.9rem;
    }

    .browser {
      position: relative;
      padding: 14px;
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 24px;
      background: rgba(255,255,255,0.08);
      box-shadow: 0 28px 80px rgba(0,0,0,0.28);
      transform: rotate(1.5deg);
    }

    .browser-window {
      overflow: hidden;
      border-radius: 15px;
      color: var(--ink);
      background: #fff;
    }

    .browser-bar {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 13px 16px;
      border-bottom: 1px solid var(--line);
      background: #f4f6f7;
    }

    .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #c9d0d5;
    }

    .browser-url {
      flex: 1;
      height: 23px;
      margin-left: 10px;
      border-radius: 999px;
      background: #fff;
    }

    .browser-content {
      padding: 28px;
    }

    .mock-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 44px;
    }

    .mock-logo {
      width: 100px;
      height: 16px;
      border-radius: 5px;
      background: var(--navy);
    }

    .mock-links {
      width: 150px;
      height: 10px;
      border-radius: 5px;
      background: #e1e6e9;
    }

    .mock-heading {
      width: 78%;
      height: 28px;
      margin-bottom: 13px;
      border-radius: 6px;
      background: var(--navy);
    }

    .mock-heading.short {
      width: 56%;
      background: var(--accent);
    }

    .mock-copy {
      width: 91%;
      height: 9px;
      margin: 25px 0 8px;
      border-radius: 4px;
      background: #dfe5e8;
    }

    .mock-copy.small {
      width: 74%;
      margin-top: 0;
    }

    .mock-button {
      width: 112px;
      height: 34px;
      margin-top: 26px;
      border-radius: 999px;
      background: var(--accent);
    }

    .mock-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 11px;
      margin-top: 38px;
    }

    .mock-card {
      min-height: 95px;
      border-radius: 10px;
      background: linear-gradient(145deg, #eef2f4, #dce5e9);
    }

    .proof-strip {
      border-bottom: 1px solid var(--line);
      background: var(--paper);
    }

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

    .proof-item {
      padding: 28px 15px;
      border-right: 1px solid var(--line);
		text-align: center;
    }

    .proof-item:last-child {
      border-right: 0;
    }

    .proof-item strong {
      display: block;
      margin-bottom: 3px;
      color: var(--navy);
      font-size: 1.05rem;
    }

    .proof-item span {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .section {
      padding-block: 100px;
    }

    .section-soft {
      background: var(--off-white);
    }

    .section-heading {
      max-width: 760px;
      margin-bottom: 48px;
    }

    .section-heading h2 {
      margin-bottom: 18px;
      color: var(--navy);
      font-size: clamp(2.1rem, 4vw, 3.5rem);
    }

    .section-heading p {
      margin: 0;
      color: var(--muted);
      font-size: 1.08rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .service-card {
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      transition: 0.2s ease;
    }

    .service-card:hover {
      border-color: #cbd5da;
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .service-number {
      display: inline-grid;
      width: 42px;
      height: 42px;
      place-items: center;
      margin-bottom: 28px;
      border-radius: 12px;
      color: var(--accent-dark);
      background: #eef8e9;
      font-size: 0.85rem;
      font-weight: 800;
    }

    .service-card h3 {
      margin-bottom: 12px;
      color: var(--navy);
      font-size: 1.5rem;
    }

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

    .work-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .project-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
    }

    .project-visual {
      position: relative;
      min-height: 290px;
      padding: 28px;
      background: linear-gradient(145deg, #dde6eb, #f7f9fa);
    }

    .project-visual.gold {
      background: linear-gradient(145deg, #e8f4e2, #f8fbf6);
    }

    .project-visual.green {
      background: linear-gradient(145deg, #dcebe3, #f4faf7);
    }

    .project-visual.purple {
      background: linear-gradient(145deg, #e4ddec, #f8f5fa);
    }

    .mini-site {
      width: 82%;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 20px 40px rgba(23,35,47,0.13);
    }

    .mini-top {
      height: 18px;
      background: var(--navy);
    }

    .mini-hero {
      min-height: 108px;
      padding: 22px;
      background: #fff;
    }

    .mini-title {
      width: 70%;
      height: 14px;
      margin-bottom: 10px;
      border-radius: 4px;
      background: var(--navy);
    }

    .mini-line {
      width: 92%;
      height: 6px;
      margin-bottom: 6px;
      border-radius: 4px;
      background: #dfe4e7;
    }

    .mini-line.short {
      width: 60%;
    }

    .mini-panels {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      padding: 0 22px 22px;
    }

    .mini-panel {
      height: 58px;
      border-radius: 6px;
      background: #eef2f4;
    }

    .project-body {
      padding: 28px;
    }

    .project-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
    }

    .tag {
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--navy-soft);
      background: var(--off-white);
      font-size: 0.78rem;
      font-weight: 700;
    }

    .project-body h3 {
      margin-bottom: 10px;
      font-size: 1.55rem;
    }

    .project-body p {
      margin: 0 0 20px;
      color: var(--muted);
    }

    .text-link {
      color: var(--navy);
      font-weight: 800;
      text-decoration-thickness: 2px;
      text-underline-offset: 4px;
      text-decoration-color: var(--accent);
    }

    .about-layout {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 70px;
      align-items: start;
    }

    .about-panel {
      padding: 38px;
      border-radius: var(--radius);
      color: #fff;
      background: var(--navy);
    }

    .about-panel .big-number {
      display: block;
      margin-bottom: 8px;
      color: var(--accent);
      font-size: clamp(3.5rem, 8vw, 6.5rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.06em;
    }

    .about-panel p {
      margin: 0;
      color: rgba(255,255,255,0.72);
    }

    .about-copy h2 {
      margin-bottom: 22px;
      color: var(--navy);
      font-size: clamp(2.1rem, 4vw, 3.4rem);
    }

    .about-copy p {
      color: var(--muted);
      font-size: 1.04rem;
    }

    .check-list {
      display: grid;
      gap: 14px;
      margin: 28px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding-left: 32px;
      color: var(--navy);
      font-weight: 700;
    }

    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--success);
      font-weight: 900;
    }

    .testimonial {
      max-width: 880px;
      padding: 46px;
      border-left: 5px solid var(--accent);
      border-radius: 0 var(--radius) var(--radius) 0;
      background: var(--paper);
      box-shadow: var(--shadow);
    }

    .testimonial blockquote {
      margin: 0 0 24px;
      color: var(--navy);
      font-size: clamp(1.25rem, 2vw, 1.7rem);
      font-weight: 700;
      line-height: 1.45;
    }

    .testimonial cite {
      color: var(--muted);
      font-style: normal;
    }

    .cta {
      padding-block: 86px;
      color: #fff;
      background: var(--navy);
    }

    .cta-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 50px;
      align-items: center;
    }

    .cta h2 {
      margin-bottom: 14px;
      font-size: clamp(2rem, 4vw, 3.5rem);
    }

    .cta p {
      max-width: 740px;
      margin: 0;
      color: rgba(255,255,255,0.70);
      font-size: 1.06rem;
    }

    .site-footer {
      padding-block: 28px;
      color: rgba(255,255,255,0.60);
      background: #101a23;
      font-size: 0.9rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 24px;
    }

    .footer-inner a {
      color: rgba(255,255,255,0.78);
    }

    @media (max-width: 920px) {
      .nav a:not(.nav-cta) {
        display: none;
      }

      .hero-inner,
      .about-layout,
      .cta-inner {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        min-height: auto;
        gap: 52px;
        padding-block: 72px;
      }

      .browser {
        max-width: 650px;
      }

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

      .proof-item:nth-child(2) {
        border-right: 0;
      }

      .proof-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 680px) {
      .container {
        width: min(calc(100% - 28px), var(--max-width));
      }

      .site-header {
        position: static;
      }

      .header-inner {
        min-height: 68px;
      }

      .brand img {
        width: 210px;
      }

      .nav-cta {
        padding: 9px 13px !important;
        font-size: 0.84rem !important;
      }

      .hero-inner,
      .section {
        padding-block: 68px;
      }

      h1 {
        font-size: clamp(2.55rem, 13vw, 4.2rem);
      }

      .browser-content {
        padding: 20px;
      }

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

      .mock-card {
        min-height: 52px;
      }

      .proof-grid,
      .services-grid,
      .work-grid {
        grid-template-columns: 1fr;
      }

      .proof-item,
      .proof-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .proof-item:last-child {
        border-bottom: 0;
      }

      .service-card,
      .project-body,
      .testimonial,
      .about-panel {
        padding: 26px;
      }

      .project-visual {
        min-height: 230px;
        padding: 22px 12px;
      }

      .mini-site {
        width: 92%;
      }

      .footer-inner {
        flex-direction: column;
      }
    }


.more-work-card {
  display: grid;
  min-height: 100%;
  color: #fff;
  border-color: var(--navy);
  background:
    radial-gradient(circle at 90% 10%, rgba(92, 177, 48, 0.28), transparent 34%),
    var(--navy);
}

.more-work-inner {
  align-self: center;
  padding: 42px;
}

.more-work-card .eyebrow {
  margin-bottom: 20px;
}

.more-work-card h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.8rem;
}

.more-work-card p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.72);
}

.more-work-card .button {
  width: fit-content;
}

@media (max-width: 680px) {
  .more-work-inner {
    padding: 30px 26px;
  }
}


/* --------------------------------------------------
   Current websites page
-------------------------------------------------- */

.subpage-hero {
  color: #fff;
  background:
    radial-gradient(circle at 84% 12%, rgba(92, 177, 48, 0.24), transparent 30%),
    linear-gradient(135deg, var(--navy), #20384a);
}

.subpage-hero-inner {
  max-width: 880px;
  padding-block: 92px;
}

.subpage-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.subpage-hero p {
  max-width: 780px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.portfolio-note {
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.94rem !important;
}

.site-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.site-filter {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.site-filter:hover,
.site-filter.is-active {
  color: #fff;
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.site-count {
  margin: 0 0 28px;
  color: var(--muted);
}

.site-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.site-list-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.site-list-card[hidden] {
  display: none;
}

.site-category {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-list-card h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.25rem;
}

.site-list-card p {
  min-height: 52px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

@media (max-width: 920px) {
  .site-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .subpage-hero-inner {
    padding-block: 64px;
  }

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

  .site-list-card p {
    min-height: 0;
  }
}


.service-card {
  position: relative;
  overflow: hidden;
}

.service-icon {
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  object-fit: contain;
}

.service-card .service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  margin: 0;
}

@media (max-width: 680px) {
  .service-icon {
    width: 78px;
    height: 78px;
  }
}


.project-visual {
  min-height: 290px;
  padding: 0;
  background: #edf2f1;
}

.project-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 680px) {
  .project-visual {
    min-height: 220px;
    padding: 0;
  }
}


/* --------------------------------------------------
   Responsive navigation
-------------------------------------------------- */

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 3px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  display: grid;
  padding-block: 12px 20px;
}

.mobile-menu a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}

.mobile-menu a:last-child {
  border-bottom: 0;
  color: var(--accent-dark);
}

.site-featured {
  display: inline-block;
  margin: 0 8px 12px 0;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--navy);
  background: #eef8e9;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-site {
  border-color: rgba(92, 177, 48, 0.45);
}

@media (max-width: 920px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand img {
    width: min(300px, 68vw);
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .mobile-menu:not([hidden]) {
    display: block;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: min(250px, 70vw);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }
}


/* Featured websites on portfolio page */
.featured-websites-section {
  margin-bottom: 86px;
}

.compact-heading {
  margin-bottom: 32px;
}

.featured-sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.featured-site-card {
  position: relative;
  border-top: 4px solid var(--accent);
  background: linear-gradient(180deg, #f6fbf3 0%, #ffffff 42%);
}

.featured-sites-grid .featured-site-card:first-child,
.featured-sites-grid .featured-site-card:nth-child(2) {
  grid-column: span 1;
}

.more-websites-section {
  padding-top: 76px;
  border-top: 1px solid var(--line);
}

@media (max-width: 920px) {
  .featured-sites-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .featured-websites-section {
    margin-bottom: 64px;
  }

  .featured-sites-grid {
    grid-template-columns: 1fr;
  }

  .more-websites-section {
    padding-top: 58px;
  }
}


/* --------------------------------------------------
   All websites hero collage
-------------------------------------------------- */

.portfolio-hero-grid {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 70px;
  align-items: center;
}

.portfolio-hero-copy {
  max-width: 760px;
}

.portfolio-hero-copy p {
  max-width: 720px;
}

.portfolio-collage {
  position: relative;
  min-height: 500px;
}

.collage-item {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(5, 18, 28, 0.34);
}

.collage-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-main {
  left: 0;
  top: 68px;
  z-index: 2;
  width: 72%;
  aspect-ratio: 1.6 / 1;
}

.collage-top {
  top: 0;
  right: 0;
  z-index: 3;
  width: 52%;
  aspect-ratio: 1.6 / 1;
  transform: rotate(2deg);
}

.collage-middle {
  right: 3%;
  top: 185px;
  z-index: 4;
  width: 48%;
  aspect-ratio: 1.6 / 1;
  transform: rotate(-1.5deg);
}

.collage-bottom {
  left: 15%;
  bottom: 0;
  z-index: 5;
  width: 54%;
  aspect-ratio: 1.6 / 1;
  transform: rotate(1deg);
}

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

  .portfolio-hero-copy {
    max-width: 800px;
  }

  .portfolio-collage {
    width: min(100%, 760px);
    min-height: 480px;
  }
}

@media (max-width: 680px) {
  .portfolio-hero-grid {
    gap: 36px;
  }

  .portfolio-collage {
    min-height: 340px;
  }

  .collage-item {
    border-width: 5px;
    border-radius: 11px;
  }

  .collage-main {
    top: 48px;
    width: 76%;
  }

  .collage-top {
    width: 56%;
  }

  .collage-middle {
    top: 128px;
    width: 52%;
  }

  .collage-bottom {
    left: 10%;
    width: 58%;
  }
}

/* --------------------------------------------------
   Typography: Manrope
-------------------------------------------------- */

body {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

h1, h2, h3 {
  font-weight: 800;
}

.nav a,
.button,
.brand,
.service-card h3,
.project-body h3,
.site-list-card h2 {
  font-weight: 700;
}

.hero-copy,
.section-heading p,
.about-copy p,
.subpage-hero p {
  font-weight: 400;
}

.eyebrow,
.tag,
.site-category,
.service-number {
  font-weight: 800;
}

/* --------------------------------------------------
   Homepage hero refinements
-------------------------------------------------- */

.hero-inner {
  min-height: 590px;
  gap: 54px;
  padding-block: 72px;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 27px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.hero .browser {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}

@media (max-width: 920px) {
  .hero-inner {
    gap: 44px;
    padding-block: 60px;
  }

  .hero .browser {
    max-width: 590px;
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .hero-inner {
    gap: 38px;
    padding-block: 48px 54px;
  }

  .hero h1 {
    max-width: 620px;
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 10.5vw, 3.25rem);
    line-height: 1.06;
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero .eyebrow {
    margin-bottom: 15px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hero .browser {
    width: 92%;
    max-width: none;
    margin-inline: auto;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 11px 18px;
  }
}
