/* =========================================================
   CARDINAL PORTFOLIO LANDING PAGE
   Accent replacement: olive green -> Cardinal Red #C41E3A
   ========================================================= */

:root {
  --bg: #f4f4f2;
  --surface: #ffffff;
  --surface-2: #f7f7f5;
  --text: #171719;
  --muted: #6e6e73;
  --line: #dedede;
  --line-dark: #c9c9c9;

  --blue: #c41e3a;
  --blue-dark: #9e182f;

  --cardinal: #c41e3a;
  --cardinal-dark: #9e182f;
  --cardinal-soft: #f7e8eb;

  --footer: #25262a;

  --radius: 10px;
  --shadow: 0 12px 40px rgb(0 0 0 / 0.06);
  --max: 1180px;
}

/* ---------- Reset / base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

::selection {
  color: #fff;
  background: var(--cardinal);
}

:focus-visible {
  outline: 3px solid rgb(196 30 58 / 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  color: #fff;
  background: var(--text);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

.section {
  position: relative;
  padding: 72px 0;
}

.micro-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: -0.2rem;
    background: var(--cardinal);
    border-radius: 50%;
    vertical-align: top;
    float: right;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgb(47 95 218 / 0.18);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-outline {
  color: var(--blue);
  background: transparent;
  border-color: #f7e8eb;
}

.btn-outline:hover {
  background: #fff;
  border-color: var(--blue);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--blue);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 82px;
  background: rgb(244 244 242 / 0.92);
  border-bottom: 1px solid rgb(0 0 0 / 0.04);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
}

.brand-mark {
  color: var(--blue);
  font-weight: 950;
  font-size: 1.45rem;
  letter-spacing: -0.12em;
}

.brand-name {
  font-size: 1.05rem;
  letter-spacing: 0.07em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 29px 0 25px;
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.desktop-nav a.is-active {
  color: var(--blue);
}

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

.theme-dot {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

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

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.mobile-menu nav {
  position: absolute;
  top: 42px;
  right: 0;
  display: grid;
  min-width: 230px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 11px 12px;
  border-radius: 5px;
  font-weight: 700;
}

/* ---------- Hero ---------- */

.hero {
  overflow: hidden;
  min-height: 640px;
  padding-top: 42px;
  padding-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.95fr);
  min-height: 560px;
  align-items: center;
  gap: 36px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 38px 0 70px 58px;
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero h1 {
  font-size: clamp(3.4rem, 6vw, 5.3rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--blue);
  font-weight: 500;
}

.role {
  margin-top: 14px;
  font-size: clamp(0.86rem, 1.5vw, 1.05rem);
  letter-spacing: 0.48em;
}

.hero-rule {
  width: 44px;
  height: 2px;
  margin: 27px 0;
  background: var(--blue);
}

.hero-intro {
  max-width: 380px;
  color: #424247;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}

.availability {
  margin-top: 62px;
}

.availability-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
}

.availability-row p {
  max-width: 190px;
  color: #7a7a7e;
  font-size: 0.73rem;
  line-height: 1.55;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  place-items: center;
  color: #fff;
  background: #5e5e63;
  border: 3px solid var(--bg);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}

.avatar:first-child {
  margin-left: 0;
  background: #8b6656;
}

.avatar:nth-child(2) {
  background: #424b63;
}

.avatar:nth-child(3) {
  background: #7d4d46;
}

.avatar-plus {
  color: var(--text);
  background: transparent !important;
  border: 1px solid var(--line-dark);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}

.hero-circle {
  position: absolute;
  z-index: 0;
  top: 26px;
  right: 64px;
  width: 382px;
  height: 382px;
  background: var(--cardinal);
  border-radius: 50%;
  box-shadow:
    0 0 0 12px rgb(196 30 58 / 0.08),
    0 0 0 1px rgb(0 0 0 / 0.04);
}

