.ownership-section {
    padding-top: 120px;
    background: radial-gradient(1200px 420px at 10% 5%, rgba(224, 187, 228, 0.35), transparent 55%),
        radial-gradient(900px 360px at 85% 20%, rgba(255, 199, 44, 0.25), transparent 60%),
        #FDFBF7;
    color: #4A3B2C;
}

.pill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(74, 52, 38, 0.12);
    box-shadow: var(--shadow-light);
    font-weight: 700;
    margin-bottom: 14px;
}

.ownership-title {
    font-size: 56px;
    line-height: 1.05;
    color: #2C241B;
    margin-bottom: 12px;
    font-family: 'ModernSerif', serif;
}

.ownership-subtitle {
    font-size: 20px;
    color: #7A5C41;
    max-width: 62ch;
}

.ownership-title,
.ownership-subtitle,
.hero-point,
.owner-name,
.checkbox span {
    overflow-wrap: anywhere;
}

.chart-wrap {
    width: 100%;
    overflow: hidden;
}

.muted {
    color: rgba(74, 52, 38, 0.72);
    font-size: 0.95rem;
}

.ownership-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
    align-items: start;
    margin-top: 24px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.hero-point {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(74, 52, 38, 0.10);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow-light);
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    color: #4A3426;
}

.hero-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(74, 52, 38, 0.12);
    border-radius: 18px;
    box-shadow: var(--shadow-medium);
    padding: 18px;
}

.hero-card h3 {
    margin-bottom: 6px;
    font-family: 'ModernSerif', serif;
    color: #2C241B;
}

.chart-wrap {
    margin-top: 12px;
}

.ownership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 22px;
}

.panel {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(74, 52, 38, 0.12);
    border-radius: 18px;
    box-shadow: var(--shadow-medium);
    padding: 18px;
}

.panel-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.panel h2 {
    font-family: 'ModernSerif', serif;
    color: #2C241B;
}

.owner-cards {
    display: grid;
    gap: 10px;
}

.owner-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(74, 52, 38, 0.10);
    background: rgba(253, 251, 247, 0.65);
}

.owner-left {
    min-width: 0;
}

.owner-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04);
}

.owner-name {
    font-weight: 800;
    color: #2C241B;
}

.owner-share {
    font-weight: 900;
    color: #4A3426;
}

.apply-form {
    display: grid;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.field label {
    display: block;
    font-weight: 800;
    margin-bottom: 6px;
    color: #2C241B;
}

.field input,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(74, 52, 38, 0.18);
    background: rgba(255, 255, 255, 0.92);
    color: #2C241B;
}

.checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: rgba(74, 52, 38, 0.85);
}

.checkbox input {
    margin-top: 4px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-solid {
    border: none;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
    box-shadow: var(--shadow-light);
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.btn-solid:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.form-status {
    font-size: 0.95rem;
    color: rgba(74, 52, 38, 0.85);
}

.form-status.success { color: #166534; }
.form-status.error { color: #991b1b; }
.form-status.info { color: #075985; }

@media (max-width: 1100px) {
    .ownership-hero {
        grid-template-columns: 1fr;
    }
    .ownership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .ownership-title { font-size: 42px; }
    .hero-points { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .ownership-section {
        padding-top: 96px;
    }

    body.farm-ownership-page .container {
        width: 94%;
        padding: 0 10px;
    }

    body.farm-ownership-page .nav-wrapper {
        padding: 0 10px;
    }

    body.farm-ownership-page .logo {
        font-size: 30px;
        flex-wrap: wrap;
        line-height: 1.05;
        gap: 8px;
    }

    .pill {
        padding: 8px 12px;
        font-size: 0.95rem;
    }

    .ownership-title {
        font-size: 34px;
        line-height: 1.1;
    }

    .ownership-subtitle {
        font-size: 16px;
    }

    .panel,
    .hero-card {
        padding: 14px;
        border-radius: 16px;
    }

    .panel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .owner-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .owner-share {
        width: 100%;
        text-align: left;
    }

    .field input,
    .field textarea {
        padding: 11px 12px;
        border-radius: 12px;
    }

    .checkbox {
        gap: 8px;
        font-size: 0.9rem;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-solid {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 320px) {
    body.farm-ownership-page .logo {
        font-size: 26px;
    }

    .ownership-title {
        font-size: 30px;
    }

    .hero-point {
        padding: 10px;
        border-radius: 14px;
    }
}

@media (max-width: 300px) {
    body.farm-ownership-page .container {
        width: 96%;
        padding: 0 8px;
    }

    body.farm-ownership-page .logo {
        font-size: 24px;
    }

    .ownership-title {
        font-size: 28px;
    }
}
