:root {
            /* Core Brand Colors - from logo */
           --primary-teal: #5dcad1; 
            --dark-navy: #1d3552;
            --mid-navy: #2f5972;
            --warm-gold: #f3cd74;
            --warm-gold-hover: #E8B43A;
            --pale-mint: #f5fbf9;
            --pale-gold: #FEF7E0;
            --pale-navy: #EDF2F5;
            --white: #ffffff;
            
            /* Clean Design Variables */
            --text-primary: #1a1a1a;
            --text-secondary: #4a4a4a;
            --border-light: #e5e5e5;
            --border-medium: #cccccc;
            --shadow-crisp: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
        }

        body {
            font-family: 'Work Sans', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            background: var(--white);
            overflow-x: hidden;
        }

        /* Bold Typography System */
        h1, h2, h3, h4 {
            font-family: 'Oswald', sans-serif;
            font-weight: 700;
            letter-spacing: 0.02em;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--mid-navy);
        }

    h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
    h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
    h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
    h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

        .section-label {
            font-family: 'Bebas Neue', cursive;
            font-size: 1rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--dark-navy);
            font-weight: 400;
        }

	#wrapperfooter h4 {
	color: var(--white);
	font-weight: 300;
	letter-spacing: 0.04em;
	}
	
/*remove border shadow on logo */
 .tck-logo-img {
    display: block;
    box-shadow: none;
    max-width: 150px;
}

/* center logo on mobile */
@media (max-width: 758px) {
    .tck-logo-img {
        width: auto !important;
        height: auto !important;
        max-width: 150px;
        display: block;
        margin: 0 auto;
    }

/* remove sticky banner on mobile */
    #bannerrow {
        position: static !important;
        top: unset !important;
    }
}

        .phone-nav {
            color: var(--white);
            background: var(--dark-navy);
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid var(--dark-navy);
            padding: 0.5rem 1.25rem;
            transition: all 0.3s;
            text-decoration: none;
             border-radius: 30px;
        }

        .phone-nav:hover {
            background: var(--primary-teal);
            border-color: var(--primary-teal);
            color: var(--white);
        }
        
