:root {
  --primary: #d22a1c;
  --primary-dark: #b51f14;
  --primary-soft: #fff0ee;

  --black: #131010;
  --charcoal: #2d2726;

  --white: #ffffff;

  --light-grey: #f6f6f6;

  --text: #1c1c1c;
  --text-muted: #666666;

  --border: #e2e2e2;

  --container: 1180px;

  --shadow-sm:
    0 8px 24px rgba(19, 16, 16, 0.08);

  --shadow-md:
    0 16px 44px rgba(19, 16, 16, 0.11);

  --transition: 180ms ease;
}


/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}


body {
  margin: 0;
  min-width: 320px;

  color: var(--text);
  background: var(--white);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  font-size: 16px;
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;

  overflow-x: hidden;
}


img {
  display: block;
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


button {
  font: inherit;
}


button,
a {
  -webkit-tap-highlight-color: transparent;
}


:focus-visible {
  outline: 3px solid rgba(210, 42, 28, 0.34);
  outline-offset: 3px;
}


.container {
  width: min(
    calc(100% - 32px),
    var(--container)
  );

  margin-inline: auto;
}


.section-pad {
  padding-block: 92px;
}



/* =====================================================
   SKIP LINK
===================================================== */

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;

  z-index: 9999;

  padding: 10px 14px;

  border-radius: 8px;

  color: var(--black);
  background: var(--white);

  box-shadow: var(--shadow-sm);

  transform: translateY(-160%);

  transition: transform var(--transition);
}


.skip-link:focus {
  transform: translateY(0);
}



/* =====================================================
   HEADER
===================================================== */

.utility-bar {
  color: rgba(255, 255, 255, 0.84);
  background: var(--black);

  font-size: 0.85rem;
}


.utility-inner {
  min-height: 38px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}


.utility-inner p {
  margin: 0;
}


.utility-links {
  display: flex;
  align-items: center;

  gap: 22px;
}


.utility-links a {
  transition: color var(--transition);
}


.utility-links a:hover {
  color: var(--white);
}



.site-header {
  position: sticky;
  top: 0;

  z-index: 1000;

  border-bottom:
    1px solid rgba(226, 226, 226, 0.9);

  background:
    rgba(255, 255, 255, 0.96);

  box-shadow:
    0 6px 24px rgba(19, 16, 16, 0.04);

  backdrop-filter: blur(14px);
}



.nav-wrap {
  position: relative;

  min-height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}



.brand {
  min-width: 0;

  display: inline-flex;
  align-items: center;

  gap: 10px;
}


.brand img {
  width: 112px;
  height: auto;

  flex: 0 0 auto;

  object-fit: contain;
}


.brand span {
  min-width: 0;

  display: grid;

  line-height: 1.08;
}


.brand strong {
  color: var(--black);

  font-size: 1.08rem;

  letter-spacing: -0.02em;
}


.brand small {
  margin-top: 4px;

  color: var(--text-muted);
}



.primary-nav {
  display: flex;
  align-items: center;

  gap: 24px;

  color: var(--charcoal);

  font-weight: 700;
}


.primary-nav > a:not(.btn) {
  transition: color var(--transition);
}


.primary-nav > a:not(.btn):hover {
  color: var(--primary);
}



.nav-toggle {
  width: 44px;
  height: 44px;

  padding: 8px;

  display: none;
  place-items: center;

  border: 0;
  border-radius: 10px;

  background: transparent;

  cursor: pointer;
}


.nav-toggle span {
  width: 24px;
  height: 2px;

  display: block;

  margin: 4px auto;

  border-radius: 999px;

  background: var(--black);
}



/* =====================================================
   BUTTONS
===================================================== */

.btn {
  min-height: 50px;

  padding-inline: 22px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  border:
    1px solid transparent;

  border-radius: 12px;

  font-weight: 800;

  line-height: 1.2;

  text-align: center;

  cursor: pointer;

  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}


.btn:hover {
  transform: translateY(-2px);
}


.btn-primary {
  color: var(--white);

  background: var(--primary);

  box-shadow:
    0 10px 24px rgba(210, 42, 28, 0.22);
}


.btn-primary:hover {
  background: var(--primary-dark);
}


.btn-outline {
  color: var(--white);

  border-color:
    rgba(255, 255, 255, 0.34);

  background:
    rgba(255, 255, 255, 0.06);
}


.btn-outline:hover {
  background:
    rgba(255, 255, 255, 0.12);
}


.btn-white {
  color: var(--black);
  background: var(--white);
}


.btn-ghost-white {
  color: var(--white);

  border-color:
    rgba(255, 255, 255, 0.36);
}


