/* ============================================================
   SULLIVAN BRUCK ARCHITECTS — Squarespace 7.1 Custom Styles
   Site: sba-2.squarespace.com
   CDN:  https://sullivan-bruck-sqsp.pages.dev

   Follows CLAUDE.md selector hierarchy:
   1. Manual section anchor IDs
   2. Official data-sqsp-* hooks
   3. Section-level data-section-id
   4. Body context classes
   ============================================================ */

/* ============================================================
   TABLE OF CONTENTS
   1. Custom Properties
   2. Global Typography
   3. Header & Navigation
   4. Hero Section (Homepage Slideshow)
   5. Portfolio Grid
   6. About Page
   7. Contact Form
   8. Buttons
   9. Footer
   10. Reduced Motion
   11. Edit Mode Safety
   12. Mobile
   ============================================================ */


/* ==========================================================
   1. CUSTOM PROPERTIES
   ========================================================== */

:root {
  --sba-bg: #141414;
  --sba-bg-elevated: #1c1c1c;
  --sba-bg-card: #1a1a1a;
  --sba-text: #f0ede8;
  --sba-text-muted: #9a9590;
  --sba-accent: #c8b89a;
  --sba-accent-hover: #ddd0b8;
  --sba-rule: rgba(255, 255, 255, 0.08);
  --sba-overlay: rgba(0, 0, 0, 0.55);
}


/* ==========================================================
   2. GLOBAL TYPOGRAPHY
   Use Site Styles for base font family and sizes.
   These are surgical overrides only.
   ========================================================== */

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
}

h1 {
  font-weight: 200;
}

h2 {
  font-weight: 200;
}

/* H4 — universal accent label style (Columbus Ohio, About the Firm, Selected Work, etc.) */
h4 {
  font-size: 0.6875rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--sba-accent) !important;
  line-height: 1.4 !important;
}


/* ==========================================================
   3. HEADER & NAVIGATION
   Transparent header with gradient for readability over
   full-bleed hero imagery.
   ========================================================== */

/* Gradient overlay on header */
body:not(.sqs-is-page-editing) #header {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  ) !important;
}

/* Nav link styling — match wireframe exactly */
.header-nav-item a {
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-size: 0.6875rem !important;
  color: var(--sba-text) !important;
  transition: color 0.3s ease;
}

.header-nav-item a:hover {
  color: var(--sba-accent) !important;
}

/* Active nav underline color */
.header-nav-item--active a {
  color: var(--sba-text) !important;
}

/* Logo text color */
#header .header-title-text a {
  color: var(--sba-text) !important;
}


/* ==========================================================
   4. HERO SECTION — Homepage Slideshow
   Section ID: 69c561a06d6e4b21c6d06df9
   Observed selectors: .user-items-list-section,
   .slideshow-holder, .slide, .slide-content, etc.
   Risk: medium — these are observed Squarespace wrappers
   ========================================================== */

/* Full viewport height hero — zero out header-offset padding */
section[data-section-id="69c561a06d6e4b21c6d06df9"] {
  min-height: 100vh !important;
  height: 100vh !important;
  position: relative;
  padding-top: 0 !important;
}

/* Force slideshow container to fill section */
section[data-section-id="69c561a06d6e4b21c6d06df9"] .content-wrapper,
section[data-section-id="69c561a06d6e4b21c6d06df9"] .content,
section[data-section-id="69c561a06d6e4b21c6d06df9"] .user-items-list,
section[data-section-id="69c561a06d6e4b21c6d06df9"] .user-items-list-item-container,
section[data-section-id="69c561a06d6e4b21c6d06df9"] .slideshow-wrapper,
section[data-section-id="69c561a06d6e4b21c6d06df9"] .slideshow-gutter,
section[data-section-id="69c561a06d6e4b21c6d06df9"] .slideshow-holder,
section[data-section-id="69c561a06d6e4b21c6d06df9"] .slides {
  height: 100% !important;
  min-height: 100vh !important;
}

/* Individual slides fill the viewport */
section[data-section-id="69c561a06d6e4b21c6d06df9"] .slide.list-item {
  height: 100vh !important;
  position: relative;
}

