/* =========================
   RESET / BASE
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  background-color: #f5f5f5;
  color: #111111;
}

/* =========================
   HEADER / NAV
========================= */

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #d9d9d9;
}

.site-header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header__logo {
  display: block;
  width: auto;
  height: 40px;
}

.site-nav {
  margin-left: auto;
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.site-nav__item {
  display: flex;
  align-items: center;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  color: #1f1f1f;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: #555555;
}

.site-nav__link--with-icon {
  gap: 8px;
}

.site-nav__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(1px);
}

.site-nav__item--dropdown {
  position: relative;
}

.site-nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  min-width: auto;
}

.site-nav__dropdown-toggle:focus-visible {
  outline: none;
}

.site-nav__dropdown-toggle .site-nav__chevron {
  transform: translateY(1px);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

.site-nav__item--dropdown.is-open .site-nav__dropdown {
  display: flex;
}

.site-nav__item--dropdown.is-open .site-nav__chevron {
  transform: translateY(1px) rotate(180deg);
}

.site-nav__dropdown-link {
  display: block;
  text-decoration: none;
  color: #111111;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible {
  background-color: #f5f5f5;
  opacity: 1;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background-color: #ffffff;
}

.site-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 40px 40px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.site-footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  text-decoration: none;
}

.site-footer__logo {
  display: block;
  width: auto;
  height: 40px;
}

.site-footer__nav {
  justify-self: center;
}

.site-footer__nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.site-footer__nav-link {
  color: #111111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.site-footer__nav-link:hover,
.site-footer__nav-link:focus-visible,
.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  color: #555555;
}

.site-footer__social-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__social-icon {
  display: block;
  width: 20px;
  height: 20px;
}

.site-footer__divider {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin: 40px 0 28px;
}

.site-footer__bottom {
  display: flex;
  justify-content: center;
}

.site-footer__copyright {
  font-size: 14px;
  line-height: 1.4;
  color: #555555;
  margin: 0;
}

/* ==========================================
   Global Image Lightbox
========================================== */

.lightbox-trigger {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lightbox.is-active {
  display: block;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.82);
}

.lightbox__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__image {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 16px;
  background-color: #ffffff;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* =========================================
   HOME PAGE
========================================= */


/* ===== Home Hero ===== */

.home-hero {
  width: 100%;
}

.home-hero__media {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 25%;
}

.home-hero__overlay {
  position: absolute;
  left: 56px;
  bottom: 40px;
  z-index: 2;
}

.home-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: 3.15rem;
  line-height: 1.08;
  font-weight: 400;
}

.home-hero__title-line {
  display: block;
}

/* ===== Home How I Think ===== */

.home-thinking {
  background-color: #ffffff;
  padding: 80px 0;
}

.home-thinking__container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

.home-thinking__title {
  margin: 0 0 28px;
  color: #111111;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 400;
}

.home-thinking__content {
  max-width: 680px;
}

.home-thinking__paragraph {
  margin: 0 0 32px;
  color: #222222;
  font-size: 1rem;
  line-height: 1.7;
}

.home-thinking__paragraph:last-child {
  margin-bottom: 0;
}

/* ===== Home CTA ===== */

.home-cta {
  background-color: #ffffff;
  padding: 0 0 80px;
}

.home-cta__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.home-cta__card {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 32px;
  background-color: #f1f1f1;
  border: 1px solid #dddddd;
  border-radius: 32px;
  text-align: center;
}

.home-cta__title {
  margin: 0 0 16px;
  color: #111111;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 400;
}

.home-cta__text {
  max-width: 640px;
  margin: 0 auto 36px;
  color: #222222;
  font-size: 1rem;
  line-height: 1.7;
}

.home-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.home-cta__button--primary {
  background-color: #111111;
  color: #ffffff;
  border: 1px solid #111111;
}

.home-cta__button--secondary {
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #cccccc;
}

