/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #595959;
}

/* Global container for content constraint */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 180px;
    box-sizing: border-box;
}

/* Header */
.site-header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFF4;
    padding: 20px 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    height: 79px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin: 0;
}

/* Hero Section */
.hero-section {
    background: #5a4fcf;
    padding: 40px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;  /* Prevent horizontal scroll */
}

/* Hero image - simpler, smaller */
.hero-image-bleed {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: 42px;
    font-weight: 400;
    color: #FFFFF4;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #FFFFF4;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.star-icon {
    width: 60px;
    height: 60px;
    margin: 1.5rem 0;
    display: block;
}

.stats-grid {
    display: grid;  /* Show stats again */
    grid-template-columns: repeat(4, 1fr);  /* All 4 in one row */
    gap: 20px;
    justify-items: stretch;
    margin: 0 auto;
}

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px 26px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 400;
    line-height:1.15;
    color: #342A99;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #595959;
    margin-bottom: 6px;
}

.stat-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #595959;
    margin-top: 6px;
    line-height: 1.4;
}

/* Form */
.interview-card {
    background: #CCCCFF;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 380px;
    flex-shrink: 0;
}

.form-title {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    font-weight: 400;
    color: #342A99;
    line-height: 1.2;
    margin-bottom: 6px;
}

.form-subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #595959;
    margin-bottom: 20px;
    line-height: 1.35;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    width: 100%;
    padding: 15px 15px;
    background: #FFFFF4;
    font-size: 16px;
    font-family: inherit;
    border: none;
    border-radius: 8px;
}

input::placeholder, textarea::placeholder {
    color: #595959;
}

input:focus, textarea:focus {
    outline: none;
    border: 1px solid #8b7dd8;
}

textarea {
    resize: vertical;
    min-height: 75px;
}

.radio-section {
    margin: 3px 0;
}

.radio-label {
    font-size: 16px;
    color: #595959;
    font-weight: 500;
    display: block;
    margin-bottom: 3px;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.radio-options label {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #595959;
    cursor: pointer;
}

.radio-options input {
    width: auto;
    margin-right: 8px;
}

.submit-btn {
    background: #FFBC57;
    color: #595959;
    padding: 10px 14px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s;
    width: 75%;
    display: block;
    margin: 0 auto;
    border-radius: 8px;        /* rounded corners */
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,152,56,0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Stats Section */
.stats-section {
    background: #5a4fcf;
    padding: 60px 0 100px 0;
}

/* Carrying Section */
.carrying-section {
    background: #F5F3ED;
    padding: 65px 0;
    position: relative;
    overflow: visible;  /* Allow images to overlap vertically */
}

.carrying-text {
    max-width: 600px;
}

.carrying-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 400;
    color: #342A99;
    margin-bottom: 18px;
}

.carrying-section .subtitle {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    color: #595959;
    line-height: 1.45;
    margin-bottom: 10px;
}

.carrying-section .text {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #595959;
    line-height: 1.45;
    margin-bottom: 8px;
}

.carrying-section .text:last-child {
    margin-bottom: 0;
}

/* Full-bleed gallery images */
.carrying-section .container {
    position: relative; /* anchor images inside container */
}

.image-grid-bleed {
    position: absolute;
    right: -250px;   /* push right, overflow will clip */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
    height: 700px;
}

/* Picture wrappers */
.image-grid-bleed picture {
    display: block;
    width: 350px;
    height: 350px;
    margin-left: -180px;
    position: relative;
}

/* Target the actual images */
.image-grid-bleed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 15px solid white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    display: block;
}

/* Positioning for overlap */
.image-grid-bleed picture:first-child {
    margin-left: 0;
    z-index: 1;
    margin-top: -100px;
}

.image-grid-bleed picture:nth-child(2) {
    z-index: 2;
    margin-top: 100px;
}

.image-grid-bleed picture:nth-child(3) {
    z-index: 3;
    margin-top: -100px;
}

.image-grid-bleed picture:nth-child(4) {
    z-index: 4;
    margin-top: 100px;
}

/* Testimonials */
.testimonials-section {
    background: #5a4fcf;
    padding: 120px 0;
}