.btn-sm {
  min-height: 42px;

  padding-inline: 16px;
}



/* =====================================================
   COMMON HEADINGS
===================================================== */

.eyebrow {
  display: inline-block;

  color: var(--primary);

  font-size: 0.78rem;
  font-weight: 850;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.eyebrow-light {
  color: #f5aaa4;
}


.section-heading {
  margin-bottom: 42px;
}


.section-heading.centered {
  max-width: 760px;

  margin-inline: auto;

  text-align: center;
}


.section-heading h2,
.story-copy h2,
.service-snapshot-grid h2,
.split-heading h2 {
  margin:
    10px 0 16px;

  color: var(--black);

  font-size:
    clamp(2rem, 4vw, 3.25rem);

  line-height: 1.06;

  letter-spacing: -0.045em;
}


.section-heading p,
.split-heading p {
  margin: 0;

  color: var(--text-muted);
}



/* =====================================================
   ABOUT HERO
===================================================== */

.about-hero {
  position: relative;

  overflow: hidden;

  color: var(--white);

  background:
    linear-gradient(
      118deg,
      #151111 0%,
      #221b1a 56%,
      #38201d 100%
    );
}


.about-hero-grid {
  position: absolute;

  inset: 0;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );

  background-size:
    34px 34px;
}


.about-hero-glow {
  position: absolute;

  width: 520px;
  height: 520px;

  right: -90px;
  top: -200px;

  border-radius: 50%;

  background:
    rgba(210, 42, 28, 0.28);

  filter: blur(10px);
}


.about-hero-inner {
  position: relative;

  z-index: 1;

  min-height: 600px;

  padding-block: 82px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(320px, 0.82fr);

  align-items: center;

  gap: 78px;
}


.breadcrumb {
  margin-bottom: 30px;

  display: flex;
  align-items: center;

  gap: 10px;

  color:
    rgba(255, 255, 255, 0.66);

  font-size: 0.9rem;
}


.about-hero-copy h1 {
  max-width: 800px;

  margin:
    14px 0 22px;

  font-size:
    clamp(3rem, 6vw, 5.25rem);

  line-height: 0.98;

  letter-spacing: -0.06em;
}


.about-hero-copy > p {
  max-width: 720px;

  margin: 0;

  color:
    rgba(255, 255, 255, 0.74);

  font-size: 1.12rem;
}


.hero-actions {
  margin-top: 32px;

  display: flex;
  flex-wrap: wrap;

  gap: 12px;
}


.about-hero-card {
  justify-self: end;

  width: min(
    100%,
    390px
  );

  padding: 34px;

  border:
    1px solid
    rgba(255, 255, 255, 0.14);

  border-radius: 24px;

  background:
    rgba(255, 255, 255, 0.08);

  box-shadow:
    0 30px 80px
    rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(12px);
}


.hero-card-label {
  margin-bottom: 22px;

  color: #f5aaa4;

  font-size: 0.76rem;
  font-weight: 850;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


.about-hero-card > strong {
  display: block;

  font-size:
    clamp(1.8rem, 3vw, 2.5rem);

  line-height: 1.08;

  letter-spacing: -0.04em;
}


.hero-card-meta {
  margin-top: 30px;
  padding-top: 22px;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 16px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.13);
}


.hero-card-meta span {
  display: grid;

  color:
    rgba(255, 255, 255, 0.62);

  font-size: 0.82rem;
}


.hero-card-meta b {
  color: var(--white);

  font-size: 1.12rem;
}



/* =====================================================
   STORY
===================================================== */

.story-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);

  align-items: center;

  gap: 76px;
}


.story-visual {
  position: relative;

  min-height: 610px;

  overflow: hidden;

  border-radius: 28px;

  background: #e9e5e3;

  box-shadow: var(--shadow-md);
}


.story-visual img {
  width: 100%;
  height: 100%;

  min-height: 610px;

  object-fit: cover;
}


.story-note {
  position: absolute;

  right: 22px;
  bottom: 22px;
  left: 22px;

  padding: 20px 22px;

  display: grid;

  gap: 3px;

  border:
    1px solid
    rgba(255, 255, 255, 0.6);

  border-radius: 18px;

  color: var(--white);

  background:
    rgba(19, 16, 16, 0.78);

  backdrop-filter: blur(12px);
}