/* Primary Button (--dark-navy)*/
.cta-primary {
    display: inline-block;
    background: var(--warm-gold);
    color: var(--dark-navy);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    border: 2px solid var(--warm-gold);
    transition: all 0.3s;
    border-radius: 30px;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.cta-primary:hover {
    text-decoration: none;
    background: var(--warm-gold-hover);
    border-color: var(--warm-gold-hover);
    color: var(--dark-navy);
}

/*Secondary Button (--gold) */
.cta-secondary {
    background: var(--warm-gold);
            border-color: var(--warm-gold);
            color: var(--dark-navy);
            padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    border: 2px solid var(--warm-gold);
    transition: all 0.3s;
    border-radius: 30px;
            margin-bottom: 1.5rem;
            animation: slideInUp 0.8s ease-out 0.5s both;
}

.cta-secondary:hover {
    background: var(--warm-gold-hover);
            border-color: var(--warm-gold-hover);
            color: var(--white);
            text-decoration: none;
}

/* Global link defaults */
a {
    color: var(--dark-navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

    /* ── Hero Section ─────────────────────────────────────────── */

        /* Grid lives on .hero so the right column bleeds to the viewport edge */
      .hero {
    position: relative;
    min-height: 85vh;
    background: var(--primary-teal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

        /* Container dissolves — layout is driven by the hero grid */
        .hero .container {
            display: contents;
        }

        /* hero-split dissolves — its children become direct grid items */
        .hero-split {
            display: contents;
        }

        /* Left: copy panel — padding mirrors .container margin on wide screens */
        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 3rem 3rem 3rem max(2rem, calc((100vw - 1400px) / 2));
            border-right: 4px solid var(--primary-teal);
            animation: slideInUp 0.8s ease-out;
            min-height: 85vh;
             width: 100%;
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero-label {
            color: var(--dark-navy);
            margin-bottom: 1rem;
            display: inline-block;
            animation: fadeIn 0.8s ease-out 0.2s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        .hero h1 {
            color: var(--dark-navy);
            margin-bottom: 1.5rem;
            animation: slideInUp 0.8s ease-out 0.3s both;
        }

        .hero-subtitle {
            color: var(--dark-navy);
            font-size: 1.2rem;
            font-weight: 400;
            line-height: 1.7;
            border-left: 3px solid var(--warm-gold);
            padding-left: 1rem;
            margin-bottom: 2rem;
            animation: slideInUp 0.8s ease-out 0.4s both;
        }
        
        .hero-mirror {
            grid-template-columns: 1fr 1fr;
        }

        .hero-mirror .hero-content {
            order: 2;
            border-right: none;
            border-left: 4px solid var(--dark-navy);
            padding: 3rem max(2rem, calc((100vw - 1400px) / 2)) 3rem 3rem;
        }

        .hero-mirror .hero-photo {
            order: 1;
        }

        /* Gold CTA in the hero */
/*        .hero .cta-primary {
            background: var(--warm-gold);
            border-color: var(--warm-gold);
            color: var(--dark-navy);
            margin-bottom: 1.5rem;
            animation: slideInUp 0.8s ease-out 0.5s both;
        }

        .hero .cta-primary:hover {
            background: var(--warm-gold-hover);
            border-color: var(--warm-gold-hover);
        }*/

        /* Trust bullets */
        .hero-trust {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            color:var(--dark-navy);
        }

        .hero-trust-item strong {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }

        .hero-trust-dot {
            width: 6px;
            height: 6px;
            background: var(--dark-navy);
            flex-shrink: 0;
            display: inline-block;
        }

        /* Right: photo panel — fills edge to edge, floor to ceiling */
        .hero-photo {
            position: relative;
            background: var(--dark-navy);
            overflow: hidden;
            align-self: stretch;
        }

.hero-photo img {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 40% top !important;
}

        /* Overrides global .photo-box height: 400px */
        .hero .photo-box {
            height: 100%;
            min-height: 85vh;
            border: none;
        }

        /* Hides the "PHOTO" placeholder text in hero */
        .hero .photo-box::after {
            display: none;
        }

        /* Availability badge */
.hero-availability {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--primary-teal);
    border-bottom: 3px solid var(--warm-gold);
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--dark-navy);
    line-height: 1.4;
    z-index: 2;
}

.hero-availability span {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--dark-navy);
    letter-spacing: 0;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero-content {
        min-height: unset;
        padding: 2.5rem 2rem;
        border-right: none;
        border-bottom: 4px solid var(--primary-teal);
    }

    .hero-photo {
        overflow: visible;
    }

 @media (max-width: 1024px) {
    .hero-photo img {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        object-fit: unset !important;
        object-position: unset !important;
        display: block !important;
        top: unset !important;
        bottom: unset !important;
        left: unset !important;
        right: unset !important;
    }
}

    .hero .photo-box {
        height: auto;
        min-height: unset;
    }

    .hero-mirror .hero-content {
        border-left: none;
        border-bottom: 4px solid var(--primary-teal);
        padding: 2.5rem 2rem;
        order: 1;
    }

    .hero-mirror .hero-photo {
        order: 2;
    }
}
        /* ── end Hero Section ─────────────────────────────────────── */

   /* ============================================================
       SHARED HERO Variations BASE
    ============================================================ */
    .hero-var {
      position: relative;
      width: 100%;
           overflow: hidden;
      background-color: var(--primary-teal);
        min-height: 30vh;
    }
 
    .hero-var__overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
 
    .hero-var__content {
      position: relative;
      z-index: 2;
    }
 

 
   .hero-var__heading {
    color: var(--mid-navy);
    line-height: 1.15;
    margin-bottom: 12px;
    text-align: center;
    animation: slideInUp 0.8s ease-out;
    padding: 0;
    min-height: unset;
}

.hero-var--split .hero-var__heading::after {
    content: '';
    display: block;
    width: 25%;
    height: 3px;
    background: var(--warm-gold);
    margin: 1rem auto 1.5rem;
}
 
    .hero-var__copy {
      font-size: clamp(13px, 1.5vw, 19px);
      color: var(--dark-navy);
      line-height: 1.65;
      margin-bottom: 22px;
    }
    
    .hero-var--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 30vh;
}

.hero-var__photo {
    position: relative;
    overflow: hidden;
}

 .hero-var__photo img {
/* position: absolute !important; */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 0 !important;
    box-shadow: none !important; 
}

.hero-var--split .hero-var__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
    background: var(--primary-teal);
}

.hero-var--split .hero-var__overlay {
    display: none;
}

@media (max-width: 768px) {
    .hero-var--split {
        grid-template-columns: 1fr;
    }

    .hero-var__photo {
        height: 250px;
        position: relative;
    }

    .hero-var__photo img {
        position: absolute !important;
    }
}
    
    img {
    box-shadow: var(--shadow-crisp);
    border-radius: 12px;
}
 
    .btn {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 600;
      padding: 11px 24px;
      border-radius: 5px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
 
    .btn--solid {
      background: var(--gold);
      color: var(--navy-dark);
      border: 2px solid var(--gold);
    }
    .btn--solid:hover {
      background: var(--gold-dark);
      border-color: var(--gold-dark);
    }
 
    .btn--outline {
      background: transparent;
      color: var(--gold);
      border: 2px solid var(--gold);
    }
    .btn--outline:hover {
      background: var(--gold);
      color: var(--navy-dark);
    }

    .hero--fade-left .hero-var__overlay {
      background: linear-gradient(
        to right,
        rgba(17, 27, 51, 0.94) 0%,
        rgba(17, 27, 51, 0.78) 40%,
        rgba(17, 27, 51, 0.30) 70%,
        rgba(17, 27, 51, 0.00) 100%
      );
    }
 
    .hero--fade-left .hero-var__content {
      padding: 52px 48px 48px;
      max-width: 520px;
    }
 
    .hero--fade-left .hero-var__copy {
      max-width: 400px;
    }
 
    .hero--fade-bottom {
      min-height: 320px;
      display: flex;
      align-items: flex-end;
    }
 
    .hero--fade-bottom .hero-var__overlay {
      background: linear-gradient(
        to top,
        rgba(17, 27, 51, 0.97) 0%,
        rgba(17, 27, 51, 0.70) 40%,
        rgba(17, 27, 51, 0.15) 70%,
        rgba(17, 27, 51, 0.00) 100%
      );
    }
 
    .hero--fade-bottom .hero-var__content {
      width: 100%;
      padding: 0 48px 40px;
      max-width: 560px;
    }
 
    .hero-var--centered {
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .hero-var--centered .hero-var__overlay {
      background: rgba(17, 27, 51, 0.62);
    }
    
    .hero-var--centered .hero-var__heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
 
    .hero-var--centered .hero-var__content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 1000px;
    }
 
    .hero-var--centered .hero-var__copy {
      max-width: 1000px;
    }
 
    .hero-var--centered .hero-var__heading::after {
      content: '';
      display: block;
      width: 25%;
      height: 3px;
      background: var(--warm-gold);
      margin: 50px auto 0;
    }
 
    @media (max-width: 600px) {
      .hero--fade-left .hero-var__content,
      .hero--fade-bottom .hero-var__content {
        padding: 36px 24px 32px;
        max-width: 100%;
      }
 
      .hero--fade-left .hero-var__overlay {
        background: linear-gradient(
          to right,
          rgba(17, 27, 51, 0.94) 0%,
          rgba(17, 27, 51, 0.85) 60%,
          rgba(17, 27, 51, 0.60) 100%
        );
      }
 
      .hero--centered .hero-var__content {
        padding: 40px 24px;
      }
    }

        .cta-primary {
            display: inline-block;
            background: var(--dark-navy);
            color: var(--white);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            width: fit-content;
            border: 2px solid var(--dark-navy);
            transition: all 0.3s;
            border-radius: 30px;
        }

        .cta-primary:hover {
            background: var(--primary-teal);
            border-color: var(--primary-teal);
            color: var(--white);
        }
 
/* Full-width Hero with dark fade left*/

.hero--fade-left .hero-var__content {
    padding-left: 6rem;
    max-width: 600px;
}

.hero--fade-left {
    min-height: 70vh;
}

.hero--fade-left img {
    object-position: right center;
}

@media (max-width: 768px) {
    .hero--fade-left {
        min-height: unset;
    }

    .hero--fade-left .hero-var__content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        max-width: 100%;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
     .hero--fade-left .section-label {
        font-size: 0.82rem;
        letter-spacing: 0.08em;
    }

    .hero--fade-left .cta-primary {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .hero--fade-left .hero-var__heading {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .hero--fade-left .hero-var__copy {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .hero--fade-left img {
        object-position: 70% 20%;
    }

    .hero--fade-left .hero-var__overlay {
    background: linear-gradient(
        to right,
        rgba(17, 27, 51, 0.75) 0%,
        rgba(17, 27, 51, 0.55) 40%,
        rgba(17, 27, 51, 0.15) 70%,
        rgba(17, 27, 51, 0.00) 100%
    );
    }
}

/* Full-width Hero with light fade right*/

.hero--fade-right {
    min-height: 70vh;
}

.hero--fade-right img {
    object-position: left center;
}

.hero--fade-right .hero-var__content {
    padding-right: 6rem;
    padding-left: 2rem;
    padding-top: 52px;
    padding-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
}

.hero--fade-right .hero-var__overlay {
    background: linear-gradient(
        to left,
        rgba(29, 53, 82, 0.70) 0%,
        rgba(29, 53, 82, 0.45) 40%,
        rgba(29, 53, 82, 0.10) 70%,
        rgba(29, 53, 82, 0.00) 100%
    );

}

@media (max-width: 768px) {
    .hero--fade-right {
        min-height: unset;
    }

    .hero--fade-right .hero-var__content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        max-width: 100%;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        margin-left: 0;
    }

    .hero--fade-right img {
        object-position: center 20%;
    }

    .hero--fade-right .hero-var__overlay {
        background: linear-gradient(
            to left,
            rgba(15, 110, 86, 0.75) 0%,
            rgba(15, 110, 86, 0.55) 40%,
            rgba(15, 110, 86, 0.15) 70%,
            rgba(15, 110, 86, 0.00) 100%
        );
    }
}

/* Full-width
----------------------------------------------------------*/
.full-width {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

/* Icon Colors
----------------------------------------------------------*/
.fa-duotone {
  --fa-primary-color: #5DC9D1;
  --fa-secondary-color: #F3CD74;
  --fa-secondary-opacity: 0.4;
}

        /* Stats Bar */
        .stats-bar {
            background: var(--white);
            padding: 3rem 0;
            border-top: 4px solid var(--warm-gold);
            border-bottom: 1px solid var(--border-light);
        }

        .stats-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 0rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
            animation: fadeIn 1s ease-out;
            padding: 1.5rem;
        }

        .stat-number {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-teal);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 1rem;
            font-weight: 500;
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background: var(--pale-mint);
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            padding-left: calc(50vw - 50%);
            padding-right: calc(50vw - 50%);
        }

        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header .section-label {
            margin-bottom: 1rem;
            display: block;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border: 2px solid var(--border-light);
            border-left: 4px solid var(--primary-teal);
            transition: all 0.3s;
            position: relative;
        }

        .service-card:hover {
            border-left-color: var(--warm-gold);
            box-shadow: var(--shadow-hover);
        }

        .service-card h3 {
            color: var(--dark-navy);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .service-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .service-card ul {
            list-style: none;
            margin-top: 1.5rem;
        }

        .service-card li {
            font-size: 0.95rem;
            padding: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-light);
        }

        .service-card li:last-child {
            border-bottom: none;
        }

        .service-card li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary-teal);
            font-weight: bold;
        }

        /* Testimonial Section */
        .testimonials {
            background: var(--pale-gold);
            padding: 6rem 0;
            position: relative;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            padding-left: calc(50vw - 50%);
            padding-right: calc(50vw - 50%);
        }

        .testimonial-card {
            background: var(--white);
            padding: 3rem;
            max-width: 900px;
            margin: 0 auto;
            border: 2px solid var(--border-light);
            border-left: 6px solid var(--warm-gold);
            box-shadow: var(--shadow-crisp);
            position: relative;
        }

        .testimonial-text {
            color: var(--text-primary);
            font-size: 1.25rem;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            color: var(--mid-navy);
            font-weight: 600;
            font-size: 1rem;
            font-style: normal;
        }

        /* Unique Approach Section */
        .approach {
            padding: 6rem 0;
            background: var(--white);
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .approach-item {
            background: var(--white);
            padding: 2rem;
            border: 2px solid var(--border-light);
            border-top: 4px solid var(--primary-teal);
            transition: all 0.3s;
        }

        .approach-item:hover {
            border-top-color: var(--warm-gold);
            border-top-width: 6px;
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .approach-icon {
            font-family: "Font Awesome 6 Pro" !Important;
            font-size: 3.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .approach-item h3 {
            color: var(--nark-navy);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .approach-item p {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
/* Blockquote
------------------------------------------------------*/

blockquote.bio-quote {
    border-left: 4px solid var(--warm-gold);
    background: var(--pale-gold);
    padding: 2rem 2.5rem;
    margin: 3rem auto;
    border-radius: 0 12px 12px 0;
    position: relative;
    max-width: 75%;
}

blockquote.bio-quote::before {
    content: '\201C';
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: var(--warm-gold);
    opacity: 0.4;
    position: absolute;
    top: -1rem;
    left: 1rem;
    line-height: 1;
}

blockquote.bio-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--mid-navy);
    line-height: 1.8;
    margin: 0 0 0.75rem;
    padding-left: 2rem;
}

blockquote.bio-quote cite {
    display: block;
    text-align: right;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
    color: var(--mid-navy);
    padding-left: 2rem;
}

/* Photo Boxes - Base
----------------------------------------------------------*/
.photo-box {
    width: 100%;
    background: #f5f5f5;
    position: relative;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.photo-box img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 12px 12px 0 0;
}

.photo-caption {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    border: 1px solid var(--border-medium);
    border-top: 4px solid var(--warm-gold);
    border-radius: 0 0 12px 12px;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    display: block;
    position: static;
}

        /* Treatment Section with Photos */
        .treatment-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 3rem;
        }

      

        .treatment-content h3 {
            color: var(--dark-navy);
            margin-bottom: 1rem;
        }

        .treatment-content p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .treatment-content ul {
            list-style: none;
            margin-top: 1.5rem;
        }

        .treatment-content li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-secondary);
        }

        .treatment-content li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary-teal);
            font-weight: bold;
        }

        /* Side-by-side Photo Grid */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .photo-box-small {
            height: 300px;
        }