/* Slide images cover the full area */
section[data-section-id="69c561a06d6e4b21c6d06df9"] .slide-media-container {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

section[data-section-id="69c561a06d6e4b21c6d06df9"] .list-slideshow-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Gradient overlay on slides — dark at top for nav, dark at bottom-left for text */
section[data-section-id="69c561a06d6e4b21c6d06df9"] .slide-media-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Bottom-left corner vignette for text readability */
    radial-gradient(
      ellipse 80% 60% at 0% 100%,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      transparent 70%
    ),
    /* Bottom edge gradient */
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.35) 20%,
      transparent 45%
    ),
    /* Top edge gradient for nav */
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      transparent 20%
    );
  pointer-events: none;
  z-index: 1;
}

/* Slide text content — positioned bottom-left over image */
section[data-section-id="69c561a06d6e4b21c6d06df9"] .slide-content {
  position: absolute !important;
  bottom: 6rem !important;
  left: 4rem !important;
  right: auto !important;
  top: auto !important;
  z-index: 2;
  padding: 0 !important;
  background: none !important;
  max-width: 600px;
}

/* Title — white, large, thin weight */
section[data-section-id="69c561a06d6e4b21c6d06df9"] .list-item-content__title {
  color: var(--sba-text) !important;
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
  font-weight: 200 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 0.5rem !important;
}

/* Description — muted, uppercase, small tracking */
section[data-section-id="69c561a06d6e4b21c6d06df9"] .list-item-content__description,
section[data-section-id="69c561a06d6e4b21c6d06df9"] .list-item-content__description p {
  color: var(--sba-text-muted) !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  line-height: 1.5 !important;
}

/* Hide slideshow arrows — landing page only, no navigation needed */
section[data-section-id="69c561a06d6e4b21c6d06df9"] .desktop-arrows,
section[data-section-id="69c561a06d6e4b21c6d06df9"] .mobile-arrows {
  display: none !important;
}

/* "COLUMBUS, OHIO" label — injected before the title via ::before */
section[data-section-id="69c561a06d6e4b21c6d06df9"] .list-item-content__title::before {
  content: 'COLUMBUS, OHIO';
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sba-accent);
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Scroll indicator — label + chevron, bottom center-right */
section[data-section-id="69c561a06d6e4b21c6d06df9"]::after {
  content: '⌄';
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 10;
  width: 40px;
  text-align: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  animation: chevronBob 2.5s ease-in-out infinite;
}

@keyframes chevronBob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 0.9; }
}

/* "SCROLL" label above chevron — centered to same box */
section[data-section-id="69c561a06d6e4b21c6d06df9"]::before {
  content: 'SCROLL';
  position: absolute;
  bottom: calc(2.5rem + 2rem);
  right: 4rem;
  z-index: 10;
  width: 40px;
  text-align: center;
  white-space: nowrap;
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Hide section border on hero */
section[data-section-id="69c561a06d6e4b21c6d06df9"] .section-border {
  display: none !important;
}


/* ==========================================================
   5. PORTFOLIO GRID
   ========================================================== */

#portfolio .summary-item {
  position: relative;
  overflow: hidden;
}

#portfolio .summary-item .summary-thumbnail {
  transition: transform 0.6s ease;
}

#portfolio .summary-item:hover .summary-thumbnail {
  transform: scale(1.03);
}

#portfolio .summary-item .summary-title,
#portfolio .summary-item .summary-excerpt {
  opacity: 0;
  transition: opacity 0.4s ease;
}

#portfolio .summary-item:hover .summary-title,
#portfolio .summary-item:hover .summary-excerpt {
  opacity: 1;
}

@media (hover: none) {
  #portfolio .summary-item .summary-title,
  #portfolio .summary-item .summary-excerpt {
    opacity: 1;
  }
}


/* ==========================================================
   6. ABOUT SECTION
   Section ID: 69c58420aea2363fae6ea228
   ========================================================== */

/* H2 heading — thin weight, white */
section[data-section-id="69c58420aea2363fae6ea228"] h2 {
  font-weight: 200 !important;
  color: var(--sba-text) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
}

/* Body text — muted color */
section[data-section-id="69c58420aea2363fae6ea228"] p {
  color: var(--sba-text-muted) !important;
  font-size: 1.0625rem !important;
  line-height: 1.75 !important;
  font-weight: 300 !important;
}

/* Principle titles H3 — light weight with gold left border */
section[data-section-id="69c58420aea2363fae6ea228"] h3 {
  font-size: 1.0625rem !important;
  font-weight: 300 !important;
  color: var(--sba-text) !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
  padding-left: 1.5rem !important;
  border-left: 2px solid var(--sba-accent) !important;
  margin-bottom: 0 !important;
}