.home-cta__button--primary:hover,
.home-cta__button--primary:focus-visible {
  background-color: #2a2a2a;
  border-color: #2a2a2a;
}

.home-cta__button--secondary:hover,
.home-cta__button--secondary:focus-visible {
  background-color: #f7f7f7;
  border-color: #bdbdbd;
}

/* =========================
   ABOUT PAGE
========================= */

/* ABOUT HERO */
.about-page {
  background-color: #ffffff;
}

.about-hero {
  padding: 32px 0 80px;
  background-color: #ffffff;
}

.about-hero__container {
  width: min(100% - 80px, 1360px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.about-hero__content {
  max-width: 560px;
}

.about-hero__title {
  margin: 0 0 28px;
  font-size: 4.5rem;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #111111;
}

.about-hero__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #444444;
}

.about-hero__image-wrapper {
  width: 100%;
  height: 760px;
}

.about-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ABOUT INTRO */
.about-intro {
  padding: 32px 0 80px;
  background-color: #ffffff;
}

.about-intro__container {
  width: min(100% - 80px, 1120px);
  margin: 0 auto;
}

.about-intro__top {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-intro__eyebrow {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #111111;
}

.about-intro__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  text-decoration: none;
}

.about-intro__linkedin-icon {
  display: block;
  width: 20px;
  height: 20px;
}

.about-intro__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-intro__text {
  max-width: 720px;
}

.about-intro__text p {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.75;
  color: #222222;
}

.about-intro__text p:last-child {
  margin-bottom: 0;
}

.about-intro__quote-block {
  margin-top: 48px;
  text-align: center;
}

.about-intro__quote {
  margin: 0 0 24px;
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 600;
  color: #111111;
}

.about-intro__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.about-intro__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  font-size: 0.875rem;
  line-height: 1;
  color: #111111;
  background-color: #f2f2f2;
}

.about-intro__footer {
  margin-top: 64px;
}

.about-intro__footer-line {
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
}

.about-intro__identity {
  padding-top: 24px;
  text-align: center;
}

.about-intro__name {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  color: #111111;
}

.about-intro__role {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #666666;
}

/* ABOUT PROCESS */
.about-process {
  padding: 72px 0 96px;
  background-color: #ffffff;
}

.about-process__container {
  width: min(100% - 80px, 1360px);
  margin: 0 auto;
}

.about-process__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.about-process__header-left {
  max-width: 560px;
}

.about-process__eyebrow {
  margin: 0 0 16px;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  color: #111111;
}

.about-process__title {
  margin: 0;
  font-size: 3.75rem;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #111111;
}

.about-process__header-right {
  max-width: 600px;
}

.about-process__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #222222;
}

.about-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e6e6e6;
}

.about-process-card {
  padding: 40px 24px 0 24px;
  border-right: 1px solid #e6e6e6;
}

.about-process-card:first-child {
  padding-left: 0;
}

.about-process-card:last-child {
  border-right: none;
  padding-right: 0;
}

.about-process-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #111111;
}

.about-process-card__icon-svg {
  width: 36px;
  height: 36px;
  display: block;
}

.about-process-card__title {
  margin: 0 0 16px;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 500;
  color: #111111;
}

.about-process-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #333333;
}

/* ABOUT SKILLS */
.about-skills {
  padding: 80px 0 104px;
  background-color: #ffffff;
}

.about-skills__container {
  width: min(100% - 80px, 1360px);
  margin: 0 auto;
}

.about-skills__intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-skills__eyebrow {
  margin: 0 0 16px;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  color: #111111;
}

.about-skills__title {
  margin: 0 0 20px;
  font-size: 3.75rem;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #111111;
}

.about-skills__text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: #444444;
}

.about-skills__card {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  min-height: 440px;
  background-color: #f2f2f2;
  border: 1px solid #dfdfdf;
  border-radius: 32px;
  overflow: hidden;
}

.about-skills__card-left {
  padding: 56px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-skills__icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 28px;
  color: #111111;
}