/* Facility Photos
----------------------------------------------------------*/
.facility-section {
    background: var(--white);
    padding: 6rem 0;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.photo-box-facility {
    height: auto;
    overflow: visible; /* must be visible so caption is not clipped */
}

.photo-box-facility img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 1024px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .photo-box-facility img {
        height: 400px;
    }

    .facility-section {
        padding: 3rem 0;
        margin-bottom: 3rem !important;
    }
}

        /* Team Photo Section */
        .team-section {
            background: var(--pale-navy);
            padding: 6rem 0;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            padding-left: calc(50vw - 50%);
            padding-right: calc(50vw - 50%);
        }

        .team-layout {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 4rem;
            align-items: start;
            margin-top: 3rem;
        }

        .team-photo {
            height: 500px;
            position: sticky;
            top: 100px;
        }

        .team-bio h3 {
            color: var(--charcoal);
            margin-bottom: 1.5rem;
        }

        .team-bio p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Responsive adjustments for photos */
        @media (max-width: 1024px) {
            .treatment-showcase,
            .team-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .treatment-photo-large,
            .team-photo {
                height: 350px;
                position: static;
            }

            .photo-grid {
                grid-template-columns: 1fr;
            }
        }
        
@media (max-width: 768px) {
    .treatment-photo-large {
        height: 75vh;
        width: calc(100vw - 2rem);
        margin-left: calc(-50vw + 50% + 1rem);
        margin-right: calc(-50vw + 50% + 1rem);
        border-radius: 8px;
    }
}
    
    .treatment-photo-large img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
    }
}

        /* Women's Services Section */
        .women-services {
            padding: 6rem 0;
            background: var(--white);
        }

        /* CTA Section */
        .cta-section {
            background: var(--mid-navy);
            padding: 6rem 0;
            text-align: center;
            position: relative;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            padding-left: calc(50vw - 50%);
            padding-right: calc(50vw - 50%);
        }

        .cta-section .container {
            position: relative;
            z-index: 10;
        }

        .cta-section h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

 /*       .cta-section .cta-primary {
            background: var(--warm-gold);
            border-color: var(--warm-gold);
            color:var(--dark-navy);
            font-weight: 700;
        }

        .cta-section .cta-primary:hover {
              background: var(--warm-gold-hover);
              border-color: var(--warm-gold-hover);
              color: var(--dark-navy);
}*/

        /* Footer */
        footer {
            background: #f8f8f8;
            padding: 4rem 0 2rem;
            color: var(--text-primary);
            border-top: 1px solid var(--border-light);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--charcoal);
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--primary-teal);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

