/* Custom styles for FlowRetouch Home Page */

html,
body {
  background: #ffffff !important;
  color: #111111 !important;
  font-family: 'Jost', sans-serif;
  margin: 0;
  padding: 0;
}

/* Ensure the fixed boxed header stays clean and fits inline */
header.boxed {
  background: #ffffff !important;
  border-bottom: none;
}

header.boxed .header-margin {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 5px 20px 15px !important;
  box-sizing: border-box;
}

/* Make logo display inline-block and float/flex correctly */
.logo {
  float: none !important;
}

.logo a {
  padding-left: 0 !important;
}

.logo a img {
  height: 24px;
  width: auto;
  display: block;
}

ul.header-nav {
  float: none !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 10px;
}

ul.header-nav>li {
  float: none !important;
}

ul.header-nav>li>a {
  padding: 10px 15px !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
}

ul.header-nav>li>ul>li>a {
  font-weight: 400 !important;
}

/* Hero Section Layout */
.hero-wrapper {
  width: 100%;
  background: linear-gradient(to right, #ffffff 50%, #efeeef 50%);
  margin: 50px auto 0;
  /* No bottom margin */
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  /* Reset margin */
  padding: 0 20px;
  box-sizing: border-box;
  background: url('../img/hero-image.jpg') no-repeat right center;
  background-size: contain;
  min-height: 600px;
}

.hero-content {
  flex: 1.1;
  max-width: 480px;
}

.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #777777;
  margin-bottom: 25px;
  display: block;
}

.hero-title {
  font-size: 58px;
  line-height: 1.1;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  color: #111111;
  letter-spacing: -1px;
}

.hero-title .bold {
  font-weight: 400;
  display: block;
}

.hero-title .light {
  font-weight: 200;
  display: block;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 26px;
  color: #333333;
  margin: 0 0 25px 0;
  font-weight: 500;
}

.hero-description {
  font-size: 15px;
  line-height: 1.65;
  color: #555555;
  margin: 0 0 35px 0;
  font-weight: 500;
  max-width: 350px;
}

/* Buttons styling */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  transition: all 0.25s ease;
  box-sizing: border-box;
  text-align: center;
  border-radius: 0;
}

.btn-primary {
  background: #111111;
  color: #ffffff !important;
  border: 1px solid #111111;
}

.btn-primary:hover {
  background: #333333;
  border-color: #333333;
}

.btn-secondary {
  background: transparent;
  color: #111111 !important;
  border: 1px solid #cccccc;
}

.btn-secondary:hover {
  border-color: #111111;
  background: rgba(0, 0, 0, 0.02);
}

/* Checkmark benefits list */
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #444444;
  text-transform: uppercase;
}

.benefit-item span.checkmark {
  color: #111111;
  font-weight: 900;
  margin-right: 8px;
  font-size: 13px;
}

/* Image styling */
.hero-image-container {
  display: none;
}

/* Split Section below Hero */
.split-section {
  display: flex;
  width: 100%;
  min-height: 400px;
  box-sizing: border-box;
}

.split-col {
  flex: 1;
  padding: 60px 40px;
  box-sizing: border-box;
}

.split-left {
  background: #ffffff;
}

.split-right {
  background: #efeeef;
}