.about-skills__icon-svg {
  width: 40px;
  height: 40px;
  display: block;
}

.about-skills__card-title {
  margin: 0 0 20px;
  font-size: 2.75rem;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #111111;
}

.about-skills__card-text {
  max-width: 490px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #444444;
}

.about-skills__list {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #dfdfdf;
  background-color: #f2f2f2;
}

.about-skills__list-item {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 28px;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #111111;
  background-color: #ffffff;
  border-bottom: 1px solid #dfdfdf;
}

.about-skills__list-item:first-child {
  background-color: #f2f2f2;
}

.about-skills__list-item:last-child {
  border-bottom: none;
}

/* ABOUT CLOSING */
.about-closing {
  padding: 88px 0 88px;
  background-color: #ffffff;
}

.about-closing__container {
  width: min(100% - 80px, 900px);
  margin: 0 auto;
}

.about-closing__text {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #111111;
}

/* ================================
   CASE STUDIES HERO SECTION
================================ */
.case-studies-hero {
  background-color: #ffffff;
  padding: 104px 24px 20px;
}

.case-studies-hero__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.case-studies-hero__title {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.06;
  color: #111111;
}

.case-studies-hero__text {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #444444;
}

.case-studies-hero__actions {
  margin-top: 28px;
}

/* ================================
   CASE STUDY STRUCTURE SECTION
================================ */
.case-study-structure {
  background-color: #ffffff;
  padding: 56px 24px 96px;
}

.case-study-structure__container {
  max-width: 1180px;
  margin: 0 auto;
}

.case-study-structure__intro {
  max-width: 760px;
}

.case-study-structure__eyebrow {
  margin: 0 0 18px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667085;
}

.case-study-structure__title {
  margin: 0;
  max-width: 680px;
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1.08;
  color: #111111;
}

.case-study-structure__text {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #444444;
}

.case-study-structure__text + .case-study-structure__text {
  margin-top: 18px;
}

.case-study-structure__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
  row-gap: 0;
  margin-top: 48px;
  padding-top: 0;
  border-top: 1px solid #dddddd;
}

.case-study-structure__item {
  padding: 34px 0 30px;
}

.case-study-structure__item:nth-child(1),
.case-study-structure__item:nth-child(2) {
  border-bottom: 1px solid #dddddd;
}

.case-study-structure__item-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 14px;
}

.case-study-structure__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: #111111;
}

.case-study-structure__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.case-study-structure__item-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  color: #111111;
}

.case-study-structure__item-text {
  margin: 0;
  padding-left: 44px;
  max-width: 430px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
}

/* ================================
   CASE STUDIES PROJECTS SECTION
================================ */
.case-studies-projects {
  background-color: #ffffff;
  padding: 72px 24px 144px;
}

.case-studies-projects__container {
  max-width: 1180px;
  margin: 0 auto;
}

.case-studies-projects__intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.case-studies-projects__eyebrow {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #111111;
}

.case-studies-projects__title {
  margin: 0;
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1.08;
  color: #111111;
}

.case-studies-projects__text {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #444444;
}

.case-studies-projects__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
}

/* ================================
   CASE STUDY CARD
================================ */
.case-study-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background-color: #f4f4f4;
  border: 1px solid #dddddd;
  border-radius: 28px;
  overflow: hidden;
}

.case-study-card__image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #e9e9e9;
  overflow: hidden;
}

.case-study-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 20px 22px;
}

.case-study-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background-color: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  color: #111111;
}

.case-study-card__title {
  margin: 18px 0 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.22;
  color: #111111;
}

.case-study-card__text {
  margin: 14px 0 0;
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444444;
}

.case-study-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  color: #111111;
  text-decoration: none;
}

.case-study-card__link:hover {
  text-decoration: underline;
}

.case-study-card__arrow {
  font-size: 1.1rem;
  line-height: 1;
}

/* ==========================================
   Bianco Brothers Case Study - Hero Section
========================================== */