/* Global Responsive
----------------------------------------------------------*/
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }

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

            .hero-content {
                min-height: unset;
                padding: 2.5rem 2rem;
                border-right: none;
                border-bottom: 4px solid var(--primary-teal);
            }

           .hero-photo {
    position: relative;
    align-self: stretch;
}

            .hero-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

            .hero .photo-box {
                height: auto;
                min-height: unset;
            }
            

            .stats-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .treatment-showcase {
                grid-template-columns: 1fr;
            }

            .treatment-photo-large {
                height: 300px;
            }

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

            .team-photo {
                height: 350px;
                position: static;
            }
        }

/* accordion adjustment
---------------------------------------------------------*/
.faq-item {
    border-bottom: 2px solid #d0d0d0 !important;
    border-radius: .375rem !important;
    margin-bottom: 8px !important;
    display: block !important;
    scroll-margin-top: 200px;
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    color: var(--primary);
    padding: .75rem 1rem;
    border-bottom: 4px solid var(--warm-gold);
    border-radius: .375rem .375rem 0 0;
    cursor: pointer;
    margin-top: 2rem;
}

details[open] summary {
    border-bottom-left-radius: .375rem;
    border-bottom-right-radius: .375rem;
}

summary::after {
    content: "▶";
    font-weight: bold;
}