/* Mobile Layout Overrides */
@media (max-width: 991px) {
  .hero-section {
    gap: 40px;
  }

  .hero-title {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .hero-wrapper {
    background: none;
    margin-top: 0;
  }

  .hero-section {
    flex-direction: column;
    margin-top: 0;
    padding: 0;
    gap: 0;
    background: none;
    min-height: auto;
    overflow: visible;
  }

  .hero-content {
    max-width: 100%;
    padding: 50px 20px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }

  /* contact & about-me hero has empty div placeholder – hide it on mobile */
  .contact-page-hero .hero-image-container,
  .contact-hero-wrapper .hero-image-container,
  .about-hero-wrapper .hero-image-container,
  .before-after-hero-wrapper .hero-image-container {
    display: none !important;
  }

  /* remove fixed-height white backgrounds on contact/about hero wrappers and pull text up by 100px on mobile */
  .contact-hero-wrapper,
  .about-hero-wrapper,
  .before-after-hero-wrapper {
    background: none !important;
    min-height: auto !important;
    margin-top: -100px !important;
  }

  /* Mobile menu (hamburger) font and layout overrides */
  ul.menu-fullscreen {
    font-family: 'Jost', sans-serif !important;
    margin-top: 50px !important;
  }

  ul.menu-fullscreen li {
    font-family: 'Jost', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 2px !important;
  }

  ul.menu-fullscreen li > a {
    font-family: 'Jost', sans-serif !important;
  }

  /* index.html hero image – show full-bleed */
  .hero-image-container:has(img.hero-image) {
    display: block !important;
    order: -1;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  /* index.html hero content sits below image, no top padding needed */
  .hero-section:has(.hero-image-container img) .hero-content {
    padding-top: 30px;
  }

  .hero-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .hero-benefits {
    justify-content: center;
    gap: 15px;
  }

  .split-section {
    flex-direction: column;
    min-height: auto;
  }

  .split-col {
    padding: 40px 20px;
  }
}

/* Shared layout variables/classes */
.services-container,
.featured-container,
.why-container,
.footer-top,
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.btn-center {
  text-align: center;
  margin-top: 80px;
}

/* Services Overview */
.services-overview {
  padding: 50px 0;
  background-color: #f4f4f4;
}

.services-container {
  display: flex;
  justify-content: space-between;
}

.service-item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid #d5d5d5;
}

.service-item>* {
  position: relative;
  top: -20px;
}

.service-item:first-child {
  padding-left: 0;
}

.service-item:last-child {
  padding-right: 0;
  border-right: none;
}

.service-item img {
  width: 100px;
  height: auto;
  margin-bottom: 0;
}

.service-item h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Featured Works */
.featured-works {
  padding: 50px 0 80px;
  background-color: #ffffff;
}

.featured-works .section-title {
  /* Inherits from .section-title */
}

.works-grid {
  display: flex;
  gap: 20px;
}

.work-item {
  flex: 1;
  text-align: center;
  cursor: pointer;
}

.work-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  border-bottom: none !important;
}

.work-item .image-wrapper {
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 1 / 1;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-item h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
  color: #111;
  text-transform: uppercase;
}

.work-item p.view-project {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-top: 10px;
  color: #888;
}

/* Before & After Banner */
.before-after-banner {
  background-color: #000;
  width: 100%;
  color: #fff;
  text-align: left;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: url('../img/before_after_banner.jpg') no-repeat right center;
  background-size: cover;
  aspect-ratio: 640 / 180;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

h2.dark-bg-title {
  font-size: 36px !important;
  font-weight: 300 !important;
  max-width: 250px !important;
  line-height: 1.2;
  margin-bottom: 20px;
}

.banner-container h2 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
  max-width: 60%;
}

.banner-container p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 60%;
}

.btn-outline-white {
  background: transparent;
  color: #fff !important;
  border: 1px solid #fff;
  display: inline-block;
}

.btn-outline-white:hover {
  background: #fff;
  color: #111 !important;
}

/* Why Work With Me */
.why-work-with-me {
  padding: 50px 0 80px;
  background-color: #fff;
}


/* Footer */
.main-footer {
  background-color: #111;
  padding-top: 80px;
  color: #fff;
  height: auto;
  overflow: visible;
  margin-top: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.footer-cta {
  flex: 2;
}

.footer-cta h2 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.footer-cta p {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 30px;
}

.footer-contact {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact p {
  font-size: 15px;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.footer-contact i {
  color: #fff;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  background-color: #111;
  border-top: 1px solid #333;
  padding: 30px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  flex: 1;
}

.footer-img-logo {
  height: 30px;
  width: auto;
  filter: invert(1);
}

.footer-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 2;
  justify-content: center;
}

.footer-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  color: #777;
  font-size: 11px;
  flex: 1;
  text-align: right;
}

.footer-img-logo {
  height: 19px !important;
  width: auto !important;
  filter: invert(1) !important;
  mix-blend-mode: screen !important;
  display: block !important;
}

.footer-nav {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  color: #777;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0;
}

/* Responsiveness for new sections */
@media (max-width: 991px) {
  .works-grid {
    flex-wrap: wrap;
  }

  .work-item {
    flex: 1 1 calc(50% - 20px);
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .services-container,
  .why-grid,
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .service-item {
    border-right: none;
    padding: 0;
  }

  .work-item {
    flex: 1 1 100%;
  }

  .footer-contact {
    align-items: center;
  }
}

/* Contact Page Styles - Mockup Redesign */
.contact-section {
  background-color: #f9f9f9; /* Light grey background like mockup */
  padding: 100px 0;
  width: 100%;
}

.contact-page-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  padding: 0 40px;
  box-sizing: border-box;
}

.contact-left {
  flex: 1.1;
  max-width: 620px;
}

.contact-right {
  flex: 0.9;
  max-width: 480px;
}

.contact-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 45px;
  text-transform: uppercase;
  color: #111111;
  font-family: 'Jost', sans-serif;
}

