/* ==========================================================================
   BlackPepper: Luxury IT house
   Brand: #110F14 (Black) · #A4673D (Leather Tan) · #E0B680 (Champagne) · #FFF
   ========================================================================== */

:root {
  --black: #110f14;
  --black-soft: #17141a;
  --black-panel: #1c1820;
  --tan: #a4673d;
  --champagne: #e0b680;
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.62);
  --white-faint: rgba(255, 255, 255, 0.14);
  --ink-muted: rgba(17, 15, 20, 0.64);
  --ink-faint: rgba(17, 15, 20, 0.16);
  --tint: rgba(164, 103, 61, 0.07);
  --metallic: linear-gradient(100deg, #2b2a2c 0%, #e0b680 45%, #a4673d 100%);
  --gradient-btn: linear-gradient(100deg, #e0b680, #a4673d);
  --serif: "Poppins", "Jost", sans-serif;
  --sans: "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --logo: "League Spartan", "Inter", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--champagne);
  color: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}
/* ==========================================================================
   BlackPepper: Luxury IT house
   Brand: #110F14 (Black) · #A4673D (Leather Tan) · #E0B680 (Champagne) · #FFF
   ========================================================================== */

:root {
  --black: #110f14;
  --black-soft: #17141a;
  --black-panel: #1c1820;
  --tan: #a4673d;
  --champagne: #e0b680;
  --white: #ffffff;
  --white-muted: rgba(255, 255, 255, 0.62);
  --white-faint: rgba(255, 255, 255, 0.14);
  --ink-muted: rgba(17, 15, 20, 0.64);
  --ink-faint: rgba(17, 15, 20, 0.16);
  --tint: rgba(164, 103, 61, 0.07);
  --metallic: linear-gradient(100deg, #2b2a2c 0%, #e0b680 45%, #a4673d 100%);
  --gradient-btn: linear-gradient(100deg, #e0b680, #a4673d);
  --serif: "Poppins", "Jost", sans-serif;
  --sans: "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --logo: "League Spartan", "Inter", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--champagne);
  color: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 22px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 72px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-head p {
  color: var(--ink-muted);
  font-size: 17px;
  max-width: 560px;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

section {
  position: relative;
  padding: 140px 0;
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  filter: brightness(1.3);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 15, 20, 0.3);
}

.btn-ghost {
  border-color: transparent;
  background: var(--black);
  color: var(--white);
}

.btn-ghost:hover {
  filter: brightness(1.3);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 15, 20, 0.3);
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  padding: 16px 0;
  border-color: var(--ink-faint);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* crops icon-side_trans.png down to its inked artwork, discarding the transparent canvas margin */
.brand-mark {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 270px;
  aspect-ratio: 1355 / 326;
}

.brand-mark img {
  position: absolute;
  top: -164.72%;
  left: -8.49%;
  width: 110.7%;
  max-width: none;
  height: auto;
}

.brand-mark--about {
  width: 84%;
}

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

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--tan);
  transition: width 0.35s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--black);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-toggle {
  display: none;
  width: 26px;
  height: 18px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle span {
  top: 8px;
}

.nav-toggle span::before {
  top: -8px;
}

.nav-toggle span::after {
  top: 8px;
}

.nav-toggle.open span {
  background: transparent;
}

.nav-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.62) 42%, rgba(224, 182, 128, 0.3) 100%);
}

.hero-slide--champagne {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.4), transparent 46%),
    radial-gradient(circle at 8% 82%, rgba(164, 103, 61, 0.2), transparent 50%),
    var(--champagne);
}

.hero-slide--champagne::after {
  background: none;
}