details[open] summary::after {
    content: "▼";
}

summary::-webkit-details-marker {
    display: none;
}

summary {
    list-style: none;
}

.answer {
    padding: 1rem;
}

/* constrain FAQ width on desktop only */
@media (min-width: 992px) {
    #mod-custom138,
    #mod-custom137 {
        max-width: 75%;
    }
}

/* FAQ table
--------------------------------------------------------*/
.table {
    width: 100%;
}

.table thead th {
    background-color: var(--primary-teal);
    color: var(--mid-navy);
    font-weight: bold;
}

.table tbody tr:nth-child(odd) {
    background-color: #f8f8f8;
}

.table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.table td:first-child {
    font-weight: bold;
    word-break: keep-all;
    min-width: 140px;
}

/* Table - tablet and mobile */
@media (max-width: 991px) {
    #mod-custom138,
    #mod-custom137 {
        max-width: 100%;
    }

    .table thead {
        display: none;
    }

    .table tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 1px solid #d0d0d0;
        border-radius: .375rem;
        overflow: hidden;
        background-color: #ffffff;
    }

    .table td {
        display: block;
        text-align: left;
        padding: .75rem 1rem;
        border-bottom: 1px solid #eee;
        white-space: normal;
        width: 100%;
        box-sizing: border-box;
        background-color: #ffffff;
    }

    .table td::before {
        content: attr(data-label);
        display: block;
        font-weight: bold;
        color: var(--warm-gold);
        margin-bottom: .35rem;
        font-size: .85rem;
        text-transform: uppercase;
        letter-spacing: .05em;
    }

    .table td:first-child {
        background-color: #f8f8f8;
        color: var(--primary);
        font-weight: bold;
        border-bottom: 3px solid var(--warm-gold);
        white-space: normal;
        min-width: unset;
    }

    .table td:last-child {
        border-bottom: none;
    }
}