/* Form Styles */
.contact-form-custom {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #222222;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

.contact-form-custom input[type="text"],
.contact-form-custom input[type="email"],
.contact-form-custom input[type="date"],
.contact-form-custom select,
.contact-form-custom textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: #333333;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0; /* Square borders */
}

.contact-form-custom input:focus,
.contact-form-custom select:focus,
.contact-form-custom textarea:focus {
  border-color: #111111;
}

.contact-form-custom textarea {
  min-height: 140px;
  resize: vertical;
}

/* Row Grid for Deadline & Budget */
.form-row-grid {
  display: flex;
  gap: 20px;
}

.form-row-grid .form-group {
  flex: 1;
}

/* Form checkbox styles */
.form-checkbox-group {
  margin: 10px 0 20px 0;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #555555;
  cursor: pointer;
  user-select: none;
  font-family: 'Jost', sans-serif;
}

.checkbox-container input {
  width: 18px;
  height: 18px;
  accent-color: #111111;
  cursor: pointer;
}

/* Wide Submit Button matching mockup */
.contact-submit-btn {
  background-color: #111111;
  color: #ffffff;
  padding: 18px 30px;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border-radius: 0;
}

.contact-submit-btn:hover {
  background-color: #333333;
}

.contact-submit-btn i {
  font-size: 14px;
}

.form-disclaimer {
  text-align: center;
  font-size: 11px;
  color: #888888;
  margin: 15px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Jost', sans-serif;
}

.form-disclaimer i {
  font-size: 12px;
}

/* GET IN TOUCH Cards list */
.contact-cards-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  border-color: #bbbbbb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.contact-card-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-card-left i {
  font-size: 20px;
  color: #111111;
  width: 24px;
  text-align: center;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-info label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888888;
  margin: 0;
  font-family: 'Jost', sans-serif;
}

.contact-card-info span,
.contact-card-info a {
  font-size: 13px;
  font-weight: 500;
  color: #222222;
  text-decoration: none;
}

.contact-card-right i {
  font-size: 16px;
  color: #cccccc;
  transition: color 0.3s;
}

.contact-card:hover .contact-card-right i {
  color: #111111;
}

.contact-right-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: #888888;
  margin-top: 30px;
  border-left: 2px solid #dddddd;
  padding-left: 20px;
  font-family: 'Jost', sans-serif;
}

/* RWD for Contact Section */
@media (max-width: 991px) {
  .contact-page-wrapper {
    flex-direction: column;
    gap: 60px;
    padding: 0 20px;
  }
  
  .contact-left, .contact-right {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .form-row-grid {
    flex-direction: column;
    gap: 25px;
  }
}

/* Contact Hero Section - Scoped to contact-hero-section if ever reused */
.contact-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-boxes {
  display: flex;
  justify-content: flex-start;
  border-top: none;
  padding-top: 30px;
  text-align: left;
}

.contact-box {
  flex: 0 1 auto;
  padding: 0 30px 0 0;
  position: relative;
  margin-right: 30px;
}

.contact-box:last-child {
  padding-right: 0;
  margin-right: 0;
}

.contact-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 5px;
  height: calc(100% - 10px);
  width: 1px;
  background-color: #dddddd;
}

.contact-box i {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  display: block;
}

.contact-box h3 {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
}

.contact-box p,
.contact-box a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0;
}

.contact-box a:hover {
  color: #111;
}