.hero-slide.active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--ink-faint);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.hero-dot.active {
  width: 26px;
  border-radius: 4px;
  background: var(--tan);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-kicker .line {
  width: 40px;
  height: 1px;
  background: var(--tan);
}

.hero-kicker span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.08;
  margin-bottom: 30px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #2b2a2c, var(--tan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-muted);
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .ring {
  position: absolute;
  border: 1px solid var(--ink-faint);
  border-radius: 50%;
}

.hero-visual .ring.r1 {
  width: 440px;
  height: 440px;
}

.hero-visual .ring.r2 {
  width: 340px;
  height: 340px;
  border-color: rgba(164, 103, 61, 0.32);
}

.hero-visual .glow-card {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2));
  border: 1px solid var(--ink-faint);
  backdrop-filter: blur(6px);
}

/* crops icon_trans.PNG to its inked bounds, then lets it bleed past the frame edges */
.hero-visual .glow-card .icon-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  aspect-ratio: 355 / 611;
  overflow: hidden;
}

.hero-visual .glow-card .icon-frame img {
  position: absolute;
  top: -24.06%;
  left: -98.03%;
  width: 288.45%;
  max-width: none;
  height: auto;
}

/* ---------- services (DVT-style expanding tiles) ---------- */
.services {
  background: var(--black);
  padding-top: 70px;
  padding-bottom: 0;
  overflow: hidden;
}

.services-head {
  text-align: center;
  padding: 0 40px 72px;
}

.services-head .eyebrow {
  color: var(--tan);
}

.services-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 52px);
  color: var(--white);
}

.services-head h2 em {
  font-style: normal;
  color: var(--white);
}

.service-tiles {
  display: flex;
  width: 100%;
  min-height: 560px;
}

.service-tile {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.55s var(--ease);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.service-tile:first-child {
  border-left: none;
}

.service-tile--red {
  background: linear-gradient(160deg, #e14545, #7a1f1f);
}

.service-tile--yellow {
  background: linear-gradient(160deg, #f2b705, #8a6600);
}

.service-tile--blue {
  background: linear-gradient(160deg, #3b82f6, #12306e);
}

.service-tile--tan {
  background: linear-gradient(160deg, var(--champagne), var(--tan));
}

.tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.tile-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}

.service-tile h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--white);
  line-height: 1.2;
}

.tile-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  margin-top: 14px;
  max-width: 320px;
}

.tile-expand {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease);
}

.tile-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  padding-left: 18px;
  position: relative;
  margin-top: 10px;
  white-space: nowrap;
}

.tile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--white);
}

.tile-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.tile-more svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
}

.service-tile:hover,
.service-tile:focus-within {
  flex: 2.3 1 0%;
}

.service-tile:hover .tile-expand,
.service-tile:focus-within .tile-expand {
  max-height: 200px;
  opacity: 1;
  margin-top: 18px;
}

/* ---------- work / clients ---------- */
.work {
  background: var(--black);
}

.work .section-head h2 {
  color: var(--white);
}

.work .section-head p {
  color: var(--white-muted);
}

.client-slider {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

.slider-viewport {
  overflow: hidden;
  border-radius: 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.client-slide {
  flex: 0 0 100%;
  border: 1px solid var(--white-faint);
  border-radius: 20px;
  padding: 48px 30px;
  text-align: center;
  background: var(--black-soft);
}

.client-logo {
  height: 100px;
  width: 190px;
  margin: 0 auto 22px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  box-shadow: 0 6px 18px rgba(17, 15, 20, 0.07);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-logo .mono {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--metallic);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.client-slide h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.client-slide span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink-faint);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
}

.slider-arrow:hover {
  border-color: var(--tan);
  transform: translateY(-50%) scale(1.06);
}

.slider-arrow.prev {
  left: -22px;
}

.slider-arrow.next {
  right: -22px;
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--white-faint);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.slider-dot.active {
  width: 26px;
  border-radius: 4px;
  background: var(--tan);
}

/* ---------- partnerships / consulting ---------- */
.partnerships {
  background: var(--white);
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.partner-card {
  border: 1px solid var(--ink-faint);
  border-radius: 20px;
  padding: 46px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: border-color 0.4s var(--ease);
}

.partner-card:hover {
  border-color: var(--tan);
}

.partner-logo {
  flex-shrink: 0;
  width: 136px;
  height: 92px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  box-shadow: 0 6px 18px rgba(17, 15, 20, 0.07);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-logo .mono {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--tan);
}

.partner-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.partner-card p {
  font-size: 14px;
  color: var(--ink-muted);
}

/* ---------- about ---------- */
.about {
  background: var(--champagne);
}

.about .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  border: 1px solid var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.5), transparent 60%);
  overflow: hidden;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  border: 1px solid rgba(164, 103, 61, 0.35);
}

