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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Avenir Next', 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Font families */
h1, h2, h3, h4, h5, h6,
.hero-names,
.main-title,
.founder-name,
.wines-title,
.crowdfunding-title,
.funding-name,
.contact-title,
.adventure-title {
    font-family: 'Playfair Display', 'The Seasons', serif;
}

.adventure-subtitle {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    background-color: transparent;
    padding: 0.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

/* Section Navigator Button */
.section-navigator {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.section-navigator:hover {
    background-color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.section-navigator svg {
    width: 24px;
    height: 24px;
    stroke: #000000;
    transition: stroke 0.3s ease;
}

.section-navigator:hover svg {
    stroke: #ffffff;
}

.lang-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.lang-btn.active {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Hero Grapes Section */
.hero-grapes {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-grapes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
}

.hero-names {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.05em;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-name-line {
    display: block;
    white-space: nowrap;
}

.hero-ampersand {
    display: block;
    font-size: 0.8em;
}

/* Main Hero Section */
.main-hero {
    background-color: #1a1a1a;
    padding: 8rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.main-hero-container {
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

.hero-image-section {
    background-color: #1a1a1a;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 3rem;
}

.couple-photo {
    width: 100%;
    height: 750px;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
}

.hero-text-section {
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 6rem;
    border-radius: 4px;
    min-height: 650px;
    margin-right: 3rem;
}

.main-title {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 0.85;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: right;
}

.hero-description {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: justify;
}

.hero-availability {
    font-style: italic;
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Founders Section */
.founders-section {
    background-color: #000000;
    padding: 4rem;
    height: 90vh;
    min-height: 650px;
}

.founders-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 100%;
}

.founder-block {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    min-height: 650px;
}

.founder-photo {
    padding: 2rem;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.founder-photo img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 4px;
}

.founder-info,
.founder-content {
    padding: 1rem 2.5rem 2.5rem 2.5rem;
    flex: 1;
    text-align: justify;
}

.founder-name {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.founder-bio {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    text-align: justify;
}

/* Wines Section */
.wines-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #000000;
}

.wines-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wines-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.2) contrast(0.9);
    opacity: 0.85;
}

.wines-text {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4rem;
}

.wines-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.wines-location {
    font-size: 0.65em;
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-top: 1.5rem;
    letter-spacing: 0.05em;
}

/* Adventure Section */
.adventure-section {
    background-color: #000000;
    min-height: 100vh;
}

.adventure-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    align-items: stretch;
    gap: 0;
}

.adventure-content {
    padding: 8rem 7rem;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.adventure-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
    line-height: 0.95;
    text-transform: uppercase;
}

.adventure-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3.5rem;
    letter-spacing: 0.1em;
}

.adventure-text {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.adventure-image {
    padding: 3rem 3rem 3rem 0;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adventure-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

/* Gallery Section */
.gallery-section {
    background-color: #2a2a2a;
    padding: 4rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: #ffffff;
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: #ffffff;
}

/* Crowdfunding Section */
.crowdfunding-section {
    background-color: #1a1a1a;
    padding: 6rem 3rem;
}

.crowdfunding-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.crowdfunding-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.crowdfunding-intro {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
}

.crowdfunding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.funding-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2a2a2a;
}

.funding-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: #3a3a3a;
}

.funding-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.funding-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.funding-card:hover .funding-image img {
    transform: scale(1.05);
}

.funding-content {
    padding: 2rem;
}

.funding-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.funding-price {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.funding-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.crowdfunding-footer {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 3rem 0 0;
    border-top: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.crowdfunding-disclaimer h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.crowdfunding-disclaimer p {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0.5rem 0;
    font-style: italic;
}

.crowdfunding-contact {
    background-color: #ffffff;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border: 2px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.crowdfunding-contact:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Newsletter Section */
.newsletter-section {
    max-width: 800px;
    margin: 5rem auto 0;
    padding: 3rem 2rem 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.newsletter-description {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background-color: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 4px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ffffff;
    background-color: #000000;
}

.newsletter-input::placeholder {
    color: #666666;
}

.newsletter-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.newsletter-button:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.newsletter-message {
    margin-top: 1rem;
    font-size: 0.95rem;
    min-height: 24px;
}

.newsletter-message.success {
    color: #4caf50;
}

.newsletter-message.error {
    color: #f44336;
}

/* Contact Section */
.contact-section {
    position: relative;
    min-height: 100vh;
    background-color: #000000;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    overflow: hidden;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3rem;
    border-radius: 8px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #ffffff;
}

.contact-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
}

.contact-address {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    color: #000000;
    font-size: 1rem;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.form-textarea {
    resize: vertical;
}

.form-submit {
    padding: 1rem 3rem;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.form-submit:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.95rem;
    min-height: 24px;
}

.form-message.success {
    color: #4caf50;
}

.form-message.error {
    color: #f44336;
}

/* Responsive Design */

/* Small Desktop Screens (MacBook Air, etc.) */
@media (min-width: 1024px) and (max-width: 1440px) {
    /* Hero Section with Grapes */
    .hero-grapes {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-names {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        line-height: 1.1;
    }
    
    /* Main Hero Section */
    .main-hero {
        min-height: 90vh;
        padding: 2rem 0;
    }
    
    .main-title {
        font-size: clamp(3rem, 6vw, 5rem);
        line-height: 0.9;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .main-hero-container {
        padding: 0 2rem;
        gap: 2rem;
    }
    
    .hero-text-section {
        padding: 2rem;
    }
    
    .couple-photo {
        max-width: 350px;
        height: auto;
    }
    
    /* Founders Section */
    .founders-section {
        height: auto !important;
        min-height: auto !important;
        padding: 3rem 2rem;
    }
    
    .founders-container {
        height: auto !important;
    }
    
    .founder-block {
        min-height: auto !important;
        height: auto !important;
        padding: 3rem 2rem;
    }
    
    .founder-photo {
        flex: 0 0 auto;
        padding: 1.5rem;
    }
    
    .founder-info,
    .founder-content {
        flex: 0 0 auto;
        padding: 1.5rem 2rem 2rem 2rem;
        overflow: visible;
    }
    
    .founder-name {
        font-size: clamp(2rem, 4vw, 2.8rem);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .founder-bio {
        font-size: 0.9rem;
        line-height: 1.5;
        overflow: visible;
    }
    
    .founder-photo,
    .founder-image {
        max-width: 100%;
    }
    
    .founder-photo img,
    .founder-image img {
        max-height: 350px;
        object-fit: contain;
    }
    
    /* Wines Section */
    .wines-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .wines-title {
        font-size: clamp(3rem, 6vw, 5rem);
        line-height: 1;
    }
    
    /* Adventure Section */
    .adventure-section {
        min-height: auto;
        padding: 3rem 2rem;
    }
    
    .adventure-title {
        font-size: clamp(3rem, 6vw, 5rem);
        line-height: 1;
        margin-bottom: 2rem;
    }
    
    .adventure-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .adventure-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .adventure-content {
        padding: 2rem;
        max-width: 90%;
    }
    
    /* Crowdfunding Section */
    .crowdfunding-section {
        padding: 3rem 2rem;
    }
    
    .crowdfunding-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        margin-bottom: 2rem;
    }
    
    .crowdfunding-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .crowdfunding-grid {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .funding-name {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .funding-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 3rem 2rem;
    }
    
    .contact-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        margin-bottom: 2rem;
    }
    
    .contact-container {
        padding: 2rem;
    }
    
    .contact-main {
        padding: 2rem;
        gap: 2rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
    
    .form-submit {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

/* Mobile Portrait - Crowdfunding Accordion */
.funding-toggle-btn {
    display: none;
}

@media (max-width: 768px) and (orientation: portrait) {
    .funding-toggle-btn {
        display: block;
        background-color: transparent;
        color: #ffffff;
        border: 1px solid #ffffff;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        border-radius: 4px;
        transition: all 0.3s ease;
        margin: 1rem 0;
    }
    
    .funding-toggle-btn:hover {
        background-color: #ffffff;
        color: #000000;
    }
    
    .funding-description {
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    
    .funding-card.expanded .funding-description {
        display: block;
        max-height: 1000px;
    }
    
    .funding-card.expanded .funding-toggle-btn {
        background-color: #ffffff;
        color: #000000;
    }

    /* Newsletter responsive */
    .newsletter-section {
        padding: 2rem 1.5rem;
        margin: 3rem auto 0;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-description {
        font-size: 0.9rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.8rem;
    }

    .newsletter-button {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-grapes {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 3rem 1.5rem;
    }
    
    .hero-names {
        font-size: 2rem;
        letter-spacing: 0.05em;
        max-width: 100%;
        white-space: normal;
        line-height: 1.1;
    }
    
    .language-selector {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .main-hero {
        padding: 2rem 0;
    }
    
    .main-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .hero-image-section {
        display: flex;
        justify-content: center !important;
        align-items: center;
        padding: 2rem 0 !important;
    }
    
    .couple-photo {
        width: 100%;
        max-width: 300px;
        height: 350px;
        margin: 0 auto;
        display: block;
    }
    
    .hero-text-section {
        padding: 2rem 1.5rem;
        margin-right: 0;
        text-align: center;
    }
    
    .main-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .founders-section {
        padding: 2rem 0;
        height: auto;
        min-height: auto;
    }
    
    .founders-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .founder-block {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }
    
    .founder-photo {
        padding: 1.5rem;
    }
    
    .founder-info,
    .founder-content {
        padding: 1rem 1.5rem 2rem 1.5rem;
    }
    
    .founder-image-wrapper {
        grid-column: 1;
        grid-row: 1;
        padding: 1.5rem;
    }
    
    .founder-image {
        min-height: 350px;
        height: 350px;
    }
    
    .founder-content {
        grid-column: 1;
        grid-row: 2;
        padding: 1rem 1.5rem 2rem 1.5rem;
    }
    
    .founder-landscape {
        grid-column: 1;
        grid-row: 3;
        padding: 0 1.5rem 2rem 1.5rem;
    }
    
    .landscape-image {
        height: 200px;
    }
    
    .rianne-block .founder-image-wrapper {
        padding: 1.5rem;
    }
    
    .rianne-block .founder-image {
        min-height: 350px;
        height: 350px;
    }
    
    .rianne-block .founder-content {
        padding: 1rem 1.5rem 2rem 1.5rem;
    }
    
    .adventure-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .adventure-content {
        padding: 2.5rem 1.5rem;
    }
    
    .adventure-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .adventure-subtitle {
        font-size: 1rem;
    }
    
    .adventure-text {
        font-size: 0.95rem;
    }
    
    .adventure-image {
        padding: 2rem 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .adventure-photo {
        height: 400px;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
        margin: 0 auto;
    }
    
    .contact-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title,
    .contact-title {
        font-size: 2.5rem;
    }
    
    .crowdfunding-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .funding-card {
        padding: 2rem 1.5rem;
    }
    
    .funding-name {
        font-size: 1.3rem;
    }
    
    .funding-price {
        font-size: 1.5rem;
    }
    
    .funding-description {
        font-size: 0.95rem;
    }
    
    .wines-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-grapes {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-names {
        font-size: 1.8rem;
        max-width: 100%;
        white-space: normal;
        line-height: 1.1;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .main-hero-container {
        padding: 0 1rem;
    }
    
    .hero-text-section {
        padding: 2rem 1rem;
    }
    
    .adventure-content {
        padding: 2rem 1rem;
    }
    
    .contact-container {
        padding: 2rem 1rem;
    }
    
    .contact-main {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .crowdfunding-grid {
        padding: 0 1rem;
    }
    
    .section-navigator {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .section-navigator svg {
        width: 20px;
        height: 20px;
    }
}

/* iPad and Tablet Landscape */
@media (min-width: 769px) and (max-width: 1280px) {
    .hero-grapes {
        height: 70vh;
        min-height: 500px;
    }
    
    .main-hero {
        min-height: 100vh;
        padding: 3rem 0;
    }
    
    .main-hero-container {
        padding: 2rem;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .couple-photo {
        height: 500px;
        object-fit: cover;
    }
    
    .hero-text-section {
        padding: 3rem 3rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .main-title {
        font-size: clamp(3rem, 5vw, 4.5rem);
        line-height: 0.9;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .founders-section {
        min-height: auto;
        height: auto;
        padding: 0;
    }
    
    .founders-container {
        display: block;
        height: auto;
    }
    
    .founder-block,
    .vincent-block,
    .rianne-block {
        min-height: auto;
        height: auto;
        display: block;
        padding: 4rem 3rem;
    }
    
    .founder-photo,
    .founder-image {
        width: 100%;
        height: auto;
        margin-bottom: 2.5rem;
    }
    
    .founder-photo img,
    .founder-image img {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
        object-position: center;
    }
    
    .founder-content,
    .founder-info {
        padding: 0;
        height: auto;
    }
    
    .founder-name {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .founder-bio {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .wines-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .adventure-section {
        min-height: auto;
    }
    
    .adventure-container {
        min-height: 70vh;
    }
    
    .adventure-content {
        padding: 4rem 3rem;
    }
    
    .crowdfunding-section {
        padding: 4rem 2rem;
    }
    
    .funding-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Phone Landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-grapes {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-names {
        font-size: 1.5rem;
    }
    
    .main-hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .main-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .couple-photo {
        height: 400px;
    }
    
    .hero-text-section {
        padding: 2rem 2rem;
    }
    
    .main-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .founders-section {
        min-height: auto;
        height: auto;
        padding: 0;
    }
    
    .founders-container {
        display: block;
        height: auto;
    }
    
    .founder-block,
    .vincent-block,
    .rianne-block {
        min-height: auto;
        height: auto;
        display: block;
        padding: 3rem 2rem;
    }
    
    .founder-photo,
    .founder-image {
        width: 100%;
        height: auto;
        margin-bottom: 2rem;
    }
    
    .founder-photo img,
    .founder-image img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: contain;
        object-position: center;
    }
    
    .founder-content,
    .founder-info {
        padding: 0;
        height: auto;
    }
    
    .founder-name {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .founder-bio {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .wines-section {
        height: 100vh;
        min-height: 100vh;
    }
    
    .adventure-section {
        min-height: auto;
    }
    
    .adventure-container {
        grid-template-columns: 1fr 1fr;
        min-height: 100vh;
    }
    
    .adventure-content {
        padding: 3rem 2rem;
    }
    
    .adventure-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .adventure-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .adventure-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .adventure-image {
        padding: 2rem 2rem 2rem 0;
    }
    
    .crowdfunding-section {
        padding: 3rem 1.5rem;
    }
    
    .funding-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-section {
        padding: 3rem 1.5rem;
    }
}

/* Footer */
.site-footer {
    background: #000000;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.copyright {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

.privacy-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.developer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}