.testimonials-section .container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial-card {
    background: #F5F3ED;
    padding: 26px 24px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    flex: 1;
    max-width: 330px;
}

.testimonial-card p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #595959;
    line-height: 1.4;
    margin-bottom: 18px;
}

.author {
    font-size: 14px;
    color: #342A99;
    font-weight: 600;
}

/* Not Alone Section */
.not-alone-section {
    background: #F5F3ED;
    padding: 65px 0;
    position: relative;
    overflow: visible;
}

.not-alone-content {
    max-width: 600px;
}

.not-alone-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 400;
    color: #342A99;
    margin-bottom: 18px;
}

.not-alone-section .bold {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #595959;
    line-height: 1.45;
    margin-bottom: 16px;
}

.not-alone-section p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    color: #595959;
    line-height: 1.45;
    margin-bottom: 10px;
}

/* Wrapper lets the image overlap sections */
.not-alone-section .container {
    position: relative; /* anchor hands to container */
}

.hands-wrapper {
  position: absolute;
  top: 50%;              /* center vertically in container */
  right: 0;              /* align to right edge of container */
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

/* Hands image */
.hands-image-bleed {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: block;

  /* Overlap into adjacent sections */
  margin-top: -100px;   /* pushes up into Testimonials */
  margin-bottom: -100px;/* pushes down into Founders */
}

/* Founders Section */
.founders-section {
    background: #5a4fcf;
    padding: 65px 0;
    text-align: center;
}

.founders-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    font-weight: 400;
    color: #FFFFF4;
    margin-bottom: 10px;
}

.founders-section > p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    color: #FFFFF4;
    margin-bottom: 40px;
}
/* Force paragraph color in Founders section */
.founders-section .container > p {
    color: #FFFFF4 !important;
}

.founders-grid {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-bottom: 45px;
}

.founder {
    text-align: center;
}

.founder img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #FFFFF4;
    margin-top: 30px;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.founder h3 {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFF4;
    margin-bottom: 3px;
}

.founder p {
    font-size: 16px;
    color: #FFFFF4;
    margin-bottom: 10px;
}

.founder a {
    display: inline-block;
}

.contact {
    color: #FFFFF4;
    font-size: 16px;
    margin-bottom: 35px;
}

.contact p {
    margin-bottom: 5px;
}

.contact a {
    color: #FFFFF4;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.founders-section .star-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: #5A4FCF;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

footer a {
    color: #FFFFF4;
    text-decoration: none;
    font-size: 13px;
}

footer a:hover {
    color:#FFFFF4;
}

footer span {
    color: #FFFFF4;
    font-size: 13px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    /* Hero remains side-by-side on tablet, just smaller */
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-left {
        gap: 1.5rem;
    }
    
    .hero-image-bleed {
        width: 350px;
        height: 350px;
    }
    
    .interview-card {
        max-width: 350px;
    }

    .image-grid-bleed,
    .hands-image-bleed {
        position: relative;
        right: auto;
        transform: none;
        margin: 40px auto 0;
        justify-content: center;
    }
    
    .not-alone-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hands-wrapper {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 40px auto 0;
        text-align: center;
    }
    
    .hands-image-bleed {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    body {
        font-size: 16px;
    }
    
    /* Stack hero content vertically on mobile */
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-left {
        flex-direction: column;
    }
    
    .hero-image-bleed {
        width: 280px;
        height: 280px;
    }
    
    .hero-text {
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .star-icon {
        margin: 1rem auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;  /* 2x2 grid on mobile */
        width: 100%;
    }
    
    .interview-card {
        width: 100%;
    }
    
    /* Hide gallery images on mobile - they don't work well */
    .image-grid-bleed {
        display: none;
    }
    
    .image-grid-bleed img {
        width: 150px;
        height: 150px;
        margin-left: -30px;
    }
    
    .hands-image-bleed {
        width: 280px;
        height: 280px;
    }
    
    .testimonials-section .container {
        flex-direction: column;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
    
    .founders-grid {
        flex-direction: column;
        gap: 40px;
    }
}