/* About page team grid */
#team .summary-item {
  position: relative;
  overflow: hidden;
}


/* ==========================================================
   6b. FEATURED PROJECTS SLIDESHOW
   Section ID: 69c5859f3b7752712f05e4b0
   ========================================================== */

/* Slideshow section — constrained height, full bleed, no side gaps */
section[data-section-id="69c5859f3b7752712f05e4b0"] {
  position: relative;
  background: var(--sba-bg) !important;
}

/* Kill the side padding creating white borders */
section[data-section-id="69c5859f3b7752712f05e4b0"] .slideshow-gutter {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Force slides to fill section height */
section[data-section-id="69c5859f3b7752712f05e4b0"] .content-wrapper,
section[data-section-id="69c5859f3b7752712f05e4b0"] .content,
section[data-section-id="69c5859f3b7752712f05e4b0"] .user-items-list,
section[data-section-id="69c5859f3b7752712f05e4b0"] .user-items-list-item-container,
section[data-section-id="69c5859f3b7752712f05e4b0"] .slideshow-wrapper,
section[data-section-id="69c5859f3b7752712f05e4b0"] .slideshow-gutter,
section[data-section-id="69c5859f3b7752712f05e4b0"] .slideshow-holder,
section[data-section-id="69c5859f3b7752712f05e4b0"] .slides {
  height: 100% !important;
}

section[data-section-id="69c5859f3b7752712f05e4b0"] .slide.list-item {
  position: relative !important;
}

/* Slide images cover the area */
section[data-section-id="69c5859f3b7752712f05e4b0"] .slide-media-container {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

section[data-section-id="69c5859f3b7752712f05e4b0"] .list-slideshow-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Gradient overlay — bottom-left vignette for text readability */
section[data-section-id="69c5859f3b7752712f05e4b0"] .slide-media-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 0% 100%,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      transparent 70%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.3) 25%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

/* Slide text — bottom-left positioned */
section[data-section-id="69c5859f3b7752712f05e4b0"] .slide-content {
  position: absolute !important;
  bottom: 2.5rem !important;
  left: 2.5rem !important;
  right: auto !important;
  top: auto !important;
  z-index: 2;
  padding: 0 !important;
  background: none !important;
  max-width: 500px;
}

/* Project title */
section[data-section-id="69c5859f3b7752712f05e4b0"] .list-item-content__title {
  color: var(--sba-text) !important;
  font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
  font-weight: 200 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 4px !important;
}

/* Project location */
section[data-section-id="69c5859f3b7752712f05e4b0"] .list-item-content__description,
section[data-section-id="69c5859f3b7752712f05e4b0"] .list-item-content__description p {
  color: var(--sba-accent) !important;
  font-size: 0.6875rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
}

/* Hide original Squarespace arrow containers — replaced by JS control bar */
section[data-section-id="69c5859f3b7752712f05e4b0"] .desktop-arrows {
  display: none !important;
}

/* Custom slideshow controls bar — [← ] [ 1/4 ] [ → ] */
.sba-slideshow-controls {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Arrow buttons — built from scratch, no Squarespace markup inside */
.sba-arrow {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 0;
  padding: 0;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.sba-arrow:hover {
  border-color: #fff;
  background: rgba(0, 0, 0, 0.6);
}

.sba-arrow svg {
  width: 18px;
  height: 18px;
}

.sba-arrow svg path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
}

/* Counter between arrows */
.sba-counter {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  min-width: 48px;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Hide section border */
section[data-section-id="69c5859f3b7752712f05e4b0"] .section-border {
  display: none !important;
}


/* ==========================================================
   7. CONTACT FORM
   Section ID: 69c5863d2526b8252328c50c
   ========================================================== */

/* Submit button — outlined, white border, transparent bg */
section[data-section-id="69c5863d2526b8252328c50c"] button[type="submit"].button.sqs-system-button,
section[data-section-id="69c5863d2526b8252328c50c"] button[type="submit"] {
  background: transparent !important;
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: var(--sba-text) !important;
  font-size: 0.6875rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 1rem 3rem !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  border-radius: 0 !important;
}

section[data-section-id="69c5863d2526b8252328c50c"] button[type="submit"]:hover {
  border-color: var(--sba-accent) !important;
  color: var(--sba-accent) !important;
}

/* Make sure ALL text inside submit button is visible and white */
section[data-section-id="69c5863d2526b8252328c50c"] button[type="submit"] span,
section[data-section-id="69c5863d2526b8252328c50c"] button[type="submit"] .form-submit-button-label,
section[data-section-id="69c5863d2526b8252328c50c"] button[type="submit"] .form-submit-button-state,
section[data-section-id="69c5863d2526b8252328c50c"] button[type="submit"] .form-submit-button-state span {
  color: inherit !important;
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Only show ONE label — the state span which Squarespace keeps visible */
section[data-section-id="69c5863d2526b8252328c50c"] button[type="submit"] .form-submit-button-label {
  display: none !important;
}

/* Send arrow icon inside submit button */
section[data-section-id="69c5863d2526b8252328c50c"] button[type="submit"] .sba-send-icon {
  display: inline-block !important;
  transition: transform 0.3s ease;
  vertical-align: middle;
  margin-left: 0.5rem;
}

section[data-section-id="69c5863d2526b8252328c50c"] button[type="submit"] .sba-send-icon svg {
  display: inline-block !important;
  vertical-align: middle;
}

section[data-section-id="69c5863d2526b8252328c50c"] button[type="submit"]:hover .sba-send-icon {
  transform: translateX(4px);
}

/* Phone and email link icons */
.sba-contact-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sba-contact-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sba-contact-icon svg path,
.sba-contact-icon svg polyline {
  fill: none;
  stroke: var(--sba-text-muted);
  stroke-width: 1.5;
}

/* Phone and email link text — white, not gold */
section[data-section-id="69c5863d2526b8252328c50c"] a[href^="tel"],
section[data-section-id="69c5863d2526b8252328c50c"] a[href^="mailto"] {
  color: var(--sba-text) !important;
  transition: color 0.3s ease;
}

section[data-section-id="69c5863d2526b8252328c50c"] a[href^="tel"]:hover,
section[data-section-id="69c5863d2526b8252328c50c"] a[href^="mailto"]:hover {
  color: var(--sba-accent) !important;
}


/* ==========================================================
   7b. SECTION DIVIDERS — all removed
   ========================================================== */

.page-section {
  border-top: none !important;
  border-bottom: none !important;
}

#about {
  border-bottom: 1px solid #363535 !important;
}

section[data-section-id="69c589da430108728d80baf8"] {
  border-top: 1px solid #363535 !important;
}

footer#footer-sections.sections {
  border-top: none !important;
}


/* ==========================================================
   8. BUTTONS
   ========================================================== */

[data-sqsp-button] {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 400;
  transition: all 0.3s ease;
}


/* ==========================================================
   9. FOOTER
   ========================================================== */

#footer-sections a {
  transition: color 0.3s ease;
}

#footer-sections a:hover {
  color: var(--sba-accent);
}