.bb-case-hero {
  padding: 64px 0 120px;
  background-color: #ffffff;
}

.bb-case-hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.08fr 1.08fr;
  column-gap: 56px;
  align-items: start;
}

.bb-case-hero__image-wrapper {
  width: 100%;
}

.bb-case-hero__image {
  width: 100%;
  display: block;
  border-radius: 32px;
  object-fit: cover;
}

.bb-case-hero__content {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}

.bb-case-hero__text {
  margin-bottom: 36px;
}

.bb-case-hero__title {
  margin: 0 0 28px;
  font-size: 3.75rem;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #111111;
  max-width: 500px;
}

.bb-case-hero__description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: #3d3d3d;
  max-width: 560px;
}

.bb-case-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 28px 48px;
  max-width: 520px;
}

.bb-case-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bb-case-hero__meta-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bb-case-hero__meta-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #111111;
}

.bb-case-hero__meta-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.bb-case-hero__meta-title {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 500;
  color: #111111;
}

.bb-case-hero__meta-text {
  margin: 0;
  padding-left: 36px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #3d3d3d;
}

/* ==========================================
   Sheltr Case Study - Hero Section
========================================== */

.sheltr-case-study-page .bb-case-hero {
  padding-bottom: 88px;
}

.sheltr-case-study-page .bb-case-hero__container {
  align-items: center;
}

.sheltr-case-study-page .bb-case-hero__image-wrapper {
  min-height: 32rem;
}

.sheltr-case-study-page .bb-case-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   Bianco Brothers Case Study - Overview Section
========================================== */

.bb-case-overview {
  padding: 40px 0 120px;
  background-color: #ffffff;
}

.bb-case-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.bb-case-overview__title {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  color: #111111;
}

.bb-case-overview__description {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 400;
  color: #3d3d3d;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.bb-case-overview__cards {
  max-width: 1120px;
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bb-case-overview__card {
  background-color: #f5f5f5;
  border: 1px solid #e6e6e6;
  border-radius: 28px;
  padding: 30px 24px;
  text-align: left;
  aspect-ratio: 1 / 1;
  max-width: 262px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bb-case-overview__card-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  margin-bottom: 24px;
}

.bb-case-overview__card-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.bb-case-overview__card-title {
  margin: 0 0 16px;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 500;
  color: #111111;
}

.bb-case-overview__card-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #3d3d3d;
}

/* ==========================================
   Bianco Brothers Case Study - Problem Statement Section
========================================== */

.bb-case-problem {
  padding: 120px 0;
  background-color: #ffffff;
}

.bb-case-problem__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.bb-case-problem__eyebrow {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  color: #111111;
}

.bb-case-problem__title {
  margin: 0 auto 40px;
  max-width: 860px;
  font-size: 4.15rem;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #111111;
}

.bb-case-problem__description {
  margin: 0 auto;
  max-width: 820px;
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 400;
  color: #3d3d3d;
}

/* ==========================================
   Bianco Brothers Case Study - Goals & Success Criteria Section
========================================== */

.bb-case-goals {
  padding: 140px 0;
  background-color: #ffffff;
}

.bb-case-goals__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  align-items: center;
}

.bb-case-goals__left {
  display: flex;
  flex-direction: column;
  padding-top: 0;
  transform: none;
}

.bb-case-goals__eyebrow {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  color: #111111;
}

.bb-case-goals__title {
  margin: 0 0 28px;
  max-width: 500px;
  font-size: 3.35rem;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #111111;
}

.bb-case-goals__intro {
  margin: 0 0 40px;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: #3d3d3d;
}

.bb-case-goals__criteria-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.bb-case-goals__criteria-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #111111;
}

.bb-case-goals__criteria-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.bb-case-goals__criteria-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 400;
  color: #3d3d3d;
}

.bb-case-goals__criteria-text strong {
  font-weight: 500;
  color: #111111;
}