/* FAQ - side menu bar
------------------------------------------------------------*/
.faq-nav {
    background-color: #f8f8f8;
    border-left: 4px solid var(--warm-gold);
    padding: 1.25rem 1.5rem;
    border-radius: 0 .375rem .375rem 0;
}

.faq-nav h4 {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 1rem;
}

.faq-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-nav ul li {
    border-bottom: 1px solid #e0e0e0;
    padding: .5rem 0;
}

.faq-nav ul li:last-child {
    border-bottom: none;
}

.faq-nav ul li a {
    color: var(--dark-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    transition: color 0.2s ease;
}

.faq-nav ul li a:hover {
    color: var(--primary-teal);
    padding-left: 6px;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column-reverse;
    }
    
    .faq-nav {
        position: static !important;
        margin-bottom: 1.5rem;
        border-left: none;
        border-top: 4px solid var(--warm-gold);
        border-radius: .375rem;
    }
}

/* FAQ - anchor scroll offset
------------------------------------------------------------*/
.faq-anchor {
    scroll-margin-top: 200px;
}

/* FAQ - sidebar sticky position
------------------------------------------------------------*/
.sticky-top {
    top: 300px !important;
}

/* Contact page
------------------------------------------------------------*/
.item-page, .article-fulltext {
  width: 100% !important;
  max-width: 100% !important;
}