/* ==========================================================
   10. REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ==========================================================
   11. EDIT MODE SAFETY
   ========================================================== */

body.sqs-is-page-editing [data-sqsp-block="image"] [data-sqsp-image-block-image] {
  transform: none !important;
}

/* Don't force hero layout in edit mode */
body.sqs-is-page-editing section[data-section-id="69c561a06d6e4b21c6d06df9"],
body.sqs-is-page-editing section[data-section-id="69c561a06d6e4b21c6d06df9"] .content-wrapper,
body.sqs-is-page-editing section[data-section-id="69c561a06d6e4b21c6d06df9"] .content,
body.sqs-is-page-editing section[data-section-id="69c561a06d6e4b21c6d06df9"] .slide.list-item {
  height: auto !important;
  min-height: auto !important;
}


/* ==========================================================
   12. MOBILE
   ========================================================== */

@media (max-width: 767px) {
  h1 {
    font-size: clamp(1.75rem, 7vw, 2.75rem);
    line-height: 1.05;
  }

  /* Hero section — 60vh on mobile */
  section[data-section-id="69c561a06d6e4b21c6d06df9"],
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .content-wrapper,
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .content,
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .user-items-list,
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .user-items-list-item-container,
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .slideshow-wrapper,
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .slideshow-gutter,
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .slideshow-holder,
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .slides,
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .slide.list-item {
    height: 60vh !important;
    min-height: 60vh !important;
  }

  /* Hero text — tight to bottom, override Squarespace relative positioning */
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .slide-content,
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .user-items-list-banner-slideshow .slide-content {
    position: absolute !important;
    bottom: 0 !important;
    left: 1.5rem !important;
    right: 1.5rem !important;
    top: auto !important;
    max-width: calc(100% - 3rem) !important;
    padding-bottom: 0.5rem !important;
    margin: 24px 0px !important;
  }

  /* Stronger gradient on mobile for legibility */
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .slide-media-container::after {
    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        transparent 60%
      ),
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 20%
      ) !important;
  }

  /* Mobile hamburger menu — white */
  .header-burger-btn,
  .header-menu-btn,
  [data-controller="MobileOverlayToggle"],
  button[aria-label="Open Menu"] {
    color: #fff !important;
  }

  .header-burger-btn svg,
  .header-menu-btn svg,
  .header-burger svg {
    fill: #fff !important;
    color: #fff !important;
    stroke: #fff !important;
  }

  /* Hamburger lines */
  .header-burger .top-bun,
  .header-burger .patty,
  .header-burger .bottom-bun {
    background-color: #fff !important;
  }

  /* Mobile menu nav links — match desktop nav font style */
  .header-menu-nav-item a,
  .header-menu-nav-folder-title,
  .header-menu .header-menu-nav-item a {
    font-weight: 400 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    font-size: 0.6875rem !important;
    color: var(--sba-text) !important;
  }

  /* Hero title — smaller on mobile, prevent overflow */
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .list-item-content__title {
    font-size: clamp(1.75rem, 7vw, 2.75rem) !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Columbus Ohio label — smaller on mobile */
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .list-item-content__title::before {
    font-size: 0.5625rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* Description text — prevent overflow */
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .list-item-content__description,
  section[data-section-id="69c561a06d6e4b21c6d06df9"] .list-item-content__description p {
    font-size: 0.6875rem !important;
    word-wrap: break-word !important;
  }

  /* Hide scroll indicator on mobile */
  section[data-section-id="69c561a06d6e4b21c6d06df9"]::after,
  section[data-section-id="69c561a06d6e4b21c6d06df9"]::before {
    display: none !important;
  }

  /* Portfolio hover info always visible on mobile */
  #portfolio .summary-item .summary-title,
  #portfolio .summary-item .summary-excerpt {
    opacity: 1;
  }

  /* Featured Projects section — 60vh on mobile */
  section[data-section-id="69c5859f3b7752712f05e4b0"],
  section[data-section-id="69c5859f3b7752712f05e4b0"] .content-wrapper,
  section[data-section-id="69c5859f3b7752712f05e4b0"] .content,
  section[data-section-id="69c5859f3b7752712f05e4b0"] .user-items-list,
  section[data-section-id="69c5859f3b7752712f05e4b0"] .user-items-list-item-container,
  section[data-section-id="69c5859f3b7752712f05e4b0"] .slideshow-wrapper,
  section[data-section-id="69c5859f3b7752712f05e4b0"] .slideshow-gutter,
  section[data-section-id="69c5859f3b7752712f05e4b0"] .slideshow-holder,
  section[data-section-id="69c5859f3b7752712f05e4b0"] .slides,
  section[data-section-id="69c5859f3b7752712f05e4b0"] .slide.list-item {
    height: 60vh !important;
    min-height: 60vh !important;
  }

  /* Hide Squarespace default mobile arrows */
  section[data-section-id="69c5859f3b7752712f05e4b0"] .mobile-arrows {
    display: none !important;
  }

  /* Custom controls — left-aligned below text */
  section[data-section-id="69c5859f3b7752712f05e4b0"] .sba-slideshow-controls {
    bottom: 1.5rem !important;
    right: auto !important;
    left: 1.5rem !important;
  }

  /* Featured Projects slide text — mobile positioning */
  section[data-section-id="69c5859f3b7752712f05e4b0"] .slide-content,
  section[data-section-id="69c5859f3b7752712f05e4b0"] .user-items-list-banner-slideshow .slide-content {
    position: absolute !important;
    bottom: 5rem !important;
    left: 1.5rem !important;
    right: 1.5rem !important;
    top: auto !important;
    margin: 0 !important;
  }

  /* Stronger gradient on featured projects mobile */
  section[data-section-id="69c5859f3b7752712f05e4b0"] .slide-media-container::after {
    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 35%,
        transparent 65%
      ) !important;
  }
}