.about-copy p {
  color: var(--ink-muted);
  margin-bottom: 22px;
  font-size: 16px;
}

.about-copy p:last-of-type {
  margin-bottom: 0;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--ink-faint);
}

.about-pillars strong {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--tan);
  margin-bottom: 8px;
}

.about-pillars span {
  font-size: 13px;
  color: var(--ink-muted);
}

/* ---------- contact ---------- */
.contact {
  background: var(--white);
  text-align: center;
}

.contact .section-head {
  margin-bottom: 50px;
}

.contact-email {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--black);
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 14px;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.contact-email:hover {
  color: var(--tan);
  border-color: var(--tan);
}

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--white-faint);
  padding: 60px 0 34px;
  background: var(--black);
  color: var(--white);
}

/* the wordmark artwork is inked black; recolour to white so it reads on the dark footer */
.site-footer .brand-mark img {
  filter: brightness(0) invert(1);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--white-faint);
  margin-bottom: 28px;
}

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

.footer-nav a {
  font-size: 13px;
  color: var(--white-muted);
  transition: color 0.3s var(--ease);
}

.footer-nav a:hover {
  color: var(--champagne);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--white-muted);
}

.footer-bottom a {
  color: var(--white-muted);
}

.footer-bottom a:hover {
  color: var(--champagne);
}

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .main-nav,
  .header-actions .btn {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--black-panel);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    border-left: 1px solid var(--white-faint);
    z-index: 105;
  }

  .main-nav a {
    color: var(--white-muted);
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--white);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: block;
    z-index: 110;
  }

  .header-actions .btn {
    display: none;
  }
}

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

  .hero-visual {
    order: -1;
    margin-bottom: 20px;
  }

  .partner-row {
    grid-template-columns: 1fr 1fr;
  }

  .service-tiles {
    flex-wrap: wrap;
  }

  .service-tile {
    flex: 1 1 50%;
    min-height: 320px;
  }

  .service-tile:hover,
  .service-tile:focus-within {
    flex: 1 1 50%;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 24px;
  }

  section {
    padding: 96px 0;
  }

  .partner-row {
    grid-template-columns: 1fr;
  }

  .service-tiles {
    flex-direction: column;
    min-height: 0;
  }

  .service-tile,
  .service-tile:hover,
  .service-tile:focus-within {
    flex: 1 1 auto;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .service-tile:first-child {
    border-top: none;
  }

  .tile-expand {
    max-height: 200px;
    opacity: 1;
    margin-top: 18px;
  }

  .tile-more {
    display: none;
  }

  .slider-arrow.prev {
    left: 4px;
  }

  .slider-arrow.next {
    right: 4px;
  }

  .partner-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
}

@media (max-width: 760px) {
  .container {
    padding: 0 24px;
  }

  section {
    padding: 96px 0;
  }

  .partner-row {
    grid-template-columns: 1fr;
  }

  .service-tiles {
    flex-direction: column;
    min-height: 0;
  }

  .service-tile,
  .service-tile:hover,
  .service-tile:focus-within {
    flex: 1 1 auto;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .service-tile:first-child {
    border-top: none;
  }

  .tile-expand {
    max-height: 200px;
    opacity: 1;
    margin-top: 18px;
  }

  .tile-more {
    display: none;
  }

  .slider-arrow.prev {
    left: 4px;
  }

  .slider-arrow.next {
    right: 4px;
  }

  .partner-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