.story-note span {
  color: #f5aaa4;

  font-size: 0.72rem;
  font-weight: 850;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.story-copy > p {
  margin:
    0 0 16px;

  color: var(--text-muted);
}


.story-points {
  margin-top: 30px;

  display: grid;

  gap: 10px;
}


.story-points > div {
  padding: 18px 0;

  display: grid;

  grid-template-columns:
    54px 1fr;

  gap: 16px;

  border-top:
    1px solid var(--border);
}


.story-points > div:last-child {
  border-bottom:
    1px solid var(--border);
}


.story-points > div > span {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 12px;

  color: var(--primary);

  background: var(--primary-soft);

  font-size: 0.78rem;
  font-weight: 850;
}


.story-points p {
  margin: 0;

  display: grid;

  gap: 3px;
}


.story-points small {
  color: var(--text-muted);

  font-size: 0.9rem;

  line-height: 1.5;
}



/* =====================================================
   STATS
===================================================== */

.about-stats {
  padding-block: 34px;

  color: var(--white);

  background: var(--primary);
}


.stats-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));
}


.stats-grid article {
  padding:
    18px 28px;

  display: grid;

  gap: 2px;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.24);
}


.stats-grid article:last-child {
  border-right: 0;
}


.stats-grid strong {
  font-size: 1.35rem;
}


.stats-grid span {
  color:
    rgba(255, 255, 255, 0.72);

  font-size: 0.86rem;
}



/* =====================================================
   VALUES
===================================================== */

.values-section {
  background: var(--light-grey);
}


.values-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;
}


.value-card {
  position: relative;

  min-height: 300px;

  padding: 28px;

  border:
    1px solid var(--border);

  border-radius: 20px;

  background: var(--white);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}


.value-card:hover {
  transform:
    translateY(-5px);

  box-shadow:
    var(--shadow-md);
}


.value-number {
  position: absolute;

  top: 22px;
  right: 24px;

  color: #d8d8d8;

  font-size: 0.78rem;

  font-weight: 850;
}


.value-icon {
  width: 48px;
  height: 48px;

  margin-bottom: 30px;

  display: grid;

  place-items: center;

  border-radius: 14px;

  color: var(--primary);

  background: var(--primary-soft);

  font-size: 1.2rem;

  font-weight: 900;
}


.value-card h3 {
  margin:
    0 0 10px;

  font-size: 1.2rem;
}


.value-card p {
  margin: 0;

  color: var(--text-muted);

  font-size: 0.94rem;
}



/* =====================================================
   SERVICES
===================================================== */

.services-snapshot {
  color: var(--white);

  background: var(--black);
}


.service-snapshot-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(0, 1.12fr);

  gap: 80px;
}


.service-snapshot-grid h2 {
  color: var(--white);
}


.service-snapshot-grid p {
  color:
    rgba(255, 255, 255, 0.62);
}


.text-link {
  margin-top: 20px;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #f6aaa4;

  font-weight: 800;
}


.service-list {
  display: grid;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.14);
}


.service-list a {
  min-height: 76px;

  display: grid;

  grid-template-columns:
    52px 1fr auto;

  align-items: center;

  gap: 14px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.14);

  transition:
    padding var(--transition),
    color var(--transition);
}


.service-list a:hover {
  padding-left: 8px;

  color: #f6aaa4;
}


.service-list span {
  color:
    rgba(255, 255, 255, 0.4);

  font-size: 0.78rem;

  font-weight: 800;
}



/* =====================================================
   LOCATIONS
===================================================== */

.split-heading {
  display: grid;

  grid-template-columns:
    1.15fr 0.85fr;

  align-items: end;

  gap: 64px;
}


.locations-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 16px;
}


.location-card {
  min-height: 118px;

  padding: 24px;

  display: grid;

  grid-template-columns:
    52px 1fr auto;

  align-items: center;

  gap: 16px;

  border:
    1px solid var(--border);

  border-radius: 18px;

  background: var(--white);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}


.location-card:hover {
  transform:
    translateY(-4px);

  box-shadow:
    var(--shadow-sm);
}


.location-card > span {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 12px;

  color: var(--primary);

  background: var(--primary-soft);

  font-size: 0.76rem;

  font-weight: 850;
}


.location-card > div {
  display: grid;
}


.location-card small {
  color: var(--text-muted);
}


.location-card b {
  color: var(--primary);
}



/* =====================================================
   CTA
===================================================== */

.cta-band {
  position: relative;

  overflow: hidden;

  padding-block: 58px;

  color: var(--white);

  background: var(--primary);
}


.cta-inner {
  position: relative;

  z-index: 1;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 48px;
}


.cta-inner h2 {
  max-width: 760px;

  margin:
    8px 0 0;

  font-size:
    clamp(1.7rem, 3vw, 2.5rem);

  line-height: 1.12;
}


.cta-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}



/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  padding:
    64px 0 100px;

  color:
    rgba(255, 255, 255, 0.72);

  background: var(--black);
}