.bb-case-goals__criteria-text span {
  margin-left: 8px;
}

.bb-case-goals__support-title {
  margin: 0 0 20px;
  max-width: 560px;
  font-size: 1.8rem;
  line-height: 1.28;
  font-weight: 500;
  color: #111111;
}

.bb-case-goals__support-text {
  margin: 0;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  color: #3d3d3d;
}

.bb-case-goals__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bb-case-goals__item {
  display: grid;
  grid-template-columns: 184px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid #dddddd;
  min-height: 210px;
}

.bb-case-goals__item:last-child {
  border-bottom: 1px solid #dddddd;
}

.bb-case-goals__item-image-wrapper {
  width: 184px;
}

.bb-case-goals__item-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.bb-case-goals__item-content {
  max-width: 360px;
  padding-top: 2px;
}

.bb-case-goals__item-title {
  margin: 0 0 12px;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 500;
  color: #111111;
}

.bb-case-goals__item-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: #3d3d3d;
}

.bb-case-goals__item:first-child {
  align-items: center;
  grid-template-columns: 210px 1fr;
}

.bb-case-goals__item:first-child .bb-case-goals__item-content {
  padding-top: 0px;
}

.bb-case-goals__item:first-child .bb-case-goals__item-image-wrapper {
  display: flex;
  align-items: center;
  overflow: visible;
  width: 210px;
  min-height: 172px;
}

.bb-case-goals__item:first-child .bb-case-goals__item-image {
  transform: scale(1.32);
  transform-origin: center;
}

/* ==========================================
   Sheltr Case Study - Goals & Success Criteria
========================================== */

.sheltr-case-study-page .bb-case-goals__container {
  align-items: center;
}

.sheltr-case-study-page .bb-case-goals__left {
  align-self: start;
}

.sheltr-case-study-page .bb-case-goals__right {
  gap: 0.875rem;
  padding-left: 1rem;
}

.sheltr-case-study-page .bb-case-goals__item {
  grid-template-columns: 5.75rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 0.875rem 0;
  align-items: center;
  min-height: 0;
}

.sheltr-case-study-page .bb-case-goals__item-image-wrapper {
  width: 5.75rem;
  height: 8.5rem;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sheltr-case-study-page .bb-case-goals__item-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: none;
}

.sheltr-case-study-page .bb-case-goals__item-content {
  max-width: 25rem;
  min-width: 0;
  padding-top: 0;
}

.sheltr-case-study-page .bb-case-goals__intro,
.sheltr-case-study-page .bb-case-goals__support-text {
  max-width: 40rem;
}

.sheltr-case-study-page .bb-case-goals__item:first-child {
  grid-template-columns: 5.75rem minmax(0, 1fr);
  align-items: center;
  padding-top: 0.875rem;
}

.sheltr-case-study-page .bb-case-goals__item:first-child .bb-case-goals__item-content {
  align-self: center;
  padding-top: 0;
}

.sheltr-case-study-page .bb-case-goals__item:first-child .bb-case-goals__item-image-wrapper {
  width: 5.75rem;
  height: 8.5rem;
  min-height: 0;
  overflow: hidden;
  transform: none;
}

.sheltr-case-study-page .bb-case-goals__item:first-child .bb-case-goals__item-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  transform-origin: center;
}

/* ==========================================
   Bianco Brothers Case Study - Research & Discovery Section
========================================== */

.bb-case-research {
  padding: 140px 0;
  background-color: #ffffff;
}

.bb-case-research__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.bb-case-research__header {
  max-width: 920px;
  margin: 0 auto 72px;
  text-align: center;
}

.bb-case-research__eyebrow {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  color: #111111;
}

.bb-case-research__title {
  margin: 0 0 28px;
  font-size: 3.5rem;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #111111;
}

.bb-case-research__intro {
  margin: 0 auto;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: #3d3d3d;
}

.bb-case-research__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