.hero-photo {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 15%;
  width: min(520px, 92%);
  height: 565px;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 0 0 4px 4px;
  filter: saturate(0.92) contrast(1.02);
  /*clip-path: polygon(8% 0, 95% 0, 100% 100%, 0 100%);*/
  clip-path: polygon(10% 0, 100% 0, 80% 100%, 25% 100%);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgb(47 95 218 / 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border: 2px solid var(--bg);
  border-radius: 50%;
}

.orbit-one {
  top: 48px;
  right: 24px;
  width: 430px;
  height: 430px;
}

.orbit-one::before {
  top: 75px;
  right: 11px;
}

.orbit-one::after {
  bottom: 73px;
  left: -2px;
}

.orbit-two {
  top: 134px;
  left: -20px;
  width: 210px;
  height: 210px;
  border-color: rgb(0 0 0 / 0.08);
}

.hero-location-card {
  position: absolute;
  z-index: 4;
  top: 185px;
  right: -58px;
  display: grid;
  width: 126px;
  padding: 18px 16px;
  background: rgb(255 255 255 / 0.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgb(0 0 0 / 0.03);
}

.hero-location-card strong {
  margin-top: 6px;
  font-size: 0.72rem;
}

.hero-location-card .separator {
  height: 1px;
  margin: 18px -16px;
  background: var(--line);
}

.hero-location-card .globe {
  /*margin-top: 8px;*/
  /*font-size: 1.25rem;*/
  font-size: 1.25rem;
  display: inline-flex;
  justify-content: flex-end;
  margin-top: -1.56rem;
}

.side-rail {
  position: absolute;
  z-index: 6;
  top: 70px;
  left: 0;
  display: flex;
  width: 44px;
  height: 330px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.side-rail::before,
.side-rail::after {
  content: "";
  position: absolute;
  right: -1px;
  width: 24px;
  height: 1px;
  background: var(--line);
}

.side-rail::before {
  top: 0;
  transform: rotate(45deg);
  transform-origin: right;
}

.side-rail::after {
  bottom: 0;
  transform: rotate(-45deg);
  transform-origin: right;
}

.side-rail span {
  white-space: nowrap;
  transform: rotate(-90deg);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.side-socials {
  position: absolute;
  z-index: 6;
  top: 300px;
  right: 17px;
  display: grid;
  gap: 24px;
}

.side-socials a {
  font-size: 0.76rem;
  font-weight: 900;
}

.side-socials a:hover {
  color: var(--blue);
}

/* ---------- Section headings ---------- */

.section-heading,
.process-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.section-heading h2,
.process-heading h2 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-heading {
  justify-content: flex-start;
}

.process-heading p {
  color: var(--muted);
  font-size: 0.78rem;
}

/* ---------- Work ---------- */

.work-section {
  background: #f7f7f5;
  border-top: 1px solid #ededeb;
  border-bottom: 1px solid #ededeb;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

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

.work-art {
  position: relative;
  overflow: hidden;
  height: 185px;
  background: #f0f1f1;
}

.work-card-copy {
  padding: 16px 16px 18px;
}

.work-card-copy h3 {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.work-card-copy p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
}

/* dashboard art */

.work-art--dashboard {
  background: #20242c;
}

.dash-sidebar {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 13px;
  width: 28px;
  background:
    linear-gradient(#657183 0 0) 50% 12px / 12px 2px no-repeat,
    linear-gradient(#4d5664 0 0) 50% 28px / 12px 2px no-repeat,
    linear-gradient(#4d5664 0 0) 50% 44px / 12px 2px no-repeat,
    #181b21;
  border-radius: 4px;
}

.dash-chart {
  position: absolute;
  top: 25px;
  left: 55px;
  width: 122px;
  height: 78px;
  background:
    linear-gradient(165deg, transparent 0 44%, #4c79eb 45% 49%, transparent 50%) 0 0 / 100% 100%,
    repeating-linear-gradient(0deg, rgb(255 255 255 / .07) 0 1px, transparent 1px 19px);
  border: 1px solid rgb(255 255 255 / 0.06);
  border-radius: 4px;
}

.dash-line {
  position: absolute;
  top: 124px;
  left: 55px;
  right: 16px;
  height: 33px;
  background: repeating-linear-gradient(90deg, #39414c 0 15px, transparent 15px 21px);
  border-radius: 3px;
}

.dash-metric {
  position: absolute;
  right: 16px;
  width: 48px;
  height: 28px;
  background: #2b313b;
  border-radius: 4px;
}

.dash-metric.one { top: 24px; }
.dash-metric.two { top: 59px; }
.dash-metric.three { top: 94px; }

/* architecture art */

.work-art--architecture {
  background:
    linear-gradient(180deg, #fdfdfc 0%, #ececeb 100%);
}

.arch-copy {
  position: absolute;
  z-index: 2;
  top: 38px;
  left: 24px;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.05;
}

.building {
  position: absolute;
  right: 22px;
  bottom: -8px;
  border: 1px solid #5f6265;
  transform: skewY(-8deg);
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgb(0 0 0 / .1) 18px 19px),
    linear-gradient(180deg, #e6e6e4, #babbb9);
}

.b1 { width: 116px; height: 98px; }
.b2 { right: 50px; width: 83px; height: 120px; }
.b3 { right: 92px; width: 46px; height: 84px; }

/* mobile art */

.work-art--mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #eeeeec;
}

.phone {
  width: 92px;
  height: 150px;
  padding: 16px 11px;
  background: #fff;
  border: 1px solid #dadada;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgb(0 0 0 / .06);
}

.phone span {
  display: block;
  font-size: 0.63rem;
  font-weight: 800;
}

.phone i {
  display: block;
  height: 18px;
  margin-top: 8px;
  background: #f0f1ef;
  border-radius: 5px;
}

.bars {
  display: flex;
  height: 66px;
  align-items: flex-end;
  gap: 4px;
  margin-top: 14px;
}

.bars b {
  flex: 1;
  height: 45%;
  background: var(--cardinal);
  border-radius: 3px 3px 0 0;
  opacity: .85;
}

.bars b:nth-child(2) { height: 72%; }
.bars b:nth-child(3) { height: 38%; }
.bars b:nth-child(4) { height: 86%; }

/* audio art */

.work-art--audio {
  background: #f4f4f2;
}

.audio-copy {
  position: absolute;
  top: 48px;
  left: 25px;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.08;
}

.headphones {
  position: absolute;
  top: 36px;
  right: 16px;
  width: 112px;
  height: 116px;
  border: 16px solid #9ea19c;
  border-bottom-color: transparent;
  border-radius: 55% 55% 0 0;
  transform: rotate(12deg);
}

.ear {
  position: absolute;
  bottom: -12px;
  width: 28px;
  height: 52px;
  background: #8f928d;
  border-radius: 12px;
}

.ear.left { left: -22px; }
.ear.right { right: -22px; }

/* ---------- Services ---------- */

.services-section {
  background: #f3f3f1;
}

.services-layout {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 42px;
  align-items: start;
}

.services-intro h2 {
  margin-top: 14px;
  font-size: 1.52rem;
}

.services-intro p:last-child {
  max-width: 290px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.8rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-item {
  min-height: 138px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.service-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  place-items: center;
  color: #fff;
  background: var(--cardinal);
  border-radius: 8px;
}

.service-item h3 {
  font-size: 0.76rem;
  text-transform: uppercase;
}

.service-item p {
  margin-top: 10px;
  color: #55565b;
  font-size: 0.75rem;
}

/* ---------- Trust ---------- */

.trust-section {
  background: var(--surface);
  border-top: 1px solid #efefed;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.3fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.brand-panel {
  padding: 20px 8px 16px 0;
}

.brand-cloud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
  align-items: center;
  margin-top: 42px;
}

.brand-cloud span {
  color: #343439;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.testimonial-card {
  position: relative;
  min-height: 220px;
  padding: 34px;
  color: #fff;
  background: var(--cardinal);
  border-radius: 8px;
}

.testimonial-card blockquote {
  max-width: 430px;
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.testimonial-card figcaption strong,
.testimonial-card figcaption small {
  display: block;
}

.testimonial-card figcaption strong {
  font-size: 0.72rem;
  text-transform: uppercase;
}

.testimonial-card figcaption small {
  margin-top: 2px;
  opacity: 0.8;
  font-size: 0.68rem;
}

.testimonial-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--cardinal);
  background: #fff;
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 900;
}

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.slider-dots i {
  width: 5px;
  height: 5px;
  background: rgb(255 255 255 / .4);
  border-radius: 50%;
}

.slider-dots i.active {
  background: #fff;
}

.satisfaction-card {
  display: grid;
  min-height: 220px;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 20px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.score-ring {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 10px solid var(--cardinal);
  border-right-color: var(--cardinal-soft);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.score-ring strong {
  transform: rotate(28deg);
  font-size: 1.45rem;
}

.satisfaction-card small {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- Process ---------- */

.process-section {
  overflow: hidden;
  min-height: 300px;
  background: #f5f5f3;
  border-top: 1px solid #ededeb;
}

.process-list {
  position: relative;
  z-index: 2;
  display: grid;
  width: 74%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: #cfd0cf;
}

.process-list li {
  position: relative;
  min-height: 130px;
  padding: 28px 18px 10px;
  border-right: 1px solid var(--line);
}

.process-list li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 16px;
  width: 9px;
  height: 9px;
  background: var(--cardinal);
  border: 3px solid #e7c4cb;
  border-radius: 50%;
}

.step-number {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
}

.process-list h3 {
  margin-top: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.process-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.69rem;
}

.process-orbit {
  position: absolute;
  right: -80px;
  bottom: -120px;
  display: grid;
  width: 390px;
  height: 390px;
  place-items: center;
  border: 1px solid rgb(196 30 58 / .22);
  border-radius: 50%;
}

.process-orbit::before,
.process-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgb(196 30 58 / .12);
  border-radius: 50%;
}

.process-orbit::before {
  width: 290px;
  height: 290px;
}

.process-orbit::after {
  width: 190px;
  height: 190px;
}

.robot-hand {
  color: var(--cardinal);
  font-size: 8rem;
  transform: rotate(-22deg);
}

/* ---------- Stats ---------- */

.stats-strip {
  color: #fff;
  background: var(--cardinal);
}

.stats-grid {
  display: grid;
  min-height: 92px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 18px;
}

.stats-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stats-grid strong {
  font-size: 1.36rem;
}

.stats-grid span {
  max-width: 100px;
  opacity: .9;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

/* ---------- Contact ---------- */

.contact-section {
  background: #f2f2f0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.contact-copy {
  padding: 14px 32px 14px 0;
}

.contact-copy h2 {
  max-width: 330px;
  font-size: 1.4rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-copy > p {
  max-width: 310px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-copy address {
  display: grid;
  gap: 9px;
  margin-top: 38px;
  font-size: 0.76rem;
}

.contact-copy address a:hover {
  color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  background: rgb(255 255 255 / 0.52);
  border: 1px solid #d5d5d3;
  border-radius: 2px;
}

.contact-form input,
.contact-form select {
  height: 42px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 94px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8e8e91;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgb(47 95 218 / 0.14);
}

.contact-form .btn {
  justify-self: start;
  min-width: 190px;
}

.availability-card {
  display: grid;
  min-height: 230px;
  padding: 22px;
  place-items: center;
  align-content: center;
  background: #f7f7f5;
  border: 1px solid var(--line);
  text-align: center;
}

.availability-card p {
  margin-top: 18px;
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.cube-art {
  position: relative;
  width: 145px;
  height: 88px;
  transform: perspective(350px) rotateX(52deg) rotateZ(-34deg);
}

.cube-art i {
  position: absolute;
  width: 58px;
  height: 58px;
  background: linear-gradient(145deg, #fff, #d4d4d2);
  border: 1px solid #cfcfcd;
  box-shadow: 8px 10px 20px rgb(0 0 0 / .07);
}

.cube-art i:nth-child(1) { left: 2px; top: 16px; }
.cube-art i:nth-child(2) { left: 45px; top: 0; }
.cube-art i:nth-child(3) { left: 84px; top: 20px; }
.cube-art i:nth-child(4) { left: 48px; top: 44px; }

/* ---------- Insights ---------- */

.insights-section {
  padding: 30px 0;
  background: #fff;
  border-top: 1px solid #ececea;
}

.insights-inline {
  display: flex;
  align-items: center;
  gap: 28px;
}

.insights-inline p {
  color: var(--muted);
  font-size: 0.8rem;
}

.insights-inline .text-link {
  margin-left: auto;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 30px 0 28px;
  color: #f4f4f4;
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.75fr 1.15fr;
  gap: 44px;
}

.brand--footer .brand-name {
  color: #fff;
}

.footer-brand p {
  margin-top: 10px;
  color: #c5c5c8;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-brand small {
  display: block;
  margin-top: 26px;
  color: #8d8e92;
  font-size: 0.66rem;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: #d3d3d5;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.site-footer a {
  color: #bcbcc0;
  font-size: 0.68rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-social {
  display: grid;
  align-content: start;
}

.footer-social a + a {
  margin-top: 5px;
}

.newsletter p {
  max-width: 270px;
  margin-bottom: 15px;
  color: #a6a6aa;
  font-size: 0.68rem;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 40px;
}

.newsletter input {
  height: 38px;
  padding: 0 12px;
  color: #fff;
  background: transparent;
  border: 1px solid #4c4d52;
  border-right: 0;
}

.newsletter button {
  color: #fff;
  background: var(--blue);
  border: 0;
  cursor: pointer;
}

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

@media (max-width: 1200px) {
  .side-rail,
  .side-socials,
  .hero-location-card {
    display: none;
  }

  .hero-copy {
    padding-left: 0;
  }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

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

  .hero h1 {
    font-size: clamp(3rem, 7vw, 4.6rem);
  }

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

  .services-layout {
    grid-template-columns: 1fr;
  }

  .service-list {
    border-top: 1px solid var(--line);
    padding-top: 28px;
  }

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

  .brand-panel {
    grid-column: 1 / -1;
  }

  .brand-cloud {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }

  .brand-cloud span {
    font-size: 0.7rem;
  }

  .process-list {
    width: 100%;
  }

  .process-orbit {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.45fr;
  }

  .availability-card {
    grid-column: 1 / -1;
    min-height: 180px;
  }

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

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

  .section {
    padding: 54px 0;
  }

  .site-header,
  .header-inner {
    min-height: 70px;
  }

  .hero {
    padding-top: 18px;
  }

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

  .hero-copy {
    padding: 28px 0 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .role {
    letter-spacing: 0.28em;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 18px;
  }

  .availability {
    margin-top: 42px;
  }

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

  .hero-circle {
    top: 38px;
    right: 10%;
    width: 310px;
    height: 310px;
  }

  .hero-photo {
    right: 2%;
    width: 96%;
    height: 440px;
  }

  .orbit-one {
    top: 60px;
    right: 2%;
    width: 340px;
    height: 340px;
  }

  .section-heading {
    align-items: flex-end;
  }

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

  .work-art {
    height: 230px;
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }

  .service-item:nth-child(odd) {
    border-left: 0;
  }

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

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

  .testimonial-card,
  .satisfaction-card {
    min-height: 210px;
  }

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

  .process-list::before {
    top: 0;
    bottom: 0;
    left: 4px;
    width: 1px;
    height: auto;
  }

  .process-list li {
    min-height: 0;
    padding: 0 0 30px 32px;
    border-right: 0;
  }

  .process-list li::before {
    top: 3px;
    left: 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    padding: 20px 0;
  }

  .stats-grid div {
    justify-content: flex-start;
  }

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

  .contact-copy {
    padding-right: 0;
  }

  .contact-copy address {
    margin-top: 24px;
  }

  .availability-card {
    grid-column: auto;
  }

  .insights-inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .insights-inline .text-link {
    margin-left: 0;
  }

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

@media (max-width: 520px) {
  .brand-name {
    font-size: 0.92rem;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-intro {
    font-size: 0.94rem;
  }

  .hero-circle {
    width: 260px;
    height: 260px;
  }

  .hero-photo {
    height: 390px;
  }

  .orbit-one {
    width: 290px;
    height: 290px;
  }

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

  .service-item,
  .service-item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .brand-cloud {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .stats-grid div {
    justify-content: space-between;
  }
}



/* ---------- About overview ---------- */

.about-overview-section {
  overflow: hidden;
  color: #fff;
  background: var(--footer);
  border-top: 1px solid rgb(255 255 255 / 0.04);
  border-bottom: 1px solid rgb(255 255 255 / 0.06);
}

.about-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(190px, 0.72fr) minmax(190px, 0.82fr);
  gap: 54px;
  align-items: center;
  padding: 18px 0 70px;
}

.about-overview-copy {
  max-width: 620px;
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-kicker span {
  color: var(--cardinal);
  font-size: 1rem;
  font-weight: 900;
}

.about-overview-copy h2 {
  max-width: 590px;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.about-overview-text {
  max-width: 610px;
  margin-top: 20px;
  color: #bcbcc0;
  font-size: 0.92rem;
  line-height: 1.75;
}

.about-more-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-bottom: 8px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.about-more-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgb(255 255 255 / 0.22);
  transition: background 160ms ease;
}

.about-more-link:hover {
  color: var(--cardinal-soft);
}

.about-more-link:hover::after {
  background: var(--cardinal);
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.about-stat strong {
  color: #fff;
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.about-stat div {
  display: grid;
  color: #d3d3d5;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
}

.about-brands-row {
  display: grid;
  grid-template-columns: 1.3fr 4fr;
  gap: 44px;
  align-items: center;
  padding-top: 42px;
  border-top: 1px solid rgb(255 255 255 / 0.08);
}

.about-brands-label {
  color: #f2f2f2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-brand-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.about-brand-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c7c7ca;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.about-brand-list i {
  color: var(--cardinal);
  font-style: normal;
  font-size: 0.9rem;
}


/* =========================================================
   PREVIOUSLY WORKED ON
   ========================================================= */

.about-brands-row {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 44px;
    align-items: start;

    padding-top: 42px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.about-brands-label {
    padding-top: 35px;

    color: #f2f2f2;

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* ---------- Logos ---------- */

.about-brand-list {
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 15px 20px;

    align-items: center;
}


/*
 * Every logo receives exactly the same space.
 * This keeps tall/wide logos visually aligned.
 */
.about-brand-logo {
    display: flex;

    width: 100%;
    height: 105px;

    align-items: center;
    justify-content: center;

    padding: 7px;

    border-radius: 5px;

    transition:
        background 180ms ease,
        transform 180ms ease;
}


.about-brand-logo img {
    display: block;

    width: 190px;
    height: 90px;

    max-width: 100%;

    object-fit: contain;
    object-position: center;

    opacity: 0.72;

    transition:
        opacity 180ms ease,
        transform 180ms ease,
        filter 180ms ease;
}


/* ---------- Hover ---------- */

.about-brand-logo:hover {
    background: rgba(196, 30, 58, 0.07);
    transform: translateY(-2px);
}


.about-brand-logo:hover img {
    opacity: 1;
    transform: scale(1.04);
}


@media (max-width: 1100px) {

    .about-brands-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-brands-label {
        padding-top: 0;
    }

    .about-brand-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

}


@media (max-width: 850px) {

    .about-brand-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 600px) {

    .about-brand-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .about-brand-logo {
        height: 90px;
        padding: 5px;
    }

    .about-brand-logo img {
        width: 165px;
        height: 78px;
    }

}


@media (max-width: 1024px) {
  .about-overview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-overview-copy {
    grid-column: 1 / -1;
  }

  .about-brands-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (max-width: 760px) {
  .about-overview-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 48px;
  }

  .about-overview-copy {
    grid-column: auto;
  }

  .about-stat {
    padding-top: 6px;
  }

  .about-brands-row {
    padding-top: 34px;
  }
}

@media (max-width: 520px) {
  .about-overview-copy h2 {
    font-size: 2rem;
  }

  .about-stat strong {
    font-size: 3.4rem;
  }

  .about-brand-list {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }

  .about-brand-list span {
    font-size: 0.78rem;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