.footer-grid {
  display: grid;

  grid-template-columns:
    1.4fr
    repeat(3, minmax(0, 1fr));

  gap: 52px;
}


.brand-footer img {
  width: 128px;
}


.brand-footer strong,
.footer-grid h3 {
  color: var(--white);
}


.footer-brand > p {
  max-width: 360px;
}


.footer-contact {
  display: grid;

  gap: 6px;

  color: var(--white);

  font-weight: 700;
}


.footer-grid > div:not(.footer-brand) {
  display: grid;

  align-content: start;

  gap: 10px;
}


.footer-bottom {
  margin-top: 52px;

  padding-top: 24px;

  display: flex;

  justify-content: space-between;

  gap: 24px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.1);

  font-size: 0.86rem;
}


.footer-bottom p {
  margin: 0;
}


.footer-bottom div {
  display: flex;

  gap: 18px;
}


.mobile-actions {
  display: none;
}



/* =====================================================
   SCROLL ANIMATION
===================================================== */

[data-reveal] {
  opacity: 0;

  transition:
    opacity 0.68s ease,
    transform 0.68s
    cubic-bezier(0.22, 1, 0.36, 1);

  transition-delay:
    var(--delay, 0ms);
}


[data-reveal="up"] {
  transform:
    translateY(24px);
}


[data-reveal="left"] {
  transform:
    translateX(-28px);
}


[data-reveal="right"] {
  transform:
    translateX(28px);
}


[data-reveal="scale"] {
  transform:
    scale(0.97);
}


[data-reveal].is-visible {
  opacity: 1;

  transform: none;
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .utility-bar {
    display: none;
  }


  .nav-toggle {
    display: grid;
  }


  .primary-nav {
    position: absolute;

    top: calc(100% + 8px);

    right: 0;
    left: 0;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px;

    border:
      1px solid var(--border);

    border-radius: 16px;

    background: var(--white);

    box-shadow:
      var(--shadow-md);
  }


  .primary-nav.open {
    display: flex;
  }


  .primary-nav a {
    padding: 12px 10px;
  }


  .about-hero-inner {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 36px;
  }


  .about-hero-card {
    justify-self: start;
  }


  .story-grid,
  .service-snapshot-grid {
    grid-template-columns: 1fr;
  }


  .values-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .stats-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .split-heading {
    grid-template-columns: 1fr;

    gap: 8px;
  }


  .footer-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 640px) {

  body {
    padding-bottom: 68px;
  }


  .container {
    width:
      min(
        calc(100% - 24px),
        var(--container)
      );
  }


  .section-pad {
    padding-block: 64px;
  }


  .nav-wrap {
    min-height: 68px;
  }


  .brand img {
    width: 82px;
  }


  .brand strong {
    max-width: 175px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 0.92rem;
  }


  .about-hero-inner {
    padding-block: 56px;
  }


  .about-hero-copy h1 {
    font-size:
      clamp(2.7rem, 13vw, 4rem);
  }


  .about-hero-card {
    padding: 26px;
  }


  .hero-card-meta {
    grid-template-columns: 1fr;
  }


  .hero-actions,
  .cta-actions {
    width: 100%;
  }


  .hero-actions .btn,
  .cta-actions .btn {
    flex: 1 1 100%;
  }


  .story-visual {
    min-height: 420px;

    border-radius: 22px;
  }


  .story-visual img {
    min-height: 420px;
  }


  .story-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }


  .stats-grid {
    grid-template-columns: 1fr;
  }


  .stats-grid article {
    border-right: 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.24);
  }


  .values-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }


  .cta-inner {
    flex-direction: column;

    align-items: flex-start;
  }


  .footer-grid {
    grid-template-columns: 1fr;
  }


  .footer-bottom {
    flex-direction: column;
  }


  .mobile-actions {
    position: fixed;

    right: 0;
    bottom: 0;
    left: 0;

    z-index: 1200;

    height: 64px;

    display: grid;

    grid-template-columns:
      repeat(3, 1fr);

    color: var(--white);

    background: var(--black);

    box-shadow:
      0 -8px 26px
      rgba(0, 0, 0, 0.18);
  }


  .mobile-actions a {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    border-right:
      1px solid
      rgba(255, 255, 255, 0.12);

    font-size: 0.82rem;

    font-weight: 800;
  }


  .mobile-actions a:last-child {
    border-right: 0;

    background: var(--primary);
  }

}



/* =====================================================
   REDUCED MOTION
===================================================== */

@media (
  prefers-reduced-motion: reduce
) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }


  [data-reveal] {
    opacity: 1 !important;

    transform: none !important;
  }

}