.bb-case-research__card {
  background-color: #f5f5f5;
  border: 1px solid #e6e6e6;
  border-radius: 32px;
  padding: 32px 30px 36px;
  text-align: left;
}

.bb-case-research__card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  margin-bottom: 28px;
}

.bb-case-research__card-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.bb-case-research__card-title {
  margin: 0 0 10px;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 600;
  color: #111111;
}

.bb-case-research__card-subtitle {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #5a5a5a;
}

.bb-case-research__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bb-case-research__list li {
  position: relative;
  padding-left: 32px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  color: #333333;
}

.bb-case-research__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
  color: #111111;
}

/* ==========================================
   Bianco Brothers Case Study - Key Decisions Section
========================================== */

.bb-case-decisions {
  padding: 120px 0;
  background-color: #ffffff;
}

.bb-case-decisions__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.bb-case-decisions__header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.bb-case-decisions__eyebrow {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  color: #111111;
}

.bb-case-decisions__title {
  margin: 0 0 24px;
  font-size: 3.2rem;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #111111;
}

.bb-case-decisions__intro {
  margin: 0 auto;
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: #3d3d3d;
}

.bb-case-decisions__list {
  max-width: 920px;
  margin: 0 auto;
}

.bb-case-decisions__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid #e3e3e3;
}

.bb-case-decisions__item:last-child {
  border-bottom: 1px solid #e3e3e3;
}

.bb-case-decisions__image-wrapper {
  width: 160px;
  height: 104px;
  overflow: hidden;
  border-radius: 20px;
  flex-shrink: 0;
}

.bb-case-decisions__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bb-case-decisions__content {
  max-width: 390px;
}

.bb-case-decisions__item-title {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 500;
  color: #111111;
}

.bb-case-decisions__item-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: #3d3d3d;
}



/* ==========================================
   Bianco Brothers Case Study - Wireframes Section
========================================== */

.bb-case-wireframes {
  padding: 110px 0 120px;
  background-color: #ffffff;
}

.bb-case-wireframes__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.bb-case-wireframes__header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.bb-case-wireframes__title {
  margin: 0 0 20px;
  font-size: 3.25rem;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #111111;
}

.bb-case-wireframes__intro {
  margin: 0 auto;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  color: #3d3d3d;
}


.bb-case-wireframes__grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 36px;
  align-items: start;
  justify-items: center;
}

.bb-case-wireframes__item {
  width: 100%;
  max-width: 320px;
  height: 540px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.bb-case-wireframes__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ==========================================
   Bianco Brothers Case Study - Final Design Section
========================================== */

.bb-case-final-design {
  padding: 140px 0;
  background-color: #ffffff;
}

.bb-case-final-design__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.bb-case-final-design__header {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.bb-case-final-design__title {
  margin: 0 0 24px;
  font-size: 3.25rem;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #111111;
}

.bb-case-final-design__intro {
  margin: 0 auto;
  max-width: 680px;
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 400;
  color: #3d3d3d;
}

.bb-case-final-design__carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-case-final-design__viewport {
  width: 100%;
  overflow: hidden;
}

.bb-case-final-design__track {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.bb-case-final-design__slide {
  flex: 0 0 calc((100% - 80px) / 3);
  height: 560px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: start;
}

.bb-case-final-design__image {
  width: 100%;
  max-width: 380px;
  height: 520px;
  display: block;
  object-fit: contain;
  object-position: top center;
  margin: 0 auto;
}

.bb-case-final-design__arrow {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  background-color: #f5f5f5;
  color: #111111;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.bb-case-final-design__arrow--left {
  left: -20px;
}

.bb-case-final-design__arrow--right {
  right: -20px;
}

.bb-case-final-design__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.bb-case-final-design__dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  background-color: #d3d3d3;
  padding: 0;
  cursor: pointer;
}

.bb-case-final-design__dot--active {
  background-color: #111111;
}

.bb-case-final-design__track {
  transition: transform 0.45s ease;
  will-change: transform;
}

.bb-case-final-design__arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.bb-case-final-design__slide:nth-child(6) .bb-case-final-design__image {
  object-position: center center;
}

/* ==========================================
   Bianco Brothers Case Study - Conclusion + CTA Section
========================================== */

.bb-case-conclusion {
  padding: 120px 0 64px;
  background-color: #ffffff;
}

.bb-case-conclusion__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.bb-case-conclusion__top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 104px;
}

.bb-case-conclusion__card {
  max-width: 320px;
}

.bb-case-conclusion__card-title {
  margin: 0 0 20px;
  font-size: 1.85rem;
  line-height: 1.15;
  font-weight: 500;
  color: #111111;
}

.bb-case-conclusion__card-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: #3d3d3d;
}