.contact-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 2px solid var(--border-light);
    margin: 3rem 0 0;
}

.contact-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 2px solid var(--border-light);
    border-top: none;
    margin-bottom: 3rem;
}

.contact-panel {
    padding: 2.5rem;
}

.contact-top .contact-panel:first-child,
.contact-bottom .contact-panel:first-child {
    border-right: 2px solid var(--border-light);
}

.contact-bottom .contact-panel:first-child {
    background: var(--pale-gold);
}

.contact-panel-header {
    border-left: 4px solid var(--primary-teal);
    padding-left: 1rem;
    margin-bottom: 1.75rem;
}

.contact-panel-header h2 {
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 0;
}

.calendly-block {
    background: var(--pale-gold);
    border: 2px dashed var(--warm-gold);
    padding: 0;
    width: 100%;
}

.calendly-block .calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    width: 100%;
}

.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-row { display: flex; gap: 1rem; align-items: flex-start; }

.contact-icon-box {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.contact-icon-box + div strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--dark-navy);
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}

.contact-icon-box + div span {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.contact-map-block {
    width: 100%;
    overflow: hidden;
}

.contact-map-block p {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.contact-map-block iframe {
    width: 100% !important;
    height: 600px !important;
    display: block;
}

.contact-trust-bar {
    background: var(--pale-gold);
    border-top: 2px solid var(--warm-gold);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-trust-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1;
}

.contact-trust-desc {
    font-family: 'Bebas Neue', cursive;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    line-height: 1;
}

.contact-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
}

@media (max-width: 768px) {
    .contact-top,
    .contact-bottom {
        grid-template-columns: 1fr;
    }

    .contact-top .contact-panel:first-child,
    .contact-bottom .contact-panel:first-child {
        border-right: none;
        border-bottom: 2px solid var(--border-light);
    }

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

    .contact-trust-item:nth-child(2) {
        border-right: none;
    }

    .calendly-block {
        background: transparent !important;
        border: none !important;
    }
}

@media only screen and (max-width: 640px) {
    .contact-map-panel .contact-map-panel-inner {
        flex-wrap: wrap !important;
    }
    .contact-map-panel .contact-map-panel-inner > div {
        width: 100% !important;
    }
}