@media (max-width: 768px) {
  .contact-info-boxes {
    flex-direction: column;
    gap: 40px;
  }
  
  .contact-box:not(:last-child)::after {
    display: none;
  }
}

/* Contact and About page specific hero overrides */
.contact-hero-wrapper,
.about-hero-wrapper,
.before-after-hero-wrapper {
  background: #ffffff !important;
}

.contact-hero-wrapper .hero-section,
.about-hero-wrapper .hero-section,
.before-after-hero-wrapper .hero-section {
  align-items: flex-start !important;
  padding-top: 80px !important;
  min-height: 370px !important;
}

.contact-hero-wrapper .hero-description,
.about-hero-wrapper .hero-description,
.before-after-hero-wrapper .hero-description {
  max-width: 440px; /* Wider text matching mockup */
}

.contact-page-hero {
  background: none !important;
}

/* Contact Info Strip (below hero section) */
.contact-info-strip {
  display: flex;
  align-items: flex-start;
  padding: 0 40px 60px 40px;
  border-top: none;
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 0 0 auto;
}

.contact-info-item i {
  font-size: 22px;
  color: #333;
  flex-shrink: 0;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #333;
}

.contact-info-text a,
.contact-info-text span:not(.contact-info-label) {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-text a:hover {
  color: #111;
}

.contact-info-divider {
  width: 1px;
  height: 60px;
  background: #e8e8e8;
  margin: 0 45px;
  flex-shrink: 0;
  align-self: center;
}

/* About Page Bio Section Styles */
.about-bio-section {
  background-color: #f9f9f9;
  padding: 100px 0;
  width: 100%;
}

.about-bio-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  padding: 0 40px;
  box-sizing: border-box;
}

.bio-left-text {
  flex: 1.1;
  max-width: 620px;
}

.bio-right-photo {
  flex: 0.9;
  max-width: 480px;
}

.bio-title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #111111;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

.bio-subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: #888888;
  text-transform: uppercase;
  display: block;
  font-family: 'Jost', sans-serif;
}

.bio-divider {
  width: 40px;
  height: 2px;
  background-color: #111111;
  margin: 25px 0 35px 0;
}

.bio-left-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #555555;
  margin: 0 0 25px 0;
  font-family: 'Jost', sans-serif;
}

.bio-techniques-list {
  list-style: none;
  padding: 0;
  margin: -15px 0 25px 0;
}

.bio-techniques-list li {
  font-size: 15px;
  line-height: 1.75;
  color: #555555;
  padding-left: 15px;
  position: relative;
  font-family: 'Jost', sans-serif;
}

.bio-techniques-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: #555555;
}

/* Offset Border/Shadow Photo Frame */
.bio-photo-frame {
  position: relative;
  display: block;
  width: 100%;
}

.bio-photo-frame::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid #e0e0e0;
  z-index: 1;
  pointer-events: none;
}

.bio-photo-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
}

/* RWD for About Page Bio Section */
@media (max-width: 991px) {
  .about-bio-container {
    flex-direction: column-reverse;
    gap: 60px;
    padding: 0 20px;
  }
  
  .bio-left-text, .bio-right-photo {
    max-width: 100%;
    width: 100%;
  }

  .bio-right-photo {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* Portfolio Carousel Typography Overrides (homepage style alignment) */
.carousel-cell h1 {
  font-weight: 400 !important;
}

.carousel-cell h1 span:first-of-type {
  font-weight: 200 !important;
}

.carousel-cell h2 {
  font-family: 'Jost', sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 2.4vh !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  line-height: 1.3 !important;
}

/* Mobile: match desktop font weights (override style-responsive.css) */
@media all and (max-width: 760px) {
  .carousel .carousel-cell h1 {
    font-weight: 400 !important;
    font-size: 48px !important;
  }

  .carousel .carousel-cell h1 span:first-of-type {
    font-weight: 200 !important;
  }

  .carousel .carousel-cell h2 {
    font-family: 'Jost', sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #111 !important;
  }
}

/* Remove underlines (which are border-bottoms) from footer navigation links */
.footer-nav a {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Before and After slider spacing and background overrides */
.ba-section {
  background: #f9f9f9;
  padding: 80px 0;
}

.ba-slider-container {
  width: 1200px !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
}