.bb-case-conclusion__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bb-case-conclusion__cta-title {
  margin: 0 0 16px;
  font-size: 3.75rem;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #111111;
}

.bb-case-conclusion__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background-color: #111111;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.bb-case-conclusion__cta-button:hover {
  background-color: #2a2a2a;
  transform: translateY(-1px);
}

/* =========================
   RESUME PAGE
   ========================= */

.resume-page {
  background-color: #ffffff;
}

/* =========================
   RESUME PAGE - MAIN SECTION
   ========================= */

.resume-hero-section {
  padding: 96px 24px 80px;
}

.resume-hero-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resume-hero-content {
  max-width: 620px;
  margin-bottom: 56px;
  text-align: center;
}

.resume-page-title {
  margin: 0 0 16px;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 600;
  color: #111111;
}

.resume-page-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #444444;
}

/* =========================
   RESUME PAGE
   ========================= */

.resume-page {
  background-color: #ffffff;
}

/* =========================
   RESUME PAGE - MAIN SECTION
   ========================= */

.resume-hero-section {
  padding: 96px 24px 72px;
}

.resume-hero-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resume-hero-content {
  max-width: 600px;
  margin-bottom: 56px;
  text-align: center;
}

.resume-page-title {
  margin: 0 0 16px;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 600;
  color: #111111;
}

.resume-page-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #444444;
}

/* =========================
   RESUME PAGE - RESUME DISPLAY
   ========================= */

.resume-document-wrapper {
  width: 100%;
  max-width: 860px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  background-color: #ffffff;
}

.resume-document-image {
  display: block;
  width: 100%;
  height: auto;
  background-color: #ffffff;
}

/* =========================
   RESUME PAGE - ACTION LINK
   ========================= */

.resume-actions {
  margin-top: 20px;
  text-align: center;
}

.resume-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid #111111;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  color: #111111;
  text-decoration: none;
  transition: all 0.2s ease;
}

.resume-download-link:hover {
  background-color: #111111;
  color: #ffffff;
}

/* ========================================
   CONTACT PAGE - MAIN CONTENT
======================================== */

/* Contact Page Base */
.contact-page {
  background-color: #ffffff;
}

/* ========================================
   CONTACT HERO SECTION
======================================== */

.contact-hero-section {
  background-color: #ffffff;
  padding: 96px 24px 48px;
}

.contact-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-hero-title {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Battambang", sans-serif;
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000000;
}

/* ========================================
   CONTACT METHODS SECTION
======================================== */

.contact-methods-section {
  background-color: #ffffff;
  padding: 0 24px 88px;
}

.contact-methods-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-eyebrow {
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  color: #000000;
}

.contact-section-title {
  margin: 0 0 46px;
  font-family: "Battambang", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.15;
  color: #000000;
}

/* ========================================
   CONTACT GRID
======================================== */

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  align-items: start;
}

.contact-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-method-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: #000000;
}

.contact-method-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-method-title {
  margin: 0 0 8px;
  font-family: "Battambang", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}

.contact-method-text {
  max-width: 220px;
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}

.contact-method-link {
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
  text-decoration: none;
}

.contact-method-link:hover {
  opacity: 0.7;
}